style.css 873 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* This is empty CSS file intended to be overwritten by user's custom CSS file */
  2. /* ============= Device specific fixes ======= */
  3. /* Large screens such as TV */
  4. @media only screen and (min-width: 1824px) {
  5. }
  6. /* Extra large devices (large desktops, 1200px and up) */
  7. @media (max-width: 1400px) {
  8. }
  9. @media (max-width: 1200px) {
  10. }
  11. /* IPad Pro */
  12. @media (max-width: 1024px) {
  13. }
  14. /* Large devices (desktops, 992px and up) */
  15. @media (max-width: 992px) {
  16. }
  17. /* Medium devices (tablets, 768px and up) */
  18. @media only screen and (max-width: 768px) {
  19. }
  20. /* Small devices (landscape phones, 576px and up) */
  21. @media only screen and (max-width: 576px) {
  22. }
  23. /* iPhoneX, iPhone 6,7,8 */
  24. @media only screen and (max-width: 375px) {
  25. }
  26. /* Galaxy S5, Moto G4 */
  27. @media only screen and (max-width: 360px) {
  28. }
  29. /* iPhone 5 or before */
  30. @media only screen and (max-width: 320px) {
  31. }