Правки.

This commit is contained in:
Yulia Polushvayko
2025-06-02 17:19:49 +03:00
parent 374f427d2e
commit 4f07c30c2f
7 changed files with 67 additions and 32 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

View File

@ -29,6 +29,22 @@
}
.video-text {
color: bisque;
color:rgba(232, 232, 232, 0.484);
/* filter: blur(1px); */
filter: drop-shadow(5px 5px 10px #c9c9c9);
z-index: 2;
}
.hello-anim {
animation: helloAnim 10s linear 0s 1 normal forwards;
}
@keyframes helloAnim {
0% {
transform: scale(0.1);
}
100% {
transform: scale(1);
}
}

View File

@ -5,6 +5,15 @@ body {
/* background: linear-gradient(0deg, #ffffff 87%, #242424 100%); */
}
.navbar {
background-color: #242424;
}
.navbar-collapse {
display: flex;
justify-content: space-between;
}
.nav-link {
color:rgb(178, 178, 178);
}
@ -102,12 +111,6 @@ body {
}
}
@media (max-width: 755px) {
.carousel-indicators {
display: none;
}
}
footer {
border-top: solid;
border-width: 1px;
@ -126,4 +129,10 @@ footer {
.btn-outline-primary {
background-color: #242424;
}
@media (max-width: 755px) {
.carousel-indicators {
display: none;
}
}