33 lines
392 B
CSS
33 lines
392 B
CSS
body {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
th,td {
|
|
border: 1px solid #ccc;
|
|
padding: .5rem;
|
|
}
|
|
|
|
th {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.theme-switcher {
|
|
float: right;
|
|
margin-bottom: 2%;
|
|
}
|
|
|
|
.dark-theme {
|
|
background-color: #222;
|
|
color: #ccc;
|
|
}
|
|
|
|
.uuid {
|
|
text-align: center;
|
|
} |