summaryrefslogtreecommitdiffstats
path: root/htdocs/page.css
diff options
context:
space:
mode:
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;
+}