murkmod.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. #terminal-container {
  2. display: none;
  3. position: fixed;
  4. /* Stay in place */
  5. z-index: 2;
  6. /* Sit on top */
  7. left: 0;
  8. top: 0;
  9. width: 100%;
  10. /* Full width */
  11. height: 100%;
  12. /* Full height */
  13. overflow: auto;
  14. /* Enable scroll if needed */
  15. background-color: rgb(0, 0, 0);
  16. /* Fallback color */
  17. background-color: rgba(0, 0, 0, 0.4);
  18. /* Black w/ opacity */
  19. }
  20. #terminal-holder {
  21. margin: 15% auto;
  22. /* 15% from the top and centered */
  23. padding: 20px;
  24. width: 60%;
  25. /* Could be more or less, depending on screen size */
  26. background-color: #1f1f1f;
  27. border-radius: 10px;
  28. }
  29. #close {
  30. position: relative;
  31. top: 0;
  32. right: 0;
  33. color: #cccccc;
  34. font-size: 28px;
  35. font-weight: bold;
  36. cursor: pointer;
  37. }
  38. #terminal-bash-container {
  39. display: none;
  40. position: fixed;
  41. /* Stay in place */
  42. z-index: 2;
  43. /* Sit on top */
  44. left: 0;
  45. top: 0;
  46. width: 100%;
  47. /* Full width */
  48. height: 100%;
  49. /* Full height */
  50. overflow: auto;
  51. /* Enable scroll if needed */
  52. background-color: rgb(0, 0, 0);
  53. /* Fallback color */
  54. background-color: rgba(0, 0, 0, 0.4);
  55. /* Black w/ opacity */
  56. }
  57. #terminal-bash-holder {
  58. margin: 15% auto;
  59. /* 15% from the top and centered */
  60. padding: 20px;
  61. width: 60%;
  62. /* Could be more or less, depending on screen size */
  63. background-color: #1f1f1f;
  64. border-radius: 10px;
  65. }
  66. #close-bash {
  67. position: relative;
  68. top: 0;
  69. right: 0;
  70. color: #cccccc;
  71. font-size: 28px;
  72. font-weight: bold;
  73. cursor: pointer;
  74. }
  75. .modal {
  76. display: none;
  77. /* Hidden by default */
  78. position: fixed;
  79. /* Stay in place */
  80. z-index: 1;
  81. /* Sit on top */
  82. left: 0;
  83. top: 0;
  84. width: 100%;
  85. /* Full width */
  86. height: 100%;
  87. /* Full height */
  88. overflow: auto;
  89. /* Enable scroll if needed */
  90. background-color: rgb(0, 0, 0);
  91. /* Fallback color */
  92. background-color: rgba(0, 0, 0, 0.4);
  93. /* Black w/ opacity */
  94. }
  95. /* Modal Content/Box */
  96. .modal-content {
  97. background-color: #242424;
  98. margin: 15% auto;
  99. /* 15% from the top and centered */
  100. padding: 20px;
  101. border: 1px solid #888;
  102. border-radius: 10px;
  103. width: 80%;
  104. /* Could be more or less, depending on screen size */
  105. }
  106. /* The Close Button */
  107. .close {
  108. color: #cccccc;
  109. float: right;
  110. font-size: 28px;
  111. font-weight: bold;
  112. cursor: pointer;
  113. }
  114. .close:hover,
  115. .close:focus {
  116. color: rgb(252, 252, 252);
  117. text-decoration: none;
  118. cursor: pointer;
  119. }
  120. .ext {
  121. background-color: rgb(27, 27, 27);
  122. border-radius: 15px;
  123. padding: 20px;
  124. margin-left: 20px;
  125. margin-right: 20px;
  126. }
  127. #store-content {
  128. display: flex;
  129. flex-wrap: wrap;
  130. justify-content: space-around;
  131. }
  132. .card {
  133. flex: 0 0 calc(33.33% - 16px); /* Adjust the width based on the number of cards per row */
  134. box-sizing: border-box;
  135. border: 1px solid #2c3e50; /* Dark border color */
  136. border-radius: 8px;
  137. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Darker box shadow */
  138. padding: 16px;
  139. margin: 5px;
  140. background-color: #34495e; /* Dark background color */
  141. color: #ecf0f1; /* Light text color */
  142. }
  143. .card-title {
  144. font-size: 20px;
  145. font-weight: bold;
  146. margin-bottom: 8px;
  147. }
  148. .card-description {
  149. font-size: 14px;
  150. color: #bdc3c7; /* Lighter text color for description */
  151. margin-bottom: 12px;
  152. }
  153. .card-author,
  154. .card-version {
  155. font-size: 12px;
  156. color: #95a5a6; /* Lighter text color for author and version */
  157. }
  158. #swal2-html-container {
  159. color: white;
  160. }