-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (60 loc) · 1.03 KB
/
styles.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
:root { --header-height: 150px; }
body {
background: #CCCCFF;
font-family: bahnschrift;
margin: 0;
}
header {
position: relative;
width: calc(100% - 200px);
height: var(--header-height);
line-height: var(--header-height);
}
.title {
margin: 0;
text-align: center;
vertical-align: middle;
}
.clima { float: right; }
main { padding: 10px; }
h1 {
font-family: verdana;
font-size: 3.3vw;
color: #FA5500;
text-decoration: underline;
}
h2 {
font-size: 1.76vw;
text-align: left;
color: #2E4ED9;
}
p {
font-size: 1.32vw;
text-align: justify;
color: #151550;
}
table {
text-align: center;
margin: 0 auto;
width: 80%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
font-family: verdana;
}
thead {
background: #003333;
color: white;
font-size: 1.45vw;
}
tbody {
background: rgba(51, 102, 102, 0.4);
font-size: verdana;
}
.data {
display: block;
margin: auto;
text-align: center;
}