Infobox Research Status.css: Difference between revisions

From FirespeakerWiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 13: Line 13:
td .explanation {
td .explanation {
   font-size: 90%;
   font-size: 90%;
  color: silver;
   line-height: 80%;
   line-height: 80%;
   height: 2em;
   height: 2em;
   vertical-align: top;
   vertical-align: top;
   text-align: center;
   text-align: center;
}
.notyet, .empty .explanation {
  color: grey;
}
.inprogress .explanation {
  color: grey;
}
.done .explanation {
  color: silver;
}
}


Line 24: Line 33:
}
}


.empty {
.empty, .notyet {
  background-color: white;
}
.notyet {
   background-color: white;
   background-color: white;
}
}

Revision as of 05:32, 17 April 2011

table {

 border-collapse: collapse;

} th {

 width: 8em;
 border: none;
 vertical-align: bottom;

} td {

 text-align: center;
 width: 8em;

} td .explanation {

 font-size: 90%;
 line-height: 80%;
 height: 2em;
 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;

}