Matrix-SNH.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. body {
  2. background-color: #000000;
  3. color: #00FF00;
  4. font-family: 'Courier New', monospace;
  5. line-height: 1.5;
  6. font-size: 16px;
  7. }
  8. header, footer {
  9. background-color: #000000;
  10. color: #00FF00;
  11. padding: 20px;
  12. text-align: center;
  13. border-bottom: 2px solid #00FF00;
  14. font-size: 18px;
  15. }
  16. footer {
  17. border-top: 2px solid #00FF00;
  18. }
  19. .sidebar-left, .sidebar-right {
  20. background-color: #000000;
  21. color: #00FF00;
  22. border-right: 2px solid #00FF00;
  23. padding: 15px;
  24. margin-bottom: 10px;
  25. }
  26. .main-column {
  27. background-color: #000000;
  28. color: #00FF00;
  29. padding: 20px;
  30. border-left: 2px solid #00FF00;
  31. margin-bottom: 20px;
  32. }
  33. button, input[type="submit"], input[type="button"] {
  34. background-color: #000000;
  35. color: #00FF00;
  36. border: 2px solid #00FF00;
  37. border-radius: 8px;
  38. padding: 10px 20px;
  39. cursor: pointer;
  40. font-family: 'Courier New', monospace;
  41. text-transform: none;
  42. font-size: 16px;
  43. }
  44. button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  45. background-color: #00FF00;
  46. color: #000000;
  47. border-color: #00FF00;
  48. box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
  49. }
  50. input, textarea, select {
  51. background-color: #1A1A1A;
  52. color: #00FF00;
  53. border: 1px solid #00FF00;
  54. border-radius: 5px;
  55. padding: 10px;
  56. font-family: 'Courier New', monospace;
  57. font-size: 16px;
  58. }
  59. a {
  60. color: #00FF00;
  61. text-decoration: none;
  62. font-weight: normal;
  63. font-size: 16px;
  64. }
  65. table {
  66. background-color: #000000;
  67. color: #00FF00;
  68. width: 100%;
  69. border: 1px solid #00FF00;
  70. font-size: 16px;
  71. }
  72. table th {
  73. background-color: #00FF00;
  74. color: #000000;
  75. }
  76. table tr:nth-child(even) {
  77. background-color: #1A1A1A;
  78. }
  79. nav ul {
  80. background-color: #000000;
  81. padding: 0;
  82. margin: 0;
  83. border-bottom: 2px solid #00FF00;
  84. }
  85. nav ul li {
  86. display: inline-block;
  87. margin-right: 10px;
  88. }
  89. nav ul li a {
  90. color: #00FF00;
  91. padding: 10px;
  92. display: inline-block;
  93. font-family: 'Courier New', monospace;
  94. text-transform: none;
  95. font-size: 16px;
  96. }
  97. .profile {
  98. background-color: #1A1A1A;
  99. color: #00FF00;
  100. padding: 20px;
  101. border-radius: 8px;
  102. border: 1px solid #00FF00;
  103. box-shadow: 0 2px 5px rgba(0,255,0,0.5);
  104. }
  105. .profile .name {
  106. color: #00FF00;
  107. font-size: 18px;
  108. font-weight: bold;
  109. }
  110. .avatar {
  111. border: 4px solid #00FF00;
  112. border-radius: 50%;
  113. width: 80px;
  114. height: 80px;
  115. margin-bottom: 10px;
  116. }
  117. article, section {
  118. background-color: #1A1A1A;
  119. color: #00FF00;
  120. padding: 20px;
  121. border-radius: 10px;
  122. border: 1px solid #00FF00;
  123. box-shadow: 0 4px 10px rgba(0, 255, 0, 0.5);
  124. }
  125. .post-preview {
  126. background-color: #00FF00;
  127. padding: 15px;
  128. border-radius: 8px;
  129. color: #000000;
  130. }
  131. .post-preview img {
  132. border-radius: 8px;
  133. max-width: 100%;
  134. }
  135. .post-preview .image-container {
  136. display: block;
  137. margin: 0 auto;
  138. max-width: 100%;
  139. overflow: hidden;
  140. }
  141. ::-webkit-scrollbar {
  142. width: 12px;
  143. }
  144. ::-webkit-scrollbar-thumb {
  145. background-color: #00FF00;
  146. border-radius: 10px;
  147. }
  148. ::-webkit-scrollbar-track {
  149. background-color: #000000;
  150. }
  151. .action-container {
  152. background-color: #1A1A1A;
  153. border: 2px solid #00FF00;
  154. padding: 20px;
  155. border-radius: 8px;
  156. color: #00FF00;
  157. box-shadow: 0 2px 5px rgba(0, 255, 0, 0.5);
  158. }
  159. footer a {
  160. background-color: #00FF00;
  161. color: #000000;
  162. padding: 8px 20px;
  163. border-radius: 5px;
  164. text-decoration: none;
  165. }