diff options
author | Benjamin Kiessling <mittagessen@l.unchti.me> | 2012-01-10 02:27:48 +0100 |
---|---|---|
committer | Benjamin Kiessling <mittagessen@l.unchti.me> | 2012-01-10 02:27:48 +0100 |
commit | 86ce3642059788803fa4cb941492a27bebccba63 (patch) | |
tree | d1bc15244f421ada4eabbfbae9d1f259de8297f8 /slideshows/default/template/styles.css | |
parent | 0bdcf40892ba346c68ed23e9fa0af695223340d4 (diff) |
Update examples
Diffstat (limited to 'slideshows/default/template/styles.css')
-rw-r--r-- | slideshows/default/template/styles.css | 67 |
1 files changed, 51 insertions, 16 deletions
diff --git a/slideshows/default/template/styles.css b/slideshows/default/template/styles.css index c02d4b7..f16b536 100644 --- a/slideshows/default/template/styles.css +++ b/slideshows/default/template/styles.css @@ -1,33 +1,22 @@ body{
+ color:#555555;
+ font-size:0.825em;
background-color:#000;
+ font-family:Arial, Helvetica, sans-serif;
}
-div.frame {
+div.frame {
margin-left: auto;
margin-right: auto;
min-width: 700px;
- max-width: 1500px;
+ max-width: 1200px;
}
div.content {
padding: 20px;
- margin-right: 285px;
min-height: 120px;
}
-div.info{
- color: #fff;
- margin-top: 20px;
- padding: 20px;
- margin-right: 20px;
- width: 215px;
- float: right;
- border: 3px solid #CFCEBD;
- border-radius: 3px;
- -moz-border-radius: 3px;
- -webkit-border-radius: 3px;
-}
-
div.slide_desc {
position: absolute;
top: 80%;
@@ -57,3 +46,49 @@ ul.rui-billboard li img { width: 100%;
display: block;
}
+
+div.events {
+ padding-left: 20px;
+ padding-right: 20px;
+}
+
+.event{
+ float:left;
+ padding:4px;
+ text-align:left;
+ margin:0px 5px 50px;
+}
+
+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;
+ -moz-border-radius:4px;
+ -webkit-border-radius:4px;
+ border-radius:4px;
+}
+
+.eventDate{
+ font-size:1.5em;
+ margin:-5px -5px 10px;
+ padding:2px 5px;
+ text-align:center;
+ border: 3px solid #CFCEBD;
+ border-radius: 3px;
+ -moz-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ background:#E6FFDF none repeat scroll 0 0;
+ color:#6EA85F;
+}
+
+.clear{
+ clear:both;
+}
|