25 lines
428 B
Stylus
25 lines
428 B
Stylus
body
|
|
background-color: #202020
|
|
|
|
.tab-content {
|
|
height: calc(100% - 40px);
|
|
}
|
|
|
|
table#tblStudyList thead > tr {
|
|
background-color: #424242;
|
|
color: white;
|
|
}
|
|
table#tblStudyList tbody > tr:nth-child(even) {
|
|
background-color: #888;
|
|
color: black;
|
|
}
|
|
table#tblStudyList tbody > tr:nth-child(odd) {
|
|
background-color: #BBB;
|
|
color: black;
|
|
}
|
|
table#tblStudyList tbody > tr:hover{
|
|
background-color: #009BD2
|
|
color: white
|
|
}
|
|
|