39 lines
663 B
CSS
39 lines
663 B
CSS
main {
|
|
margin-inline: 32px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 32px;
|
|
padding: 32px;
|
|
outline: var(--outline);
|
|
flex-wrap: wrap;
|
|
background: var(--bg-highlight-color);
|
|
}
|
|
|
|
a.container {
|
|
background: var(--bg-color);
|
|
font-family: var(--font);
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
padding: 16px;
|
|
outline: var(--outline);
|
|
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.container > .title {
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
a.container:hover > .title {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a.container > .description {
|
|
font-size: 18px;
|
|
}
|
|
|