Newer
Older
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
/**
* SciAnimator - Scientific Image Animator Plugin for jQuery
*
* Copyright (c) 2010 Brent Ertz
* Released under the MIT license.
* http://github.com/brentertz/scianimator
*/
/* Dark theme */
.scianimator.dark,
.scianimator.dark a,
.scianimator.dark a:visited {
color: #ccc;
}
.scianimator.dark {
background: #333;
}
.scianimator.dark .controls,
.scianimator.dark .control {
background-color: #333;
border-color: #666;
color: #ccc;
text-shadow: 0 1px #000;
}
.scianimator.dark .controls {
box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -17px #000, 0 0 3px #000;
}
.scianimator.dark .control {
box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #000;
}
.scianimator.dark a:hover {
box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
-o-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
-webkit-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #000, 0 0 3px #555;
-moz-box-shadow: inset 0 1px 3px #fff, inset 0 -10px #333, 0 0 3px #555;
color: #fff;
text-shadow: 0px 1px #000;
}