1
0
mirror of https://github.com/coalaura/whiskr.git synced 2025-12-02 20:22:52 +00:00

cleanup css files

This commit is contained in:
Laura
2025-11-04 21:10:17 +01:00
parent f3686c23df
commit 16449d05c6
4 changed files with 36 additions and 34 deletions

View File

@@ -1397,7 +1397,6 @@ label[for="reasoning-tokens"] {
} }
@keyframes swivel { @keyframes swivel {
0%, 0%,
100% { 100% {
left: 0px; left: 0px;
@@ -1410,7 +1409,6 @@ label[for="reasoning-tokens"] {
} }
@keyframes bounce { @keyframes bounce {
0%, 0%,
75%, 75%,
100% { 100% {

View File

@@ -35,7 +35,9 @@
flex-direction: column; flex-direction: column;
background: #363a4f; background: #363a4f;
max-height: 250px; max-height: 250px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1); box-shadow:
0 1px 2px rgba(0, 0, 0, 0.05),
0 1px 3px rgba(0, 0, 0, 0.1);
border: 1px solid #494d64; border: 1px solid #494d64;
} }
@@ -96,27 +98,27 @@
} }
.tags .tag.reasoning { .tags .tag.reasoning {
background-image: url(icons/tags/reasoning.svg) background-image: url(icons/tags/reasoning.svg);
} }
.tags .tag.tools { .tags .tag.tools {
background-image: url(icons/tags/tools.svg) background-image: url(icons/tags/tools.svg);
} }
.tags .tag.vision { .tags .tag.vision {
background-image: url(icons/tags/vision.svg) background-image: url(icons/tags/vision.svg);
} }
.tags .tag.json { .tags .tag.json {
background-image: url(icons/tags/json.svg) background-image: url(icons/tags/json.svg);
} }
.tags .tag.image { .tags .tag.image {
background-image: url(icons/tags/image.svg) background-image: url(icons/tags/image.svg);
} }
.tags .tag.all { .tags .tag.all {
background-image: url(icons/tags/all.svg) background-image: url(icons/tags/all.svg);
} }
.dropdown .search { .dropdown .search {

View File

@@ -1,7 +1,7 @@
.markdown { .markdown {
font-size: 15px; font-size: 15px;
line-height: 23px; line-height: 23px;
color: #CAD3F5; color: #cad3f5;
overflow: hidden; overflow: hidden;
word-wrap: break-word; word-wrap: break-word;
} }
@@ -59,15 +59,17 @@
} }
.markdown a { .markdown a {
color: #8AADF4; color: #8aadf4;
text-decoration: none; text-decoration: none;
font-weight: 500; font-weight: 500;
transition: color 150ms ease, text-decoration-color 150ms ease; transition:
color 150ms ease,
text-decoration-color 150ms ease;
} }
.markdown a:hover, .markdown a:hover,
.markdown a:focus { .markdown a:focus {
color: #B7BDF8; color: #b7bdf8;
text-decoration: underline; text-decoration: underline;
text-decoration-color: rgba(183, 189, 248, 0.6); text-decoration-color: rgba(183, 189, 248, 0.6);
} }
@@ -84,9 +86,9 @@
.markdown blockquote { .markdown blockquote {
padding: 10px 16px; padding: 10px 16px;
border-left: 4px solid #8AADF4; border-left: 4px solid #8aadf4;
background: rgba(138, 173, 244, 0.05); background: rgba(138, 173, 244, 0.05);
color: #CAD3F5; color: #cad3f5;
font-style: italic; font-style: italic;
border-radius: 4px; border-radius: 4px;
} }
@@ -124,7 +126,7 @@
.markdown th { .markdown th {
background: rgba(165, 173, 203, 0.07); background: rgba(165, 173, 203, 0.07);
font-weight: 600; font-weight: 600;
color: #CAD3F5; color: #cad3f5;
} }
.markdown tr:nth-child(even) td { .markdown tr:nth-child(even) td {
@@ -189,7 +191,7 @@
} }
.markdown hr { .markdown hr {
color: #5F6386; color: #5f6386;
margin: 25px 0; margin: 25px 0;
} }