Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Jonas Martinez | Fullstack Developer</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/main.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/home.css'>
</head>

<body>
<nav>
<a href="/home.html"><img class="shadow" src="img/signature.png" /></a>
<div>
<input type="checkbox" id="openMenu" hidden>
<label for="openMenu">
<img src="img/burger.svg" alt="Open menu">
</label>

<aside class="shadow">
<ul>
<li>
<a href="/home">
Home
</a>
</li>
<li>
<a href="/about">
About
</a>
</li>
<li>
<a href="/portfolio">
Portfolio
</a>
</li>
</ul>
</aside>
</div>
</nav>


</body>

</html>
5 changes: 5 additions & 0 deletions css/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ body>nav>div>aside {
}
}
}

&>li:last-of-type>svg {
width: 24px;
height: 24px;
}
}
}

Expand Down
9 changes: 9 additions & 0 deletions img/theme-button.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>

<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Jonas Martinez | Fullstack Developer</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='css/main.css'>
<link rel='stylesheet' type='text/css' media='screen' href='css/home.css'>
</head>

<body>
<nav>
<a href="/home.html"><img class="shadow" src="img/signature.png" /></a>
<div>
<input type="checkbox" id="openMenu" hidden>
<label for="openMenu">
<img src="img/burger.svg" alt="Open menu">
</label>

<aside class="shadow">
<ul>
<li>
<a href="/home">
Home
</a>
</li>
<li>
<a href="/about">
About
</a>
</li>
<li>
<a href="/portfolio">
Portfolio
</a>
</li>
<li>
<svg width="800px" height="800px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g fill="var(--text-color)" fill-rule="nonzero">
<path d="M12,22 C17.5228475,22 22,17.5228475 22,12 C22,6.4771525 17.5228475,2 12,2 C6.4771525,2 2,6.4771525 2,12 C2,17.5228475 6.4771525,22 12,22 Z M12,20.5 L12,3.5 C16.6944204,3.5 20.5,7.30557963 20.5,12 C20.5,16.6944204 16.6944204,20.5 12,20.5 Z">
</path>
</g>
</g>
</svg>
</li>
</ul>
</aside>
</div>
</nav>


</body>

</html>