-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (82 loc) · 1.78 KB
/
index.html
File metadata and controls
88 lines (82 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Using CSS Grid</title>
<style>
body{
color: #fff;
font-family: 'Nunito Semibold';
text-align: center;
}
#content{
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-auto-rows: minmax(100px, auto);
grid-gap: 10px;
max-width: 960px;
margin: 0 auto;
position:relative;
}
#content > *{
background: #3bbced;
padding: 30px;
}
header{
grid-column: 1 / 13;
}
main{
grid-column: 4 / 13;
grid-row: 2 / 4;
}
aside{
grid-column: 1 / 4;
}
nav{
grid-column: 1 / 4;
}
section{
grid-column: 1 / 13;
grid-row: 4 / 6;
}
footer{
grid-column: 1 / 13;
}
#grid{
position: absolute;
top: 0;
left: 0;
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-auto-rows: minmax(100%, auto);
width: 100%;
height: 100%;
background: transparent;
padding: 0;
display: none;
}
input:checked + #content #grid{
display: grid;
}
#grid p{
border: 1px solid;
background: #000;
margin: 0;
opacity: 0.2;
}
</style>
</head>
<body>
<input type="checkbox" />
<div id="content">
<div id="grid">
<p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p>
</div>
<header>Header</header>
<main>Main</main>
<section>Section</section>
<aside>Aside</aside>
<nav>Nav</nav>
<footer>Footer</footer>
</div>
</body>
</html>