mirror of
https://github.com/WerySkok/weryskok.ru.git
synced 2025-04-23 00:13:01 +03:00
Initial commit
This commit is contained in:
commit
aa7ebd8327
2 changed files with 93 additions and 0 deletions
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
minified/android-chrome-192x192.png
|
||||
minified/android-chrome-512x512.png
|
||||
minified/apple-touch-icon.png
|
||||
minified/browserconfig.xml
|
||||
minified/favicon-16x16.png
|
||||
minified/favicon-32x32.png
|
||||
minified/favicon.ico
|
||||
minified/index.html
|
||||
minified/mstile-150x150.png
|
||||
minified/safari-pinned-tab.svg
|
||||
minified/site.webmanifest
|
||||
index.min.html
|
81
index.html
Normal file
81
index.html
Normal file
|
@ -0,0 +1,81 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="ru">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Сайт готовится</title>
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Inter', sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-right: -50%;
|
||||
transform: translate(-50%, -50%);
|
||||
padding: 0 5vmin;
|
||||
max-width: 100vw;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: dotted;
|
||||
text-decoration-line: underline;
|
||||
text-decoration-thickness: .05vmin;
|
||||
}
|
||||
|
||||
nav {
|
||||
background-color: #F8F9FA;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-flow: row nowrap;
|
||||
padding: .5em;
|
||||
}
|
||||
|
||||
a.sitelogo {
|
||||
font-weight: 600;
|
||||
font-size: 2.5em;
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
width: max-content;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
</style>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<meta name="msapplication-TileColor" content="#2d89ef">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<a class="sitelogo" href="https://weryskok.ru">WerySkok.ru</a>
|
||||
</nav>
|
||||
<div class="center">
|
||||
<h1>Сайт готовится</h1>
|
||||
<p>Сайт только готовится к открытию, но если я вам срочно нужен, то вот вам мои контакты:</p>
|
||||
<ul>
|
||||
<li><a href="https://t.me/WerySkok">Telegram</a></li>
|
||||
<li><a href="https://vk.com/weryskok">ВКонтакте</a></li>
|
||||
<li><a href="mailto:i_am@weryskok.ru">i_am@WerySkok.ru</a></li>
|
||||
<li><a href="mailto:weryskok@gmail.com">weryskok@gmail.com</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue