This commit is contained in:
Roman Pyrih
2026-02-17 09:38:54 +01:00
parent df678e6fc0
commit ff2d58dc32
57 changed files with 132 additions and 66 deletions

View File

@@ -1,6 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('http://fonts.cdnfonts.com/css/bahnschrift');
@import url('https://fonts.cdnfonts.com/css/bahnschrift');
$cWhite: #ffffff;
$cBlack: #000;

View File

@@ -434,6 +434,7 @@ select {
border-radius: 0;
padding: 32px 5px;
background: transparent;
min-height: unset;
&::before {
content: '';
@@ -938,6 +939,11 @@ select {
@include respond-below(sm) {
max-width: 470px;
}
@include respond-below(xs) {
&:last-child {
margin-bottom: 0;
}
}
p {
color: $cWhite;
font-family: $font3;
@@ -969,6 +975,9 @@ select {
}
.box-form {
@include respond-below(xs) {
margin-bottom: 30px;
}
form {
display: flex;
flex-direction: column;
@@ -994,6 +1003,10 @@ select {
label {
margin: 0;
@include respond-below(xs) {
display: none;
}
}
input {
@@ -1039,10 +1052,40 @@ select {
font-size: 14px;
padding: 10px 20px 9px;
}
@include respond-below(xs) {
margin: 5px;
height: 50px;
padding: 5px 15px 4px;
}
span {
@include respond-below(xs) {
display: none;
}
}
img {
@include respond-above(xs) {
display: none;
}
@include respond-below(xs) {
filter: invert(1);
}
}
}
}
}
}
.c-row--mobile {
@include respond-above(xs) {
display: none;
}
}
.c-row--pc {
@include respond-below(xs) {
display: none;
}
}
}
}
}