-
Notifications
You must be signed in to change notification settings - Fork 3
/
jskeynote.css
84 lines (72 loc) · 1.41 KB
/
jskeynote.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*!
JSKeynote
---------
author: Mariz Melo (MM) 2011
website: http//:www.emoriz.com
download: https://github.com/jmarizgit/JSKeynote
license: http://creativecommons.org/licenses/by-sa/3.0/
*/
html, body{
margin: 0;
padding: 0;
}
/*REQUIRED*/
.jskeynote{
background: url("./bg.png") #424242;
position: absolute;
width: 1000px;
height: 700px;
font-family: Arial, Verdana;
overflow: hidden;
}
.jskeynote dl, .jskeynote dl dd{
margin: 0;
padding: 0;
}
.jskeynote dl{
position: absolute;
top: 50%;
left: 50%;
margin-left: -480px;
margin-top: -350px;
/*width: 2880px;*/
display: block;
/*background: green;*/
}
.jskeynote dl dd{
width: 960px;
height: 700px;
float: left;
margin-right: 80px;
background: #fff;
overflow: hidden;
}
.jskeynote .rounded{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px; /* future proofing */
-khtml-border-radius: 10px; /* for old Konqueror browsers */
}
.jskeynote .shadow {
-moz-box-shadow: 5px 5px 5px #000;
-webkit-box-shadow: 5px 5px 5px #000;
box-shadow: 0px 0px 60px #000;
}
.jskeynote .opacity {
/* IE 8 */
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
/* IE 5-7 */
filter: alpha(opacity=50);
/* Netscape */
-moz-opacity: 0.5;
/* Safari 1.x */
-khtml-opacity: 0.5;
/* Good browsers */
opacity: 0.5;
}
.jskeynote .jsk_tooltip{
color: white;
position: absolute;
top:0;
text-align: center;
}