2024-11-12 16:45:42 -05:00
|
|
|
body {
|
|
|
|
background: var(--bg-primary);
|
|
|
|
background-color: var(--bg-primary);
|
|
|
|
font-family: var(--font-body);
|
|
|
|
}
|
|
|
|
|
|
|
|
article p, article li {
|
|
|
|
font-size: large;
|
|
|
|
font-family: var(--font-body);
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
|
2024-11-11 14:52:00 -05:00
|
|
|
.main {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-container {
|
2024-11-13 01:14:20 -05:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 5px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2024-11-11 14:52:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.grid-item {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background-color: var(--bg-primary);
|
|
|
|
border: 2px solid var(--color-secondary);
|
2024-11-13 01:14:20 -05:00
|
|
|
width: fit-content;
|
|
|
|
min-width: 88px;
|
2024-11-11 14:52:00 -05:00
|
|
|
height: 31px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-item:hover img {
|
|
|
|
color: white;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid-item img {
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
color: var(--color-accent)
|
|
|
|
}
|