53 lines
693 B
CSS
53 lines
693 B
CSS
/* ::root{ */
|
|
/* --accent: #5291e2; */
|
|
/* --dark: #383C4A; */
|
|
/* --light: #7C818C; */
|
|
/* --ld: #404552; */
|
|
/* --dl: #4B5162 */
|
|
/* --white: white; */
|
|
/* } */
|
|
|
|
window {
|
|
background-color: #7C818C;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
border-radius: 0px;
|
|
border: none;
|
|
border-bottom: 3px solid black;
|
|
background-color: #383C4A;
|
|
color: white;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: #383C4A;
|
|
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
padding:20px;
|
|
background-color: #383C4A;
|
|
}
|
|
|
|
#scroll {
|
|
}
|
|
|
|
#text {
|
|
padding: 5px;
|
|
color: white;
|
|
}
|
|
|
|
#entry:nth-child(even){
|
|
background-color: #404552;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #5291e2;
|
|
}
|
|
|
|
#text:selected {
|
|
}
|
|
|