Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.06 KB | None | 0 0
  1. #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  2.     position: absolute;
  3.     top: 32%;
  4.     width: 22.22%;
  5.     /*height: 26.75%;*/
  6.     left: 12%;
  7. }
  8.  
  9.     @media only screen and (max-width : 1366px) {
  10.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  11.              top: 31.4%;
  12.              left: 12.5%;
  13.         }
  14.     }
  15.  
  16.     @media only screen and (max-width : 1344px) {
  17.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  18.              top: 31%;
  19.              left: 12.5%;
  20.         }
  21.     }
  22.  
  23.     /* Large Devices, Wide Screens */
  24.     @media only screen and (max-width : 1258px) {
  25.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  26.              top: 30.9%;
  27.              left: 12.5%;
  28.         }
  29.     }
  30.  
  31.     @media only screen and (max-width : 1024px) {
  32.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  33.              top: 30%;
  34.              left: 12.5%;
  35.         }
  36.     }
  37.  
  38.     /* Medium Devices, Desktops */
  39.     @media only screen and (max-width : 992px) {
  40.  
  41.     }
  42.  
  43.     /* Small Devices, Tablets */
  44.     @media only screen and (max-width : 768px) {
  45.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  46.              top: 27%;
  47.              left: 12.5%;
  48.         }
  49.  
  50.     }
  51.  
  52.     @media only screen and (max-width : 480px) {
  53.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  54.              top: 25%;
  55.              left: 14.5%;
  56.              width: 20%;
  57.         }
  58.  
  59.     }
  60.  
  61.     /* Extra Small Devices, Phones */
  62.     @media only screen and (max-width : 480px) {
  63.  
  64.     }
  65.  
  66.     @media only screen and (max-width : 360px) {
  67.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  68.              top: 22.2%;
  69.              left: 14.1%;
  70.              width: 21%;
  71.         }
  72.     }
  73.  
  74.     /* Custom, iPhone Retina */
  75.     @media only screen and (max-width : 320px) {
  76.         #title_about > .wpb_wrapper > .vc_single_image-wrapper > img {
  77.              top: 22.4%;
  78.              left: 14.7%;
  79.              width: 19.4%;
  80.         }
  81.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement