Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 20th, 2012  |  syntax: None  |  size: 0.56 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. body { background-color: black; }
  2. input[type='radio'] {
  3.     -moz-appearance: none;
  4.     -webkit-appearance: none;
  5.     appearance: none;
  6.     -moz-border-radius: 1.8em;
  7.     -webkit-border-radius: 1.8em;
  8.     -o-border-radius: 1.8em;
  9.     -ms-border-radius: 1.8em;
  10.     -khtml-border-radius: 1.8em;
  11.     border-radius: 1.8em;
  12.     color: white;
  13.     border: 0.2em solid white;
  14.     width: 3.6em;
  15.     height: 3.6em;
  16.     text-align: center;
  17.     padding-top: 0.4em; }
  18. input[type='radio']:before {
  19.       content: "✔";
  20.       font-size: 2em; }
  21. input[type='radio']:checked { color: green; }