File size: 1,405 Bytes
27236c5 a472415 27236c5 a472415 27236c5 a472415 27236c5 a472415 27236c5 a472415 27236c5 a472415 27236c5 a472415 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
/* Base Layout */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
color: #333;
}
.container {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}
/* Header */
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
font-size: 2.2em;
margin-bottom: 5px;
}
header .subtitle {
font-size: 1em;
color: #555;
}
/* Cards */
.card {
background-color: #fff;
border-radius: 8px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 8px 12px;
text-align: center;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f7f7f7;
color: #333;
}
tr:hover {
background-color: #f1f1f1;
}
/* Buttons */
button {
background-color: #4CAF50;
color: white;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
/* Drift Chart */
#drift-chart {
min-height: 300px;
}
/* Responsive */
@media(max-width: 768px){
.container {
padding: 0 10px;
}
table, th, td {
font-size: 0.9em;
}
}
/* Footer */
footer {
text-align: center;
font-size: 0.85em;
color: #777;
margin-top: 40px;
}
|