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.

132 lines
2.4KB

  1. #menu {
  2. .menu-content {
  3. background-color: #FFF;
  4. display: none;
  5. position: fixed;
  6. height: 100%;
  7. width: 100%;
  8. z-index: 100;
  9. top: 0;
  10. left: 0;
  11. .row-menu {
  12. height: 100%;
  13. .row-toggle {
  14. height: 12%;
  15. .toggle {
  16. position: absolute;
  17. right: 0;
  18. top: 2%;
  19. border: 0;
  20. background-color: #FFF;
  21. z-index: 100;
  22. }
  23. }
  24. .row-list {
  25. height: 88%;
  26. nav {
  27. ul {
  28. height: 100%;
  29. margin: 0;
  30. li {
  31. width: 100%;
  32. padding-left: 20%;
  33. padding-right: 15%;
  34. margin-bottom: 6%;
  35. display: inline-block;
  36. a {
  37. color: $green;
  38. font-size: 50px;
  39. line-height: 50px;
  40. &:hover {
  41. color: $yellow;
  42. }
  43. }
  44. &.contact {
  45. margin-bottom: 5%;
  46. a {
  47. border: 2px solid $yellow;
  48. padding: 10px 45px;
  49. font-size: 25px;
  50. }
  51. }
  52. .yellow-trait {
  53. width: 20%;
  54. height: 10px;
  55. position: absolute;
  56. top: 0;
  57. right: 0;
  58. background-color: $yellow;
  59. }
  60. }
  61. }
  62. }
  63. .col-logo {
  64. .logo {
  65. position: absolute;
  66. top: 50%;
  67. transform: translate(-50%, -50%);
  68. left: 50%;
  69. width: 50%;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. .menu-fixed {
  76. background-color: #FFF;
  77. height: $headerheight;
  78. z-index: 2;
  79. border-bottom: 1px solid lightgrey;
  80. .navbar-brand {
  81. width: 50%;
  82. img {
  83. max-height: 85px;
  84. }
  85. }
  86. .participate {
  87. font-size: 30px;
  88. color: #568b6f;
  89. font-family: dinbold;
  90. border: 2px solid #568b6f;
  91. padding: 8px 10px;
  92. font-weight: bold;
  93. &:hover {
  94. text-decoration: none;
  95. border-color: $yellow;
  96. }
  97. }
  98. .space-collab {
  99. color: $yellow;
  100. font-size: 22px;
  101. font-family: FranklinGothic;
  102. img {
  103. height: 50px;
  104. margin-right: 10px;
  105. }
  106. }
  107. .toggle {
  108. border: 0;
  109. background-color: #FFF;
  110. }
  111. }
  112. }