first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
.error-page-left {
display: flex;
justify-content: center;
flex-direction: column;
.section-title {
margin-bottom: 26px;
padding-bottom: 21px;
}
> p {
width: 350px;
margin-bottom: 44px;
color: $color-gray;
}
.btn-back-to-home {
align-self: flex-start;
white-space: nowrap;
}
}
@media screen and (max-width: $lg) {
.error-page-left {
align-items: center;
text-align: center;
.section-title {
font-size: 28px;
line-height: 36px;
padding-bottom: 22px;
&:after {
right: 0;
margin: 0 auto;
}
}
.btn-back-to-home {
align-self: center;
}
}
}
@media screen and (max-width: 380px) {
.error-page-left {
> p {
width: auto;
}
}
}

View File

@@ -0,0 +1,24 @@
.error-page-right {
.error-image {
max-width: 100%;
}
}
@media screen and (max-width: $lg) {
.error-page-right {
margin-bottom: 43px;
text-align: center;
.error-image {
width: 400px;
}
}
}
@media screen and (max-width: 500px) {
.error-page-right {
.error-image {
width: 80%;
}
}
}