mirror of
https://gh.wpcy.net/https://github.com/presscustomizr/hueman.git
synced 2026-04-26 12:54:59 +08:00
29 lines
No EOL
583 B
CSS
29 lines
No EOL
583 B
CSS
/*
|
|
@fromfull
|
|
Add your custom styles in this file instead of style.css so it
|
|
is easier to update the theme. Simply copy an existing style
|
|
from style.css to this file, and modify it to your liking.
|
|
|
|
When you update your theme, backup this file and re-add it after.
|
|
*/
|
|
|
|
/* Global */
|
|
.mystyle {}
|
|
|
|
|
|
/* Tablet - 800px, 768px & 720px */
|
|
@media only screen and (min-width: 720px) and (max-width: 800px) {
|
|
.mystyle {}
|
|
}
|
|
|
|
|
|
/* Mobile - 480px & 320px */
|
|
@media only screen and (max-width: 719px) {
|
|
.mystyle {}
|
|
}
|
|
|
|
|
|
/* Mobile - 320px */
|
|
@media only screen and (max-width: 479px) {
|
|
.mystyle {}
|
|
} |