style
This commit is contained in:
parent
01423bd7f0
commit
8111e1bf5d
0
docs/.nojekyll
Normal file
0
docs/.nojekyll
Normal file
BIN
docs/favicon.ico
Normal file
BIN
docs/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
@ -2,34 +2,45 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<title>Turn 0 Around</title>
|
<title>Turn 0 Around</title>
|
||||||
<style type="text/css">
|
<link type="text/plain" rel="author" href="http://iiiypuk.me/humans.txt">
|
||||||
html,
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
body {
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
height: 90%;
|
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet">
|
||||||
}
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #38607c;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.wrap {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1.slogan {
|
|
||||||
font-family: sans-serif;
|
|
||||||
color: #d44e52;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="wrap">
|
<div class="container">
|
||||||
<h1 class="slogan">licking and assemble</h1>
|
<header>
|
||||||
|
<p>
|
||||||
|
Turn 0 Around
|
||||||
|
<span class="slogan">// licking and assemble //</span>
|
||||||
|
</p>
|
||||||
|
<!-- <p id="languages">
|
||||||
|
<a href="/ru/">Switch to Russian</a>
|
||||||
|
</p> -->
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
<a href="#">Blog</a>
|
||||||
|
<a href="#">Games</a>
|
||||||
|
<a href="#">Products</a>
|
||||||
|
<a href="#">Vacancies</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
<p class="future">
|
||||||
|
!! DANGER !!<br>
|
||||||
|
Soon. In the near future.
|
||||||
|
</p>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
made by
|
||||||
|
<a href="//iiiypuk.me/">iiiypuk</a>
|
||||||
|
with love
|
||||||
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
95
docs/styles.css
Normal file
95
docs/styles.css
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
body {
|
||||||
|
height: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: #2f3542;
|
||||||
|
font-family: ABeeZee;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.container {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
padding: 16px;
|
||||||
|
margin: 16px 0;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p#languages {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p#languages a { color: #ffffff; }
|
||||||
|
|
||||||
|
span.slogan {
|
||||||
|
color: #a4b0be;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #ff96a6;
|
||||||
|
flex-grow: 1;
|
||||||
|
text-align: center;
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 16px;
|
||||||
|
transition: all 200ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a:hover {
|
||||||
|
background-color: #ff6b81;
|
||||||
|
transition: all 200ms;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0px;
|
||||||
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 16px auto;
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.future {
|
||||||
|
color: #ff6b81;
|
||||||
|
font-size: 2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #ff4757;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
border-bottom: 1px dashed #ff4757;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user