Поправка ошибок #2

This commit is contained in:
orange 2023-03-17 21:31:38 +06:00
parent 123fa72fbb
commit b71ee85548
3 changed files with 31 additions and 9 deletions

View file

@ -12,7 +12,7 @@
position: fixed;
height: 32px;
width: 100%;
background: #04f30f;
background: var(--main-g-color);
z-index: 999999999999;
}
.header > img {

View file

@ -14,7 +14,10 @@
<div class="info">
<b>Единый проход на сервера опен-сорс игр с регулярным тусейшеном и ахуенными плагинами <big>ヾ(⌐■_■)ノ♪</big></b>
</div>
<div class="elem"></div>
<div class="footer">
<h1>Зажигин Богдан Алексеевич · ИНН 519056542114</h1>
</div>
<script src="script.js"></script>
</body>
</html>

View file

@ -1,5 +1,10 @@
@import url("https://fonts.googleapis.com/css?family=Martian+Mono");
:root {
--main-b-color: #04030F;
--main-g-color: #04f30f;
}
* {
margin: 0;
padding: 0;
@ -8,12 +13,15 @@
font-size: 14pt;
}
body {
background: #04030F;
background: var(--main-b-color);
display: flex;
min-height: 1000vh;
flex-direction: column;
}
.info {
position: absolute;
background: #04f30f;
position: relative;
background: var(--main-g-color);
top: 32px;
width: 100%;
height: 384px;
@ -36,9 +44,20 @@ body {
overflow-wrap: break-word;
}
.elem {
width: 0;
height: 1000vw;
.footer {
display: block;
height: 32px;
width: 100%;
background: var(--main-g-color);
margin-top: auto;
text-align: center;
}
.footer > h1 {
letter-spacing: 4px;
width: 100%;
height: 100%;
padding: 5px 0px 8px 0px;
text-decoration: none;
text-transform: none;
}