mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-09 22:30:16 -04:00
25 lines
448 B
CSS
25 lines
448 B
CSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
background-color: #181c20;
|
|
color: white;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.main-container {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: stretch;
|
|
background-color: black;
|
|
gap: 0.33333333vw;
|
|
height: 99.5vh;
|
|
}
|
|
.main-element {
|
|
display: inline-block;
|
|
height: 99.5vh;
|
|
width: 32vw;
|
|
text-align: center;
|
|
background-color: #181c20;
|
|
position: relative;
|
|
}
|