From fce1e44be6745017bfdf4b62f944c8259eda5bf5 Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Fri, 3 Jul 2015 10:30:48 -0400 Subject: [PATCH] Center content in page using CSS, not
--- static/index.html | 6 +----- static/stylesheet.css | 3 +++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/static/index.html b/static/index.html index 47e5262..9e14a8c 100644 --- a/static/index.html +++ b/static/index.html @@ -25,10 +25,6 @@ - -
-
-
- +
diff --git a/static/stylesheet.css b/static/stylesheet.css index 54bbe6c..c8ed91d 100644 --- a/static/stylesheet.css +++ b/static/stylesheet.css @@ -2,4 +2,7 @@ div#content { width: 95%; min-width: 75em; max-width: 100em; + display: block; + margin-left: auto; + margin-right: auto; }