-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
55 lines (45 loc) · 885 Bytes
/
footer.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
.flinks{
text-decoration:none;
color: #000000;
display: inline-block;
}
.flinks:hover{
border-bottom:1px solid #000000;
}
.footer{
text-align:center;
padding:10px;
border-top:1px solid rgb(150, 150, 150);
opacity:0.8;
}
.footer:hover{
opacity: 1;
}
.footer-image{
width:10%;
}
@media screen and (max-width: 600px) {
.footer-image{
width:25%;
}
.flinks{
display: block;
font-size:20px;
color:#ffffff;
width:100%;
margin-left:0px;
}
.flinks:hover{
border-left:3px #ffffff solid;
}
.footer{
background-color: black;
background-repeat: no-repeat;
overflow: hidden;
width:100%;
color:#ffffff;
}
.gap{
display:none;
}
}