From 11c42be08e3c8a5d9ec0c54330bc449b3fc0c52e Mon Sep 17 00:00:00 2001 From: JackBro <33984760+JackBro2022@users.noreply.github.com> Date: Tue, 26 Apr 2022 18:35:40 +1000 Subject: [PATCH] Additional fixes to 4K scaling --- html/css/style.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/html/css/style.css b/html/css/style.css index 4581314..5842d7a 100644 --- a/html/css/style.css +++ b/html/css/style.css @@ -2,6 +2,49 @@ html::-webkit-scrollbar { display: none; } +@media (width: 3840px) and (height: 2160px) { + .success { + background-color: rgba(23, 23, 23, 90%); + border-radius: 10px; + box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; + border-left: 0.5rem solid #20bb44; + font-size: 1.5vh; + } + + .primary { + background-color: rgba(23, 23, 23, 90%); + border-radius: 10px; + box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; + border-left: 5px solid #1c75d2; + font-size: 1.5vh; + } + + .error { + background-color: rgba(23, 23, 23, 90%); + border-radius: 10px; + box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; + border-left: 5px solid #c10114; + font-size: 1.5vh; + } + + .police { + background-color: rgba(23, 23, 23, 90%); + border-radius: 10px; + box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; + border-left: 5px solid #2197f2; + font-size: 1.5vh; + } + + .ambulance { + background-color: rgba(23, 23, 23, 90%); + border-radius: 10px; + box-shadow: 0rem 0rem 0.1rem 0.05rem #000000; + border-left: 5px solid #f44236; + font-size: 1.5vh; + } + +} + .success { background-color: rgba(23, 23, 23, 90%); border-radius: 10px;