diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-11 17:34:16 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-07-11 17:34:16 +0200 |
commit | 1b8bc709b719e5a19b124709188be879135a0928 (patch) | |
tree | c067bd6f5fe55736f7bd1f34bb0ee3f8739e6a04 /static | |
parent | 778bcc3be33f4e3ea9daf06b5524f62abb199074 (diff) | |
download | Ishtar-1b8bc709b719e5a19b124709188be879135a0928.tar.bz2 Ishtar-1b8bc709b719e5a19b124709188be879135a0928.zip |
First work on main dashboard (refs #521)
Diffstat (limited to 'static')
-rw-r--r-- | static/media/style.css | 52 |
1 files changed, 47 insertions, 5 deletions
diff --git a/static/media/style.css b/static/media/style.css index 2d8cb7ff7..a6cd7487e 100644 --- a/static/media/style.css +++ b/static/media/style.css @@ -321,30 +321,64 @@ table.confirm tr.spacer td:last-child{ border-radius:8px; } -#window .table{ +.dashboard > div{ + width:760px; + background: #FFF; + -moz-border-radius:8px; + -webkit-border-radius:8px; + border-radius:8px; + -webkit-box-shadow: 0px 0px 20px #444; + -moz-box-shadow: 0px 0px 20px #444; + margin:20px; + text-align:left; + padding-bottom:10px; +} + +.dashboard h3{ + background-color:#922; + color:#FFF; + -webkit-border-top-left-radius: 8px; + -webkit-border-top-right-radius: 8px; + -moz-border-radius-topleft: 8px; + -moz-border-radius-topright: 8px; + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} + +.dashboard h4{ + font-weight:normal; + color:#D14; +} +.dashboard h4, .dashboard p{ + margin:0; + padding:0 10px; +} + +#window .table, .dashboard .table{ + padding:10px; width:730px; overflow:auto; } -#window table{ +#window table, .dashboard table{ font-size:0.9em; margin:10px 0; border-collapse:collapse; width:100%; } -#window caption{ +#window caption, .dashboard caption{ font-size:1.2em; } -#window table th{ +#window table th, .dashboard table th{ text-align:center; background-color:#922; border:1px solid #EEE; color:#FFF; } -#window table td{ +#window table td, .dashboard table td{ text-align:right; padding:0 1em; border:1px solid #EEE; @@ -453,3 +487,11 @@ a.remove{ margin:0 6px; } +.dashboard table{ + width:100%; + border-collapse:yes; +} +.dashboard table th, .dashboard table td{ + border:1px solid; +} + |