website/sass/style.scss
Ncam Gnrvngu 7bc11e49a4
Make project REUSE compliant
initial commit

a lot more stuff

Make project REUSE compliant

start working on implementing audio
2025-05-28 17:07:49 +02:00

84 lines
1.2 KiB
SCSS

/*
* SPDX-FileCopyrightText: 2025 Ncam Gnrvngu <info@ncamgnrvngu.eu>
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
@use "base";
@use "mocha" as c;
#greeter {
display: flex;
margin: auto;
max-width: 900px;
width: 90%;
margin-bottom: 50px;
align-items: center;
margin-top: 50px;
}
@media(min-width: 600px) {
#greeter {
margin-top: 100px;
}
}
#greeter img {
width: 20%;
height: auto;
margin: auto;
border-radius: 100%;
}
#greeter div {
//@include base.center-vertically;
width: 80%;
padding-left: min(70px, 4cqw);
}
#greeter div h1 {
font-size: min(5cqw, 35pt);
font-weight: 600;
margin-bottom: 5px;
}
#greeter div h2 {
font-size: min(2.9cqw, 20pt);
font-weight: 600;
color: c.$subtext1;
margin-top: 5px;
}
#categories {
display: grid;
gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#categories div h3 {
font-size: 20pt;
font-weight: 600;
margin-bottom: 10px;
}
ul {
padding-left: 25px;
}
li p {
font-size: 11pt;
color: c.$subtext0;
margin-left: 5px;
}
li a {
color: c.$mauve;
font-size: 16pt;
font-weight: 500;
}
li::marker {
color: c.$text;
}
li {
font-size: 16pt;
}