56 lines
683 B
CSS
56 lines
683 B
CSS
body {
|
|
font-size: 0.9em;
|
|
width: 90%;
|
|
margin: 0px auto;
|
|
}
|
|
|
|
h1 {
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
h2 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
table {
|
|
border-spacing: 0px;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border: 1px solid black;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
th {
|
|
font-family: Arial;
|
|
}
|
|
|
|
td, th {
|
|
padding: 8px;
|
|
}
|
|
|
|
#headerTable, #cookieTable {
|
|
border: none;
|
|
height: 100%;
|
|
}
|
|
|
|
#headerTd {
|
|
white-space: normal;
|
|
}
|
|
|
|
#label {
|
|
width: 20%;
|
|
border-right: 1px solid black;
|
|
}
|
|
|
|
#logs{
|
|
margin-top: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#logs>tbody>tr>td {
|
|
border-right: 1px dashed lightgray;
|
|
}
|
|
|
|
#logs>thead>tr>th {
|
|
border: 1px solid black;
|
|
} |