This commit is contained in:
Roman Pyrih
2026-01-30 10:22:19 +01:00
parent 4cc1f5a585
commit 44d3f6e82f
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 // out: ../style-css/style.css, compress: true, sourceMap: true
@import "_mixins"; @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 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; $cGrayLight: #f0f0f0;
$cBlack: #000; $cBlack: #000;
$cBlue: #90d4f0; $cBlue: #90d4f0;
$cBlueDark: #22a9e1; $cBlueDark: #22a9e1;
body { body {
font-family: "Open Sans", sans-serif; font-family: 'Open Sans', sans-serif;
font-size: 15px; font-size: 15px;
&.noscroll { &.noscroll {
@@ -99,7 +99,7 @@ body {
} }
&::after { &::after {
content: ""; content: '';
display: block; display: block;
width: 60%; width: 60%;
bottom: -2px; bottom: -2px;
@@ -616,7 +616,7 @@ body {
.box-guarantee { .box-guarantee {
color: #ffffff; 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-repeat: no-repeat;
background-size: cover; background-size: cover;
background-attachment: fixed; background-attachment: fixed;
@@ -624,7 +624,7 @@ body {
position: relative; position: relative;
&::after { &::after {
content: ""; content: '';
display: block; display: block;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
width: 100%; width: 100%;
@@ -723,7 +723,7 @@ body {
&::after { &::after {
background: $cBlueDark; background: $cBlueDark;
content: ""; content: '';
display: block; display: block;
position: absolute; position: absolute;
top: 0; top: 0;
@@ -778,7 +778,7 @@ body {
} }
.box-career { .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-repeat: no-repeat;
background-size: cover; background-size: cover;
background-attachment: fixed; background-attachment: fixed;
@@ -1216,7 +1216,7 @@ body {
overflow: hidden; overflow: hidden;
&::after { &::after {
content: ""; content: '';
display: block; display: block;
background: rgba(0, 0, 0, 0.33); background: rgba(0, 0, 0, 0.33);
width: calc(100% - 30px); width: calc(100% - 30px);
@@ -1261,7 +1261,7 @@ body {
margin-bottom: 30px; margin-bottom: 30px;
&::after { &::after {
content: ""; content: '';
display: block; display: block;
background: rgba(0, 0, 0, 0.33); background: rgba(0, 0, 0, 0.33);
width: 100%; width: 100%;
@@ -1359,7 +1359,8 @@ body {
#scontainer-38 { #scontainer-38 {
max-height: calc(100vh - 141px); max-height: calc(100vh - 141px);
background: #000; // background: #000;
text-align: center;
.scontainer-content { .scontainer-content {
height: 100%; height: 100%;
@@ -1375,3 +1376,27 @@ body {
} }
} }
} }
.box-promo {
padding-bottom: 0;
text-align: center;
#scontainer-39 {
max-width: 690px;
margin: 0 auto;
.box-title {
margin: 0 auto 35px;
}
a {
color: rgb(34, 169, 225);
transition: 0.5s;
&:hover {
color: #000;
text-decoration: none;
}
}
}
}