Berkarar/themes/berkarar/assets/css/components/3-page/404.scss

78 lines
1.4 KiB
SCSS
Executable File

// 404 ===================
.error {
padding: 80px 0 100px;
&_box {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
}
&_icon {
width: calc(50% - 80px);
img {
@include ImgCon;
}
}
&_info {
width: calc(50% - 80px);
display: flex;
flex-direction: column;
align-items: flex-start;
}
&_sup-title {
font-size: 100px;
font-weight: 700;
line-height: 1.3;
}
&_title {
font-size: 28px;
font-weight: 700;
line-height: 1.3;
color: #FFB100;
margin: 40px 0 25px;
}
&_txt {
font-size: 18px;
font-weight: 500;
line-height: 1.3;
color: $gray;
max-width: 400px;
}
&_link {
display: flex;
align-items: center;
font-size: 14px;
font-weight: 700;
line-height: 1.3;
padding: 16px 25px;
margin-top: 40px;
background: #FFB100;
border-radius: 5px;
cursor: pointer;
span {
display: block;
margin-left: 10px;
width: 20px;
height: 20px;
svg {
@include ImgCon;
display: block;
}
}
}
}
// 404 end ===============