-
Notifications
You must be signed in to change notification settings - Fork 1
/
css.css
116 lines (98 loc) · 1.89 KB
/
css.css
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
padding: 30px;
padding-bottom: 40px;
}
h1, h2, h3 {
text-align: center;
}
h4 {
text-align:justify;
text-align: center;
}
p {
text-align: justify;
max-width: 600px;
margin: 0 auto;
}
.image-container{
text-align: center;
margin: 20px 0;
}
.image-container img {
max-width: 100%;
height: auto;
}
body {
background-color: #f5f5f5;
}
body {
background: linear-gradient(
to bottom,
#f5f5f5 0%,
#f5f5f5 40%,
#0088ff 40%,
#0088ff 90%,
#f5f5f5 90%
);
height: 100vh;
margin: 0;
}
h5, h6 {
color: #f5f5f5;
}
.container {
text-align: center;
margin-top: 50px;
}
.location-name {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
img {
width: 600px;
height: 400px;
margin-bottom: 20px;
}
.chart {
width: 600px;
margin: 20px auto;
}
.bar {
display: flex;
margin-bottom: 10px;
}
.bar-label {
width: 100px;
font-weight: bold;
}
.bar-outer {
width: 500px;
background-color: #e0e0e0;
border-radius: 5px;
overflow: hidden;
}
.bar-inner {
height: 24px;
border-radius: 5px;
}
.low { background-color: #F44336; }
.medium-low { background-color: #FF9800; }
.medium { background-color: #f2c201; }
.high { background-color: #8BC34A; }
.very-high { background-color: #4CAF50; }
.buttons {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 100px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin-bottom: 100px;
}