rebuild front

This commit is contained in:
2022-03-19 16:36:47 +03:00
parent 600b69ea83
commit 9d44d79ffd
7 changed files with 54 additions and 86 deletions

Binary file not shown.

BIN
app/assets/images/bg.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

BIN
app/assets/images/thumb.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 MiB

45
app/assets/styles/app.css Normal file
View File

@@ -0,0 +1,45 @@
@font-face {
font-family: "ProximaNova";
src: url("../fonts/proximanova_regular.ttf") format("truetype");
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
}
body {
background-image: url(../images/bg.gif);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
min-height: 100vh;
}
.page-title__wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.page-title {
position: relative;
color: rgb(88, 145, 229);
font-family: "ProximaNova", serif;
font-size: 56pt;
text-transform: uppercase;
}
.page-title::after {
position: absolute;
left: 5px;
top: 5px;
color: white;
content: "ostiwe";
font-family: "ProximaNova", serif;
font-size: 56pt;
text-transform: uppercase;
}