From d74d4b7eb50eec11d4575928a04a3d0ba226808c Mon Sep 17 00:00:00 2001 From: Benjamin Kiessling Date: Fri, 20 Jan 2012 12:51:39 +0100 Subject: Add dark color scheme layout --- slideshows/dark/template/styles.css | 148 ++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 slideshows/dark/template/styles.css (limited to 'slideshows/dark/template/styles.css') diff --git a/slideshows/dark/template/styles.css b/slideshows/dark/template/styles.css new file mode 100644 index 0000000..7e6b71b --- /dev/null +++ b/slideshows/dark/template/styles.css @@ -0,0 +1,148 @@ +body { + color:#ddd; + font-size:0.825em; + background: #212121; + font-family: Century Gothic, sans-serif; +} + +div.frame { + margin: auto; + min-width: 700px; + max-width: 1200px; +} + +div.content { + padding: 20px; + min-height: 120px; +} + +div.slideDesc { + position: absolute; + top: 80%; + margin-left: 7.5%; + border: 1px solid #363942; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + + background: rgba(0, 0, 0, 0.7); +} + +div.slideHead { + font: bold 24px/45px Helvetica, Sans-Serif; + padding-left: 10px; + padding-right: 10px; +} + +div.slideText { + font: bold 24px/45px Helvetica, Sans-Serif; + padding-left: 10px; + padding-right: 10px; +} + +ul.rui-billboard { + border: 1px solid #363942; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + max-width:100%; + width: 100%; +} + +ul.rui-billboard li img { + max-width:100%; + max-height:100%; + width: 100%; + display: block; +} + +div.events { + padding-left: 20px; + padding-right: 20px; +} + +.event{ + float:left; + padding:0px; + text-align:left; +} + +ul.eventList { + margin-left:0px; + padding-left:0px; + list-style-type:square; +} + +.eventList li{ + border:1px solid #212121; + list-style:none; + margin:5px; + padding:4px 7px; + word-wrap: break-word; + + -moz-border-radius:4px; + -webkit-border-radius:4px; + border-radius:4px; +} + +.eventList li:hover { + cursor:pointer; + border:1px solid #212121; + color:#6699CC; +} + +div.eventField { + display: none; +} + +.eventDate{ + font-size:1.5em; + /*border: 3px solid #363942;*/ + margin-left: 5px; + padding-left: 5px; + padding-right: 5px; + text-align:left; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; +} + +.eventDate.a {color: #f84e10} +.eventDate.b {color: #f77306} +.eventDate.c {color: #fb9727} +.eventDate.d {color: #D6202E} +.eventDate.e {color: #f30370} +.eventDate.f {color: #a03289} + +.clear{ + clear:both; +} + +#windowBox{ + position:absolute; + z-index:1100; + border: 1px solid #363942; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + + background: rgba(0, 0, 0, 0.7); + padding:10px; + overflow:auto; +} + +#titleDiv{ + /* The title of the windowBox */ + font-size:1.5em; + margin-bottom:10px; + padding:5px 10px; +} + +#overlay { + position:absolute; + z-index:1000; + top:0; + left:0; + background-color:#222222; +} + -- cgit v1.2.1