34 lines
411 B
CSS
34 lines
411 B
CSS
table {
|
|
margin-left: 10px;
|
|
background-color: white;
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border: 1px solid black;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.info {
|
|
background-color: lightblue !important;
|
|
}
|
|
|
|
.warn {
|
|
background-color: #f39c12 !important;
|
|
}
|
|
|
|
.error {
|
|
background-color: #e74c3c !important;
|
|
}
|
|
|
|
#logTable {
|
|
width: 95%;
|
|
}
|
|
|
|
#Logs {
|
|
overflow: auto;
|
|
}
|