Change a lot of stuff to migrate to the new UI

master
DavidDGTNT 2022-02-09 20:44:33 +00:00
parent aa4219c765
commit b192b6b7cd
7 changed files with 111 additions and 118 deletions

View File

@ -6,36 +6,34 @@
<link rel="stylesheet" href="../assets/css/fonts.css"> <link rel="stylesheet" href="../assets/css/fonts.css">
</head> </head>
<body> <body>
<header> <div class="content">
<img src="../assets/img/lyza.png" width="250" height="250"><br> <header>
<nav> <img src="../assets/img/banner.png">
<a href="../index.html">Home</a>
<a href="#" class="current">About</a>
<a href="../book1/index.html">Lyza the Sheepdog: Christmas</a>
<a href="../book2/index.html">Lyza the Sheepdog: The Flood</a>
</header>
<main>
<h2>About the author</h2>
<p>David Jentes is a 13 year old programmer, author, speedcuber, and LCS student. He is a member of the programming group KygekTeam and programs various things, including this website. Here is a list of some things he has created:</p>
<ul> <ul>
<li><a href="../index.html">Home</a></li> <li>Ports of some of the Minecraft plugins made by KygekTeam</li>
<li><a href="#" class="current">About</a></li><br><br> <li>David Calc, plus its GUI, Java, and Mystic Python variants</li>
<li><a href="../book1/index.html">Lyza the Sheepdog: Christmas</a></li><br><br> <li>Various C++ converters</li>
<li><a href="../book2/index.html">Lyza the Sheepdog: The Flood</a></li> <li>His own website</li>
<li>Content generation script for generating HTML from specified Markdown files</li>
<li>KygekTermDownload, a downloading program for the terminal to download KygekTeam plugins</li>
</ul> </ul>
</nav>
</header>
<main>
<h2>About the author</h2>
<p>David Jentes is a 13 year old programmer, author, speedcuber, and LCS student. He is a member of the programming group KygekTeam and programs various things, including this website. Here is a list of some things he has created:</p> <p>David also runs a YouTube channel called DavidDGTNT, where he makes videos on various video games, and another channel called DavidCode, where he codes various things.</p>
<ul> <h2>About Lyza</h2>
<li>Ports of some of the Minecraft plugins made by KygekTeam</li>
<li>David Calc, plus its GUI, Java, and Mystic Python variants</li>
<li>Various C++ converters</li>
<li>His own website</li>
<li>Content generation script for generating HTML from specified Markdown files</li>
<li>KygekTermDownload, a downloading program for the terminal to download KygekTeam plugins</li>
</ul>
<p>David also runs a YouTube channel called DavidDGTNT, where he makes videos on various video games, and another channel called DavidCode, where he codes various things.</p> <p>Lyza in real life is David's dog. Lyza barks a lot in David's backyard, and loves to play ball. She is adventurous and will take any chance she gets to go on an adventure. Lyza would love these books if she could read them!</p>
</main>
<h2>About Lyza</h2> </div>
<p>Lyza in real life is David's dog. Lyza barks a lot in David's backyard, and loves to play ball. She is adventurous and will take any chance she gets to go on an adventure. Lyza would love these books if she could read them!</p>
</main>
</body> </body>
</html> </html>

View File

@ -1,10 +1,12 @@
body { body {
margin: 10px; margin: 15px;
margin-top: 45px;
background-color: #828282; background-color: #828282;
} }
main, header { .content {
border-radius: 25px; border-radius: 25px;
padding: 10px;
background: linear-gradient(270deg, #a52a2a, #d2691e, #ee6e40, #ff7f50, #ff7f61, #ff8f61); background: linear-gradient(270deg, #a52a2a, #d2691e, #ee6e40, #ff7f50, #ff7f61, #ff8f61);
background-size: 1200% 1200%; background-size: 1200% 1200%;
@ -41,48 +43,37 @@ header {
padding: 10px; padding: 10px;
margin: 10px; margin: 10px;
width: 95.75%; width: 95.75%;
text-align: center; overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
} }
header img { header img {
padding: 10px; padding: 15px;
background-color: #a52a2a; border-radius: 25px;
display: block; display: inline-block;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
width: 20%; width: 20%;
height: auto; height: auto;
} }
header nav { header a {
display: flex;
justify-content: center;
width: 100%;
}
nav ul {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0px;
padding: 10px; padding: 10px;
background-color: #d2691e;
}
nav li {
display: inline;
}
nav li a {
transition: background-color 1s;
display: inline-block; display: inline-block;
transition: background-color 1s;
color: #ffffff; color: #ffffff;
background-color: #a52a2a; background-color: #a52a2a;
text-align: center; text-align: center;
padding: 14px 16px; padding: 14px 16px;
text-decoration: none; text-decoration: none;
font-family: "M PLUS 1", sans-serif; font-family: "M PLUS 1", sans-serif;
border-radius: 25px;
} }
nav li a:hover { header a:hover {
background-color: #d2691e; background-color: #d2691e;
} }
@ -97,6 +88,7 @@ nav li a:hover {
main { main {
margin: 10px; margin: 10px;
padding: 10px; padding: 10px;
border-radius: 25px;
background-color: #d2691e; background-color: #d2691e;
font-family: "Open Sans", sans-serif; font-family: "Open Sans", sans-serif;
color: #ffffff; color: #ffffff;
@ -104,4 +96,22 @@ main {
main p { main p {
font-family: "Roboto", sans-serif; font-family: "Roboto", sans-serif;
}
::-webkit-scrollbar {
border-radius: 25px;
}
::-webkit-scrollbar-track {
visibility: hidden;
margin: 20px;
}
::-webkit-scrollbar-thumb {
border-radius: 25px;
background-color: #544c4a;
}
::-webkit-scrollbar-thumb:hover {
background-color: #363636;
} }

BIN
src/assets/img/banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

View File

@ -6,29 +6,27 @@
<link rel="stylesheet" href="../assets/css/fonts.css"> <link rel="stylesheet" href="../assets/css/fonts.css">
</head> </head>
<body> <body>
<header> <div class="content">
<img src="../assets/img/lyza.png" width="250" height="250"><br> <header>
<nav> <img src="../assets/img/banner.png">
<ul> <a href="../index.html">Home</a>
<li><a href="../index.html">Home</a></li> <a href="../about/index.html">About</a>
<li><a href="../about/index.html">About</a></li><br><br> <a href="#" class="current">Lyza the Sheepdog: Christmas</a>
<li><a href="#" class="current">Lyza the Sheepdog: Christmas</a></li><br><br> <a href="../book2/index.html">Lyza the Sheepdog: The Flood</a>
<li><a href="../book2/index.html">Lyza the Sheepdog: The Flood</a></li> </header>
</ul> <main>
</nav> <h2>Lyza the Sheepdog: Christmas</h2>
</header>
<main>
<h2>Lyza the Sheepdog: Christmas</h2>
<p><img src="../assets/img/book1cover.png" alt="Lyza the Sheepdog: Christmas cover" title="" /></p> <p><img src="../assets/img/book1cover.png" alt="Lyza the Sheepdog: Christmas cover" title="" /></p>
<p>Hey look, a baby has been born! Wait, what is that star? </p> <p>Hey look, a baby has been born! Wait, what is that star? </p>
<p>In Lyza the Sheepdog: Christmas, Lyza talks to the animals that were at the stable at Jesus' birth. She hears what others are thinking about what's going on, and tries to figure out whats going on herself. </p> <p>In Lyza the Sheepdog: Christmas, Lyza talks to the animals that were at the stable at Jesus' birth. She hears what others are thinking about what's going on, and tries to figure out whats going on herself. </p>
<p>When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals. </p> <p>When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals. </p>
<p>This book was released in December of 2020.</p> <p>This book was released in December of 2020.</p>
</main> </main>
</div>
</body> </body>
</html> </html>

View File

@ -6,29 +6,27 @@
<link rel="stylesheet" href="../assets/css/fonts.css"> <link rel="stylesheet" href="../assets/css/fonts.css">
</head> </head>
<body> <body>
<header> <div class="content">
<img src="../assets/img/lyza.png" width="250" height="250"><br> <header>
<nav> <img src="../assets/img/banner.png">
<ul> <a href="../index.html">Home</a>
<li><a href="../index.html">Home</a></li> <a href="../about/index.html">About</a>
<li><a href="../about/index.html">About</a></li><br><br> <a href="../book1/index.html">Lyza the Sheepdog: Christmas</a>
<li><a href="../book1/index.html">Lyza the Sheepdog: Christmas</a></li><br><br> <a href="../book2/index.html" class="current">Lyza the Sheepdog: The Flood</a>
<li><a href="../book2/index.html" class="current">Lyza the Sheepdog: The Flood</a></li> </header>
</ul> <main>
</nav> <h2>Lyza the Sheepdog: The Flood</h2>
</header>
<main>
<h2>Lyza the Sheepdog: The Flood</h2>
<p><img src="../assets/img/book2cover.png" alt="Lyza the Sheepdog: The Flood cover" title="" /></p> <p><img src="../assets/img/book2cover.png" alt="Lyza the Sheepdog: The Flood cover" title="" /></p>
<p>Hey! Why's there water on my back? </p> <p>Hey! Why's there water on my back? </p>
<p>In Lyza the Sheepdog: The Flood, Lyza talks to the animals that were at going to the Ark before the flood. She hears what others are thinking about what's going on, and tries to figure out whats going on herself. </p> <p>In Lyza the Sheepdog: The Flood, Lyza talks to the animals that were at going to the Ark before the flood. She hears what others are thinking about what's going on, and tries to figure out whats going on herself. </p>
<p>When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals. </p> <p>When you read this book, you enter the world of Lyza the Sheepdog, a world where the event of Jesus' birth and all things that came before are the same, and we can see the fictional responses of the animals. </p>
<p>This book was released in December of 2021.</p> <p>This book was released in December of 2021.</p>
</main> </main>
</div>
</body> </body>
</html> </html>

View File

@ -6,37 +6,26 @@
<link rel="stylesheet" href="assets/css/fonts.css"> <link rel="stylesheet" href="assets/css/fonts.css">
</head> </head>
<body> <body>
<header> <div class="content">
<img src="assets/img/lyza.png" width="250" height="250"><br> <header>
<nav> <img src="assets/img/banner.png">
<ul> <a href="#" class="current">Home</a></li>
<li><a href="#" class="current">Home</a></li> <a href="about/index.html">About</a>
<li><a href="about/index.html">About</a></li><br><br> <a href="book1/index.html">Lyza the Sheepdog: Christmas</a>
<li><a href="book1/index.html">Lyza the Sheepdog: Christmas</a></li><br><br> <a href="book2/index.html">Lyza the Sheepdog: The Flood</a>
<li><a href="book2/index.html">Lyza the Sheepdog: The Flood</a></li> </header>
</ul> <main>
</nav> <h2>Travel back in time</h2>
</header>
<main>
<h2>Travel back in time</h2>
<p>With the Lyza the Sheepdog series of books, you can go back in time and see what the animals in the time of Bible stories with animals thought about the events and what they thought was happening. You can learn more about the books on their respective pages accessible in the Books section of the title bar.</p> <p>With the Lyza the Sheepdog series of books, you can go back in time and see what the animals in the time of Bible stories with animals thought about the events and what they thought was happening. You can learn more about the books on their respective pages accessible in the Books section of the title bar.</p>
<div class="flex-w"> <div class="flex-w">
<!-- <h2>Where to buy Lyza the Sheepdog books:</h2> <div class="flex-c">
<h2>Where to buy</h2>
<ul> <p>Lyza the Sheepdog books are available at various retailers, including Walmart, Target, Barnes and Noble, and Books a Million.</p>
<li>David Book Stores</li> </div>
<li>Barnes and Noble</li> </div>
<li>Books a Million</li> </main>
<li>Walmart</li> </div>
<li>SlushCo</li>
<li>Target</li>
</ul> -->
<div class="flex-c">
<h2>Where to buy</h2>
<p>Lyza the Sheepdog books are available at various retailers, including Walmart, Target, Barnes and Noble, and Books a Million.</p>
</div>
</main>
</body> </body>
</html> </html>