Created the mode display

This commit is contained in:
Dan
2019-11-13 09:28:03 +00:00
parent d37d70546f
commit f0c6bf3add

View File

@@ -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;
}