Difference between revisions of "Infobox Research Status.css"

From FireSpeakerWiki
Jump to navigationJump to search
Line 1: Line 1:
table {
+
table.researchstatus {
 
   border-collapse: collapse;
 
   border-collapse: collapse;
 
   height: 3em;
 
   height: 3em;
 
}
 
}
th {
+
.researchstatus tr th {
 
   width: 8em;
 
   width: 8em;
 
   border: none;
 
   border: none;
Line 10: Line 10:
 
   line-height: 90%;
 
   line-height: 90%;
 
}
 
}
td {
+
.researchstatus tr td {
 
   text-align: center;
 
   text-align: center;
 
   width: 8em;
 
   width: 8em;
 
}
 
}
td .explanation {
+
.researchstatus tr td .explanation {
 
   font-size: 90%;
 
   font-size: 90%;
 
   line-height: 80%;
 
   line-height: 80%;

Revision as of 02:33, 17 April 2011

table.researchstatus {

 border-collapse: collapse;
 height: 3em;

} .researchstatus tr th {

 width: 8em;
 border: none;
 vertical-align: bottom;
 font-size: 90%;
 line-height: 90%;

} .researchstatus tr td {

 text-align: center;
 width: 8em;

} .researchstatus tr td .explanation {

 font-size: 90%;
 line-height: 80%;
 vertical-align: top;
 text-align: center;

}

.notyet, .empty .explanation {

 color: grey;

} .inprogress .explanation {

 color: grey;

} .done .explanation {

 color: silver;

}

.progressbar {

 border: 1px solid grey;

}

.empty, .notyet {

 background-color: white;

} .inprogress {

 background-color: #77ff77;

} .done {

 background-color: green;
 color: white;

}