Spaces:
Running
Running
File size: 866 Bytes
728801d 3f63dc8 728801d 3f63dc8 728801d 3f63dc8 6e5511f 728801d 3f63dc8 728801d 3f63dc8 728801d |
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 |
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f8f9fa;
color: #333;
}
.container {
width: 85%;
margin: auto;
text-align: center;
}
.header {
background: white;
padding: 15px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: left;
}
.header h1 {
font-size: 20px;
margin-bottom: 10px;
}
.header a {
color: #007bff;
text-decoration: none;
}
.heatmap-container {
display: flex;
justify-content: center;
align-items: start;
margin-top: 20px;
}
#heatmap {
flex: 1;
padding: 10px;
}
.legend {
width: 150px;
text-align: left;
margin-left: 20px;
}
.legend h3 {
font-size: 16px;
margin-bottom: 8px;
}
.color-scale {
width: 100%;
height: 20px;
background: linear-gradient(to right, #e0f3f8, #abd9e9, #74add1, #4575b4);
border-radius: 5px;
}
|