From 6f872fe2f7fa2ee5cae749bdde5ad002d380b556 Mon Sep 17 00:00:00 2001 From: lost+skunk Date: Thu, 13 Jun 2024 23:56:03 +0300 Subject: альфа: работают только посты и поиск MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/skunky.css | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 css/skunky.css (limited to 'css') diff --git a/css/skunky.css b/css/skunky.css new file mode 100644 index 0000000..ef281ce --- /dev/null +++ b/css/skunky.css @@ -0,0 +1,81 @@ +html { + font-family: ubuntu; + background-color:black; + color: rgb(234, 216, 216); +} +a { + text-decoration: none; + color: cadetblue; +} +a:hover { + color: red; + transition: 400ms; +} +header h1 { + padding-right: 0.2%; +} +header form { + align-self: center; +} +header { + display: flex; +} +form input, button, select { + background-color: #134134; + padding: 5px; + color: whitesmoke; + border: 0px; + border-radius: 1px; +} +.nsfw, .true { + color: red; +} +.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; +} +.dd { + color: rgb(160, 0, 147); +} +.content { + border-radius: 3px; + display: flex; + flex-wrap: wrap; + justify-content: center; +} +.block { + max-width: 20%; + height: 0%; + padding: 4px; + border-radius: 2px; + border: 3px solid #091f19; + word-break: break-all; + background-color: #091f19; + margin-left: 5px; + margin-top: 5px; + text-align: center; +} +.block:hover { + border: 3px solid #4d27d6; + transition: 400ms; +} +.block img { + width: 100%; +} +.block p { + word-break: break-all; +} + -- cgit v1.2.3