2022-06-20 04:17:48 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #1f1f1f;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2022-06-20 12:46:39 +00:00
|
|
|
/* workaround for https://github.com/tauri-apps/tauri/issues/4410 */
|
|
|
|
div.template {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-06-20 04:17:48 +00:00
|
|
|
table {
|
|
|
|
border: 1px solid #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table td,
|
|
|
|
table th {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tr:nth-child(even) {
|
|
|
|
background-color: #252525;
|
|
|
|
}
|
|
|
|
|
|
|
|
table tbody tr:hover {
|
|
|
|
background-color: #444444;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #56b4e9;
|
|
|
|
}
|