-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
101 lines (74 loc) · 1.41 KB
/
Copy pathfooter.css
File metadata and controls
101 lines (74 loc) · 1.41 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
margin: auto;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}
.footer {
padding: 80px, 0px;
background-color: #f8f8f8;
}
.footer-txt .footer-1:hover {
color: #152056;
}
.footer-txt {
display: flex;
justify-content: space-between;
margin-bottom: 25px;
}
.footer-txt ul li {
font-size: 18px;
color: rgb(0, 0, 0);
margin-bottom: 10px;
}
.footer-social {
display: flex;
justify-content: space-between;
margin-top: 40px;
}
.social-imgs img {
margin-right: 25px;
}
.social-txt {
display: flex;
}
.social-txt p {
font-size: 15px;
color: rgb(0, 0, 0);
margin-right: 15px;
}
.youtube {
position: relative;
width: 100%;
height: 0;
padding-bottom: 250px;
}
.youtubevideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media(max-width:991px) {
.footer {
padding: 30px;
}
.footer-txt {
flex-direction: column;
align-items: center;
}
.footer-1 {
text-align: center;
margin-bottom: 15px;
}
.footer-social {
flex-direction: column;
align-items: center;
}
.social-imgs {
margin-bottom: 35px;
}
}