From b9db16f37325dcdae354a503223e7a1aa5c59040 Mon Sep 17 00:00:00 2001 From: Benjamin Kiessling Date: Mon, 16 Jan 2012 15:45:13 +0100 Subject: Add advanced slideshow --- slideshows/advanced/template/styles.css | 161 ++++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 slideshows/advanced/template/styles.css (limited to 'slideshows/advanced/template/styles.css') diff --git a/slideshows/advanced/template/styles.css b/slideshows/advanced/template/styles.css new file mode 100644 index 0000000..1a810bf --- /dev/null +++ b/slideshows/advanced/template/styles.css @@ -0,0 +1,161 @@ +body{ + color:#555555; + font-size:0.825em; + background: #fcfcfc; + font-family:Arial, Helvetica, sans-serif; +} + +div.frame { + margin: auto; + min-width: 700px; + max-width: 1200px; +} + +div.content { + padding: 20px; + min-height: 120px; +} + +div.slide_desc { + 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); +} + +h2 { + color: white; + font: bold 24px/45px Helvetica, Sans-Serif; + padding-left: 10px; + padding-right: 10px; +} + +div.slideshow { + border: 1px solid #363942; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + max-width:100%; + width: 100%; +} + +div.slideshow li { + list-style:none; +} + +div.slideshow 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{ + background:#F4F4F4; + border:1px solid #EEEEEE; + 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; + background:#E6F8FF; + border:1px solid #D4E6EE; + color:#548DA5; +} + +div.eventField { + display: none; +} + +.eventDate{ + font-size:1.5em; + /*border: 3px solid #363942;*/ + margin-left: 5px; + padding-left: 5px; + padding-right: 5px; + text-align:center; + word-wrap: break-word; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + background:#5C832F none repeat scroll 0 0; + color:#14210A; +} + +.eventDate.chreme{ + background:#FBF7F0; + border:1px solid #EEE4D4; + color:#A78B5F; +} + +.eventDate.blue{ + background:#E6F8FF; + border:1px solid #D4E6EE; + color:#548DA5; +} + +.eventDate.green{ + background:#E6FFDF none repeat scroll 0 0; + border:1px solid #C9E6C1; + color:#6EA85F; +} + +.clear{ + clear:both; +} + +#windowBox{ + position:absolute; + z-index:20; + background-color:#fcfcfc; + padding:10px; + border:2px solid #666666; + overflow:auto; +} + +#titleDiv{ + /* The title of the windowBox */ + background:#F5F5F5; + border:1px solid #EEEEEE; + color:#AAAAAA; + font-size:1.5em; + margin-bottom:10px; + padding:5px 10px; +} + +#overlay { + position:absolute; + z-index:10; + top:0; + left:0; + background-color:#222222; +} -- cgit v1.2.1