mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 11:46:41 +02:00
25 lines
319 B
Plaintext
25 lines
319 B
Plaintext
.dark {
|
|
color: @black !important;
|
|
}
|
|
|
|
.light {
|
|
color: @gray !important;
|
|
}
|
|
|
|
.accent {
|
|
color: @accent !important;
|
|
}
|
|
|
|
.small-screens-only {
|
|
@media (min-width: 550px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.large-screens-only {
|
|
display: none;
|
|
@media (min-width: 550px) {
|
|
display: initial;
|
|
}
|
|
}
|