Skip to content
Merged
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
6 changes: 3 additions & 3 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
</section>
</header>
<body>
<div class="container not-found">
<h1 class="not-found-title">404!</h1>
<p class="not-found-desc">
<div class="content not-found">
<h1>404!</h1>
<p align="center">
<b>Looks like I didn't developed that yet!</b> <br>
If you want to suggest me something, talk to me on any of
<a href="/#socials">my socials!</a>
Expand Down
22 changes: 12 additions & 10 deletions resources/stylesheet.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

:root {
--navbar-color: #336588;
--navbar-color: rgb(47, 49, 54);
--background-color: #1e1e1f;
--primary-color: #3a4750;
--secondary-color: #343c42;
Expand Down Expand Up @@ -179,21 +179,23 @@ footer a {
color: white;
}

.not-found-title {
font-size: 45px;
.content.not-found h1 {
font-size: 40px;
font-style: bold;
position: flex;
}

.not-found-desc {
font-size: 20px;
.content.not-found p {
width: auto;
font-size: large;
}

.container.not-found {
width: 100%;
margin-top: 20%;
.content.not-found {
width:fit-content;
height: fit-content;
position: flex;
top: calc(100vh / 2 - 18vh);
position: absolute;
text-align: center;
width: 100%;
content: center;
text-align: center;
}