launcher.css 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. @font-face {
  2. font-family: 'Avenir Book';
  3. src: url('../fonts/Avenir.ttc');
  4. }
  5. /* Reset body, html, and div presets. */
  6. body, html, div {
  7. margin: 0px;
  8. padding: 0px;
  9. }
  10. /* Reset p presets. */
  11. p {
  12. -webkit-margin-before: 0em;
  13. -webkit-margin-after: 0em;
  14. }
  15. /*body {
  16. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  17. background-size: cover;
  18. }*/
  19. /*******************************************************************************
  20. * *
  21. * frame.ejs *
  22. * *
  23. ******************************************************************************/
  24. #frame_bar {
  25. -webkit-app-region: drag;
  26. -webkit-user-select: none;
  27. background: rgba(1, 2, 1, 0.5);
  28. min-height: 22px;
  29. display: flex;
  30. align-items: center;
  31. position: relative;
  32. z-index: 10000;
  33. }
  34. #frame_btn_dock {
  35. margin-left: 2px;
  36. }
  37. .frame_btn {
  38. height: 12px;
  39. width: 12px;
  40. border-radius: 50%;
  41. border: 0px;
  42. margin-left: 5px;
  43. -webkit-app-region: no-drag !important;
  44. cursor: pointer;
  45. }
  46. .frame_btn:focus {
  47. outline: 0px;
  48. }
  49. #frame_btn_close {
  50. background-color: #e74c32;
  51. }
  52. #frame_btn_close:hover {
  53. background-color: #FF9A8A;
  54. }
  55. #frame_btn_restoredown {
  56. background-color: #fed045;
  57. }
  58. #frame_btn_restoredown:hover {
  59. background-color: #FFE9A9;
  60. }
  61. #frame_btn_minimize {
  62. background-color: #96e734;
  63. }
  64. #frame_btn_minimize:hover {
  65. background-color: #D6FFA6;
  66. }
  67. /*******************************************************************************
  68. * *
  69. * login.ejs *
  70. * *
  71. ******************************************************************************/
  72. #login_main {
  73. position: relative;
  74. height: calc(100% - 22px);
  75. width: 100%;
  76. overflow: hidden;
  77. }
  78. #login_filter {
  79. height: calc(100% - 22px);
  80. width: 100%;
  81. z-index: 9000;
  82. position: absolute;
  83. filter: blur(8px) contrast(0.9) brightness(1.0);
  84. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  85. transform: scale(1.2);
  86. background-size: cover;
  87. }
  88. #login_container {
  89. height: 100%;
  90. position: relative;
  91. display: flex;
  92. justify-content: center;
  93. z-index: 9001;
  94. }
  95. #login_content {
  96. width: 400px;
  97. display: flex;
  98. flex-direction: column;
  99. align-items: center;
  100. }
  101. #login_image_seal {
  102. height: 150px;
  103. width: auto;
  104. }
  105. .login_section {
  106. display: flex;
  107. flex-direction: column;
  108. align-items: center;
  109. padding: 5px;
  110. }
  111. /* Adds padding between flex children */
  112. .login_section > * {
  113. margin-bottom: 10px;
  114. }
  115. .login_section > *:last-child {
  116. margin-bottom: 0px !important;
  117. }
  118. #login_header_text {
  119. font-family: 'Avenir Book';
  120. color: #ded8cb;
  121. }
  122. #login_links a {
  123. color: #5a534b;
  124. font-family: 'Avenir Book';
  125. font-size: 10px;
  126. text-decoration: none;
  127. }
  128. #login_information input {
  129. background: none;
  130. border: none;
  131. border-top: 2px solid #fff;
  132. }
  133. /*#login_information input[type='password'] {
  134. letter-spacing: 0.3em;
  135. }*/
  136. /*******************************************************************************
  137. * *
  138. * index.ejs *
  139. * *
  140. ******************************************************************************/
  141. #main {
  142. height: calc(100% - 22px);
  143. }
  144. #main > #upper {
  145. height: 77%;
  146. display: flex;
  147. }
  148. #main > #lower {
  149. height: 23%;
  150. display: flex;
  151. background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  152. }
  153. #main > #upper > #left {
  154. display: inline-flex;
  155. width: 15%;
  156. height: 100%;
  157. justify-content: flex-end;
  158. }
  159. #main > #upper > #content {
  160. display: inline-flex;
  161. width: 59%;
  162. height: 100%;
  163. }
  164. #main > #upper > #right {
  165. display: inline-flex;
  166. width: 26%;
  167. height: 100%;
  168. }
  169. #main > #lower > #left {
  170. height: 100%;
  171. width: 33%;
  172. display: inline-flex;
  173. justify-content: center;
  174. }
  175. #main > #lower > #left #content {
  176. position: relative;
  177. top: 25px;
  178. display: inline-flex;
  179. line-height: 24px;
  180. left: 50px;
  181. }
  182. #main > #lower > #center {
  183. height: 100%;
  184. width: 34%;
  185. display: inline-flex;
  186. justify-content: center;
  187. }
  188. #main > #lower > #center #content {
  189. position: relative;
  190. top: 10px;
  191. }
  192. #main > #lower > #right {
  193. height: 100%;
  194. width: 33%;
  195. display: inline-flex;
  196. }
  197. #main > #lower > #right #launch_content {
  198. position: relative;
  199. top: 25px;
  200. display: inline-flex;
  201. line-height: 24px;
  202. }
  203. #image_seal {
  204. height: 70px;
  205. width: auto;
  206. position: relative;
  207. margin-top: 50px;
  208. border: 2px solid white;
  209. border-radius: 50%;
  210. }
  211. #user_content > #top {
  212. display: flex;
  213. align-items: center;
  214. justify-content: center;
  215. position: relative;
  216. top: 50px;
  217. }
  218. #user_avatar {
  219. border-radius: 50%;
  220. border: 2px solid #cad7e1;
  221. background: rgba(1, 2, 1, 0.5);
  222. height: 70px;
  223. width: auto;
  224. }
  225. #user_text {
  226. font-family: 'Avenir Book';
  227. font-size: 12px;
  228. min-width: 112px;
  229. font-weight: 900;
  230. letter-spacing: 1px;
  231. color: white;
  232. text-shadow: 0px 0px 20px black;
  233. position: relative;
  234. right: 25px;
  235. text-align: right;
  236. }
  237. /*
  238. #main_progress[value] {
  239. height: 32px;
  240. width: 245px;
  241. -webkit-appearance: none;
  242. }
  243. #main_progress[value]:before {
  244. position: absolute;
  245. content: attr(data-label);
  246. color: white;
  247. font-family: 'Avenir Book';
  248. font-size: 15px;
  249. line-height: 32px;
  250. margin-left: 8px;
  251. }
  252. #main_progress[value]::-webkit-progress-bar {
  253. border-radius: 20px 0px 0px 20px;
  254. background-color: black;
  255. }
  256. #main_progress[value]::-webkit-progress-value {
  257. background-color: black;
  258. background-image: -webkit-linear-gradient(-45deg,
  259. transparent 33%, rgba(0, 0, 0, .1) 33%,
  260. rgba(0,0, 0, .1) 66%, transparent 66%),
  261. -webkit-linear-gradient(top,
  262. rgba(255, 255, 255, .25),
  263. rgba(0, 0, 0, .25)),
  264. -webkit-linear-gradient(left, #09c, #f44);
  265. border-radius: 20px 0px 0px 20px;
  266. background-size: 35px 20px, 100% 100%, 100% 100%;
  267. }
  268. #launch_area_container {
  269. display: flex;
  270. position: absolute;
  271. left: 40px;
  272. top: 32px;
  273. }
  274. .home_btn {
  275. background-color: black;
  276. color: white;
  277. font-family: 'Avenir Book';
  278. border: none;
  279. border-radius: 20px;
  280. font-size: 11px;
  281. height: 20px;
  282. padding: 0px 17px 0px 12px;
  283. line-height: 20px;
  284. }
  285. .home_btn:focus {
  286. outline: 0px;
  287. }
  288. #mojang_btn {
  289. position: absolute;
  290. left: 150px;
  291. }
  292. #mojang_btn:before {
  293. color: #93b253;
  294. content: '\2022 ';
  295. line-height: 20px;
  296. } */
  297. .bot_label {
  298. color: white;
  299. font-family: 'Avenir Book';
  300. font-size: 9px;
  301. letter-spacing: 1px;
  302. font-weight: bold;
  303. text-shadow: 0px 0px 0px #bebcbb;
  304. }
  305. #player_count {
  306. color: #949494;
  307. font-family: 'Avenir Book';
  308. font-size: 8px;
  309. font-weight: 900;
  310. text-shadow: 0px 0px 20px #949494;
  311. margin-left: 10px;
  312. }
  313. .bot_divider {
  314. height: 25px;
  315. width: 2px;
  316. background: rgba(107, 105, 105, 0.7);
  317. margin-left: 20px;
  318. margin-right: 20px;
  319. }
  320. #mojang_status_icon {
  321. font-size: 30px;
  322. color: #a5c325;
  323. margin-left: 15px;
  324. }
  325. #menu_button {
  326. font-family: 'Avenir Book';
  327. background: none;
  328. border: none;
  329. cursor: pointer;
  330. }
  331. #menu_img {
  332. height: 11px;
  333. margin-left: -2px;
  334. }
  335. #menu_text {
  336. color: white;
  337. font-weight: 900;
  338. letter-spacing: 2px;
  339. text-shadow: 0px 0px 0px #bebcbb;
  340. font-size: 11px;
  341. line-height: 30px;
  342. display: flex;
  343. }
  344. #launch_button {
  345. font-family: 'Avenir Book';
  346. background: none;
  347. border: none;
  348. cursor: pointer;
  349. color: #fff;
  350. font-weight: 900;
  351. letter-spacing: 2px;
  352. text-shadow: 0px 0px 0px #bebcbb;
  353. font-size: 20px;
  354. padding: 0px;
  355. }
  356. #launch_details {
  357. position: relative;
  358. top: 25px;
  359. /*display: flex;*/
  360. display: none;
  361. }
  362. #launch_details_left {
  363. display: flex;
  364. }
  365. #launch_details_right {
  366. display: flex;
  367. flex-direction: column;
  368. justify-content: center;
  369. }
  370. #launch_progress[value] {
  371. height: 3px;
  372. width: 265px;
  373. -webkit-appearance: none;
  374. }
  375. #launch_progress[value]::-webkit-progress-bar {
  376. background-color: transparent;
  377. }
  378. #launch_progress[value]::-webkit-progress-value {
  379. background-color: #fff;
  380. }
  381. #launch_details_text {
  382. font-size: 11px;
  383. text-overflow: ellipsis;
  384. white-space: nowrap;
  385. overflow: hidden;
  386. }
  387. #launch_progress_label {
  388. color: white;
  389. font-family: 'Avenir Book';
  390. font-weight: 900;
  391. letter-spacing: 1px;
  392. text-shadow: 0px 0px 0px #bebcbb;
  393. font-size: 20px;
  394. min-width: 53.21px;
  395. max-width: 53.21px;
  396. text-align: right;
  397. }