style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. * {
  2. text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  3. }
  4. body {
  5. color: #f0f0f0;
  6. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  7. background: black;
  8. }
  9. code {
  10. background: #444;
  11. }
  12. p {
  13. margin: 0px;
  14. }
  15. .doc {
  16. background: #403531;
  17. padding: 2em;
  18. }
  19. .doc p, .doc dd {
  20. margin-bottom: 6px;
  21. }
  22. .doc a:not(.button) {
  23. color: #85D4DE;
  24. }
  25. .columns {
  26. column-width: 25em;
  27. column-gap: 2em;
  28. text-align: justify;
  29. hyphens: auto;
  30. -webkit-hyphens: auto;
  31. word-spacing: -1px;
  32. margin: 1em 0;
  33. padding: 1em;
  34. }
  35. .large-columns {
  36. column-width: 33em;
  37. column-gap: 2em;
  38. text-align: justify;
  39. hyphens: auto;
  40. -webkit-hyphens: auto;
  41. word-spacing: -1px;
  42. margin: 1em 0;
  43. padding: 1em;
  44. }
  45. .columns h2 {
  46. margin-top: 0;
  47. padding-top: 0;
  48. }
  49. .columns:nth-child(even) {
  50. background: #51433E;
  51. }
  52. h1 {
  53. font-size: 3.5rem;
  54. font-weight: 300;
  55. }
  56. h2 {
  57. padding-bottom: 0px;
  58. }
  59. .button {
  60. border-radius: 0.32rem;
  61. }
  62. .success.button {
  63. background: rgb(87, 165, 81);
  64. }
  65. .top {
  66. background-image: url("../img/blog-back.jpg");
  67. background-size: cover;
  68. padding-bottom: 30px;
  69. margin-bottom: 5px;
  70. background-repeat: no-repeat;
  71. background-position: 50% 20%;
  72. }
  73. .languages {
  74. float: right;
  75. margin-right: 20px;
  76. margin-left: 20px;
  77. }
  78. .languages .button:not([disabled]) {
  79. color: black;
  80. background: #ddd;
  81. }
  82. .languages .button:not([disabled]):hover {
  83. background: #aaa;
  84. }
  85. .languages .button[disabled] {
  86. background: rgb(87, 165, 81);
  87. }
  88. .header {
  89. margin: 15px;
  90. }
  91. .logo {
  92. filter: grayscale(30%)
  93. }
  94. .header h1 {
  95. padding: 0px;
  96. }
  97. .header .lead {
  98. margin-top: 0px;
  99. }
  100. .menu {
  101. clear: both;
  102. text-align: center;
  103. }
  104. .menu .button:not(.facebook) {
  105. text-transform: uppercase;
  106. }
  107. .menu .button:not(.success):not(.facebook) {
  108. color: #777;
  109. background: transparent;
  110. border-width: 1px;
  111. border-style: solid;
  112. border-color: #777;
  113. }
  114. .menu .button:not(.success):not(.facebook):hover {
  115. background: #777;
  116. color: white;
  117. }
  118. .menu .button.success {
  119. background: transparent;
  120. border-width: 1px 1px 4px;
  121. border-style: solid;
  122. border-color: white;
  123. border-bottom: 4px solid white;
  124. padding-bottom: 0.15em;
  125. }
  126. .menu .button.success:hover {
  127. background: white;
  128. color: black;
  129. }
  130. .download {
  131. min-height: 100vh;
  132. background-image: url("../img/lzpwall.jpg");
  133. background-size: cover;
  134. color: white;
  135. background-position: center center;
  136. }
  137. .center {
  138. text-align: center;
  139. }
  140. .download .content {
  141. background-color: rgba(0, 0, 0, 0.4);
  142. min-height: 100vh;
  143. box-shadow: rgb(6, 44, 87) 0px 0px 100px inset;
  144. }
  145. .download h1 {
  146. padding-top: 30px;
  147. padding-bottom: 0;
  148. }
  149. #os-hint {
  150. font-size: 125%;
  151. }
  152. #other-os .button:not(.success) {
  153. background: rgb(68, 68, 68);
  154. }
  155. .download .button {
  156. border-width: 1px;
  157. border-style: solid;
  158. border-color: rgb(0, 0, 0, 0.25);
  159. }
  160. .changes {
  161. white-space: pre-line;
  162. display: inline-block;
  163. padding-top: 0.5em;
  164. padding-bottom: 2em;
  165. text-align: left;
  166. }
  167. .footer {
  168. color: slategray;
  169. }
  170. .footer h1 {
  171. color: slategray;
  172. }