feat: added development notify

This commit is contained in:
Lisoveliy 2025-05-17 14:16:07 +03:00
parent 7d9e5dc505
commit 23881cd83b
3 changed files with 18 additions and 3 deletions

View File

@ -17,6 +17,7 @@ html, body, #app, .app {
* { * {
font-family: 'Fira Code', monospace; font-family: 'Fira Code', monospace;
box-sizing: border-box; box-sizing: border-box;
color: #fff;
} }
a{ a{

View File

@ -3,9 +3,9 @@
<template> <template>
<div class="home-header"> <div class="home-header">
<a href="#">Главная</a> <a href="/">Главная</a>
<a href="#">Обо мне</a> <a href="https://git.lisoveliy.su/Lisoveliy">Git</a>
<a href="#">Контакты</a> <a href="https://t.me/lisoveliy">Telegram</a>
</div> </div>
</template> </template>

View File

@ -10,6 +10,9 @@ import HomeHeader from '../components/HomeHeader.vue'
<TypewriterText text="lisoveliy.su" :speed="75" :delay="300" :fontSize="'2.5rem'" /> <TypewriterText text="lisoveliy.su" :speed="75" :delay="300" :fontSize="'2.5rem'" />
<HomeHeader /> <HomeHeader />
</div> </div>
<div class="maintenance-notify">
<span>Сайт в разработке</span>
</div>
</div> </div>
</div> </div>
</template> </template>
@ -19,6 +22,17 @@ body {
animation: body-spectrum 4s 2.5s infinite; animation: body-spectrum 4s 2.5s infinite;
} }
.maintenance-notify{
position: absolute;
border: dashed 1px;
border-width: 3px;
right: 0;
bottom: 0;
padding: 20px;
background-color: #000000;
max-width: 600px;
}
@keyframes body-spectrum { @keyframes body-spectrum {
0% { 0% {
background-color: #b25116; background-color: #b25116;