Update style.css

This commit is contained in:
nin0dev 2024-06-01 21:43:04 -04:00 committed by GitHub
parent 512af2c975
commit ea3b2a0082
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,14 +12,7 @@ body {
#main-window { #main-window {
max-width: 600px; max-width: 600px;
} }
.window {
background-color: #202020;
color: white;
box-shadow: inset -1px -1px #000000,inset 1px 1px #202020,inset -2px -2px #151515,inset 2px 2px #404040;
}
.window .title-bar {
background: linear-gradient(90deg, navy, #0a52b1);
}
.window-body { .window-body {
padding: 10px; padding: 10px;
} }
@ -48,7 +41,7 @@ fieldset {
border-image: none; border-image: none;
} }
a { a {
color: cornflowerblue; color: blue;
} }
li { li {
padding: 2px; padding: 2px;
@ -70,11 +63,3 @@ li {
align-items: end; align-items: end;
justify-content: right; justify-content: right;
} }
button {
background-color: #404040;
color: white;
box-shadow: inset -1px -1px #000000, inset 1px 1px #202020, inset -2px -2px grey, inset 2px 2px #404040;
}
button:active {
box-shadow: inset -1px -1px #404040, inset 1px 1px #111111, inset -2px -2px #000000, inset 2px 2px #000000 !important;
}