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.

251 lines
4.2 KiB

7 years ago
  1. @import 'variables';
  2. @import url(https://fonts.googleapis.com/css?family=Roboto:400,500,400italic);
  3. @import url(https://fonts.googleapis.com/css?family=Roboto+Mono:400,500);
  4. @import 'font-awesome';
  5. /* http://meyerweb.com/eric/tools/css/reset/
  6. v2.0 | 20110126
  7. License: none (public domain)
  8. */
  9. html, body, div, span, applet, object, iframe,
  10. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  11. a, abbr, acronym, address, big, cite, code,
  12. del, dfn, em, img, ins, kbd, q, s, samp,
  13. small, strike, strong, sub, sup, tt, var,
  14. b, u, i, center,
  15. dl, dt, dd, ol, ul, li,
  16. fieldset, form, label, legend,
  17. table, caption, tbody, tfoot, thead, tr, th, td,
  18. article, aside, canvas, details, embed,
  19. figure, figcaption, footer, header, hgroup,
  20. menu, nav, output, ruby, section, summary,
  21. time, mark, audio, video {
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. font-size: 100%;
  26. font: inherit;
  27. vertical-align: baseline;
  28. }
  29. /* HTML5 display-role reset for older browsers */
  30. article, aside, details, figcaption, figure,
  31. footer, header, hgroup, menu, nav, section {
  32. display: block;
  33. }
  34. body {
  35. line-height: 1;
  36. }
  37. ol, ul {
  38. list-style: none;
  39. }
  40. blockquote, q {
  41. quotes: none;
  42. }
  43. blockquote:before, blockquote:after,
  44. q:before, q:after {
  45. content: '';
  46. content: none;
  47. }
  48. table {
  49. border-collapse: collapse;
  50. border-spacing: 0;
  51. }
  52. ::-webkit-scrollbar {
  53. width: 8px;
  54. height: 8px;
  55. }
  56. ::-webkit-scrollbar-thumb {
  57. background: lighten($color1, 4%);
  58. border: 0px none $color5;
  59. border-radius: 50px;
  60. }
  61. ::-webkit-scrollbar-thumb:hover {
  62. background: lighten($color1, 6%);
  63. }
  64. ::-webkit-scrollbar-thumb:active {
  65. background: lighten($color1, 4%);
  66. }
  67. ::-webkit-scrollbar-track {
  68. border: 0px none $color5;
  69. border-radius: 0;
  70. background: rgba(0, 0, 0, 0.1);
  71. }
  72. ::-webkit-scrollbar-track:hover {
  73. background: $color1;
  74. }
  75. ::-webkit-scrollbar-track:active {
  76. background: $color1;
  77. }
  78. ::-webkit-scrollbar-corner {
  79. background: transparent;
  80. }
  81. body {
  82. font-family: 'Roboto', sans-serif;
  83. background: $color1 image-url('background-photo.jpeg');
  84. background-size: cover;
  85. background-attachment: fixed;
  86. font-size: 13px;
  87. line-height: 18px;
  88. font-weight: 400;
  89. color: $color5;
  90. padding-bottom: 140px;
  91. text-rendering: optimizelegibility;
  92. font-feature-settings: "kern";
  93. text-size-adjust: none;
  94. &.app-body {
  95. position: fixed;
  96. width: 100%;
  97. height: 100%;
  98. padding: 0;
  99. }
  100. &.embed {
  101. background: transparent;
  102. margin: 0;
  103. .container {
  104. position: absolute;
  105. width: 100%;
  106. height: 100%;
  107. overflow: hidden;
  108. }
  109. }
  110. @media screen and (max-width: 360px) {
  111. padding-bottom: 0;
  112. }
  113. }
  114. .app-holder {
  115. display: flex;
  116. width: 100%;
  117. height: 100%;
  118. align-items: center;
  119. justify-content: center;
  120. }
  121. .container {
  122. width: 700px;
  123. margin: 0 auto;
  124. margin-top: 40px;
  125. @media screen and (max-width: 700px) {
  126. width: 100%;
  127. margin: 0;
  128. }
  129. }
  130. .logo-container {
  131. max-width: 400px;
  132. margin: 100px auto;
  133. margin-bottom: 0;
  134. cursor: default;
  135. @media screen and (max-width: 360px) {
  136. margin: 30px auto;
  137. }
  138. h1 {
  139. display: block;
  140. text-align: center;
  141. color: $color5;
  142. font-size: 48px;
  143. font-weight: 500;
  144. img {
  145. display: block;
  146. margin: 20px auto;
  147. width: 180px;
  148. height: 180px;
  149. }
  150. a {
  151. color: inherit;
  152. text-decoration: none;
  153. outline: 0;
  154. img {
  155. opacity: 0.8;
  156. transition: all 0.8s ease;
  157. }
  158. &:hover {
  159. img {
  160. opacity: 1;
  161. transition-duration: 0.2s;
  162. }
  163. }
  164. }
  165. small {
  166. display: block;
  167. font-size: 12px;
  168. font-weight: 400;
  169. font-family: 'Roboto Mono', monospace;
  170. }
  171. }
  172. }
  173. .no-list {
  174. list-style: none;
  175. li {
  176. display: inline-block;
  177. margin: 0 5px;
  178. }
  179. }
  180. .footer {
  181. text-align: center;
  182. margin-top: 30px;
  183. font-size: 12px;
  184. color: darken($color2, 25%);
  185. .domain {
  186. font-weight: 500;
  187. a {
  188. color: inherit;
  189. text-decoration: none;
  190. }
  191. }
  192. .powered-by {
  193. font-weight: 400;
  194. a {
  195. color: inherit;
  196. text-decoration: underline;
  197. font-weight: 500;
  198. &:hover {
  199. text-decoration: none;
  200. }
  201. }
  202. }
  203. }
  204. @import 'forms';
  205. @import 'accounts';
  206. @import 'stream_entries';
  207. @import 'components';
  208. @import 'about';
  209. @import 'tables';
  210. @import 'admin';