Поправка ошибок #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; position: fixed;
height: 32px; height: 32px;
width: 100%; width: 100%;
background: #04f30f; background: var(--main-g-color);
z-index: 999999999999; z-index: 999999999999;
} }
.header > img { .header > img {

View file

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

View file

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