static/irclogs.css
branchsites
changeset 42 5a72c00c4ae4
child 43 fc11c4e86a82
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/static/irclogs.css	Sun Feb 08 02:29:23 2009 +0200
@@ -0,0 +1,141 @@
+/*
+ * Global styles
+ */
+body {
+    padding: 0px;
+    margin: 0px;
+
+    background-color: #ffffff;
+    color: #000000;
+}
+
+/*
+ * Menu
+ */
+#menu {
+    padding: 0px;
+    margin: 0px;
+}
+
+#menu ul {
+    display: table;
+    list-style-type: none;
+
+    width: 100%;
+
+    padding: 0px;
+    margin: 0px;
+    
+    background-color: #f0f0f0;
+    border-bottom: 1px dashed #a5a5a5;
+
+    text-align: center;
+    white-space: nowrap;
+}
+
+#menu li {
+    display: table-cell;
+
+    height: 1.5em;
+
+    padding: 0px;
+    margin: 0px;
+
+    border-left: 1px solid #b0b0b0;
+
+    font-weight: bold;
+}
+
+#menu li a,
+#menu li form {
+    height: 1.5em;
+}
+
+#menu li:first {
+    border-left: none;
+}
+
+#menu li a {
+    display: block;
+
+    padding: 6px;
+    margin: 0px;
+
+    height: 100%;
+
+    color: #494949;
+    text-decoration: none;
+}
+
+#menu li a:hover {
+    background-color: #d0d0d0;
+    text-decoration: none;
+}
+
+#menu form {
+    display: block;
+
+    padding: 0px;
+    margin: 0px;
+}
+
+#menu form select,
+#menu form input {
+    padding: 9px;
+    margin: 0px;
+
+    border: none;
+    background-color: inherit;
+}
+
+#menu form input {
+    cursor: pointer;
+}
+
+#menu form select:hover,
+#menu form input:hover {
+    background-color: #d0d0d0;
+}
+
+#menu form option {
+    background-color: auto;
+}
+
+/*
+ * Content
+ */
+div#content {
+    padding: 25px;
+}
+
+/*
+ * Footer
+ */
+div#footer {
+    /* force to bottom of page */
+    position: absolute;
+    bottom: 0;
+    
+    width: 100%;
+    padding: 10px 0px 10px;
+    
+    border-top: 1px dashed #a5a5a5;
+
+    font-size: x-small;
+    font-style: italic;
+}
+
+div#footer-left {
+    float: left;
+}
+
+div#footer-right {
+    float: right;
+    text-align: right;
+}
+
+div#footer-center {
+    text-align: center;
+}
+
+