styles.scss 898 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @import '../../styles/variables';
  2. .cbk-drawer {
  3. background-color: #BDBDBD;
  4. padding-top: $spacing-xx-large;
  5. text-align: center;
  6. font-family: $font-family-display;
  7. color: $white;
  8. .mdc-drawer__title {
  9. text-transform: uppercase;
  10. color: $white;
  11. font-family: $font-family-display;
  12. font-weight: $font-weight-bold;
  13. letter-spacing: 0.075em;
  14. font-size: $font-size-xx-large
  15. }
  16. .mdc-list-item {
  17. justify-content: center;
  18. a {
  19. color: white;
  20. text-decoration: none;
  21. font-family: $font-family-display;
  22. font-size: $font-size-x-large;
  23. letter-spacing: 0.075em;
  24. font-weight: $font-weight-bold;
  25. }
  26. a:hover::after {
  27. content: "";
  28. display: block;
  29. margin: 0 auto;
  30. width: 56px;
  31. opacity: 50%;
  32. margin-top: -10px;
  33. border-bottom: 10px solid;
  34. border-bottom-color: $grey-500;
  35. }
  36. }
  37. }