-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsm.css
69 lines (68 loc) · 1.51 KB
/
sm.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
67
68
69
body {
background-image: url("bg.jpg");
background-repeat: no-repeat;
background-size: 100%;
}
h1 {
text-align: center;
font-size: 68px;
font-family: monospace;
color:black;
letter-spacing: 25px;
font-family: 'Montserrat', sans-serif;
}
.social-menu ul {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 0;
margin: 0;
display: flex;
}
.social-menu ul li {
list-style: none;
margin: 0 10px;
}
.social-menu ul li .fa {
color: #000000;
font-size: 25px;
line-height: 100px;
transition: .5s;
}
.social-menu ul li .fa:hover {
color: #ffffff;
}
.social-menu ul li a {
position: relative;
display: block;
width: 100px;
height: 100px;
border-radius: 75%;
background-color: white;
text-align: center;
transition: 0.5s;
transform: translate(0,0px);
box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
background-color: #3b5998;
}
.social-menu ul li:nth-child(2) a:hover {
background-color: #fbad50;
}
.social-menu ul li:nth-child(3) a:hover {
background-color: #c4302B;
}
.social-menu ul li:nth-child(4) a:hover {
background-color: #0077b5;
}
.social-menu ul li:nth-child(5) a:hover {
background-color: #4078c0;
}
.social-menu ul li:nth-child(6) a:hover {
background-color: #00acee;
}