dark.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. @import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;0,500;1,400&display=swap');
  2. @media only screen and (min-width: 2201px) { body { max-width: 1290px; } #msg { width: 960px; } }
  3. @media only screen and (max-width: 2200px) { body { max-width: 1290px; } #msg { width: 960px; } }
  4. @media only screen and (max-width: 1900px) { body { max-width: 1290px; } #msg { width: 960px; } }
  5. @media only screen and (max-width: 1700px) { body { max-width: 1290px; } #msg { width: 960px; } }
  6. @media only screen and (max-width: 1500px) { body { max-width: 1290px; } #msg { width: 960px; } }
  7. @media only screen and (max-width: 1300px) { body { max-width: 1090px; } #msg { width: 780px; } }
  8. @media only screen and (max-width: 1100px) { body { max-width: 890px; } #msg { width: 600px; } }
  9. @media only screen and (max-width: 900px) { body { max-width: 800px; } #msg { width: 520px; } }
  10. @media only screen and (max-width: 800px) { body { max-width: 700px; } #msg { width: 430px; } }
  11. @media only screen and (max-width: 700px) { body { max-width: 600px; } #msg { width: 340px; } }
  12. @media only screen and (max-width: 600px) { body { max-width: 500px; } #msg { width: 240px; } }
  13. /* small windows and phones */
  14. @media only screen and (max-width: 500px) { body { max-width: 450px; } #msg { width: 230px; } }
  15. @media only screen and (max-width: 400px) { body { max-width: 350px; } #msg { width: 170px; } }
  16. html {
  17. font-family: "DM Mono", Arial, sans-serif;
  18. padding: 12px;
  19. letter-spacing: -.75px;
  20. font-size: 14px;
  21. background-color: #000000;
  22. color: #f9f9f9;
  23. }
  24. body {
  25. margin: 0 auto;
  26. padding: 4px;
  27. background-color: #161616;
  28. border: solid 1px #222222;
  29. border-radius: 10px;
  30. -webkit-border-radius: 10px;
  31. -moz-border-radius: 10px;
  32. -o-border-radius: 10px;
  33. box-shadow: 0px 0px 10px #000000;
  34. }
  35. .info {
  36. padding: 6px 6px 10px 6px;
  37. font-size: 18px;
  38. text-align: center;
  39. }
  40. a {
  41. color: #0080ff;
  42. text-decoration: none;
  43. }
  44. a:hover {
  45. color: #0099ff;
  46. text-decoration: underline;
  47. }
  48. input, button, select, textarea{
  49. background-color: #222222;
  50. border: solid 1px #323232;
  51. outline: none;
  52. border-radius: 6px;
  53. font-size: 16px;
  54. color: #d7d7d7;
  55. padding: 4px;
  56. }
  57. .form {
  58. text-align: center;
  59. margin: auto;
  60. min-width: 400px;
  61. }
  62. .form table {
  63. min-width: 250px;
  64. max-width: 600px;
  65. margin: auto;
  66. }
  67. .form td:nth-child(odd) { width: 160px; }
  68. .navbar {
  69. background-color: #323232;
  70. color: #ffffff;
  71. padding: 3px 6px 4px 6px;
  72. border-radius: 6px;
  73. border: solid 1px #444444;
  74. box-shadow: 0px 0px 6px #000000;
  75. margin: 0 auto;
  76. width: fit-content;
  77. }
  78. .navbar a {
  79. color: #0080FF;
  80. transition: ease-in color .5s;
  81. -moz-transition: ease-in color .5s;
  82. -webkit-transition: ease-in color .5s;
  83. -o-transition: ease-in color .5s;
  84. cursor: pointer;
  85. text-decoration: none;
  86. }
  87. .navbar a:hover {
  88. color: #0099FF;
  89. }
  90. .text { font-size: 14px; }
  91. @media only screen and (min-height: 2001px) { #msgs { height: 1700px; } }
  92. @media only screen and (max-height: 2000px) { #msgs { height: 1600px; } }
  93. @media only screen and (max-height: 1800px) { #msgs { height: 1400px; } }
  94. @media only screen and (max-height: 1400px) { #msgs { height: 1050px; } }
  95. @media only screen and (max-height: 1200px) { #msgs { height: 900px; } }
  96. @media only screen and (max-height: 1000px) { #msgs { height: 700px; } }
  97. @media only screen and (max-height: 900px) { #msgs { height: 600px; } }
  98. @media only screen and (max-height: 800px) { #msgs { height: 500px; } }
  99. @media only screen and (max-height: 700px) { #msgs { height: 400px; } }
  100. @media only screen and (max-height: 600px) { #msgs { height: 400px; } }
  101. @media only screen and (max-height: 500px) { #msgs { height: 400px; } }
  102. @media only screen and (max-height: 400px) { #msgs { height: 400px; } }
  103. #msg {
  104. height: 21px;
  105. }
  106. #msgbox {
  107. max-width: 90%;
  108. padding: 8px;
  109. height: 32px;
  110. margin: auto;
  111. }
  112. #msgs {
  113. padding: 5px;
  114. max-width: 90%;
  115. margin: auto;
  116. overflow-y: hidden;
  117. }
  118. #logmsgs {
  119. padding: 5px;
  120. max-width: 90%;
  121. margin: 0 auto;
  122. overflow-x: auto;
  123. }
  124. .clientcontain {
  125. padding: 0px 0px 0px 22px;
  126. margin: 0 auto;
  127. }
  128. #userlist {
  129. min-width: 110px;
  130. width: 110px;
  131. font-size: 14px;
  132. background-color: #292929;
  133. padding: 2px 5px 2px 5px;
  134. border-radius: 3px;
  135. border: solid 1px #333333;
  136. margin: 0;
  137. vertical-align: top;
  138. }
  139. #client {
  140. width: 100%;
  141. margin: 0;
  142. }
  143. #msgs tr:nth-child(even) { background-color: #333333; }
  144. #msgs tr:nth-child(odd) { background-color: #262626; }
  145. #msgs td:nth-child(even) { width: 80%; max-width: 950px; min-width: 320px; }
  146. #msgs td:nth-child(odd) { width: 20%; min-width: 120px; max-width: 190px; }
  147. #msgs td { padding: 0px 4px 0px 4px; border-radius: 3px; }
  148. #logmsgs tr:nth-child(even) { background-color: #333333; }
  149. #logmsgs tr:nth-child(odd) { background-color: #262626; }
  150. #logmsgs td:nth-child(even) { width: 80%; max-width: 950px; min-width: 320px; }
  151. #logmsgs td:nth-child(odd) { width: 20%; min-width: 120px; max-width: 190px; }
  152. #logmsgs td { padding: 0px 4px 0px 4px; border-radius: 3px; }
  153. #footer {
  154. text-align: center;
  155. font-size: 14px;
  156. padding: 8px;
  157. }