forked from code4policy/dataviz-with-chatgpt-femiolamijulo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
58 lines (51 loc) · 890 Bytes
/
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
body {
font-family: 'Roboto', sans-serif;
background-color: whitesmoke;
color: black;
margin: 20px;
}
header {
text-align: left;
margin-bottom: 10px;
}
svg {
padding: 10px;
background-color: #f8f9fa;
border-radius: 8px;
margin-top: 10px;
}
h1 {
color: black;
font-size: 2em;
margin-bottom: 0;
transition: color 0.3s;
}
p {
line-height: 1.5;
font-size: 1.2em;
margin-top: 0;
margin-bottom: 20px;
font-weight: bold;
transition: color 0.3s;
}
h1:hover,
p:hover {
color: #007bff;
}
#attribution {
text-align: center;
position: absolute;
bottom: 10px;
width: 100%;
}
.tooltip {
position: absolute;
text-align: center;
padding: 8px;
font-size: 14px;
background: lightgray;
border: 1px solid #ddd;
pointer-events: none;
border-radius: 4px;
opacity: 0;
}