-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontacts.css
More file actions
55 lines (46 loc) · 907 Bytes
/
contacts.css
File metadata and controls
55 lines (46 loc) · 907 Bytes
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
body {
margin: 0;
}
.contacts {
background-color: #E1E6EB;
height: 100vh;
display:flex;
margin-top: 100vh;
align-items: center;
justify-content: center;
}
.contacts__link {
text-decoration: none;
color: #000000;
}
.contacts__link:hover {
text-decoration: underline;
}
.contacts__item {
position: relative;
padding-bottom: 20px;
}
.contacts__item:last-child {
padding-bottom: 0;
}
.contacts__item::before {
content: "";
display: block;
position:absolute;
width: 30px;
height: 30px;
left: -35px;
top: -14px;
}
.contacts__item_git::before {
background: url("img/github.svg") no-repeat center;
background-size: contain;
}
.contacts__item_gmail::before {
background: url("img/gmail.svg") no-repeat center;
background-size: contain;
}
.contacts__item_linkedin::before {
background: url("img/linkedin.svg") no-repeat center;
background-size: contain;
}