File: videolink.css

package info (click to toggle)
videolink 1.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 368 kB
  • ctags: 502
  • sloc: cpp: 3,210; ansic: 880; makefile: 121
file content (25 lines) | stat: -rw-r--r-- 714 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
body {
  /* Sans-serif fonts will be much more readable than serif on a TV. */
  font-family: sans-serif;
  /* No scroll bars. */
  overflow: hidden;
}
a:link, a:visited {
  color: blue;
  /* Don't underline links because underlining tends to flicker on TVs. */
  text-decoration: none;
  /* Buttons have to be rectangular (AFAIK). */
  white-space: nowrap;
}
/* The hover state must be made obvious since DVD players have no pointer. */
a:link:hover, a:visited:hover {
  color: red;
}
/* The active state should provide visual feedback, but is not so critical. */
a:link:active, a:visited:active {
  color: purple;
}
/* Don't show focus rectangles. */
*|*:-moz-any-link:focus {
  -moz-outline: none !important;
}