mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
33 lines
465 B
CSS
33 lines
465 B
CSS
main section {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
main h2 {
|
|
font-size: 3rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
main #tags {
|
|
display: flex;
|
|
align-items: center;
|
|
column-gap: 1rem;
|
|
}
|
|
|
|
main #tags a {
|
|
border-radius: 0.5625rem;
|
|
background-color: #5A5A5A;
|
|
color: var(--white);
|
|
padding: 0.5rem 1rem;
|
|
text-decoration: none;
|
|
}
|
|
|
|
main #tags .selected {
|
|
background-color: var(--crimson);
|
|
}
|
|
|
|
@media only screen and (max-width: 1024px) {
|
|
main h2 {
|
|
font-size: 1.75rem;
|
|
}
|
|
}
|