-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (78 loc) · 3.63 KB
/
index.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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Introdução</title>
<link rel="stylesheet" href="stylesheet.css" />
<script defer src="scripts/index.js" type="module"></script>
</head>
<body>
<div class="main-wrapper">
<main class="main-content">
<section class="button-grid">
<button class="previous-button">Anterior</button>
<button class="next-button">Próximo</button>
</section>
<article class="article">
<header>
<h1></h1>
<div class="separator"></div>
<h2></h2>
</header>
</article>
<section class="button-grid">
<button class="previous-button">Anterior</button>
<button class="next-button">Próximo</button>
</section>
</main>
<aside id="sidebar" class="sidebar">
<div class="sidebar-buttons-wrapper">
<div class="separator"></div>
<menu class="menu button-grid">
<li>
<button id="theme-button" class="theme-button">
<svg viewBox="0 0 32 32">
<mask id="mask">
<rect fill="white" width="32" height="32"></rect>
<circle fill="black" cx="16" cy="16" r="11"></circle>
<rect fill="white" x="16" width="16" height="32"></rect>
</mask>
<circle cx="16" cy="16" r="16" mask="url(#mask)"></circle>
</svg>
</button>
</li>
<li>
<button id="nav-menu-button" class="nav-menu-button">
<svg viewBox="0 0 32 32">
<circle cx="4" cy="5" r="4" />
<circle cx="4" cy="16" r="4" />
<circle cx="4" cy="27" r="4" />
<path
d="M 13 3 a 2 2 -180 0 0 0 4 h 16 a 2 2 -180 0 0 0 -4 z"
></path>
<path
d="M 13 14 a 2 2 -180 0 0 0 4 h 16 a 2 2 -180 0 0 0 -4 z"
></path>
<path
d="M 13 25 a 2 2 -180 0 0 0 4 h 16 a 2 2 -180 0 0 0 -4 z"
></path>
</svg>
</button>
</li>
</menu>
</div>
<div class="sidebar-nav-wrapper">
<div class="separator"></div>
<nav>
<header id="sidebar-nav-header" class="nav-header"></header>
<ol id="sidebar-list" class="nav-list"></ol>
</nav>
</div>
<nav>
<ol class="nav-menu hidden" id="nav-menu"></ol>
</nav>
</aside>
</div>
</body>
</html>