This commit is contained in:
Roman Pyrih
2026-01-30 11:33:39 +01:00
parent e67afd2957
commit dfbeb0ee92
3 changed files with 38 additions and 13 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,13 +1,13 @@
// out: ../style-css/style.css, compress: true, sourceMap: true
@import "_mixins";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
@import '_mixins';
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
$cGrayLight: #f0f0f0;
$cBlack: #000;
$cBlue: #90d4f0;
$cBlueDark: #22a9e1;
body {
font-family: "Open Sans", sans-serif;
font-family: 'Open Sans', sans-serif;
font-size: 15px;
&.noscroll {
@@ -99,7 +99,7 @@ body {
}
&::after {
content: "";
content: '';
display: block;
width: 60%;
bottom: -2px;
@@ -624,7 +624,7 @@ body {
.box-guarantee {
color: #ffffff;
background-image: url("/upload/filemanager/layout/box-guarantee-bg.jpg");
background-image: url('/upload/filemanager/layout/box-guarantee-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
@@ -632,7 +632,7 @@ body {
position: relative;
&::after {
content: "";
content: '';
display: block;
background: rgba(0, 0, 0, 0.5);
width: 100%;
@@ -745,7 +745,7 @@ body {
&::after {
background: $cBlueDark;
content: "";
content: '';
display: block;
position: absolute;
top: 0;
@@ -796,7 +796,7 @@ body {
}
.box-career {
background-image: url("/upload/filemanager/layout/box-career-bg.jpg");
background-image: url('/upload/filemanager/layout/box-career-bg.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
@@ -1234,7 +1234,7 @@ body {
overflow: hidden;
&::after {
content: "";
content: '';
display: block;
background: rgba(0, 0, 0, 0.33);
width: calc(100% - 30px);
@@ -1279,7 +1279,7 @@ body {
margin-bottom: 30px;
&::after {
content: "";
content: '';
display: block;
background: rgba(0, 0, 0, 0.33);
width: 100%;
@@ -1357,7 +1357,8 @@ body {
#scontainer-32 {
max-height: calc(100vh - 141px);
background: #000;
// background: #000;
text-align: center;
.scontainer-content {
height: 100%;
@@ -1373,3 +1374,27 @@ body {
}
}
}
.box-promo {
padding-bottom: 0;
text-align: center;
#scontainer-33 {
max-width: 940px;
margin: 0 auto;
.box-title {
margin: 0 auto 35px;
}
a {
color: rgb(34, 169, 225);
transition: 0.5s;
&:hover {
color: #000;
text-decoration: none;
}
}
}
}