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.

171 lines
2.4 KiB

4 years ago
  1. @import 'src/assets/fonts/stylesheet.css';
  2. @import 'src/assets/icomoon/style.css';
  3. /**
  4. * variables
  5. *
  6. */
  7. $text-color: #fff;
  8. $link-color: #fefe5b;
  9. $link-background-color: #008106;
  10. $background-color: #000084;
  11. $background-contrast-color: #bbbbbb;
  12. $color__text: #bbbbbb;
  13. $color__secondary: #00aaaa;
  14. /**
  15. * default elements
  16. *
  17. */
  18. body {
  19. color: $text-color;
  20. background-color: black;
  21. font-family: 'PxPlus IBM VGA8', sans-serif;
  22. font-style: normal;
  23. font-size: 1.2rem;
  24. line-height: 1.3;
  25. }
  26. a {
  27. text-decoration: none;
  28. &:focus {
  29. outline: none;
  30. }
  31. }
  32. h1, h2, h3, h4, h5, h6 {
  33. font-size: 18px;
  34. font-weight: normal;
  35. text-transform: uppercase;
  36. }
  37. .site-header {
  38. padding: 20px 20px;
  39. margin: 20px 0 20px;
  40. color: #000;
  41. background: $color__secondary;
  42. h1, h2, h3, h4, h5, h6 {
  43. margin: 0;
  44. }
  45. }
  46. .icon {
  47. width: 0.7em;
  48. height: 0.7em;
  49. color: white;
  50. }
  51. .vertical-align-sub {
  52. vertical-align: sub;
  53. }
  54. main {
  55. padding: 50px 0;
  56. background: $background-color;
  57. }
  58. blockquote {
  59. padding: 0 0 0 15px;
  60. margin: 0 0 20px;
  61. border-left: 5px solid #bbbbbb;
  62. }
  63. /**
  64. * footer
  65. *
  66. *
  67. */
  68. footer {
  69. text-align: center;
  70. font-size: 1.4rem;
  71. width: 100%;
  72. height: 100%;
  73. padding: 0.8em 0;
  74. .icon {
  75. width: 1.2em;
  76. height: 1.2em;
  77. }
  78. }
  79. /**
  80. *
  81. *
  82. *
  83. */
  84. .hero {
  85. padding: 16px 20.8px;
  86. margin-bottom: 20px;
  87. font-size: 18px;
  88. line-height: 20px;
  89. color: #ffffff;
  90. background-color: #00aaaa;
  91. border: 4px double #ffffff;
  92. border-radius: 0;
  93. box-shadow: 0 0 0 4px #00aaaa;
  94. margin: 0 4px 20px;
  95. .icon {
  96. width: 1em;
  97. height: 1em;
  98. }
  99. }
  100. /**
  101. * tiny-tags
  102. *
  103. *
  104. */
  105. .tiny-tags {
  106. &__list {
  107. margin: 0;
  108. padding: 0;
  109. list-style: none;
  110. }
  111. &__item {
  112. display: inline-block;
  113. border: 1px solid #ddd;
  114. background: #bbbbbb;
  115. margin: 0 0.3em 0.3em 0;
  116. }
  117. &__label, &__input {
  118. padding: 0.2em 0.4em;
  119. }
  120. &__input {
  121. border: 0;
  122. width: 100px;
  123. background: transparent;
  124. color: white;
  125. }
  126. &__label {
  127. display: inline-block;
  128. }
  129. &__button {
  130. appearance: none;
  131. border: 0;
  132. padding: 0.3em 0.4em;
  133. background: none;
  134. }
  135. .icon {
  136. &:hover {
  137. cursor: pointer;
  138. }
  139. }
  140. }