Advertisement
Guest User

src/components/GoalPage/GoalPage.styled.js

a guest
Dec 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. import styled from '@emotion/styled'
  2.  
  3. export const Root = styled.div`
  4. padding: 80px 40px 20px 40px;
  5. `
  6.  
  7. export const Title = styled.h1`
  8. color: #4a4a4a;
  9. font-size: 10px;
  10. line-height: 13px;
  11. text-transform: uppercase;
  12. text-align: center;
  13.  
  14. margin-bottom: 48px;
  15. `
  16.  
  17. export const Option = styled.button`
  18. border: 1px solid transparent;
  19. background-color: #fff;
  20. padding: 16px;
  21. width: 100%;
  22. margin-bottom: 40px;
  23. text-align: left;
  24. display: flex;
  25. align-items: center;
  26. transition: all 0.3s;
  27. img {
  28. width: 48px;
  29. height: auto;
  30. }
  31. span {
  32. display: inline-block;
  33. margin-left: 24px;
  34. color: #5d5d5d;
  35. font-size: 15px;
  36. line-height: 25px;
  37. }
  38.  
  39. ${({ active }) =>
  40. active &&
  41. `
  42. border: 1px solid #ff4613;
  43. border-radius: 2px;
  44. background-color: #fff;
  45.  
  46. &:active,&:focus {
  47. outline: none;
  48. }
  49. `}
  50. `
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement