31 lines
493 B
Stylus
31 lines
493 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
|
|
}
|
|
|
|
table#tblStudyList tbody > tr > td{
|
|
word-wrap: break-word
|
|
}
|
|
|
|
|
|
|