From 94384a9af0feb4158c2a78b020ecded46d02c4a4 Mon Sep 17 00:00:00 2001 From: Jake Jarvis Date: Wed, 24 Apr 2019 17:12:18 -0400 Subject: [PATCH] move 404 CSS back into file --- static/404.html | 46 +++++++++++++++++++++++++++++++++++++++++++++- static/style.css | 48 ------------------------------------------------ 2 files changed, 45 insertions(+), 49 deletions(-) diff --git a/static/404.html b/static/404.html index d7bc95c7..0a7a4a5b 100644 --- a/static/404.html +++ b/static/404.html @@ -4,7 +4,51 @@ Page Not Found - +
diff --git a/static/style.css b/static/style.css index d56f5dbf..8a5e0cf9 100644 --- a/static/style.css +++ b/static/style.css @@ -928,51 +928,3 @@ div.highlight span.ge { div.highlight span.gs { font-weight: bold; } - - - -/*! 404 Styles */ - -body#error { - background: #efefef; - color: #5f5f5f; - font-family: Helvetica, Arial, sans-serif; - margin: 0; - padding: 0; -} - -body#error div#message { - background: #fff; - max-width: 400px; - margin: 100px auto 16px; - padding: 16px 32px; - border-radius: 4px; - box-shadow: 0 1px 3px #e0e0e0, 0 1px 2px #888; -} - -body#error div#message h1 { - margin: 16px 0; - font-size: 24px; - font-weight: 300; -} - -body#error div#message p { - margin: 16px 0; - font-size: 15px; - line-height: 140%; -} - -body#error div#message a { - color: #0077a7; -} -body#error div#message a:hover { - text-decoration: underline; -} - -@media (max-width: 600px) { - body#error, body#error div#message { - background: #fff; - margin-top: 16px; - box-shadow: none; - } -}