You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
1.1 KiB

  1. .hero {
  2. padding: 20px;
  3. background-color: mc('grey', '50');
  4. border-bottom: 1px solid mc('grey', '200');
  5. position: relative;
  6. h1 {
  7. font-size: 28px;
  8. color: mc($primary, '500');
  9. font-weight: 300;
  10. }
  11. h2 {
  12. font-size: 18px;
  13. color: mc('grey', '500');
  14. font-weight: 400;
  15. }
  16. .hero-menu {
  17. position: absolute;
  18. right: 20px;
  19. bottom: -1px;
  20. z-index: 1;
  21. display: flex;
  22. li {
  23. display: flex;
  24. margin-left: 1px;
  25. a, button {
  26. background-color: mc('light-blue', '500');
  27. color: #FFF;
  28. display: inline-flex;
  29. align-items: center;
  30. justify-items: center;
  31. padding: 0 15px;
  32. height: 32px;
  33. border: 1px solid mc('light-blue', '600');
  34. font-family: $core-font-standard;
  35. font-size: 13px;
  36. transition: all 0.4s ease;
  37. cursor: pointer;
  38. text-decoration: none;
  39. text-transform: uppercase;
  40. i {
  41. margin-right: 10px;
  42. }
  43. @each $color, $colorvalue in $material-colors {
  44. &.is-#{$color} {
  45. background-color: mc($color, '600');
  46. border-color: mc($color, '600');
  47. &:hover {
  48. background-color: mc($color, '800');
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }
  55. }