71 lines
1.3 KiB
CSS
71 lines
1.3 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
body {
|
|
flex-direction: row;
|
|
padding-top: 5vw;
|
|
display: flex;
|
|
background-color: #dbd7d7;
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #3d898c;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center ;
|
|
padding: 0 20px;
|
|
position: fixed; /* Fix the navbar at the top of the page */
|
|
top: 0; /* Position it at the very top */
|
|
width: 100%; /* Make it span the full width of the page */
|
|
z-index: 1000; /* Make sure it's above all other elements */
|
|
}
|
|
|
|
.navbar-nav {
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center; /* Center the links horizontally */
|
|
height: 100%;
|
|
width: 100%; /* Make it span the full width of the navbar */
|
|
}
|
|
|
|
.nav-item {
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#data-container {
|
|
padding: 20px;
|
|
background-color: #f5f5f5;
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.chart-container {
|
|
justify-content: center;
|
|
align-self: start;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.chart {
|
|
width: 30%;
|
|
margin: 20px;
|
|
padding: 20px;
|
|
background-color: #dbd7d7;
|
|
border: 3px solid #000;
|
|
border-radius: 30px;
|
|
}
|
|
|
|
canvas {
|
|
margin-bottom: 20px;
|
|
} |