Add img css

* Create util file
* Add screen size helpers
This commit is contained in:
Nishanth Shanmugham
2015-09-05 08:51:48 -05:00
parent 3f0693edb7
commit 0b75044dee
3 changed files with 45 additions and 11 deletions

24
util.less Normal file
View File

@@ -0,0 +1,24 @@
.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;
}
}