58 lines
1.2 KiB
CSS
58 lines
1.2 KiB
CSS
|
@CHARSET "UTF-8";
|
||
|
|
||
|
table.gentable {
|
||
|
width: 100%;
|
||
|
display: block;
|
||
|
table-layout: fixed;
|
||
|
}
|
||
|
table.gentable th {
|
||
|
background:#7abe5f;
|
||
|
font-size:12pt;
|
||
|
border-bottom:1px solid rgba(255,255,255,.7);
|
||
|
-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
|
||
|
-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
|
||
|
-o-box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
|
||
|
box-shadow:inset 0 1px 0 rgba(255,255,255,.2);
|
||
|
padding:6px 10px;}
|
||
|
|
||
|
table.gentable td {
|
||
|
background:#eed33f;
|
||
|
font-size:10pt;
|
||
|
border-bottom:1px solid #fafafa;
|
||
|
border-bottom:1px solid rgba(255,255,255,.5);
|
||
|
padding:6px 10px;
|
||
|
color:rgba(0,0,0,255);}
|
||
|
table.gentable td.topic {
|
||
|
background:#eed33f;
|
||
|
font-size:10pt;
|
||
|
font-weight: bold;
|
||
|
font-style: italic;
|
||
|
border-bottom:1px solid #fafafa;
|
||
|
border-bottom:1px solid rgba(255,255,255,.5);
|
||
|
padding:6px 10px;
|
||
|
color:rgba(0,0,0,255);}
|
||
|
|
||
|
table.gentable th.complete {
|
||
|
background:#17370b;
|
||
|
color:rgba(255,255,255,0);}
|
||
|
|
||
|
table.gentable th.incomplete {
|
||
|
background:#9c9224;
|
||
|
color:rgba(0,0,0,255);}
|
||
|
|
||
|
table.gentable td.complete {
|
||
|
background:#78bb5e;
|
||
|
color:rgba(0,0,0,255);}
|
||
|
|
||
|
table.gentable td.incomplete {
|
||
|
background:#eed33f;
|
||
|
color:rgba(0,0,0,255);}
|
||
|
|
||
|
|
||
|
table.gentable tr:last-child td {
|
||
|
border-bottom:none;
|
||
|
}
|
||
|
table.gentable tr:hover td {
|
||
|
background-color: #ffaaff;
|
||
|
}
|