mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Error layout
This commit is contained in:
parent
e14cb231c0
commit
1554248284
2 changed files with 104 additions and 1 deletions
102
core/client/assets/sass/layouts/error.scss
Normal file
102
core/client/assets/sass/layouts/error.scss
Normal file
|
@ -0,0 +1,102 @@
|
||||||
|
//
|
||||||
|
// Error Pages
|
||||||
|
// --------------------------------------------------
|
||||||
|
// Slug: /ghost/404
|
||||||
|
// --------------------------------------------------
|
||||||
|
// Covers styles for all error screens, eg. 404, 500
|
||||||
|
|
||||||
|
.error-content {
|
||||||
|
max-width: 530px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 0;
|
||||||
|
display: table;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
@media (max-width: 630px) {
|
||||||
|
max-width: 264px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-details {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-image {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
width: 96px;
|
||||||
|
height: 150px;
|
||||||
|
|
||||||
|
@media (max-width: 630px) {
|
||||||
|
width: 72px;
|
||||||
|
height: 112px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-message {
|
||||||
|
position: relative;
|
||||||
|
top: -5px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-code {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 7.8em;
|
||||||
|
line-height: 0.9em;
|
||||||
|
color: #979797;
|
||||||
|
|
||||||
|
@media (max-width: 630px) {
|
||||||
|
font-size: 5.8em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-description {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 1.9em;
|
||||||
|
color: #979797;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
@media (max-width: 630px) {
|
||||||
|
font-size: 1.4em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-stack {
|
||||||
|
margin: 1em auto;
|
||||||
|
padding: 2em;
|
||||||
|
max-width: 800px;
|
||||||
|
background-color: rgba(255,255,255,0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-stack-list {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-stack-list li {
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
color: #BBB;
|
||||||
|
content: "\21AA";
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 1.2em;
|
||||||
|
margin-right: 0.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.error-stack-function {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
// Helpers: Sass Utilities
|
// Helpers: Sass Utilities
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@import "_bourbon"; // via Bower http://bourbon.io/
|
@import "_bourbon"; // via Bower
|
||||||
@import "helpers/variables";
|
@import "helpers/variables";
|
||||||
@import "helpers/mixins";
|
@import "helpers/mixins";
|
||||||
@import "helpers/icons";
|
@import "helpers/icons";
|
||||||
|
@ -51,3 +51,4 @@
|
||||||
@import "layouts/editor";
|
@import "layouts/editor";
|
||||||
@import "layouts/users";
|
@import "layouts/users";
|
||||||
@import "layouts/about";
|
@import "layouts/about";
|
||||||
|
@import "layouts/error";
|
Loading…
Add table
Reference in a new issue