1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
.container-green-full-width { width: 98vw; left: 14vw; } @media only screen and (min-width: 768px) and (max-width: 959px) { .container-green-full-width { width: 96vw; left: 3vw; } } /* =============================================== 04. #Mobile (Portrait) =============================================== */ /* Note: Design for a width of 320px */ @media only screen and (max-width: 767px) { .entry-content.blog_postcontent { width: 130% !important; margin-left: -40px !important; padding-left: 0px !important; } .container-green-full-width { width: 96vw; left: 1vw !important; } } /* =============================================== 05. #Mobile (Landscape) =============================================== */ /* Note: Design for a width of 480px */ @media only screen and (min-width: 480px) and (max-width: 767px) { .entry-content.blog_postcontent { width: 130% !important; margin-left: -40px !important; padding-left: 0px !important; } .container-green-full-width { width: 96vw; left: 1vw !important; } } |