This repository has been archived on 2025-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
gardev-startpage/src/root.css
2023-11-20 00:30:06 +02:00

67 lines
779 B
CSS

:root {
--color-text: #ddd;
--color-secondary: #555;
--color-bright: #eee;
}
::selection {
color: white;
background-color: black;
}
body {
font-family: 'Helvetica Neue', sans-serif;
}
html,
main {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
main {
color: var(--color-text);
}
.scroll-wrapper {
height: 100vh;
overflow: scroll;
}
main {
margin: 0 auto;
}
strong {
font-weight: bold;
}
table {
width: 100%;
background-color: rgba(30, 30, 30, 0.85);
backdrop-filter: blur(10px);
border: 2px solid rgba(30, 30, 30, 1);
color: var(--color-text);
}
th {
text-align: left;
font-weight: bold;
}
th,
td {
padding: 1rem 1.5rem;
}
tr {
border-bottom: 1px solid black;
}
a:hover,
a:focus {
text-decoration: underline;
}