-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
61 lines (51 loc) · 841 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
54
55
56
57
58
59
60
61
html {
font-size: 62.5%;
}
body {
font-size: 1.6rem;
line-height: 1.2;
background-color: #fafafa;
}
a {
color: #00acc1;
}
a:hover,
a:active,
a:focus {
color: #005c6f;
}
code {
background-color: #e6e6e6;
}
.main-title {
margin: 5px 0 10px;
font-family: sans-serif;
}
.footer {
margin-bottom: 40px;
}
.card {
position: relative;
display: flex;
margin: 20px auto ;
padding: 24px;
max-width: 370px;
flex-direction: column;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);
}
.logo {
margin: 0 auto;
}
.bottom-links {
display: flex;
margin: 10px;
padding: 0;
justify-content: center;
list-style: none;
}
.bottom-link-item:not(:last-of-type)::after {
margin-right: 5px;
content: " - ";
}