-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
81 lines (75 loc) · 1.7 KB
/
about.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
70
71
72
73
74
75
76
77
78
79
80
81
body{
margin: 0;
padding: 0;
font-family: Century Gothic;
font-size: 18px;
}
.header{
height: 100%;
width: 100%;
background: url("journey2.jpg");
background-size: cover;
background-position: center;
}
.main{
width: 50%;
height: 500px;
background-color: rgba(0, 0, 0, 0.7);
color: rgb(255, 255, 255);
text-align: center;
padding: 50px;
top: 55%;
left: 50%;
position: absolute;
transform: translate(-50%,-50%);
border-radius: 20px;
}
.social-menu ul{
padding: 0;
margin: 0;
position: absolute;
top: 80%;
left: 50%;
transform: translate(-50%,500%);
display: flex;
}
.social-menu ul li{
list-style: none;
margin: 0 15px;
}
.social-menu ul li .fab{
font-size: 40px;
line-height: 60px;
transition: 0.4s;
color: #000;
}
.social-menu ul li .fab:hover{
color: rgba(255, 255, 255, 0.685);
}
.social-menu ul li a{
position: relative;
display: block;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.651);
text-align: center;
transition: 0.6s;
box-shadow: 0 5px 4px rgba(0, 0, 0, 0.5);
transform: translate(20%,-300%);
}
.social-menu ul li a:hover{
transform: translate(13px ,-200px);
}
.social-menu ul li:nth-child(1) a:hover{
background-color: #e4405f;
}
.social-menu ul li:nth-child(2) a:hover{
background-color: #0077B5;
}
.social-menu ul li:nth-child(3) a:hover{
background-color: #0da0f0;
}
.social-menu ul li:nth-child(4) a:hover{
background-color: #000000;
}