-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (82 loc) · 1.33 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
body {
background: #3A3A59;
color: #FFF;
font-family: 'Noto Sans', sans-serif;
line-height: 1.8rem;
}
img {
max-width: 100%;
border-radius: 4px;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
opacity: 0.7;
}
.container {
margin: 72px auto;
width: 800px;
}
.profile {
width: 150px;
height: 150px;
border-radius: 100%;
margin: auto;
display: block;
}
h1 {
text-align: center;
margin-top: 48px;
margin-bottom: 12px;
}
.subheading {
text-align: center;
margin-bottom: 48px;
}
.social a {
font-size: 24px;
margin: 12px 6px;
display: inline-block;
}
.item {
margin-top: 96px;
}
.item .image {
width: 30%;
display: inline-block;
vertical-align:top;
}
.item .description {
width: 60%;
display: inline-block;
vertical-align:top;
padding-left: 48px;
box-sizing: border-box;
}
.item h2 {
margin: 0;
}
.item i {
opacity: 0.5;
display: block;
margin: 12px 0;
}
@media (max-width: 992px) {
.container {
margin: 72px auto;
width: 100%;
text-align: center;
padding: 0 48px;
box-sizing: border-box;
}
.item .image {
width: 100%;
padding-bottom: 24px;
}
.item .description {
width: 100%;
padding-left: 0;
}
}