gitlab-jobs/style.css

44 lines
556 B
CSS
Raw Permalink Normal View History

2022-06-20 04:17:48 +00:00
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background-color: #1f1f1f;
color: #ffffff;
2022-07-23 23:44:47 +00:00
font-family: sans-serif;
2022-06-20 04:17:48 +00:00
}
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;
}
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;
}