-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (53 loc) · 886 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
html{
box-sizing: border-box;
}
*, *:before, *:after{
box-sizing: inherit;
}
body {
background: #2C2141;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
font-family: Arial, Helvetica, sans-serif;
}
.main {
background: #F8F8F8;
border-radius: 16px;
width: 624px;
margin: 16px;
padding: 32px;
}
.person{
}
.person__description {
font-size: 16px;
line-height: 22px;
margin: 0;
}
.person__description {
margin-bottom: 22px;
}
.person__info{
margin-bottom: 24px;
}
.person__link{
color: #E20613;
text-decoration: none;
}
.person__name{
font-size: 36px;
margin: 0;
font-weight: normal;
}
.person__position{
color: #545454;
font-size: 18px;
margin: 0;
font-style: italic;
}
.special{
color: #ED6D05;
font-weight: normal;
}