-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (73 loc) · 1.36 KB
/
style.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
* {
margin: 0;
padding: 0;
color: #fff;
}
body {
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
background: rgba(0, 0, 0, 0);
color: #f0f0f0;
}
#main {
width: 100vw;
height: 100vh;
font-size: 3rem;
line-height: 3.5rem;
font-family: "Helvetica Neue", Helvetica, sans-serif;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
#loading {
flex: 1;
text-align: center;
}
#quote-url {
flex: 1;
display: flex;
width: 50vw;
height: 100vh;
color: #f0f0f0;
text-decoration: none;
align-items: center;
flex-direction: column;
justify-content: center;
margin-top: -1rem;
}
#quote {
text-align: center;
}
#quote:before {
content: "〝";
font-size: 6rem;
color: rgba(200, 200, 200, 0.5);
top: 1.8rem;
left: -6.2rem;
position: relative;
display: inline-block;
width: 0;
}
#quote:after {
content: "〞";
font-size: 6rem;
color: rgba(200, 200, 200, 0.5);
top: 1.8rem;
right: 0.2rem;
position: relative;
display: inline-block;
width: 0;
}
#author {
border-top: 1px solid rgba(200, 200, 200, 0.5);
margin-top: 2rem;
font-size: 1.5rem;
text-align: center;
padding: 1rem 2rem 0;
}
.hidden {
display: none !important;
}