31 lines
532 B
CSS
31 lines
532 B
CSS
div.page div.column1 {
|
|
width: 44%;
|
|
padding-right: 1%;
|
|
float: left;
|
|
}
|
|
div.page div.column2 {
|
|
border-left: 1px dashed #aaa;
|
|
padding-left: 1%;
|
|
width: 53%;
|
|
float: left;
|
|
}
|
|
div.page table {
|
|
table-layout: fixed;
|
|
}
|
|
div.page table tr {
|
|
border-bottom: 1px dashed #8db2d8;
|
|
border-top: 1px dashed #8db2d8;
|
|
}
|
|
div.page table tr:nth-child(odd) {
|
|
background-color: #e8eef4;
|
|
}
|
|
div.page table td.Alert {
|
|
background-color: #FFADAD;
|
|
}
|
|
div.page table td.userId {
|
|
width: 100px;
|
|
}
|
|
div.page table td.timestamp {
|
|
width: 250px;
|
|
}
|