(change appearance when logged in)
(found a way to change background color change)
Line 1: Line 1:
/* make the background behind the content area and the tabs a light yellow */
/* make the background behind the content area and the tabs a light yellow - doesn't work, commented out */
#content, #content table
/* #content, #content table
#p-cactions ul li a { background: #FFFFDD; }
#p-cactions ul li a { background: #FFFFDD; } */
 
 
/* changes the background of pre areas - this one works */
pre { background: #FFFFE0 }
 


/* make a few corners round */
/* make a few corners round */

Revision as of 06:54, 31 October 2012

/* make the background behind the content area and the tabs a light yellow - doesn't work, commented out */
/* #content, #content table
#p-cactions ul li a { background: #FFFFDD; } */


/* changes the background of pre areas - this one works */
pre { background: #FFFFE0 }


/* make a few corners round */
#p-cactions ul li, #p-cactions ul li a {
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
}
#content {
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}
div.pBody {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}
Cookies help us deliver our services. By using our services, you agree to our use of cookies.