-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
167 lines (145 loc) · 4.48 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
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> FOOTER OF THE WEBSITE | E-COMMERCE WEBSITE BY AHMET OZAYDIN </title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
font-family: 'Lato', sans-serif;
}
#containerFooter {
width: 100%;
background-color: rgb(29, 29, 29);
color: white;
letter-spacing: 1px;
display: grid;
grid-template-columns: repeat(4, 1fr);
text-transform: uppercase;
font-size: 15px;
padding: 15px 300px;
box-sizing: border-box;
}
#containerFooter h3:hover,
#containerFooter p:hover {
color: lightslategray;
cursor: pointer;
}
#webFooter {
padding-top: 30px;
font-size: 12px;
background-color: rgb(29, 29, 29);
}
#credit {
width: 100%;
margin: auto;
padding: 20px 0;
text-align: center;
background-color: rgb(29, 29, 29);
color: white;
font-size: 11px;
letter-spacing: 1px;
}
#credit a {
color: white;
text-decoration: none;
position: relative;
}
#credit a::after {
content: "";
background: white;
mix-blend-mode: exclusion;
width: calc(100% + 18px);
height: 0;
position: absolute;
bottom: -4px;
left: -10px;
transition: all .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#credit a:hover::after {
height: calc(100% + 8px)
}
/* ----------------------------- MEDIA QUERY --------------------------- */
@media(max-width: 1350px) {
#containerFooter {
padding: 15px 200px;
}
}
@media(max-width: 1166px) {
#containerFooter {
padding: 15px 100px;
}
}
@media(max-width: 950px) {
#containerFooter {
padding: 15px 50px;
}
}
@media(max-width: 850px) {
#containerFooter {
font-size: 13px;
}
#webFooter {
font-size: 10px;
}
}
@media(max-width: 750px) {
#containerFooter {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 15px 100px;
}
#webFooter {
padding: 15px 20px;
}
}
@media(max-width: 540px) {
#containerFooter {
padding: 0 25px;
}
}
</style>
</head>
<body>
<footer">
<section>
<div id="containerFooter">
<div id="webFooter">
<h3> online store </h3>
<p> tablets </p>
<p> Smartphones </p>
<p> watches </p>
<p> accessories </p>
</div>
<div id="webFooter">
<h3> helpful link </h3>
<p> home </p>
<p> about </p>
<p> contact </p>
</div>
<div id="webFooter">
<h3> partners </h3>
<p> SAMSUNG </p>
<p> NOKIA </p>
<p> IPHONE </p>
<p> XIAOMI </p>
<p> + many more </p>
</div>
<div id="webFooter">
<h3> address </h3>
<p> building 101 </p>
<p> central avenue </p>
<p> la - 902722 </p>
<p> ENGLAND </p>
</div>
</div>
<div id="credit"><a href="https://www.linkedin.com/in/ahmet-%C3%B6zayd%C4%B1n-1b65b2173/"> © KernelSoft </a>
    |     <a href="https://github.com/ahmetozydn" target="_blank"> AHMET </a></div>
</section>
</footer>
</body>
</html>