From f0c6bf3add3744ff901a908b419cc30e9da4b39d Mon Sep 17 00:00:00 2001 From: Dan Date: Wed, 13 Nov 2019 09:28:03 +0000 Subject: [PATCH] Created the mode display --- nui/radar.css | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/nui/radar.css b/nui/radar.css index 4d3ed4d..d3f8d13 100644 --- a/nui/radar.css +++ b/nui/radar.css @@ -24,7 +24,7 @@ div { background-color: rgb(30, 33, 38); display: grid; - grid-template-columns: repeat( 7, auto ); + grid-template-columns: 50px repeat( 6, auto ); } #radar > div { border: 1px solid orange; @@ -35,11 +35,25 @@ div { display: grid; grid-template-rows: 50% 50%; } + #radar .modes div { + display: grid; + grid-template-rows: repeat( 3, auto ); + + margin: 15px 0; + + border: 1px dotted red; + } + #radar .modes .mode_text { + width: 100%; + font-family: Verdana; - font-size: 10px; - line-height: 27px; - margin-left: 13px; + font-size: 12px; + + text-align: center; + + margin: auto; + color: white; }