Ghost/ghost/admin/app/styles/layouts/error.css

89 lines
1.4 KiB
CSS
Raw Normal View History

2015-05-14 16:45:37 +03:00
/* Error /ghost/404/
/* ---------------------------------------------------------- */
.error-content {
2015-06-08 13:13:42 +03:00
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
2015-05-14 23:30:25 +03:00
user-select: text;
}
2015-05-14 16:45:37 +03:00
.error-details {
2015-06-08 13:13:42 +03:00
display: flex;
align-items: center;
margin-bottom: 4rem;
2015-05-14 16:45:37 +03:00
}
2015-06-08 13:13:42 +03:00
.error-ghost {
margin: 15px;
height: 115px;
2015-05-14 16:45:37 +03:00
}
@media (max-width: 630px) {
2015-06-08 13:13:42 +03:00
.error-ghost {
display: none;
2015-05-14 16:45:37 +03:00
}
}
.error-code {
margin: 0;
2015-05-16 14:43:12 +03:00
color: #979797;
2015-06-08 13:13:42 +03:00
font-size: 7.8rem;
2015-05-14 16:45:37 +03:00
line-height: 0.9em;
}
.error-description {
margin: 0;
padding: 0;
border: none;
2015-05-16 14:43:12 +03:00
color: #979797;
2015-06-08 13:13:42 +03:00
font-size: 1.9rem;
2015-05-16 14:43:12 +03:00
font-weight: 300;
2015-05-14 16:45:37 +03:00
}
2015-06-08 13:13:42 +03:00
.error-message {
display: flex;
flex-direction: column;
margin: 15px;
2015-05-14 16:45:37 +03:00
}
2015-06-08 13:13:42 +03:00
.error-message a {
margin-top: 5px;
font-size: 1.4rem;
line-height: 1;
}
2015-05-14 16:45:37 +03:00
/* Stack trace
/* ---------------------------------------------------------- */
.error-stack {
2015-06-08 13:13:42 +03:00
margin: 1rem auto;
padding: 2rem;
2015-05-14 16:45:37 +03:00
max-width: 800px;
background-color: rgba(255, 255, 255, 0.3);
}
.error-stack-list {
margin: 0;
2015-05-16 14:43:12 +03:00
padding: 0;
list-style-type: none;
2015-05-14 16:45:37 +03:00
}
.error-stack-list li {
display: block;
}
.error-stack-list li:before {
content: "\21AA";
display: inline-block;
2015-06-08 13:13:42 +03:00
margin-right: 0.5rem;
2015-05-16 14:43:12 +03:00
color: #bbb;
2015-06-08 13:13:42 +03:00
font-size: 1.2rem;
2015-05-14 16:45:37 +03:00
}
.error-stack-function {
font-weight: bold;
}