-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (50 loc) · 899 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
.content {
display: flex;
flex-direction: column;
}
.content-header {
width: 100%;
}
.content-header.center {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.content-header .tag {
opacity: 0.5;
text-decoration: none;
}
.profile-container-pic {
flex: 1 0 200px;
max-width: 200px;
width: 200px;
height: 200px;
border: 5px solid #fff;
border-radius: 4px;
background: #fff;
display: flex;
justify-content: center;
align-items: center;
margin-right: 20px;
}
.profile-container-pic .profile-pic {
max-width: 100%;
max-height: 100%;
border-radius: 4px;
}
.profile-container-info {
flex: 2 0 400px;
margin: 20px 0;
max-width: 100%;
}
.profile-container-info *:first-child {
margin-top: 0;
}
.profile-container-info *:last-child {
margin-bottom: 0;
}
@media (max-width: 684px) {
.content-header.author-profile {
margin-top: 40px;
}
}