created 3 blocks

This commit is contained in:
2026-07-14 17:02:33 +03:00
parent c02169ba1a
commit fa31fef9cf
14 changed files with 577 additions and 38 deletions
+29 -1
View File
@@ -1,7 +1,35 @@
@use './top-menu.scss';
@use './banner.scss';
@use './carousel.scss';
@use './services.scss';
* {
box-sizing: border-box;
font-family: "Mulish", sans-serif;
}
:root {
--main-text-color: #E9E9E9;
--bs-body-bg:#212121;
}
.block {
&-arrow {
position: relative;
top:-30px;
width: 100%;
height: 20px;
text-align: center;
background: {
image: url(../assets/arrow.svg);
repeat: no-repeat;
position: center;
}
}
}
.arrow-down {
display: inline-block;
width: 15px;
height: 15px;
border-right: 3px solid #fff;
border-bottom: 3px solid #fff;
transform: rotate(45deg);
}