summaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-04-09 14:36:24 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-04-09 20:48:22 +0200
commitdd0a983735e404d4f1f41184940f8f91940735e6 (patch)
tree1ece3a8d066f70fa660e06bd0ad7b5ef436afe62 /data
parentfd5d406cee52da3aa28475b2418c1787e3489da2 (diff)
css: limit width of <p> and <li> to 800px
Long lines streching across the entire screen are hard to read on wide screens. 800px should be a good compromise Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'data')
-rw-r--r--data/default.css12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/default.css b/data/default.css
index 4774a6a29..399ca1410 100644
--- a/data/default.css
+++ b/data/default.css
@@ -21,6 +21,18 @@ body {
padding: 0;
}
+p, li {
+ max-width: 800px;
+}
+
+.center {
+ text-align: center;
+ margin-top: 100px;
+}
+.center p {
+ max-width: 100%;
+}
+
.clearer {
clear: both;
font-size: 0;