0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-14 11:09:04 -05:00
penpot/frontend/resources/styles/main/layouts/not-found.scss

81 lines
1.2 KiB
SCSS
Raw Normal View History

2020-04-02 17:08:24 +02:00
.not-found-layout {
display: grid;
grid-template-rows: 120px auto;
grid-template-columns: 1fr;
}
.not-found-header {
grid-column: 1 / span 1;
grid-row: 1 / span 1;
display: flex;
align-items: center;
padding: 32px;
svg {
height: 55px;
width: 170px;
}
}
.not-found-content {
grid-column: 1 / span 1;
grid-row: 1 / span 2;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
2021-01-22 14:33:18 +01:00
.container {
max-width: 600px;
}
.image {
2020-04-13 14:58:30 +02:00
align-items: center;
display: flex;
justify-content: center;
margin-bottom: 2rem;
svg {
2021-01-22 14:33:18 +01:00
height: 220px;
width: 220px;
2020-04-13 14:58:30 +02:00
}
}
2020-04-02 17:08:24 +02:00
.main-message {
color: $color-black;
font-size: $fs80;
line-height: $lh-188; // Original value was 150px; 150px/80px = 187.5 % => lh-188 (rounded)
2020-04-13 14:58:30 +02:00
text-align: center;
2020-04-02 17:08:24 +02:00
}
.desc-message {
color: $color-black;
font-size: $fs26;
font-weight: $fw300;
2020-04-13 14:58:30 +02:00
text-align: center;
2020-04-02 17:08:24 +02:00
}
2020-04-14 10:45:35 +02:00
2021-01-22 14:33:18 +01:00
.sign-info {
margin-top: 20px;
color: $color-black;
font-size: $fs16;
font-weight: $fw200;
2021-01-22 14:33:18 +01:00
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
b {
font-weight: $fw400;
2021-01-22 14:33:18 +01:00
}
.btn-primary {
margin-top: 15px;
}
2020-04-14 10:45:35 +02:00
}
2020-04-02 17:08:24 +02:00
}