-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreadandbutter.html
59 lines (52 loc) · 1.48 KB
/
breadandbutter.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
<!DOCTYPE html>
<html>
<head>
<style>
#bbhg-nav {
padding: 0;
}
</style>
<link rel="stylesheet" type="text/css" href="css/breadandbutter.css">
<title>Bread and Butter Layout + Holy Grail</title>
</head>
<body id="body" class="vert viewport">
<!-- add a jQuery button-->
<!-- bread butter and holy grail = bbhg -->
<section id="bbhg" class="full-height">
<header>BREAD AND BUTTER + HOLY GRAIL</header>
<main class="horizontal space-between">
<nav>
NAV
</nav>
<article id="toggle-btn">CLICK HERE TO SEE LAYOUTS IN FULL HEIGHT</article>
<aside>aside</aside>
</main>
<footer>Bottom</footer>
</section>
<!--holy grail = hg-->
<section id="hg">
<main class="horizontal space-between">
<nav>Nav</nav>
<article>HOLY GRAIL ONLY</article>
<aside>aside</aside>
</main>
</section>
<!-- bread and butter = bb -->
<section id="bb">
<header>BREAD AND BUTTER ONLY</header>
<main class="horizontal space-between">
<article>article</article>
</main>
<footer>Bottom</footer>
</section>
<script
src="https://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<script>
$( "#toggle-btn" ).click(function() {
$( body ).toggleClass( "initial-height" );
});
</script>
</body>
</html>