-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.css
More file actions
79 lines (76 loc) · 1.5 KB
/
info.css
File metadata and controls
79 lines (76 loc) · 1.5 KB
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
/* SOCIAL MEDIA ICONS */
ul.icon-list {
list-style: none;
margin: 0;
}
.icon-list li {
display: inline-block;
color: white;
margin: 0 auto;
padding-top: 70px;
position: relative;
text-align: center;
width: 95px;
font-size: 14px;
cursor: pointer;
}
.icon-list li::before {
background-size: cover;
content: '';
position: absolute;
width: 40px;
height: 40px;
top: 0;
left: 50%;
margin-left: -30px;
border-radius: 50%;
border-color: blanchedalmond;
opacity: 1;
transition: background-color 0.2s;
}
.icon-list li::after {
background-size: cover;
content: "";
height: 40px;
width: 40px;
position: absolute;
left: 50%;
margin-left: -30px;
top: 0;
}
.facebook-icon::before {
background-color: rgb(255, 255, 255);
}
.facebook-icon:hover::before {
background-color: rgb(221, 221, 221);
}
.facebook-icon::after {
background-image: url('./socialmediaSVG/facebook.svg');
}
.insta-icon::before {
background-color:#ffffff ;
}
.insta-icon:hover::before {
background-color: rgb(221, 221, 221);
}
.insta-icon::after {
background-image: url('./socialmediaSVG/instagram.svg');
}
.github-icon::before {
background-color: rgb(255, 255, 255);
}
.github-icon:hover::before {
background-color: rgb(221, 221, 221);
}
.github-icon::after {
background-image: url('./socialmediaSVG/github.svg');
}
.vimeo-icon::before {
background-color: rgb(255, 255, 255);
}
.vimeo-icon:hover::before {
background-color: rgb(221, 221, 221);
}
.vimeo-icon::after {
background-image: url('./socialmediaSVG/vimeo.svg');
}