skunky.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /* TAGS */
  2. html {
  3. font-family: ubuntu, system-ui;
  4. background-color:black;
  5. color: rgb(234, 216, 216);
  6. }
  7. a {
  8. text-decoration: none;
  9. color: cadetblue;
  10. }
  11. a:hover {
  12. color: #d0ff00;
  13. transition: 400ms;
  14. }
  15. header h1 {
  16. padding-right: 0.2%;
  17. padding-left: 0.2%;
  18. }
  19. header form {
  20. align-self: center;
  21. }
  22. header, form {
  23. display: flex;
  24. }
  25. form {
  26. border: solid #164e3e 1px;
  27. max-width: fit-content;
  28. }
  29. form input, button, select {
  30. background-color: #134134;
  31. padding: 5px;
  32. color: whitesmoke;
  33. border: 0;
  34. }
  35. input:focus {
  36. outline: none;
  37. }
  38. /* BLOCKS */
  39. .content {
  40. align-items: center;
  41. border-radius: 3px;
  42. display: flex;
  43. flex-wrap: wrap;
  44. justify-content: center;
  45. }
  46. .block {
  47. padding: 0px 0px 6px 0px;
  48. border: 3px solid #000;
  49. word-break: break-all;
  50. background-color: #091f19;
  51. margin-left: 5px;
  52. margin-top: 5px;
  53. text-align: center;
  54. }
  55. .block h1 {
  56. padding: 8.5vh;
  57. }
  58. .block:hover {
  59. border: 3px solid #4d27d6;
  60. transition: 400ms;
  61. }
  62. .block p {
  63. word-break: break-all;
  64. }
  65. /* MESSAGES */
  66. .msg {
  67. background-color: #091f19;
  68. color: whitesmoke;
  69. width: fit-content;
  70. max-width: 90%;
  71. padding: 4px;
  72. border-radius: 2px;
  73. margin-top: 6px;
  74. text-wrap: pretty;
  75. transition: 350ms;
  76. }
  77. .msg:hover {
  78. background-color: #134134;
  79. }
  80. .reply {
  81. border-radius: 0px 2px 2px 0px;
  82. border-left: #258268 solid;
  83. margin-left: 40px;
  84. }
  85. /* FOLDER & PLATES */
  86. .folders, .plates {
  87. display: flex;
  88. flex-wrap: wrap;
  89. }
  90. .folder-item {
  91. background-color: #060820;
  92. border: 3px solid #060820;
  93. width: 10%
  94. }
  95. .admins .user-plate {
  96. width: 5%;
  97. background-color: #011522;
  98. }
  99. .plates .user-plate {
  100. margin-left: 1%;
  101. margin-bottom: 1%;
  102. background-color: #091f19;
  103. padding: 3px;
  104. word-break: break-all;
  105. text-align: center;
  106. max-width: 15%;
  107. }
  108. /* USER/GROUP BACKGROUNDS */
  109. .ubg {
  110. display: flex;
  111. flex-wrap: wrap;
  112. justify-content: center;
  113. }
  114. .ubg img {
  115. width: 20%;
  116. }
  117. /* COLORS */
  118. .nsfw, .about-false {
  119. color: red;
  120. }
  121. .about-true {
  122. color: green;
  123. }
  124. .author {
  125. color: seagreen;
  126. }
  127. .dd {
  128. color: rgb(160, 0, 147);
  129. }
  130. /* SCREEN OPTIMISATIONS */
  131. @media (orientation: portrait) {
  132. * {
  133. font-size: 120%
  134. }
  135. ul {
  136. font-size: 80%
  137. }
  138. header {
  139. margin-left: 3%;
  140. text-align: center;
  141. display: inline-block;
  142. clear: both;
  143. font-size: 200%;
  144. }
  145. form {
  146. font-size: 60%;
  147. border: solid #164e3e 5px;
  148. }
  149. .content {
  150. margin: auto;
  151. display: inherit;
  152. scale: 100%;
  153. }
  154. .block {
  155. margin-top: 10%;
  156. max-width: 200%;
  157. }
  158. .folder-item {
  159. width: 25%
  160. }
  161. .folders {
  162. display: flexbox;
  163. justify-content: center
  164. }
  165. figure img {
  166. width: 10%
  167. }
  168. figure a img {
  169. width: 100%
  170. }
  171. .msg {
  172. font-size: 60%;
  173. max-width: 80%
  174. }
  175. .block img, .plates .user-plate img {
  176. width: 100%;
  177. }
  178. }
  179. @media (orientation: landscape) {
  180. .block {
  181. width: 20%;
  182. }
  183. .block img, .plates .user-plate img {
  184. width: 100%;
  185. height: 30vh;
  186. object-fit: cover;
  187. }
  188. }
  189. @media (max-width: 1462px) and (orientation: landscape) {
  190. .block {
  191. max-width: 30%;
  192. }
  193. }
  194. @media (min-width: 788px) and (max-width: 884px) {
  195. .block {
  196. max-width: 35%;
  197. }
  198. }