From 8782e2567c4c155fe7ec6a176d4958ea13b0eeea Mon Sep 17 00:00:00 2001 From: Kaleb Efflandt <72526467+macarooni-man@users.noreply.github.com> Date: Wed, 14 Feb 2024 14:34:49 -0600 Subject: [PATCH] Update base.css --- app/styles/base.css | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/app/styles/base.css b/app/styles/base.css index 74569d79..8e4db953 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -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); +} + +