Files
cocoa-eh-hugo-theme/util.less
Nishanth Shanmugham 0b75044dee Add img css
* Create util file
* Add screen size helpers
2015-09-05 08:51:48 -05: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;
}
}