File: scianimator.dark.css

package info (click to toggle)
r-cran-animation 2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,268 kB
  • sloc: javascript: 873; sh: 15; makefile: 2
file content (44 lines) | stat: -rwxr-xr-x 1,486 bytes parent folder | download | duplicates (3)
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;	
}