Update base.css

This commit is contained in:
Kaleb Efflandt 2024-02-14 14:34:49 -06:00 committed by GitHub
parent 2aec9724ff
commit 8782e2567c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 19 additions and 7 deletions

View File

@ -53,7 +53,7 @@ html {
}
.noVNC_disabled {
color: rgb(128, 128, 128);
color: rgb(120 115 198);
}
/* ----------------------------------------
@ -442,18 +442,17 @@ html {
visibility: hidden;
opacity: 0;
padding: 15px;
padding: 20px;
letter-spacing: 0.7px;
background: #bebaff;
border-radius: 15px;
color: #223;
/* border: 2px solid #E0E0E0; */
/* box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.5); */
}
.noVNC_panel.noVNC_open {
visibility: visible;
opacity: 1;
transform: translateX(75px);
transform: translateX(65px);
}
.noVNC_right .noVNC_vcenter {
left: auto;
@ -463,7 +462,7 @@ html {
transform: translateX(-25px);
}
.noVNC_right .noVNC_panel.noVNC_open {
transform: translateX(-75px);
transform: translateX(-60px);
}
.noVNC_panel > * {
@ -499,7 +498,6 @@ html {
padding: 5px;
/* Compensate for padding in image */
padding-right: 8px;
color: white;
font-size: 20px;
white-space: nowrap;
background-color: #223;
@ -930,3 +928,17 @@ html {
font-size: 90px;
}
}
/* Change checkboxes */
input[type=checkbox] {
background-color: #222233;
border: 1px solid #222233;
border-radius: 4px;
}
input[type=checkbox]:checked {
background-color: rgb(178 158 255);
border-color: rgb(178 158 255);
}