aboutsummaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-01 01:50:40 +0200
committerGuilhem Moulin <guilhem.moulin@fripost.org>2012-09-01 01:50:40 +0200
commitcc2eac1dcd3991e036875931fb78c609ff9dbbea (patch)
treeb9c95affc22263b96edeff8f9f8b7487c23cdf12 /css
First try.
Diffstat (limited to 'css')
-rw-r--r--css/style.css99
1 files changed, 99 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
new file mode 100644
index 0000000..fe42282
--- /dev/null
+++ b/css/style.css
@@ -0,0 +1,99 @@
+/* Global */
+body {
+ font-family: "DejaVu Sans", Helvetica, Arial, sans-serif;
+ font-size: 11pt;
+ line-height: 140%;
+ color: #1a1a1a;
+}
+.error {
+ color: #FF0040;
+}
+
+
+/* Login form */
+form.loginform {
+ margin: 0px auto;
+ border: 1px solid #cccccc;
+ padding: 10pt;
+ float: center;
+ position: relative;
+ width: 300px;
+ background: #F5F5F5;
+}
+table.loginform {
+ margin:0 auto 5pt auto;
+ border-collapse:collapse;
+}
+table.loginform td {
+ padding:0 5pt 0 0;
+}
+.loginform {
+ text-align: center;
+ font-size: 12pt;
+}
+
+
+/* Header */
+#header {
+ width: 100%;
+}
+#header .column {
+ position: relative;
+ padding: 0pt;
+ border: 0pt;
+ font-size: 9pt;
+}
+#header .left {
+ width: 50%;
+ float: left;
+ text-align: left;
+}
+#header .right {
+ width: 45%;
+ float: right;
+ text-align: right;
+}
+
+
+/* Listing table */
+table.list {
+ width:90%;
+ border-top:1px solid #e5eff8;
+ border-right:1px solid #e5eff8;
+ margin:1em auto;
+ border-collapse:collapse;
+}
+table.list td {
+ color:#678197;
+ border-bottom:1px solid #e5eff8;
+ border-left:1px solid #e5eff8;
+ padding:.3em 1em;
+ text-align:center;
+}
+table.list tr.odd td {
+ background:#f7fbff
+}
+table.list th {
+ font-weight:normal;
+ color: #678197;
+ text-align:left;
+ border-bottom: 1px solid #e5eff8;
+ border-left:1px solid #e5eff8;
+ padding:.3em 1em;
+}
+table.list thead th {
+ background:#f4f9fe;
+ text-align:center;
+ font-weight:bold;
+ color:#66a3d3
+}
+.nonactive {
+ color: #FF0040;
+}
+.active {
+ color: #32CD32;
+}
+.none {
+ font-size: 6pt;
+ color: lightgray;
+}