forked from 12345rams/toriox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
46 lines (44 loc) · 912 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
footer{
position: relative;
width: 100%;
display:flex;
flex-direction: row;
justify-content: space-evenly;
background-color: rgb(4, 4, 4);
color: aliceblue;
flex-wrap: nowrap;
overflow: auto;
}
footer >div{
flex-direction: column;
margin: 1vmax;
}
footer >div >img{
width: 4vmax;
height: 3vmax;
margin: 1vmax;
}
footer >div >h1{
color:rgb(39, 140, 255);
}
footer >div >a {
color: aliceblue;
text-decoration: none;
}
@media screen and (max-width: 600px) {
h1 {
font-size: medium;
}
footer{
font-size: .9rem;
}
}
.banner::after{
content: "";
width: 100vw;
height: 100vmin;
background-color: rgb(253, 253, 253);
position: absolute;
clip-path: polygon(51% 70%, 0% 100%, 100% 100%);
clip-path: polygon(100% 45%, 0% 100%, 100% 100%);
}