forked from info-201a-au20/airbnb-covid-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
63 lines (53 loc) · 800 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
59
60
61
62
63
div.outer {
position: fixed;
top: 41px;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
padding: 0;
}
#controls {
padding: 0 20px 20px 20px;
cursor: move;
background-color: black;
opacity: 0.56;
zoom: 0.9;
transition: opacity 500ms 1s;
color: white;
}
#controls:hover {
opacity: 0.8;
transition-delay: 0.5;
}
h2 {
color: white;
display: inline;
}
h3 {
color: white;
}
h4 {
color: black;
}
p{
color: white;
}
blockquote {
background: #506585;
border-left: 10px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
color: white;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p {
display: block;
}