-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder.html
More file actions
62 lines (56 loc) · 1.29 KB
/
order.html
File metadata and controls
62 lines (56 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="style.css">
<body>
<div class="header">Re-Order</div>
<div class="container">
<div class="logo item">Logo</div>
<div class="menu item">Home | Back | Menu2 | Menu3</div>
<div class="content item">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been
the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley
</div>
<div class="footer item">Created by @</div>
</div>
</body>
<style>
.container {
border: 1px solid var(--yellow);
display: grid;
grid-template-columns: repeat(12, 1fr);
place-items: center center;
justify-content: center;
grid-gap: 30px;
}
.logo {
grid-column: span 2;
order: 1;
}
.menu {
grid-column: span 10;
order: 2
}
.item {
font-size: 25px;
width: 100%;
}
.content {
grid-column: 1/-1;
order: 3;
}
.footer {
grid-column: 2/-2;
order: 4;
}
@media (max-width: 700px) {
.logo {
order: 2;
}
.menu {
order: 1;
}
}
</style>
</html>