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.

155 lines
1.7 KiB

5 years ago
  1. /**
  2. * variables
  3. *
  4. */
  5. /**
  6. * default elements
  7. *
  8. */
  9. body {
  10. color: #000;
  11. background-color: #000084;
  12. font-family: "PxPlus IBM VGA8", sans-serif;
  13. font-style: normal;
  14. font-size: 1.2rem;
  15. }
  16. *:first-letter {
  17. color: #fefe5b;
  18. }
  19. a {
  20. color: #000;
  21. text-decoration: none;
  22. }
  23. /**
  24. * navigation
  25. *
  26. *
  27. */
  28. .navbar {
  29. position: fixed;
  30. top: 0;
  31. left: 0;
  32. width: 100%;
  33. text-align: center;
  34. background-color: #bbbbbb;
  35. }
  36. .navbar ul {
  37. list-style: none;
  38. margin: 0;
  39. padding: 0.6em 0.8em;
  40. }
  41. .navbar ul li {
  42. display: inline-block;
  43. }
  44. .navbar ul li a {
  45. display: inline-block;
  46. padding: 0.1em;
  47. }
  48. .navbar ul li a:hover {
  49. background-color: #008106;
  50. }
  51. .navbar ul li.current a {
  52. background-color: #008106;
  53. }
  54. /**
  55. *
  56. *
  57. */
  58. main {
  59. max-width: 960px;
  60. margin: 2em auto 0;
  61. }
  62. /**
  63. * footer
  64. *
  65. *
  66. */
  67. footer {
  68. text-align: center;
  69. font-size: 3rem;
  70. width: 100%;
  71. background: #000;
  72. padding: 0.8em 0;
  73. }
  74. footer i {
  75. color: #fff !important;
  76. }
  77. /**
  78. * section
  79. *
  80. *
  81. */
  82. .section {
  83. padding: 4em;
  84. margin: 1em 0;
  85. line-height: 1.8;
  86. background-color: #bbbbbb;
  87. }
  88. /**
  89. * icons
  90. *
  91. *
  92. */
  93. [class^=icon-tiny],
  94. [class*=" icon-tiny"] {
  95. font-family: "PxPlus IBM VGA8", sans-serif !important;
  96. font-style: normal;
  97. color: #fefe5b;
  98. }
  99. /**
  100. * tiny-tiny-hamburger
  101. *
  102. *
  103. */
  104. .tiny-one-page__inner {
  105. padding: 4px 8px 5px;
  106. }
  107. .tiny-one-page__modal {
  108. height: auto;
  109. max-height: 0;
  110. overflow: hidden;
  111. transition: max-height 0.2s;
  112. }
  113. .tiny-one-page__button {
  114. -webkit-appearance: none;
  115. -moz-appearance: none;
  116. appearance: none;
  117. border: none;
  118. background: transparent;
  119. padding: 0.3em 0.5em;
  120. }
  121. .tiny-one-page__button:hover {
  122. cursor: pointer;
  123. outline: none;
  124. background-color: #bbbbbb;
  125. }
  126. .tiny-one-page__button:focus {
  127. outline: none;
  128. }