forked from Liam-JL/odin-landing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons.html
67 lines (63 loc) · 2.22 KB
/
buttons.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet", href="styles/base.css">
<link rel="stylesheet", href="styles/colors.css">
<link rel="stylesheet", href="styles/style.css">
</head>
<!-- <body class="debug"> -->
<body>
<style>
section > button {
width: 8rem;
}
section > button + button {
margin-top: 0.5rem;
}
</style>
<header class="primary">
<div class="wrapper">
<div class="logo">Header Logo</div>
<nav>
<a href=".">header link one</a>
<a href=".">header link two</a>
<a href=".">header link three</a>
</nav>
</div>
</header>
<main>
<section class="primary">
<button>Neutral</button>
<button class="primary">Primary</button>
<button class="secondary">Secondary</button>
<button class="tertiary">Tertiary</button>
</section>
<section class="secondary">
<button>Neutral</button>
<button class="primary">Primary</button>
<button class="secondary">Secondary</button>
<button class="tertiary">Tertiary</button>
</section>
<section class="tertiary">
<button>Neutral</button>
<button class="primary">Primary</button>
<button class="secondary">Secondary</button>
<button class="tertiary">Tertiary</button>
</section>
</main>
<footer class="primary" style="height: 100%;">
<div class="wrapper">
<p class="copyright">
Copyright © The Odin Project 2021
</p>
</div>
</footer>
<div style="display: none; position: absolute; left: 0; right: 0; top: -15.5rem; bottom: 0; opacity: 0.1; max-inline-size: none;">
<img src="./project-resources/finished_design.png" style="width: 100%;"/>
</div>
</body>
</html>