Vehicle screen nearly finished.

This commit is contained in:
Max Stevenson 2020-09-10 13:52:33 -05:00
parent 380b8d5e8f
commit 2f2a787561
3 changed files with 24 additions and 1 deletions

View File

@ -1282,6 +1282,7 @@ body {
.vehicle-display__centre-wrapper {
flex: 0 0 78%;
padding: 0 0.75vw;
}
.vehicle-display__lower-wrapper {
@ -1311,6 +1312,7 @@ body {
}
.left-wrapper__location h4, .left-wrapper__labels h4, .left-wrapper__area h4, .right-wrapper__keys h4, .right-wrapper__level h4 {
width: 100%;
margin: 0;
}
.black-font-white-background {
@ -1330,4 +1332,13 @@ body {
color: white;
}
.left-wrapper__labels {
background: none;
}
.left-wrapper__labels h4 {
border: 0.1vw solid black;
margin: 0.25vw 0;
text-align: center;
}
/*# sourceMappingURL=styles.css.map */

File diff suppressed because one or more lines are too long

View File

@ -20,6 +20,7 @@
.vehicle-display__centre-wrapper {
flex: 0 0 78%;
padding: 0 .75vw;
}
.vehicle-display__lower-wrapper {
@ -50,6 +51,7 @@
h4 {
width: 100%;
margin: 0;
}
}
@ -69,4 +71,14 @@
.right-wrapper__level div:last-child h4 {
color: white;
}
.left-wrapper__labels {
background: none;
h4 {
border: .1vw solid black;
margin: .25vw 0;
text-align: center;
}
}