launcher.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Reset body, html, and div presets. */
  2. body, html, div {
  3. margin: 0px;
  4. padding: 0px;
  5. }
  6. body {
  7. background: url('./../images/backgrounds/0.jpg') no-repeat center center fixed;
  8. background-size: cover;
  9. }
  10. #frame_bar {
  11. -webkit-app-region: drag;
  12. -webkit-user-select: none;
  13. background: rgba(1, 2, 1, 0.5);
  14. min-height: 22px;
  15. display: flex;
  16. align-items: center;
  17. }
  18. #frame_btn_dock {
  19. margin-left: 2px;
  20. }
  21. .frame_btn {
  22. height: 12px;
  23. width: 12px;
  24. border-radius: 50%;
  25. border: 0px;
  26. margin-left: 5px;
  27. -webkit-app-region: no-drag !important;
  28. cursor: pointer;
  29. }
  30. .frame_btn:focus {
  31. outline: 0px;
  32. }
  33. #frame_btn_close {
  34. background-color: #e74c32;
  35. }
  36. #frame_btn_close:hover {
  37. background-color: #FF9A8A;
  38. }
  39. #frame_btn_restoredown {
  40. background-color: #fed045;
  41. }
  42. #frame_btn_restoredown:hover {
  43. background-color: #FFE9A9;
  44. }
  45. #frame_btn_minimize {
  46. background-color: #96e734;
  47. }
  48. #frame_btn_minimize:hover {
  49. background-color: #D6FFA6;
  50. }
  51. #main {
  52. height: calc(100% - 22px);
  53. }
  54. #main > #upper {
  55. height: 75%;
  56. display: flex;
  57. }
  58. #main > #lower {
  59. height: 25%;
  60. }
  61. #main > #upper > #left {
  62. display: inline-flex;
  63. width: 25%;
  64. height: 100%;
  65. }
  66. #main > #upper > #content {
  67. display: inline-flex;
  68. width: 50%;
  69. height: 100%;
  70. }
  71. #main > #upper > #right {
  72. display: inline-flex;
  73. width: 25%;
  74. height: 100%;
  75. }
  76. #main > #lower > #top {
  77. height: 50%;
  78. }
  79. #main > #lower > #bottom {
  80. height: 50%;
  81. display: flex;
  82. }
  83. #main > #lower > #bottom > #left {
  84. height: 100%;
  85. width: 50%;
  86. display: inline-flex;
  87. }
  88. #main > #lower > #bottom > #right {
  89. height: 100%;
  90. width: 50%;
  91. display: inline-flex;
  92. }