-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (97 loc) · 1.75 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* Classes */
body {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
min-height: 596px;
margin: 0;
box-sizing: border-box;
background: #FDFDFD;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.content {
display: flex;
flex-direction: column;
align-items: left;
justify-content: center;
max-width: 480px;
width: 100%;
height: auto;
padding: 0 24px;
}
hr {
display: block;
box-sizing: border-box;
height: 40px;
margin: 0;
border: none;
border-top: 1px solid #969AA0;
background: none;
margin-top: 22px;
}
ul.links {
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
list-style: none;
}
ul.links>li {
margin-right: 32px;
font-size: 16px;
font-family: 'Spectral', Georgia, serif;
font-style: normal;
font-weight: normal;
color: #2E3542;
line-height: 32px;
margin-bottom: 22px;
}
/* Text */
h1 {
font-size: 30px;
font-family: 'Spectral', Georgia, serif;
font-style: normal;
font-weight: normal;
color: #2E3542;
line-height: 36px;
}
p {
font-size: 16px;
font-family: 'Spectral', Georgia, serif;
font-style: normal;
font-weight: normal;
color: #2E3542;
line-height: 32px;
}
::selection {
background: #FF377D;
color: #FFFAEA;
}
::-moz-selection {
background: #FF377D;
color: #FFFAEA;
}
a {
color: #FF377D;
}
a:hover {
color: #FE86B0;
}
a.footer {
color: #969AA0;
}
a.footer:hover {
color: #C0C2C6;
}
/* Media Queries */
@media only screen and (max-width: 400px) {
body {
height: auto;
}
.content {
justify-content: flex-start;
padding: 48px 24px;
}
}