forked from TheZoom110/Esperanza-2023-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
64 lines (60 loc) · 1.07 KB
/
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
56
57
58
59
60
61
62
63
64
.footer{
display: flex;
flex-direction: column;
width: 100vw;
background-color: black;
color: white;
}
.footer-box1{
display: flex;
margin: 1rem 0.5rem;
justify-content: space-evenly;
}
.box-1{
display: flex;
flex-direction: column;
justify-content: center;
}
.box-1 h2{
text-align: center;
}
.box-1 ul{
display: flex;
list-style: none;
justify-content: center;
margin: 0.5rem;
}
.social a{
margin: 0 1rem;
}
.social a img{
height: 4vh;
background-color: white;
border-radius: 1rem;
padding: 0.2rem;
}
.social a img:hover{
background-color: rgb(125, 119, 111);
}
.box-2{
display: flex;
flex-direction: column;
align-items: center;
}
.box-2 h2{
text-align: center;
justify-content: center;
}
.box-2 ul{
display: flex;
flex-direction: column;
}
.clubs{
padding: 0.1rem;
}
.footer-box2{
display: flex;
flex-direction: row;
padding: 1rem 2rem;
justify-content: space-between;
}