-
Notifications
You must be signed in to change notification settings - Fork 68
/
style.css
71 lines (64 loc) · 1020 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
62
63
64
65
66
67
68
69
70
71
* {
margin: 0;
padding: 0;
font-family: Helvetica, Arial, sans-serif;
font-size: 8pt;
font-weight: 800;
color: #00f;
line-height: 1.3em;
letter-spacing: 0.05em;
text-transform: uppercase;
}
body {
max-width: 1040px;
margin: 100px auto;
}
header {
border-bottom: 1px solid;
padding-bottom: 30px;
}
header > div {
display: inline-block;
margin: 0 5px;
}
header .title {
vertical-align: top;
margin-top: 23px;
width: 50px;
}
header .some-links {
vertical-align: top;
margin-top: 23px;
margin-right: 15px;
float: right;
}
header .some-links a {
display: block;
padding: 1px 0;
text-align: right;
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
text-decoration: underline;
}
a span {
font-weight: 400;
display: block;
}
body > * {
margin: 70px 20px 0 20px;
}
body > article {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.elem {
box-sizing: border-box;
display: inline-block;
padding: 30px 10px;
width: 200px;
}