first commit

This commit is contained in:
DU CASSOULET
2024-01-26 19:03:27 +01:00
parent 94a6e93b89
commit ba53f23f30
7 changed files with 291 additions and 1 deletions

29
style/main.css Normal file
View File

@@ -0,0 +1,29 @@
* {
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 */

1
style/main.css.map Normal file
View File

@@ -0,0 +1 @@
{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"AAAA;EACC;EACA;EACA;;;AAGD;EACC;EACA;;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA","file":"main.css"}

28
style/main.scss Normal file
View File

@@ -0,0 +1,28 @@
* {
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;
}
}