Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

176 linhas
3.1KB

  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. @include mobile-only {
  23. width: 100px;
  24. }
  25. }
  26. }
  27. .row-list {
  28. height: 88%;
  29. nav {
  30. ul {
  31. height: 100%;
  32. margin: 0;
  33. li {
  34. width: 100%;
  35. padding-left: 20%;
  36. padding-right: 15%;
  37. margin-bottom: 6%;
  38. display: inline-block;
  39. @include mobile-only {
  40. padding: 0;
  41. }
  42. a {
  43. color: $green;
  44. font-size: 5.0rem;
  45. line-height: 5.0rem;
  46. @include mobile-only {
  47. font-size: 4.0rem;
  48. }
  49. &:hover {
  50. color: $yellow;
  51. }
  52. }
  53. &.contact {
  54. margin-bottom: 5%;
  55. a {
  56. border: 2px solid $yellow;
  57. padding: 10px 45px;
  58. font-size: 2.5rem;
  59. }
  60. }
  61. .yellow-trait {
  62. width: 20%;
  63. height: 10px;
  64. position: absolute;
  65. top: 0;
  66. right: 0;
  67. background-color: $yellow;
  68. @include mobile-only {
  69. right: 30%;
  70. }
  71. }
  72. }
  73. }
  74. }
  75. .col-logo {
  76. @include mobile-only {
  77. display: none;
  78. }
  79. .logo {
  80. position: absolute;
  81. top: 50%;
  82. transform: translate(-50%, -50%);
  83. left: 50%;
  84. width: 50%;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. .menu-fixed {
  91. background-color: #FFF;
  92. height: $headerheight;
  93. z-index: 2;
  94. border-bottom: 1px solid lightgrey;
  95. @include mobile-only {
  96. height: 80px;
  97. }
  98. .navbar-brand {
  99. width: 45%;
  100. @include large-only {
  101. width: 30%;
  102. }
  103. img {
  104. max-height: 80px;
  105. }
  106. }
  107. .participate {
  108. font-size: 3.0rem;
  109. color: #568b6f;
  110. font-family: dinbold;
  111. border: 2px solid #568b6f;
  112. padding: 8px 10px;
  113. font-weight: bold;
  114. @include mobile-only {
  115. display: none;
  116. }
  117. &:hover {
  118. text-decoration: none;
  119. border-color: $yellow;
  120. }
  121. }
  122. .space-collab {
  123. color: $yellow;
  124. font-size: 2.2rem;
  125. font-family: FranklinGothic;
  126. @include desktop-only {
  127. display: none;
  128. }
  129. img {
  130. height: 50px;
  131. margin-right: 10px;
  132. }
  133. }
  134. .toggle {
  135. border: 0;
  136. background-color: #FFF;
  137. img {
  138. max-width: 140px;
  139. @include mobile-only {
  140. max-width: 80px;
  141. }
  142. }
  143. }
  144. }
  145. }