styled.ts 779 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import styled from 'styled-components';
  2. export const Container = styled.div`
  3. min-width: 300px;
  4. height: auto;
  5. min-height: 53px;
  6. border-radius: 5px;
  7. padding: 5px;
  8. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.38);
  9. background-color: rgba(0, 0, 0, 0.6);
  10. position: relative;
  11. display: flex;
  12. align-items: center;
  13. :before {
  14. content: '';
  15. border-left: 20px solid transparent;
  16. border-right: 20px solid transparent;
  17. border-top: 20px solid rgba(0, 0, 0, 0.6);
  18. position: absolute;
  19. margin: auto;
  20. left: 0;
  21. right: 0;
  22. width: 0px;
  23. bottom: -20px;
  24. }
  25. `;
  26. export const Subtitle = styled.div`
  27. display: inline-block;
  28. color: #ffffff;
  29. padding: 0 10px 0 15px;
  30. min-width: 70px;
  31. `;
  32. export const SliderWrapper = styled.div`
  33. width: 220px;
  34. `;