Advertisement
Guest User

gfcss

a guest
Apr 29th, 2011
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. @import url("http://fonts.googleapis.com/css?family=Droid+Sans");
  2. @import url("http://fonts.googleapis.com/css?family=Amaranth");
  3.  
  4. @-moz-document domain(gamefaqs.com) {
  5.     body, td {
  6.         font-family: 'Droid Sans' !important;
  7.     }
  8.     .head h1, .head h2 { /* board name*/
  9.         font-family: 'Amaranth' !important;
  10.         font-size: 2em !important;
  11.         font-weight: normal !important;
  12.     }
  13.     .head h2 { /* board/topic name */
  14.         font-size: 1.5em !important;
  15.     }
  16.     .board td {
  17.         padding: 2px !important;
  18.     }
  19.     .board a {
  20.         text-decoration: none !important;
  21.     }
  22.     .board a::before {
  23.         content: "\2713 " !important;
  24.     }
  25.     .board tr td:nth-child(2) a:visited {
  26.         color: #666 !important;
  27.     }
  28.     .board tr td:nth-child(2) a:visited::before {
  29.         color: #f00 !important;
  30.         content: "x " !important;
  31.         font-weight: bold !important;
  32.     }
  33.     .board a:hover {
  34.         color: #000 !important;
  35.         text-decoration: underline !important;
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement