]> git.decadent.org.uk Git - videolink.git/blobdiff - videolink.css
Renamed package due to name clash.
[videolink.git] / videolink.css
diff --git a/videolink.css b/videolink.css
new file mode 100644 (file)
index 0000000..b441499
--- /dev/null
@@ -0,0 +1,27 @@
+body {
+  /* Sans-serif fonts will be much more readable than serif on a TV. */
+  font-family: sans-serif;
+  /* Let the background overscan, but not the content. */
+  padding: 60px;
+  /* 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:hover {
+  color: red;
+}
+/* The active state should provide visual feedback, but is not so critical. */
+a:active {
+  color: purple;
+}
+/* Don't show focus rectangles. */
+*|*:-moz-any-link:focus {
+  -moz-outline: none !important;
+}