This commit is contained in:
Michał Gdula 2022-06-01 00:43:07 +01:00
parent ec2453e918
commit f78ba1dd7e
22 changed files with 1204 additions and 0 deletions

32
css/activities.css Normal file
View file

@ -0,0 +1,32 @@
.activities {
display: flex;
flex-direction: column;
}
.activities div {
margin: 0.5em 0;
padding: 1em;
border-radius: var(--rad);
}
.activities div p,
.activities div h3 {
text-align: left;
color: var(--fg-dark);
}
.activities div:first-child {
margin-top: 0;
}
.activities div:last-child {
margin-bottom: 0;
}
#showcase {
background-color: var(--dv8-orange);
}
#demo {
background-color: var(--dv8-cyan);
}
#more {
background-color: var(--dv8-yellow);
}