-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (85 loc) · 1.3 KB
/
style.css
File metadata and controls
101 lines (85 loc) · 1.3 KB
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
* {
color: #212121;
font-size: 1em;
font-family: Lato, sans-serif;
letter-spacing: normal;
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
background-color: #f9f9f9;
height: 100%;
display: flex;
}
.contain {
align-items: center;
display: flex;
width: 100%;
}
@media screen and (min-width: 1024px) {
.contain {
width: 60%;
}
}
.content {
margin: 0 5%;
max-width: 460px;
}
@media screen and (min-width: 575px) {
.content {
margin: 0 10%;
}
}
.content h1 {
font-size: 2.5em;
font-weight: 900;
}
.content h2 {
font-size: 1.1em;
font-weight: 700;
margin: 1rem 0;
}
.content p {
font-weight: 400;
line-height: 1.8em;
margin: 1rem 0;
}
.social {
margin-top: 1.5rem;
}
.social ul {
list-style-type: none;
}
.social li {
display: inline-block;
}
.social li a {
border: 1px solid #212121;
display: block;
font-size: 0.8em;
margin-right: 0.8em;
padding: 0.6em 0.8em;
text-decoration: none;
}
.social li a:hover {
background-color: #212121;
color: #f9f9f9;
}
.image {
display: none;
}
@media screen and (min-width: 1024px) {
.image {
display: block;
width: 40%;
}
.image img {
display: block;
height: 100%;
width: 100%;
object-fit: cover;
}
}