home page is done

This commit is contained in:
Nikolai Petukhov
2024-09-21 15:53:37 +03:00
parent 2ce5bb8d7a
commit 93ed4ce7fc
15 changed files with 478 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
.homeTitleWrapper {
display: flex;
flex-direction: row;
}
.homeTitle {
font-size: 5vw;
transition: color 0.3s ease-in;
}
.homeTitleWrapper:hover h1 {
color: orange;
}
@media only screen and (max-width: 800px) {
.homeTitle {
font-size: 8vh;
}
}
.chatIcon {
width: 6vw;
margin-left: 3vw;
}