💄 modify colors, organize css
This commit is contained in:
+19
-29
@@ -1,29 +1,29 @@
|
|||||||
|
|
||||||
:root {
|
/* background -> #312D23
|
||||||
--base: #1e1e2e;
|
* selected -> #AC8A3D
|
||||||
--dark: #1b1b30;
|
* highlight-low(not-selected) -> #726037
|
||||||
--crust: #11111b;
|
*/
|
||||||
--text: #cdd6f4;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
outline: none;
|
outline: none;
|
||||||
|
font-family: "0xProto Nerd Font Regular", otf-font-awesome, Cantarell, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
#outer-box {
|
#outer-box {
|
||||||
border: 3px solid #1b1b26;
|
border: 3px solid shade(#312D23, .8);
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
background-color: #1e1e2e;
|
background-color: #312D23;
|
||||||
border-radius: 12px;
|
border-radius: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#text {
|
#text {
|
||||||
font-family: system-ui, sans-serif;
|
font-family: system-ui, sans-serif;
|
||||||
transition: 50ms ease-in;
|
transition: 50ms ease-in;
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
#text:selected {
|
#text:selected {
|
||||||
@@ -31,34 +31,24 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#input {
|
#input {
|
||||||
border: 2px solid darkgray;
|
border: 2px solid shade(#AC8A3D, .8);
|
||||||
border-radius: 10px;
|
border-radius: 14px;
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
background-color: #11111b;
|
background-color: shade(#726037, .7);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#input:selected {
|
|
||||||
background: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
#scroll {
|
|
||||||
border-bottom: 1px solid #1b1b26;
|
|
||||||
border-radius: 6px 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
#entry {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
margin: 0px 6px;
|
margin: 2px 6px;
|
||||||
padding-top: 6px;
|
padding-top: 7px;
|
||||||
padding-bottom: 4px;
|
padding-bottom: 5px;
|
||||||
transition: 80ms ease-in;
|
transition: 75ms ease-in;
|
||||||
font-size: 1em;
|
font-size: 1.02em;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
background-color: #38384a;
|
background-color: shade(#AC8A3D, .5);
|
||||||
outline: none;
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user