summaryrefslogtreecommitdiffstats
path: root/htdocs/page.css
diff options
context:
space:
mode:
authorAlexander Sulfrian <alex@spline.inf.fu-berlin.de>2012-09-14 05:13:35 +0200
committerroot <root@vm-staticweb.spline.inf.fu-berlin.de>2012-09-14 05:13:35 +0200
commit0b7d7557b7f0e3b748e5e46fcd33be7071679346 (patch)
tree58603e37d9cbf57447b4cabc6437ef70e8d3c7ce /htdocs/page.css
parentf0c00da2c90d27c9b00bb2da8664a36e2d0ea3ba (diff)
downloadcomics-0b7d7557b7f0e3b748e5e46fcd33be7071679346.tar.gz
comics-0b7d7557b7f0e3b748e5e46fcd33be7071679346.tar.bz2
comics-0b7d7557b7f0e3b748e5e46fcd33be7071679346.zip
templates/base.html: add template for html pages (and required files)
Diffstat (limited to 'htdocs/page.css')
-rw-r--r--htdocs/page.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/htdocs/page.css b/htdocs/page.css
new file mode 100644
index 0000000..57c6071
--- /dev/null
+++ b/htdocs/page.css
@@ -0,0 +1,59 @@
+body {
+ background: #f5f5f5;
+ padding: 20px;
+ margin: 0px;
+ text-align: center;
+}
+
+#content {
+ width: 70%;
+ min-width: 800px;
+ background: #ddd;
+ margin: auto;
+ border-radius: 15px;
+ padding: 20px;
+}
+
+h2 {
+ margin-bottom: 0;
+}
+
+.source {
+ font-size: 0.6em;
+ margin: 0;
+ padding: 0;
+}
+
+.title {
+ font-size: 0.9em;
+ margin: 0;
+ padding: 0;
+}
+
+#pagination {
+ text-align: center;
+ margin: 1.5em 0 0;
+}
+
+#pagination a {
+ display: block;
+ border: 1px solid #000;
+ color: #000;
+ padding: 12px;
+ text-decoration: none;
+ width: 100px;
+ margin: auto;
+}
+
+#pagination a:hover {
+ border-width: 3px;
+ padding: 10px;
+}
+
+#pagination a.prev {
+ float: left;
+}
+
+#pagination a.next {
+ float: right;
+}