29 lines
372 B
SCSS
29 lines
372 B
SCSS
|
* {
|
||
|
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: #ffffff11;
|
||
|
color: #ffffff;
|
||
|
padding: 15px;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
.label {
|
||
|
text-transform: uppercase;
|
||
|
font-size: 12px;
|
||
|
font-weight: 700;
|
||
|
color: #ffffff88;
|
||
|
}
|
||
|
}
|