mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 19:56:41 +02:00
Add img css
* Create util file * Add screen size helpers
This commit is contained in:
24
util.less
Normal file
24
util.less
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user