frontend/assets/style.css
2025-06-05 21:51:14 +02:00

48 lines
1.0 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-weight: 600;
font-family: "Source Code Pro", monospace;
}
html {
--primary-color: rgb(87, 75, 255);
}
html, body, #__nuxt {
width: 100vw;
height: 100vh;
}
.resource-container {
display: grid;
grid-template-columns: auto auto auto 1fr auto auto;
align-content: start;
background-color: #ebebeb;
}
.resource, .header {
display: contents;
}
.header > * {
padding: 0.75rem;
background-color: rgb(29, 29, 29);
color: white;
font-weight: bold;
position: sticky;
top: 0;
}
.resource > .grid-element {
padding: 0.25rem 0.75rem;
display: flex;
align-items: center;
}
.resource p {
font-weight: 600;
font-family: "Source Code Pro", monospace;
}
.even > .grid-element {
background-color: rgb(216, 216, 216);
}