Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasvlevi committed May 1, 2024
1 parent f1c0642 commit 1e5e562
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/assets/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/events.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">events</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">Reference</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
</button>
</header>


<h3>Modules</h3><ul><li class="btn"><a class="dark" href="./window.html"><h4>window</h4></a></li><li class="btn"><a class="dark" href="./shapes.html"><h4>shapes</h4></a></li><li class="btn"><a class="dark" href="./setting.html"><h4>setting</h4></a></li><li class="btn"><a class="dark" href="./io.html"><h4>io</h4></a></li><li class="btn"><a class="dark" href="./events.html"><h4>events</h4></a></li></ul>
</main>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/io.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">io</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/setting.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">setting</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/shapes.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">shapes</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/window.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">window</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down
13 changes: 9 additions & 4 deletions tasks/templates/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ ul {
padding: 0px;
}

.light {
color: var(--white);
}

li:not(:last-child) {
padding-bottom: 12px;
Expand All @@ -65,7 +62,11 @@ li:not(:last-child) {
padding-left: 0.5rem;
}

.btn > a > h4 {
.light {
color: var(--white);
}

.btn.light > a > h4 {
color: var(--white);
}

Expand All @@ -92,6 +93,10 @@ a {
text-decoration: none;
}

a:visited {
text-decoration: none;
}

h1.module {
position:relative;
top:-0.25em;
Expand Down
2 changes: 1 addition & 1 deletion tasks/templates/page.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</div>
<main>
<header>
<img width="100px" src="./assets/logo.svg"/>
<a href="./"><img width="100px" src="./assets/logo.svg"/></a>
<h1 class="module">{{filename}}</h1>
<button class="menuBtn" onclick="toggleMenu()">
<img class="menuIcon" width="40px" src="./assets/arrow_left.svg"/>
Expand Down

0 comments on commit 1e5e562

Please sign in to comment.