-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (67 loc) · 1005 Bytes
/
styles.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
body {
font-family: "Overpass", sans-serif;
color: #333;
background: #fefefe;
padding: 32px;
}
.brand {
display: flex;
align-items: center;
}
.brand img {
width: 96px;
}
nav {
display: flex;
align-items: center;
justify-content: space-between;
}
nav .links a {
color: inherit;
font-size: 24px;
padding: 8px;
}
nav .links a:hover {
color: #17b4db;
transition: color 0.5s;
}
footer {
margin-top: 32px;
}
.cover {
text-align: right;
margin-top: 64px;
}
.cover .description h1 {
margin: 0;
font-size: 36px;
}
.cover .description {
text-align: left;
}
.cover img {
width: 50vw;
margin-top: 64px;
}
@media (min-width: 768px) {
body {
padding: 64px;
}
.cover {
display: flex;
align-items: center;
justify-content: center;
margin: 72px 0;
text-align: left;
}
.cover .description {
margin-right: 72px;
}
.cover .description h1 {
font-size: 84px;
}
.cover img {
width: 30vw;
margin-top: 0;
}
}