0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-27 00:49:28 -05:00
penpot/frontend/resources/styles/main/layouts/not-found.scss

63 lines
904 B
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;
2020-04-13 14:58:30 +02:00
.error-img {
align-items: center;
display: flex;
justify-content: center;
margin-bottom: 2rem;
svg {
height: 320px;
width: 200px;
}
}
2020-04-02 17:08:24 +02:00
.main-message {
color: $color-black;
2020-04-13 14:58:30 +02:00
font-size: 11rem;
line-height: 200px;
text-align: center;
2020-04-02 17:08:24 +02:00
}
.desc-message {
color: $color-black;
2020-04-13 14:58:30 +02:00
font-size: 2.2rem;
font-weight: 300;
text-align: center;
2020-04-02 17:08:24 +02:00
}
2020-04-14 10:45:35 +02:00
.btn-primary {
margin-top: $x-big;
}
2020-04-02 17:08:24 +02:00
}