-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
53 lines (46 loc) · 853 Bytes
/
index.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
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');
* {
margin: 0;
}
:root {
font-family: 'JetBrains Mono', monospace;
font-weight: 400;
color: #000000;
background-color: #ffffff;
}
.container {
display: grid;
justify-items: center;
max-width: 720px;
margin: 0 auto;
padding: 16px;
}
.photo {
border-radius: 8px;
margin: 0 0 8px 0;
}
.name {
font-size: 36px;
font-weight: 500;
margin: 0 0 4px 0;
text-align: center;
}
.activity {
font-size: 18px;
text-align: center;
margin: 0 0 16px 0;
}
.contacts {
display: flex;
column-gap: 16px;
}
.contact {
padding: 12px 24px;
text-decoration: none;
background: #eeeeee;
border-radius: 8px;
color: #000000;
}
.contact:hover {
background: #e0e0e0;
}