diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-15 11:04:25 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-03-15 11:04:25 +0100 |
commit | abcb1a86381195ffb382297233158da2fa4aacc7 (patch) | |
tree | 5f429d5ca7fd1aace4335684d1b24ebb1f4a8590 /gui/static/style.css | |
parent | a36150d2305e93de9d0f58cb48273ed9909cab05 (diff) | |
download | dabmux-abcb1a86381195ffb382297233158da2fa4aacc7.tar.gz dabmux-abcb1a86381195ffb382297233158da2fa4aacc7.tar.bz2 dabmux-abcb1a86381195ffb382297233158da2fa4aacc7.zip |
Add tabbed interface to gui
Diffstat (limited to 'gui/static/style.css')
-rw-r--r-- | gui/static/style.css | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/gui/static/style.css b/gui/static/style.css new file mode 100644 index 0000000..46dccc0 --- /dev/null +++ b/gui/static/style.css @@ -0,0 +1,68 @@ +body { + font-family: "Lucida Sans Unicode","Lucida Grande",Sans-Serif; + color: #3E3E3E; + font-size: 12px; +} + +p { + padding: 5px; +} + +#info{ + width: 600px; + border: 1px solid #999; + padding: 0 10px; +} +#info p { + width: inherit; + background-color: inherit; +} +#info-nav{ + margin: 0; + padding: 3px 0; + width: 100%; + list-style: none; +} +#info-nav li{ + display: inline; + background: #ccc; + border: 1px solid #888; + border-bottom: 0; + margin-right:2px; + padding: 3px; +} +#info-nav li a:hover{ + color:#d15600; +} +#info-nav li.current{ + background: #fff; + padding-bottom: 4px; + +} + +#celebs { + clear: both; +} + +table { + border-collapse:collapse; + font-size:12px; + margin:0 20px 20px 20px; + border-top:2px solid #015287; + width:480px; +} + +th { + border-bottom: 2px solid #015287; + color: #D15600; + font-size: 14px; + font-weight: normal; + text-align: left; + padding: 3px 8px; +} + +td { + padding: 6px; +} + + |