launcher.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. body {
  11. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  12. background-size: cover;
  13. }
  14. #frame_bar {
  15. -webkit-app-region: drag;
  16. -webkit-user-select: none;
  17. background: rgba(1, 2, 1, 0.5);
  18. min-height: 22px;
  19. display: flex;
  20. align-items: center;
  21. }
  22. #frame_btn_dock {
  23. margin-left: 2px;
  24. }
  25. .frame_btn {
  26. height: 12px;
  27. width: 12px;
  28. border-radius: 50%;
  29. border: 0px;
  30. margin-left: 5px;
  31. -webkit-app-region: no-drag !important;
  32. cursor: pointer;
  33. }
  34. .frame_btn:focus {
  35. outline: 0px;
  36. }
  37. #frame_btn_close {
  38. background-color: #e74c32;
  39. }
  40. #frame_btn_close:hover {
  41. background-color: #FF9A8A;
  42. }
  43. #frame_btn_restoredown {
  44. background-color: #fed045;
  45. }
  46. #frame_btn_restoredown:hover {
  47. background-color: #FFE9A9;
  48. }
  49. #frame_btn_minimize {
  50. background-color: #96e734;
  51. }
  52. #frame_btn_minimize:hover {
  53. background-color: #D6FFA6;
  54. }
  55. #main {
  56. height: calc(100% - 22px);
  57. }
  58. #main > #upper {
  59. height: 75%;
  60. display: flex;
  61. }
  62. #main > #lower {
  63. height: 25%;
  64. }
  65. #main > #upper > #left {
  66. display: inline-flex;
  67. width: 18%;
  68. height: 100%;
  69. justify-content: center;
  70. }
  71. #main > #upper > #content {
  72. display: inline-flex;
  73. width: 62%;
  74. height: 100%;
  75. }
  76. #main > #upper > #right {
  77. display: inline-flex;
  78. width: 20%;
  79. height: 100%;
  80. }
  81. #main > #lower > #top {
  82. height: 50%;
  83. position: relative;
  84. }
  85. #main > #lower > #bottom {
  86. height: 50%;
  87. display: flex;
  88. }
  89. #main > #lower > #bottom > #left {
  90. height: 100%;
  91. width: 50%;
  92. display: inline-flex;
  93. position: relative;
  94. align-items: center;
  95. }
  96. #main > #lower > #bottom > #right {
  97. height: 100%;
  98. width: 50%;
  99. display: inline-flex;
  100. }
  101. #image_seal {
  102. height: 100px;
  103. width: auto;
  104. margin-top: 12px;
  105. border: 2px solid white;
  106. border-radius: 50%;
  107. }
  108. #user_content > #top {
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. margin-top: 20px;
  113. }
  114. #user_avatar {
  115. border-radius: 50%;
  116. border: 2px solid #cad7e1;
  117. background: rgba(1, 2, 1, 0.5);
  118. height: 70px;
  119. width: auto;
  120. }
  121. #user_text {
  122. margin-right: 15px;
  123. font-family: 'Avenir Book';
  124. font-size: 15px;
  125. color: white;
  126. }
  127. .menu_container {
  128. display: inline-block;
  129. cursor: pointer;
  130. float: right;
  131. margin-right: 22px;
  132. margin-top: 10px;
  133. }
  134. .bar1, .bar2, .bar3 {
  135. width: 30px;
  136. height: 4px;
  137. background-color: #d5d7df;
  138. margin: 6px auto;
  139. transition: 0.4s;
  140. border-radius: 20px;
  141. }
  142. .bar2 {
  143. width: 25px !important;
  144. }
  145. #launch_btn {
  146. background-color: #4f771d;
  147. color: white;
  148. border: none;
  149. height: 32px;
  150. line-height: 32px;
  151. padding-left: 26px;
  152. padding-right: 20px;
  153. font-family: 'Avenir Book';
  154. font-size: 16px;
  155. border-radius: 0px 20px 20px 0px;
  156. }
  157. #launch_btn:focus {
  158. outline: 0px;
  159. }
  160. #main_progress[value] {
  161. height: 32px;
  162. width: 245px;
  163. -webkit-appearance: none;
  164. }
  165. #main_progress[value]:before {
  166. position: absolute;
  167. content: attr(data-label);
  168. color: white;
  169. font-family: 'Avenir Book';
  170. font-size: 15px;
  171. line-height: 32px;
  172. margin-left: 8px;
  173. }
  174. #main_progress[value]::-webkit-progress-bar {
  175. border-radius: 20px 0px 0px 20px;
  176. background-color: black;
  177. }
  178. #main_progress[value]::-webkit-progress-value {
  179. background-color: black;
  180. border-radius: 20px 0px 0px 20px;
  181. background-size: 35px 20px, 100% 100%, 100% 100%;
  182. }
  183. #launch_area_container {
  184. display: flex;
  185. position: absolute;
  186. left: 40px;
  187. top: 32px;
  188. }
  189. .home_btn {
  190. background-color: black;
  191. color: white;
  192. font-family: 'Avenir Book';
  193. border: none;
  194. border-radius: 20px;
  195. font-size: 11px;
  196. height: 20px;
  197. padding: 0px 17px 0px 12px;
  198. line-height: 20px;
  199. }
  200. .home_btn:focus {
  201. outline: 0px;
  202. }
  203. #mojang_btn {
  204. position: absolute;
  205. left: 150px;
  206. }
  207. #mojang_btn:before {
  208. color: #93b253;
  209. content: '\2022 ';
  210. line-height: 20px;
  211. }