-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·100 lines (84 loc) · 1.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
background: white;
font-family: 'Raleway', sans-serif;
}
h1 {
color: #2D2D2D;
font-family: 'Raleway', sans-serif;
font-size: 80px;
margin-top: 15%;
}
h2 {
color: #FFCD42;
font-family: 'Raleway', sans-serif;
font-size: 32px;
margin-top: 10px;
}
h3 {
color: #2D2D2D;
font-family: 'Raleway', sans-serif;
font-size: 36px;
margin-top: 10px;
}
li {
margin-top: 10px;
}
p {
line-height: 25px;
}
#container {
position: fixed;
text-align: center;
left: 0;
width: 100%;
height: 100%;
}
#content {
text-align: center;
}
#prompt {
max-width: 1024px;
padding-left: 0.5em;
padding-right: 0.5em;
margin-left: auto;
margin-right: auto;
}
@media only screen and (min-height: 568px) {
#prompt { font-size: 32px; }
}
@media only screen and (min-height: 667px) {
#prompt { font-size: 40px; }
}
@media only screen and (min-height: 768px) {
#prompt { font-size: 60px; }
}
@media only screen and (min-height: 1024px) {
#prompt { font-size: 80px; }
}
#text {
display: block;
text-align: left;
width: 80%;
margin-left: 20px;
margin-top: 20px;
margin-right: 20px;
max-width: 1024px;
}
.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
text-align: center;
font-family: 'Raleway 300', sans-serif;
font-size: 12px;
}
a {
text-decoration: none;
margin-left: 20px;
}
a:hover {
color: #2D2D2D;
text-decoration: underline;
}