19 lines
348 B
Stylus
19 lines
348 B
Stylus
body
|
|
background-color: #202020
|
|
|
|
table#tblStudyList thead > tr {
|
|
background-color: #424242;
|
|
color: white;
|
|
}
|
|
table#tblStudyList tbody > tr:nth-child(even) {
|
|
background-color: #CCC;
|
|
}
|
|
table#tblStudyList tbody > tr:nth-child(odd) {
|
|
background-color: #DDD;
|
|
}
|
|
table#tblStudyList tbody > tr:hover{
|
|
background-color: #009BD2
|
|
color: white
|
|
}
|
|
|