-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
34 lines (34 loc) · 732 Bytes
/
footer.css
File metadata and controls
34 lines (34 loc) · 732 Bytes
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
#footer-links{
text-decoration: none;
}
#footer-img{
margin-top: 3%;
}
#footer-img:hover {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-webkit-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
opacity: 0.5;
}
#credit{
text-decoration: none;
color: white;
transition: background .2s cubic-bezier(.33,.66,.66,1);
border-bottom: 3px solid var(--randColor1);
}
#credit:hover{
color: var(--bgColor);
background-color: var(--randColor1);
}
#credits{
display: inline;
margin-top: -10%;
}
@media only screen and (max-width: 600px) {
#credits{
margin-top: -10%;
}
}