I have to apply a same style for viewports smallers than 1024 and bigger than 1920, I think that something like this should be posible:
@media (max-width: 1024px) or (min-width: 1920px) {
...CSS Code
}
However it does not work, I do not want to repeat all css code twice for each size, neither I can import from html the same file from both medias (Since I only can have a minified css).
Any ideas? Thanks in advance!