wf-radio/frontend/src/styles/app.css

109 lines
1.5 KiB
CSS
Raw Normal View History

/* Impports */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
font-family: 'IBM Plex Mono';
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
background-color: #0c0c0c;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
min-width: 320px;
margin: 0;
}
2025-05-12 19:31:19 +02:00
a {
text-decoration: none;
}
/* Logo */
.logo.img {
position: absolute;
top: 1.6rem;
left: 2rem;
2025-05-12 19:31:19 +02:00
height: 6em;
2025-05-12 19:31:19 +02:00
padding: 1.5em;
user-select: none;
2025-05-12 19:31:19 +02:00
}
.logo.text {
position: absolute;
left: 10rem;
top: 3.8rem;
margin: 0;
2025-05-12 19:31:19 +02:00
color: #eaeaea;
font-family: Inter;
font-weight: 600;
font-size: 3em;
user-select: none;
}
h1 {
position: absolute;
left: 0rem;
top: -3rem;
color: #eaeaea;
font-family: Inter;
font-weight: 600;
padding: 1.5em;
font-size: 3em;
}
.content-container {
position: absolute;
top: 11rem;
right: 4rem;
left: 43rem;
bottom: 4rem;
min-height: 20rem;
min-width: 50rem;
/* background-color: #1a1a1a; */
color: #eaeaea;
/* border: #3a3a3a solid; */
border-width: .1em;
border-radius: .5rem;
}
.container {
position: absolute;
top: 11rem;
right: 4rem;
left: 4rem;
bottom: 4rem;
padding: 3rem;
background-color: #101010;
color: #eaeaea;
border: #3a3a3a solid;
border-width: .1em;
border-radius: .5rem;
2025-05-12 19:31:19 +02:00
}