styles.css 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*******************************************************************************
  2. * *
  3. * Fonts *
  4. * *
  5. ******************************************************************************/
  6. /* Primary font for the application, found on http://www.dafont.com/ringbearer.font */
  7. @font-face {
  8. font-family: ringbearer;
  9. src: url('../fonts/ringbearer.ttf');
  10. }
  11. /* Logger font, found on https://fonts.google.com/specimen/Inconsolata?selection.family=Inconsolata */
  12. @font-face {
  13. font-family: inconsolata;
  14. src: url('../fonts/Inconsolata-Regular.ttf');
  15. }
  16. /*******************************************************************************
  17. * *
  18. * Body *
  19. * *
  20. ******************************************************************************/
  21. /* Reset body, html, and div presets. */
  22. body, html, div {
  23. margin: 0px;
  24. padding: 0px;
  25. }
  26. html, body {
  27. height: 100%;
  28. }
  29. html {
  30. background: url('../images/BrownWithWignette.jpg') no-repeat center center fixed;
  31. background-size: cover;
  32. }
  33. #main_content {
  34. height: calc(100% - 90px);
  35. display: flex;
  36. }
  37. button {
  38. background-color: #a02d2a;
  39. color: #ffffff;
  40. border: none;
  41. padding: 7px 10px;
  42. text-align: center;
  43. text-decoration: none;
  44. font-size: 14px;
  45. }
  46. button:hover {
  47. box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  48. }
  49. ::selection {
  50. background-color: #a02d2a;
  51. color: #ffffff;
  52. }
  53. /*******************************************************************************
  54. * *
  55. * Header *
  56. * *
  57. ******************************************************************************/
  58. /* Main div header container. */
  59. #header_container {
  60. background-color: black;
  61. padding: 5px;
  62. font-size: 0px;
  63. text-align: center;
  64. border-bottom: thick solid #a02d2a;
  65. border-bottom-width: 5px;
  66. position: relative;
  67. }
  68. /* Div container for the seal image. */
  69. #header_seal_container {
  70. position: absolute;
  71. }
  72. /* Div container for the header image. */
  73. #header_img_container {
  74. display: inline-block;
  75. margin: 0 auto;
  76. }
  77. /* Seal and header images. */
  78. #header_seal,
  79. #header_img {
  80. height: 75px;
  81. width: auto;
  82. display: block;
  83. }
  84. /* Div container for the social buttons. */
  85. #header_social_container {
  86. position: absolute;
  87. bottom: 0px;
  88. right: 0px;
  89. margin-bottom: 5px;
  90. }
  91. /* Social buttons. */
  92. .header_social_img {
  93. height: 25px;
  94. width: auto;
  95. display: inline-block;
  96. cursor: pointer;
  97. margin-right: 5px;
  98. }
  99. /*******************************************************************************
  100. * *
  101. * Toggle Buttons *
  102. * *
  103. ******************************************************************************/
  104. .toggle-btn {
  105. color: #000000;
  106. font-size: 15px;
  107. font-family: 'ringbearer';
  108. user-select: none;
  109. background-color: transparent;
  110. display: inline-flex;
  111. cursor: pointer;
  112. width: 90px;
  113. height: 35px;
  114. }
  115. .toggle-btn-grp .toggle-btn {
  116. border-radius: 0;
  117. align-items: center;
  118. justify-content: center;
  119. }
  120. .toggle-btn:not(.success):hover {
  121. box-shadow: inset 0 -4.5px 0 0 #000000;
  122. }
  123. .toggle-btn.success {
  124. background: #a02d2a;
  125. color: #ffffff;
  126. cursor: default;
  127. }
  128. .visuallyhidden {
  129. border: 0;
  130. clip: rect(0 0 0 0);
  131. height: 1px;
  132. margin: -1px;
  133. overflow: hidden;
  134. padding: 0;
  135. position: absolute;
  136. width: 1px;
  137. }
  138. .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  139. clip: auto;
  140. height: auto;
  141. margin: 0;
  142. overflow: visible;
  143. position: static;
  144. width: auto;
  145. }
  146. /*******************************************************************************
  147. * *
  148. * Left Body Container *
  149. * *
  150. ******************************************************************************/
  151. #left_pane {
  152. float: left;
  153. width: 30%;
  154. }
  155. #welcome_text_container {
  156. display: table;
  157. margin: 0 auto;
  158. }
  159. #welcome_text {
  160. font-family: 'ringbearer';
  161. font-size: 16px;
  162. display: table-cell;
  163. text-align: center;
  164. vertical-align: middle;
  165. height: 35px;
  166. }
  167. #login_pane {
  168. background: linear-gradient(141deg, #000000 -5%, #a02d2a 120%, #000000 150%);
  169. padding-top: 5px;
  170. border-radius: 5px;
  171. box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.28);
  172. width: 97%;
  173. margin: 0 auto;
  174. }
  175. #login_pane_header_container {
  176. margin-left: 10px;
  177. }
  178. .login_pane_header {
  179. font-size: 14px;
  180. font-family: 'Segoe UI';
  181. font-weight: 500;
  182. color: white;
  183. }
  184. #login_container {
  185. display: inline-flex;
  186. width: 100%;
  187. }
  188. #login_image {
  189. height: 85px;
  190. width: auto;
  191. display: block;
  192. border: 3px solid #000000;
  193. }
  194. #login_container_right input,
  195. #login_container_right label {
  196. display: flex;
  197. width: 100%;
  198. }
  199. #login_container_left {
  200. padding: 10px 0 10px 10px;
  201. }
  202. #login_container_right {
  203. padding: 10px;
  204. width: 100%;
  205. }
  206. .login_field {
  207. font-size: 12px;
  208. font-family: 'Segoe UI';
  209. font-weight: 500;
  210. color: white;
  211. /* new */
  212. display: table;
  213. }
  214. #button_login {
  215. float: right;
  216. margin-top: 10px;
  217. }
  218. /*******************************************************************************
  219. * *
  220. * Right Body Container *
  221. * *
  222. ******************************************************************************/
  223. #right_pane {
  224. float: right;
  225. width: 70%;
  226. }
  227. #content_container {
  228. border: 3px solid #a02d2a;
  229. height: calc(98% - 41.33px);
  230. width: 98%;
  231. display: flex;
  232. }
  233. #launcher-log {
  234. font-family: 'inconsolata';
  235. font-size: 12px;
  236. color: #ffffff;
  237. background-color: #1a1b1c;
  238. border: none;
  239. outline: none;
  240. overflow-y: scroll;
  241. display: block;
  242. align-items: stretch;
  243. width: 100%;
  244. resize: none;
  245. padding: 5px 10px;
  246. text-shadow: 0.01px 0.01px 0.01px #ffffff;
  247. line-height: 1.2em;
  248. }
  249. #launcher-log::selection {
  250. background: rgba(160, 45, 42, .9);
  251. color: #ffffff;
  252. }
  253. #launcher-log::-webkit-scrollbar {
  254. background-color: #a02d2a;
  255. }
  256. #launcher-log::-webkit-scrollbar-thumb:window-inactive,
  257. #launcher-log::-webkit-scrollbar-thumb {
  258. background: black
  259. }
  260. .log_debug {
  261. color: blue;
  262. }
  263. /*******************************************************************************
  264. * *
  265. * Login View *
  266. * *
  267. ******************************************************************************/
  268. #login_view {
  269. background: rgba(0, 0, 0, 0.76);
  270. height: calc(100% - 90px);
  271. display: flex;
  272. justify-content: center;
  273. align-items: center;
  274. }
  275. #login_content {
  276. width: 50%;
  277. height: 75%;
  278. display: flex;
  279. justify-content: center;
  280. }
  281. #login_view #content_main {
  282. display: flex;
  283. }
  284. #login_view #login_content_image {
  285. height: 125px;
  286. width: auto;
  287. }
  288. #login_view #content_main #right {
  289. margin-left: 10px;
  290. }
  291. .login_input {
  292. background-color: #a02d2a;
  293. }
  294. .login_input::-webkit-input-placeholder {
  295. color: white;
  296. }