Files
cocoa-eh-hugo-theme/dev/less/util.less
2016-07-30 20:52:45 -07:00

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;
}
}