diff options
Diffstat (limited to 'assets/css/_error.less')
-rw-r--r-- | assets/css/_error.less | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/assets/css/_error.less b/assets/css/_error.less new file mode 100644 index 0000000..c779c29 --- /dev/null +++ b/assets/css/_error.less @@ -0,0 +1,25 @@ +body.e404, +body.e500 { + > .container { + text-align: center; + h1 { + font-size: @jumbo-font-size; + margin: 50px 0 50px 0; + } + + img { + background-color: @brand-primary; + max-width: 80%; + } + } +} + +body.e500 { + pre { + text-align: left; + } + + img { + .rotate(180deg); + } +} |