You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
<?php
|
|
/**
|
|
* The template for displaying 404 pages (Not Found)
|
|
*/
|
|
|
|
get_header('gp_eng'); ?>
|
|
<style>
|
|
:root {
|
|
--gradient-turquoise: linear-gradient(90deg, #00C4B4, #00A3E0);
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 120px;
|
|
margin: 0;
|
|
background: var(--gradient-turquoise);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-top:100px;
|
|
color: var(--gradient-turquoise);
|
|
}
|
|
|
|
|
|
.btn-home {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
background: var(--gradient-turquoise);
|
|
transition: transform 0.2s;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.btn-home:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
</style>
|
|
|
|
<div class="container" style="height: 390px;">
|
|
<h1>404</h1>
|
|
<p class="form__title">This page does not exist</p>
|
|
<a href="/" class="btn-home">Main page</a>
|
|
</div>
|
|
|
|
|
|
<?php get_footer('gp_eng'); ?>
|