summaryrefslogtreecommitdiffstats
path: root/www/css/custom.css
diff options
context:
space:
mode:
authoryves <steve.harrison@gmx.net>2013-05-21 23:48:56 +0200
committeryves <steve.harrison@gmx.net>2013-05-21 23:49:19 +0200
commitc83af31a999f4f29532db0dc22638a142a91171e (patch)
treefe3ab3752fd7b576064f1ce675d7a79cee5622a8 /www/css/custom.css
parent469b56ed8f9885b7bc7a18723b14f4690c8d5df4 (diff)
downloadwww-c83af31a999f4f29532db0dc22638a142a91171e.tar.gz
www-c83af31a999f4f29532db0dc22638a142a91171e.tar.bz2
www-c83af31a999f4f29532db0dc22638a142a91171e.zip
rewrite as static site generator
Diffstat (limited to 'www/css/custom.css')
-rw-r--r--www/css/custom.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/www/css/custom.css b/www/css/custom.css
new file mode 100644
index 0000000..56f9d43
--- /dev/null
+++ b/www/css/custom.css
@@ -0,0 +1,36 @@
+a {
+ cursor: pointer;
+ color: #F00;
+ font-weight: bold;
+}
+
+a:hover {
+ color: rgb(168, 0, 0);
+}
+
+h1 {
+ text-align: center;
+}
+
+#hosts li {
+ list-style-type: none;
+ text-align: center;
+ margin-top: 20px;
+ display: table;
+}
+
+#hosts li a {
+ height: 100px;
+ display: table-cell;
+ vertical-align: middle;
+}
+
+#hosts li a:hover {
+ background-color: #CCC;
+ color: #000;
+ text-decoration: none;
+}
+
+td.centering, p.centering {
+ text-align: center;
+}