User:Doneve/sarna.css

< User:Doneve
Revision as of 20:07, 11 March 2011 by Doneve (talk | contribs)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.

/* This is a CSS comment. It will be ignored by the parser.*/
/* Find an unordered list inside a DIV tag that has a CSS class of ownerhistory. */
div.ownerhistory ul 
{
	border-width:1px;
	border-style:solid;
	border-color:#D0D0D0;/* this is set via hexidecimal values, but can use RGB as well. See http://www.w3schools.com/css/css_colors.asp */
	width:250px;
}

/* Modify the items in the unordered list contained in the DIV tag with CSS class ownerhistory. */
div.ownerhistory ul li 
{
	/* Remove the bullets */
	list-style-type:none;
	/*Set up border*/
	border-width:1px;
	border-style:solid;
	border-color:##D0D0D0;/* this is set via hexidecimal values, but can use RGB as well. See http://www.w3schools.com/css/css_colors.asp */
	
	/* center the text */
	text-align:center;
	
	/* close the gaps between list items (If this isn't here, you get weird white spaces between the list items */
	margin:0;
	
	/* 
	If the cells are too "tight" around the text, uncomment these lines to give the text more "breathing room."
	I've specified the sides individually here so you can tweak to your preferences. (To uncomment just remove the / * and * / from the lines below
	*/
	
	/*padding-top: 2px;*/
	/*padding-right: 2px;*/
	/*padding-bottom: 2px;*/
	/*padding-left:2px;*/
}

div#awardsboard
{
	background-color: #FFFFE0; 
	border: 2px solid #FC0; 
	margin-right: 0.45em; 
	padding: .45em; 
	text-align: center; 
	width: 400px;
}
div#awardsboard h2
{
	background-color: inherit; 
	border: inherit; 
	font-size: large; 
	font-weight: bold; 
	padding: inherit;
font-style:normal;
}