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