-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.html
164 lines (147 loc) · 4.12 KB
/
footer.html
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.footer {
background-color: #24282F;
display:flex;
flex-direction: row;
margin-top: 30px;
}
a{
color: white;
text-decoration: none;
}
.logo-box{
width: 30%;
margin-left: 8%;
margin-top: 50px;
margin-right: 10%;
}
.logo-box img {
max-width: 120px;
padding-bottom: 0.5rem !important;
padding-top: 0.5rem !important;
margin-bottom: 1rem !important;
}
.logo-box p{
color: #F0F0F4 !important;
font-size: .875rem;
font-weight: 400;
line-height: 1.5;
letter-spacing: .02em;
width: 50%;
align-items: center;
}
.footer-links{
margin-top:50px;
width: 13%;
margin-right: 2%;
marker-start: none;
align-items: center;
margin-bottom: 80px;
}
.top-upper{
color: #F0F0F4 !important;
margin-bottom: 30px;
margin-top: -1px !important;
/* marker: none; */
marker-start: none;
}
.footer-links ul{
width: 100%;
color: #F0F0F4;
}
.footer-links ul{
display: flex;
flex-direction: column;
}
ul li{
margin-top: 18px;
color: #C8CbD9;
align-items: left;
font-size: 15px;
font-family: 'Poppins', sans-serif;
}
@media (max-width:768px) {
.footer{
background-color: #24282F;
display:flex;
flex-direction: column !important;
}
.footer-links{
margin-top:50px;
width: 100%;
}
.deactive{
display: none;
}
.footer-links ul{
width: 100%;
color: #F0F0F4;
margin-left: 6%;
}
.logo-box p{
color: #F0F0F4 !important;
font-size: .875rem;
font-weight: 400;
line-height: 1.5;
letter-spacing: .02em;
width: 100%;
align-items: center;
}
}
</style>
<body>
<div class="footer">
<div class="logo-box">
<a href="">
<img
src="https://storage.googleapis.com/lumen5-site-images/L5-logo/L5-logo-white.png"
/></a>
<p>
Lumen5 combines powerful A.I. with a simple drag-and-drop interface to
help you create professional video content in minutes.
</p>
</div>
<div class="footer-links">
<ul>
<li class="top-upper">EXPLORE</li>
<li><a href="" class="noChanges">About</a></li>
<li><a href="" class="noChanges">Features</a></li>
<li><a href="" class="noChanges">Careers</a></li>
<li><a href="" class="noChanges">LinkedIn</a></li>
<li><a href="" class="noChanges">Support</a></li>
<li><a href="" class="noChanges">Community Group</a></li>
</ul>
</div>
<div class="footer-links deactive">
<ul>
<li class="top-upper">VIDEO TOOLS</li>
<li><a href="" class="noChanges">Add Text to Video</a></li>
<li><a href="" class="noChanges">Cut Video</a></li>
<li><a href="" class="noChanges">Merge Video</a></li>
<li><a href="" class="noChanges">Compress Video</a></li>
<li><a href="" class="noChanges">Resize Video</a></li>
<li><a href="" class="noChanges">See all</a></li>
</ul>
</div>
<div class="footer-links deactive">
<ul>
<li class="top-upper">VIDEO CREATORS</li>
<li><a href="" class="noChanges">Video Editor</a></li>
<li><a href="" class="noChanges">Photo Video Maker</a></li>
<li><a href="" class="noChanges">Facebook Video Maker</a></li>
<li><a href="" class="noChanges">Youtube Video Maker</a></li>
<li><a href="" class="noChanges">Instagram Video Maker</a></li>
<li><a href="" class="noChanges">See all</a></li>
</ul>
</div>
</div>
</body>
</html>