@namespace url(http://www.w3.org/1999/xhtml);
/*
  Google Reader: larger/serif, wider, plus color
  
  Updates...
  26Aug2009 [v2]: remove border for entry title when expanded; remove
  yellow background for selected entry in list view; lighter blue
  background for read entries in card view; minor tweaks, plus hide the 
  'like' stuff (which, if you actually like, then you can remove the code 
  at the end)
*/
@-moz-document url-prefix(http://www.google.com/reader),
               url-prefix(https://www.google.com/reader) {
/*
  larger and serif plus wider
*/
#entries .entry-body {
  font-size:  120%  !important;
  font-family:  Georgia, Century, serif  !important;
  max-width:  98% /*97 [v1]*/  !important;
}
#entries .entry-title {
  max-width:  90%  !important;
}
#entries.list .entry-body, #entries.list .entry-container {
  background-color:  #fafafa /*F3F5FC [v1]*/  !important;
}
/*========================================================================*/ 
/* 
  list view: unchanged; but: use blue for read, green for unread 
*/
#entries.list .read .collapsed { 
  background-color:  #C3D9FF  !important;
  border-color:  #C3D9FF  !important;
} 
#entries.list .collapsed { 
  background-color:  #D3FED7  !important;
  border-color:  #D3FED7  !important;
} 
/* 
  plus: keep the current-entry border 
*/
#entries.list #current-entry .collapsed {
  border:  2px  solid  #68E  !important;
  /*background-color:  #FFC  !important; [v1]*/
} 
/*
  ...except when expanded [v2]
*/
#entries.list #current-entry.expanded .collapsed {
  background-color:  #EBEFF9  !important; 
  border-top:  2px  solid  #68E  !important;
  border-right:  none  !important;
  border-bottom:  none  !important;
  border-left:  none  !important;
}
/*  
  and match reader's yellow highlight on hover
*/
#entries.list .entry .collapsed:hover {
  background:  #FFC  !important; 
  border-color:  #FFC  !important; 
} 
/* 
  card view: unchanged; but: use blue for read, green for unread
*/ 
#entries.cards .read .card { 
  background-color:  #ddebff /*C3D9FF [v1]*/  !important; 
  border-color:  #68e /*8BE [v1]*/  !important; 
} 
#entries.cards .card { 
  background-color:  #D3FED7  !important; 
  border-color:  #A0E0A0  !important; 
} 
/* 
  no like
*/
.entry-likers, .entry-actions > .like { display:  none  !important; }
.like { display:  none  !important; }

}