62 lines
1.0 KiB
CSS
62 lines
1.0 KiB
CSS
.air-quality-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 800px;
|
|
/* Adjust width as needed */
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.chart-container {
|
|
background-color: #f5f5f5;
|
|
padding: 20px;
|
|
position: relative;
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
justify-content: space-around; /* Change this value to adjust the spacing */
|
|
margin: 20px 0;
|
|
}
|
|
|
|
|
|
#download-container {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 20px; /* Adjust the margin-top for spacing */
|
|
|
|
}
|
|
|
|
button {
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
padding: 5px 10px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.data-table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
.graphbutton-container {
|
|
display: flex;
|
|
justify-content: center; /* Center the buttons horizontally */
|
|
margin: 20px 0;
|
|
}
|
|
|
|
button#barButton,
|
|
button#lineButton {
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
padding: 5px 10px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
|
|
|
|
|