upd init page structure

This commit is contained in:
Nikolai Petukhov
2024-09-21 13:53:46 +03:00
parent e75288a6f0
commit 2ce5bb8d7a
10 changed files with 87 additions and 87 deletions

View File

@@ -1,4 +1,45 @@
.TestInit {
color: blue;
font-size: 40px;
}
.backgroundImage {
width: 100%;
height: 100vh;
background-color: darkgray;
background-size: cover;
background-position: center;
position: relative;
}
.blurEffect {
width: 100%;
height: 100%;
background-image: url("./../../../images/home_wp.jpg");
background-size: cover;
background-position: center;
filter: blur(10px);
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.overBlur {
position: relative;
z-index: 2;
}
.initTitlePos {
top: 10%;
}
.navButtons {
display: flex;
flex-direction: column;
align-items: center;
top: 17%;
}