skunky.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /* TAGS */
  2. html {
  3. font-family: Ubuntu;
  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. max-width: 20%;
  48. height: 0%;
  49. padding: 4px;
  50. border-radius: 2px;
  51. border: 3px solid #091f19;
  52. word-break: break-all;
  53. background-color: #091f19;
  54. margin-left: 5px;
  55. margin-top: 5px;
  56. text-align: center;
  57. }
  58. .block:hover {
  59. border: 3px solid #4d27d6;
  60. transition: 400ms;
  61. }
  62. .block img, .plates .user-plate img {
  63. width: 100%;
  64. }
  65. .block p {
  66. word-break: break-all;
  67. }
  68. /* MESSAGES */
  69. .msg {
  70. background-color: #091f19;
  71. color: whitesmoke;
  72. width: fit-content;
  73. max-width: 90%;
  74. padding: 4px;
  75. border-radius: 2px;
  76. margin-top: 6px;
  77. text-wrap: pretty;
  78. transition: 350ms;
  79. }
  80. .msg:hover {
  81. background-color: #134134;
  82. }
  83. .reply {
  84. border-radius: 0px 2px 2px 0px;
  85. border-left: #258268 solid;
  86. margin-left: 40px;
  87. }
  88. /* FOLDER & PLATES */
  89. .folders, .plates {
  90. display: flex;
  91. flex-wrap: wrap;
  92. }
  93. .folder-item {
  94. background-color: #060820;
  95. border: 3px solid #060820;
  96. width: 10%
  97. }
  98. .admins .user-plate {
  99. width: 5%;
  100. background-color: #011522;
  101. }
  102. .plates .user-plate {
  103. margin-left: 1%;
  104. margin-bottom: 1%;
  105. background-color: #091f19;
  106. padding: 3px;
  107. word-break: break-all;
  108. text-align: center;
  109. max-width: 15%;
  110. }
  111. /* USER/GROUP BACKGROUNDS */
  112. .ubg {
  113. display: flex;
  114. flex-wrap: wrap;
  115. justify-content: center;
  116. }
  117. .ubg img {
  118. width: 20%;
  119. }
  120. /* COLORS */
  121. .nsfw, .about-false {
  122. color: red;
  123. }
  124. .about-true {
  125. color: green;
  126. }
  127. .author {
  128. color: seagreen;
  129. }
  130. .dd {
  131. color: rgb(160, 0, 147);
  132. }
  133. /* SCREEN OPTIMISATIONS */
  134. @media (orientation: portrait) {
  135. * {
  136. font-size: 120%
  137. }
  138. ul {
  139. font-size: 80%
  140. }
  141. header {
  142. margin-left: 3%;
  143. text-align: center;
  144. display: inline-block;
  145. clear: both;
  146. font-size: 200%;
  147. }
  148. form {
  149. font-size: 60%;
  150. border: solid #164e3e 5px;
  151. }
  152. .content {
  153. margin: auto;
  154. display: inherit;
  155. scale: 100%;
  156. }
  157. .block {
  158. margin-top: 10%;
  159. max-width: 200%;
  160. }
  161. .folder-item {
  162. width: 25%
  163. }
  164. .folders {
  165. display: flexbox;
  166. justify-content: center
  167. }
  168. figure img {
  169. width: 10%
  170. }
  171. figure a img {
  172. width: 100%
  173. }
  174. .msg {
  175. font-size: 60%;
  176. max-width: 80%
  177. }
  178. }
  179. @media (max-width: 1462px) and (orientation: landscape) {
  180. .block {
  181. max-width: 30%;
  182. }
  183. }
  184. @media (min-width: 788px) and (max-width: 884px) {
  185. .block {
  186. max-width: 35%;
  187. }
  188. }