]> git.decadent.org.uk Git - videolink.git/blob - videolink.css
Moved generation of menu VOBs from videolink_window to dvd_generator.
[videolink.git] / videolink.css
1 body {
2   /* Sans-serif fonts will be much more readable than serif on a TV. */
3   font-family: sans-serif;
4   /* No scroll bars. */
5   overflow: hidden;
6 }
7 a:link, a:visited {
8   color: blue;
9   /* Don't underline links because underlining tends to flicker on TVs. */
10   text-decoration: none;
11   /* Buttons have to be rectangular (AFAIK). */
12   white-space: nowrap;
13 }
14 /* The hover state must be made obvious since DVD players have no pointer. */
15 a:link:hover, a:visited:hover {
16   color: red;
17 }
18 /* The active state should provide visual feedback, but is not so critical. */
19 a:link:active, a:visited:active {
20   color: purple;
21 }
22 /* Don't show focus rectangles. */
23 *|*:-moz-any-link:focus {
24   -moz-outline: none !important;
25 }