Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
feat: error page improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanViknar committed Apr 22, 2024
1 parent da9df5c commit 7012771
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
14 changes: 13 additions & 1 deletion public/css/error.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
main i {
main i#pain {
font-size: 1em;
color: rgb(255, 0, 0);
}

div#error_title {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}

div#error_title img {
width: 4.5vw;
margin-right: 1vw;
}
Binary file added public/img/big-vindicator-face.webp
Binary file not shown.
7 changes: 5 additions & 2 deletions resources/views/error.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
<body>
<div class="box">
<div class="sign">
<h1>Erreur 404 !</h1>
<p>Hurr. Huh. Pin ! Puh ! Puh ! <i>Pwuh !</i></p>
<div id="error_title">
<img src="{{ asset('img/big-vindicator-face.webp') }}" alt="404 image"/>
<h1>Erreur 404 !</h1>
</div>
<i><p>Pin ! Puh ! Puh ! <i id="pain">Pwuh !</i></p></i>
<p>Page non trouvée...</p>
</div>
</div>
Expand Down

0 comments on commit 7012771

Please sign in to comment.