Advertisement
Guest User

Untitled

a guest
May 9th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. $prim: #cccccc
  2. $dark-prim: #666666
  3. $grey: grey
  4.  
  5. #wrapper
  6. background: #F7F7F7
  7.  
  8. .tournament-card
  9. background: #fff
  10. box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.11)
  11.  
  12. .card-title
  13. background-color: $dark-prim
  14. padding: 2rem
  15.  
  16. h1
  17. color: #fff
  18. text-align: center
  19. font-size: 1.2rem
  20.  
  21. .container
  22. padding: 3rem 2.5rem 3rem
  23. background-color: red
  24.  
  25. .options
  26. color: $grey
  27. margin-bottom: 1.5rem
  28.  
  29. button
  30. cursor: pointer
  31. font-size: 1.2rem
  32. color: $prim
  33. border-radius: 4rem
  34. display: block
  35. width: 100%
  36. background: transparent
  37. border: 2px solid $prim
  38. padding: 0.9rem 0 1.1rem
  39. transition: color .5s, border-color .5s
  40. margin-top: 3rem
  41.  
  42. &:hover,
  43. &:focus
  44. background: $dark-prim
  45. color: white
  46.  
  47. &:active
  48. transform: translateY(1px)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement