jfasifjrwlijrwehwoirhweor

This commit is contained in:
KZacharski 2023-08-19 22:24:54 +02:00
parent 5f5b63b6f7
commit 7dd224b2ed
2 changed files with 71 additions and 21 deletions

View File

@ -27,7 +27,7 @@
<div class="getstartedcontent"> <div class="getstartedcontent">
<img src="./assets/ic_fluent_rocket_24_filled.svg" height="40px" class="gep"> <img src="./assets/ic_fluent_rocket_24_filled.svg" height="40px" class="gep">
<h2 class="gep">Get started</h2> <h2 class="gep">Get started</h2>
<p class="gep">Read the introduction and download diji</p> <p class="gep gepar">Read the introduction and download diji</p>
</div> </div>
</div> </div>
</div> </div>
@ -36,7 +36,7 @@
<div class="getstartedcontent"> <div class="getstartedcontent">
<img src="./assets/ic_fluent_apps_add_in_24_filled.svg" height="40px" class="gep"> <img src="./assets/ic_fluent_apps_add_in_24_filled.svg" height="40px" class="gep">
<h2 class="gep">Install diji</h2> <h2 class="gep">Install diji</h2>
<p class="gep">How to install diji properly</p> <p class="gep gepar">How to install diji properly</p>
</div> </div>
</div> </div>
</div> </div>
@ -45,7 +45,7 @@
<div class="getstartedcontent"> <div class="getstartedcontent">
<img src="./assets/ic_fluent_star_24_filled.svg" height="40px" class="gep"> <img src="./assets/ic_fluent_star_24_filled.svg" height="40px" class="gep">
<h2 class="gep">Favicons</h2> <h2 class="gep">Favicons</h2>
<p class="gep">Learn how to set your own default favicon</p> <p class="gep gepar">Learn how to set your own default favicon</p>
</div> </div>
</div> </div>
</div> </div>
@ -55,7 +55,7 @@
<div class="getstartedcontent"> <div class="getstartedcontent">
<img src="./assets/ic_fluent_settings_24_filled.svg" height="40px" class="gep"> <img src="./assets/ic_fluent_settings_24_filled.svg" height="40px" class="gep">
<h2 class="gep">Configuration</h2> <h2 class="gep">Configuration</h2>
<p class="gep">Extra options explained</p> <p class="gep gepar">Extra options explained</p>
</div> </div>
</div> </div>
@ -66,15 +66,15 @@
<div id="drawer" class="navdrawer"> <div id="drawer" class="navdrawer">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"><img src="./assets/ic_fluent_chevron_left_24_filled.svg" width="30px"></a> <img src="./assets/dijidocs.png" height="40px" class="logodrawer">
<a href="#">About</a> <a href="javascript:void(0)" class="closebtn navdrawera" onclick="closeNav()"><img src="./assets/ic_fluent_chevron_left_24_filled.svg" width="30px"></a>
<a href="#">Services</a> <a href="#" class="navdrawerlinkactive">Homepage</a>
<a href="#">Clients</a> <a href="#" class="navdrawerlink">Introduction</a>
<a href="#">Contact</a> <a href="#" class="navdrawerlink">Installation</a>
</div> </div>
<div id="drawerbg" class="navdrawerbg" onclick="closeNav()"></div> <div id="drawerbg" class="navdrawerbg" onclick="closeNav()"></div>
<div class="footer"> <div class="footer">
<p class="ftrtext">Created by <a>KZacharski (Puffercat)</a></p> <p class="ftrtext">Created by <a href="https://puffercat.xyz" class="footerlink">KZacharski (Puffercat)</a></p>
<p class="ftrtext">Project created with diji 1.1</p> <p class="ftrtext">Project created with diji 1.1</p>
</div> </div>
</body> </body>

View File

@ -39,6 +39,8 @@ color: white;
margin: 0; margin: 0;
} }
.banner { .banner {
object-fit: cover; object-fit: cover;
max-height: 400px; max-height: 400px;
@ -58,10 +60,11 @@ color: white;
z-index: 1; /* Stay on top */ z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */ top: 0; /* Stay at the top */
left: 0; left: 0;
background-color: #111; /* Black*/ background-color: #000000; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */ overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 15px; /* Place content 60px from the top */ padding-top: 50px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ transition: 0.3s; /* 0.5 second transition effect to slide in the sidenav */
box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.473);
} }
.navdrawerbg { .navdrawerbg {
@ -78,28 +81,68 @@ color: white;
} }
/* The navigation menu links */ /* The navigation menu links */
.navdrawer a { .navdrawera {
padding: 8px 8px 8px 32px; padding: 6px 6px 6px 28px;
margin: 10px;
text-decoration: none; text-decoration: none;
font-size: 25px; font-size: 17px;
color: #818181; color: #ffffff;
display: block; display: block;
transition: 0.3s; transition: 0.3s;
} }
.navdrawerlink {
padding: 6px 6px 6px 10px;
margin: 10px;
text-decoration: none;
font-size: 17px;
color: #ffffff;
display: block;
font-weight: 500;
transition: 0.3s;
border-radius: 10px;
}
.navdrawerlinkactive {
padding: 6px 6px 6px 10px;
margin: 10px;
text-decoration: none;
font-size: 17px;
color: #000000;
background-color: #ffffff;
display: block;
font-weight: 500;
transition: 0.3s;
border-radius: 10px;
}
/* When you mouse over the navigation links, change their color */ /* When you mouse over the navigation links, change their color */
.navdrawer a:hover { .navdrawera:hover {
color: #f1f1f1; color: #969696;
}
.navdrawerlink:hover {
background-color: #ffffff15;
} }
/* Position and style the close button (top right corner) */ /* Position and style the close button (top right corner) */
.navdrawer .closebtn { .navdrawer .closebtn {
position: absolute; position: absolute;
top: 0; top: 0;
right: 25px; margin-top: 0;
right: 7px;
font-size: 36px; font-size: 36px;
margin-left: 50px; margin-left: 50px;
} }
.navdrawer .logodrawer {
position: absolute;
top: 10px;
margin-top: 0;
left: 7px;
font-size: 36px;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */ /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main { #main {
@ -202,4 +245,11 @@ color: white;
padding: 20px; padding: 20px;
} .ftrtext { } .ftrtext {
margin: 5px; margin: 5px;
} } .footerlink {
color: white;
transition: .2s;
}
.footerlink:hover {
opacity: 0.6;
}