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
26
27
28
@namespace url(http://www.w3.org/1999/xhtml);
/*
Google: bg img? see-thru nav bar!
*/
@-moz-document url("http://www.google.com/"),url("http://www.google.com.tw/"),
url("http://www.google.co.jp/"),url-prefix("http://www.google.com/web") {
/* never show the links I never use (but they're still there, in case) */
a[href*="ads"], a[href*="services"], a[href*="about"], a[href*="privacy"],
/* and [oopsy] the copyright (yeah, #fctr would work for all of this :D) */
p[style="color: rgb(118, 118, 118); font-size: 8pt;"]
{ opacity: 0 !important; }

/* just do it */
#cpBackgroundImg { opacity: 1 !important; }

/* see-thru to bg img (no fade-in) */
#ghead, /* the header */
img[src*="classicplus"],
a#cpNavLink[href^="javascript"]
{ opacity: 0.55 !important; }

/* hide the links I might use till I hover them */
a[href*="advanced"], a[href*="language"]
{ opacity: 0 !important; }
a[href*="advanced"]:hover, a[href*="language"]:hover
{ opacity: 0.7 !important; }

}