Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keichi/vienna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeichi Takahashi <keichi.t@me.com>2015-02-09 07:57:06 +0300
committerKeichi Takahashi <keichi.t@me.com>2015-02-09 07:57:06 +0300
commit6e37b595d1acc1495041b4be7aac8185ab1b115d (patch)
tree0bea504a945941729b8bb4b6b68fb117af1690a8
parent080202e6cc35333c841ae5b2e19c3af855e3ba55 (diff)
Use Bootstrap's grid system in 404 page
-rw-r--r--layouts/404.html6
-rw-r--r--static/css/main.css1
2 files changed, 3 insertions, 4 deletions
diff --git a/layouts/404.html b/layouts/404.html
index 73e6e72..0a5b1d6 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -1,7 +1,7 @@
{{ partial "header.html" . }}
-<section class="not-found">
- <h1>404</h1>
- That page doesn't exist!
+<section class="row not-found">
+ <h1 class="col-md-4 col-md-offset-4">404</h1>
+ <div class="col-md-4 col-md-offset-4">That page doesn't exist!</div>
</section>
{{ partial "footer.html" . }}
diff --git a/static/css/main.css b/static/css/main.css
index 95a1e77..606a8a3 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -141,7 +141,6 @@ main {
}
.not-found {
- margin: 100px auto;
text-align: center;
}