/* This file produces an amazingly ugly output, but it does show all
the different components of a bibbase page that can be customized
independently from the rest.

Christian 2010-02-26
*/


/* the group-header line */
tr.bibbase_group {
	font-size: larger; 
	font-weight: bold; 
	color: #C0C0C0;
	background-color: #000000;
}

/* the table cell for papers */
td.bibbase_paper {
	background-color: #B0A0A0;
}

/* for URLs: choose between icons and text (or both). By default, the icon is displayed. */
/*
img.bibbase_icon {
	display: none;
}
*/
/*
img.bibbase_icon_text {
	display: inline;
} 
*/


/* the parts (spans) of each entry are: 

  titleauthoryear venue note 
  content

where the first one further breaks down into its components and
"content" is the set of urls and possibly an abstract.  */

span.bibbase_paper_titleauthoryear {
 background-color: #F06060;
}
/* Example: create a new line after first line: */
span.bibbase_paper_titleauthoryear:after { 
 content: " "; 
 display: block; 
}

span.bibbase_paper_title {
 font-style: italic;
 font-weight: normal;
}

span.bibbase_paper_author {
 font-style: oblique;
 font-weight: bolder;
}

span.bibbase_paper_year {
 font-size: x-large;
}

span.bibbase_paper_venue {
 background-color: #A0A0F0;
}

span.bibbase_paper_note {
 background-color: #A0F0A0;
}

span.bibbase_paper_content {
 background-color: #F0A0A0;
}

/* customize the appearance of the group header counts */
span.bibbase_group_count { 
 font-size: smaller; 
}