35 lines
587 B
CSS
35 lines
587 B
CSS
.category .content {
|
|
padding: 2rem 1rem;
|
|
|
|
h2 {
|
|
color: var(--ft-color);
|
|
font-family: var(--s-font);
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
margin: .75rem 0 0 0;
|
|
}
|
|
|
|
p {
|
|
color: var(--fq-color);
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5rem;
|
|
padding: .5rem 1rem .5rem .05rem;
|
|
margin: .5rem 0 2rem 0;
|
|
}
|
|
|
|
.offline {
|
|
opacity: .5;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 480px) {
|
|
.category .content {
|
|
padding: 0 .5rem 2rem .5rem;
|
|
|
|
p {
|
|
padding: .5rem 1rem .5rem .05rem;
|
|
margin: .5rem 0 2rem 0;
|
|
}
|
|
}
|
|
} |