diff options
author | Benjamin Kiessling <mittagessen@l.unchti.me> | 2012-01-20 12:49:58 +0100 |
---|---|---|
committer | Benjamin Kiessling <mittagessen@l.unchti.me> | 2012-01-20 12:49:58 +0100 |
commit | 882dd93ee52466c903c04372e5228a68a31402a5 (patch) | |
tree | b44e719822adb48e3cde13dc9d6537344af3748c /slideshows/default | |
parent | 4324fb55ecd9c1a6528f098c13fd339917ff3937 (diff) |
Let default slideshow use rightjs again and update for new slide
caption format
Diffstat (limited to 'slideshows/default')
-rw-r--r-- | slideshows/default/template.html | 5 | ||||
-rw-r--r-- | slideshows/default/template/styles.css | 18 |
2 files changed, 11 insertions, 12 deletions
diff --git a/slideshows/default/template.html b/slideshows/default/template.html index c22d618..c7dfb13 100644 --- a/slideshows/default/template.html +++ b/slideshows/default/template.html @@ -2,10 +2,9 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <link href="/default/template/styles.css" rel="stylesheet" type="text/css"> - <script src="/default/template/right.js"></script> + <script src="/default/template/right.js" type="text/javascript"></script> <script src="/default/template/billboard.js" type="text/javascript"></script> - <script src="/default/template/jquery-latest.js"></script> - <script src="/default/template/jquery-ui-git.js"></script> + <script src="/default/template/jquery-1.7.1.min.js" type="text/javascript"></script> <script src="/default/template/events.js" type="text/javascript"></script> </head> <body> diff --git a/slideshows/default/template/styles.css b/slideshows/default/template/styles.css index 15d2cd9..32dd4f2 100644 --- a/slideshows/default/template/styles.css +++ b/slideshows/default/template/styles.css @@ -16,7 +16,7 @@ div.content { min-height: 120px;
}
-div.slide_desc {
+div.slideDesc {
position: absolute;
top: 80%;
margin-left: 7.5%;
@@ -28,7 +28,14 @@ div.slide_desc { background: rgba(0, 0, 0, 0.7);
}
-h2 {
+div.slideHead {
+ color: white;
+ font: bold 24px/45px Helvetica, Sans-Serif;
+ padding-left: 10px;
+ padding-right: 10px;
+}
+
+div.slideText {
color: white;
font: bold 24px/45px Helvetica, Sans-Serif;
padding-left: 10px;
@@ -87,7 +94,6 @@ div.eventField { .eventDate{
font-size:1.5em;
- /*border: 3px solid #363942;*/
margin-left: 5px;
padding-left: 5px;
padding-right: 5px;
@@ -96,8 +102,6 @@ div.eventField { border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
- background:#5C832F none repeat scroll 0 0;
- color:#14210A;
}
.eventDate.chreme{
@@ -117,7 +121,3 @@ div.eventField { border:1px solid #C9E6C1;
color:#6EA85F;
}
-
-.clear{
- clear:both;
-}
|