51 lines
846 B
CSS
51 lines
846 B
CSS
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;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.grid-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.grid-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(--bg-primary);
|
|
border: 2px solid var(--color-secondary);
|
|
width: fit-content;
|
|
min-width: 88px;
|
|
height: 31px;
|
|
}
|
|
|
|
.grid-item:hover img {
|
|
color: white;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.grid-item img {
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
color: var(--color-accent)
|
|
}
|