This commit is contained in:
bronkuu 2026-04-27 16:52:14 +02:00
parent b1e40e7beb
commit 67de77b110
5 changed files with 137 additions and 29 deletions

View file

@ -184,7 +184,7 @@ nav > div {
background-color: white;
&:nth-child(2) {
background-color: rgb(from var(--secondary-container) r g b / 0.3);;
background-color: rgb(from var(--secondary-container) r g b / 0.3);
}
& img {
@ -229,6 +229,8 @@ nav > div {
& svg {
transition-duration: 0.2s;
height: 2em;
width: 2em;
}
}
}
@ -236,5 +238,67 @@ nav > div {
}
.kawiarnia {
background-color: var(--surface-container-low);
background-color: var(--secondary-container);
& > div {
background-color: rgb(from var(--surface) r g b / 0.6);
max-width: var(--max-content-width);
margin: 0 auto;
border-radius: var(--border-radius);
& > div {
padding: 2rem;
}
}
}
footer {
display: grid;
grid-template-columns: 3fr 2fr 2fr;
max-width: var(--max-content-width);
margin: 3rem auto;
gap: 1rem;
& > :first-child {
display: flex;
flex-direction: column;
justify-content: space-between;
& p {
font-size: 0.875rem;
}
& > :last-child {
font-weight: lighter;
font-size: 0.75rem;
}
}
& > :nth-child(2) a {
flex-direction: column;
align-items: flex-start;
}
& a {
font-size: 0.875rem;
color: var(--on-background);
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
text-decoration: none;
margin: 1rem 0;
& > div {
display: flex;
align-items: center;
justify-content: center;
}
}
& h4 {
color: var(--primary);
}
& svg {
margin-right: 0.5rem;
}
}