-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (45 loc) · 788 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Shadows+Into+Light+Two&subset=latin-ext');
.main {
max-width: 600px;
display: block;
margin: 0 auto;
font-family: "Shadows Into Light Two";
padding-left: 50px;
padding-right: 50px;
}
#main {
max-width: 800px;
display: block;
margin-left: auto;
margin-right:auto;
}
#mobile {
display:none;
}
@media all and (max-device-width: 500px) {
#main {
display: none;
}
#mobile {
display: block;
margin: auto;
width: 200px;
}
}
html p a {
text-decoration: underline;
color: #D0E7C7;
}
html {
background-color: #23282D;
color: #d2d5db;
text-align: center;
}
h1 {
font-size: 45px;
font-weight: ;
font-family: "Shadows Into Light Two";
}
p {
font-size: 24px;
}