diff options
Diffstat (limited to 'css/skunky.css')
| -rw-r--r-- | css/skunky.css | 102 |
1 files changed, 57 insertions, 45 deletions
diff --git a/css/skunky.css b/css/skunky.css index 2abc92f..9d041f0 100644 --- a/css/skunky.css +++ b/css/skunky.css @@ -1,5 +1,6 @@ +/* TAGS */ html { - font-family: ubuntu; + font-family: Ubuntu; background-color:black; color: rgb(234, 216, 216); } @@ -8,7 +9,7 @@ a { color: cadetblue; } a:hover { - color: yellow; + color: #d0ff00; transition: 400ms; } header h1 { @@ -28,37 +29,8 @@ form input, button, select { border: 0px; border-radius: 1px; } -.nsfw, .about-false { - color: red; -} -.about-true { - color: green; -} -.author { - color: seagreen; -} -.msg { - background-color: #091f19; - color: whitesmoke; - width: fit-content; - max-width: 90%; - padding: 4px; - border-radius: 2px; - margin-top: 6px; - text-wrap: pretty; - transition: 350ms; -} -.msg:hover { - background-color: #134134; -} -.reply { - border-radius: 0px 2px 2px 0px; - border-left: #258268 solid; - margin-left: 40px; -} -.dd { - color: rgb(160, 0, 147); -} + +/* BLOCKS */ .content { align-items: center; border-radius: 3px; @@ -82,29 +54,43 @@ form input, button, select { border: 3px solid #4d27d6; transition: 400ms; } -.block img, .plates .user-plate img{ +.block img, .plates .user-plate img { width: 100%; } .block p { word-break: break-all; } -.ubg { - display: flex; - flex-wrap: wrap; - justify-content: center; + +/* MESSAGES */ +.msg { + background-color: #091f19; + color: whitesmoke; + width: fit-content; + max-width: 90%; + padding: 4px; + border-radius: 2px; + margin-top: 6px; + text-wrap: pretty; + transition: 350ms; } -.ubg img { - width: 20%; +.msg:hover { + background-color: #134134; } -.folders { - display: flex +.reply { + border-radius: 0px 2px 2px 0px; + border-left: #258268 solid; + margin-left: 40px; +} + +/* FOLDER & PLATES */ +.folders, .plates { + display: flex; + flex-wrap: wrap; } .folder-item { background-color: #060820; border: 3px solid #060820; -} -.plates { - display: flex + width: 10% } .admins .user-plate { width: 5%; @@ -112,6 +98,7 @@ form input, button, select { } .plates .user-plate { margin-left: 1%; + margin-bottom: 1%; background-color: #091f19; padding: 3px; word-break: break-all; @@ -119,6 +106,31 @@ form input, button, select { max-width: 15%; } +/* USER/GROUP BACKGROUNDS */ +.ubg { + display: flex; + flex-wrap: wrap; + justify-content: center; +} +.ubg img { + width: 20%; +} + +/* COLORS */ +.nsfw, .about-false { + color: red; +} +.about-true { + color: green; +} +.author { + color: seagreen; +} +.dd { + color: rgb(160, 0, 147); +} + +/* SCREEN OPTIMISATIONS */ @media screen and (orientation: portrait) { header { scale: 155%; |
