-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
70 lines (70 loc) · 1.2 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
body{
background: linear-gradient(40deg,#ffffff ,#333333 )
}
h1{
font-size: 50px;
}
ul{
margin: 0px;
padding: 0px;
overflow: hidden;
background: #272424;
}
.a{
float: left;
display: block;
text-align: center;
color: #BCB3B1;
padding: 20px;
transition-duration: 0.4s;
cursor: pointer;
}
.a:hover{
background: black;
}
.body{
height: 100vh;
overflow: hidden;
}
.fa-facebook-square{
margin-right: 20px;
padding: 5px;
transition-duration: 0.4s;
cursor: pointer;
}
.fa-instagram{
margin-right: 20px;
padding: 5px;
transition-duration: 0.4s;
cursor: pointer;
}
.fa-twitter{
margin-right: 20px;
padding: 5px;
transition-duration: 0.4s;
cursor: pointer;
}
.fa:hover{
background: black;
}
footer{
position: absolute;
text-align: center;
height: 30%;
width: 100%;
margin: 0px;
padding: 20px;
background: #272424;
color: #BCB3B1;
}
.f{
float: center;
display: inline-block;
text-align: center;
cursor: pointer;
padding: 10px;
transition-duration: 0.4s;
}
.f:hover{
text-decoration: underline;
}