gitlab-jobs/style.css
2022-07-24 01:44:47 +02:00

44 lines
556 B
CSS

html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #1f1f1f;
color: #ffffff;
font-family: sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* workaround for https://github.com/tauri-apps/tauri/issues/4410 */
div.template {
display: none;
}
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;
}