Lstm_prediction/lstm_prediction/public/assets/css/style.css

104 lines
1.6 KiB
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #f4f6f9;
padding: 20px;
}
.navbar {
width: 100%;
height: 60px;
background: #007bff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.charts-container {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}
.chart-wrapper {
flex: 1;
min-width: 350px;
max-width: 500px;
background: white;
padding: 15px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
canvas {
width: 100% !important;
height: 300px !important;
}
.prediction-container {
margin-top: 20px;
padding: 15px;
background: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.prediction-container p {
font-size: 18px;
margin: 5px 0;
}
.table-container {
max-width: 1200px;
margin: auto;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
margin-bottom: 15px;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
padding: 10px;
text-align: center;
border: 1px solid #ddd;
}
th {
background-color: #007bff;
color: white;
}
tbody tr:nth-child(even) {
background-color: #f9f9f9;
}