30 lines
473 B
CSS
30 lines
473 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Roboto", sans-serif;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.gui {
|
||
|
position: absolute;
|
||
|
top: 10px;
|
||
|
left: 10px;
|
||
|
z-index: 100;
|
||
|
background: rgba(255, 255, 255, 0.0666666667);
|
||
|
color: #ffffff;
|
||
|
padding: 15px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
.gui .label {
|
||
|
text-transform: uppercase;
|
||
|
font-size: 12px;
|
||
|
font-weight: 700;
|
||
|
color: rgba(255, 255, 255, 0.5333333333);
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=main.css.map */
|