redesign #1

Merged
fred.boniface merged 115 commits from redesign into main 2022-10-29 20:12:58 +01:00
9 changed files with 41 additions and 0 deletions
Showing only changes of commit c85b36ca4b - Show all commits

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
images/logo/favicon.xcf Normal file

Binary file not shown.

BIN
images/logo/full-xl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
images/logo/full.xcf Normal file

Binary file not shown.

BIN
images/logo/short-xl.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
images/logo/short.xcf Normal file

Binary file not shown.

41
new_index.html Normal file
View File

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Frederick Boniface">
<link rel="icon" type="image/png" href="/images/favicon.png">
<link rel="stylesheet" href="./style/fonts.css">
<link rel="stylesheet" href="./style/new_style.css">
<title>Home</title>
</head>
<body>
<div class="menubar">
<script src="/js/navbar.js"></script>
<div class="menubar_logo">
<picture>
<source srcset="/images/logo/full.png" type="image/png">
<img src="/images/logo/short-xl.png" alt="Fred Boniface logo">
</picture>
</div>
<div class="menubar_hamburger">
<span class="menubar_longtext">Menu </span>
<span class="menubar_shorttext"> &#9776;</span>
</div>
</div>
<div id="sidebar" class="sidebar">
<button class="sidebar_close">&times;</button>
<a href="/">Home</a>
<a href="/gpg.php">GPG/PGP</a>
<a href="/projects.php">Things I Do</a>
<a href="/contact.php">Contact</a>
<a href="/about.php">About</a>
<picture>
<source srcset="/images/logo/short-xl.png" type="image/png">
</picture>
<div class="sidebar_social">
SOCIAL_LINKS
</div>
</div>
</body>
</html>

0
style/new_style.css Normal file
View File