Initial commit

This commit is contained in:
Yûki VACHOT 2024-05-12 17:24:49 +02:00
commit 282eb4c547
5 changed files with 142 additions and 0 deletions

29
styles.css Normal file
View file

@ -0,0 +1,29 @@
html, body {
height: 100vh;
margin: 0;
padding: 0;
background: lightgrey;
overflow: hidden;
}
#container {
position: relative;
width: 100vw;
height: 100vh;
background: white;
border: 1px solid #ccc;
overflow: hidden;
}
.graph-title {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 32px;
color: #333;
z-index: 5;
background-color: rgba(255, 255, 255, 0.8);
padding: 5px 10px;
border-radius: 5px;
}