mirror of
https://github.com/PotentiaRobotics/robot-gui.git
synced 2025-04-09 14:20:16 -04:00
Added common css to make it easier for other 2 modes
This commit is contained in:
parent
507bd2eacc
commit
c8289c94d0
24
bare/common.css
Normal file
24
bare/common.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
* {
|
||||
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;
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="common.css" />
|
||||
<link rel="stylesheet" href="style.css" />
|
||||
<title>Document</title>
|
||||
</head>
|
||||
|
|
|
@ -1,28 +1,3 @@
|
|||
* {
|
||||
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;
|
||||
}
|
||||
|
||||
.robotimg {
|
||||
height: 99.5vh;
|
||||
width: 32vw;
|
||||
|
|
Loading…
Reference in New Issue
Block a user