Advertisement
diegocaetanop

Css Lu

Sep 22nd, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.67 KB | None | 0 0
  1. /*BOTAO FECHAR CELULAR*/
  2. @media (min-width: 100px)
  3. {
  4.     .fechar
  5.     {
  6.         display: block;
  7.         height: 50px;
  8.         left: 120px;
  9.         position: absolute;
  10.         top: 180px;
  11.         width: 50px;
  12.         z-index: 10001;
  13.     }
  14. }
  15. /*BOTAO FECHAR PC*/
  16. @media (min-width: 700px)
  17. {
  18.     .fechar
  19.     {
  20.         display: block !important;
  21.         height: 50px !important;
  22.         left: 328px !important;
  23.         position: absolute !important;
  24.         top: 178px !important;
  25.         width: 50px !important;
  26.         z-index: 10001 !important;
  27.     }
  28. }
  29. /*BOTAO FECHAR CELULAR*/
  30. @media (min-width: 100px)
  31. {
  32.     .botao
  33.     {
  34.         background: url(http://s30.postimg.org/eywt5q8zx/ne_Itj_Pt_png_1.png) no-repeat;
  35.         height: 50px;
  36.         left: 120px;
  37.         position: absolute;
  38.         top: 180px;
  39.         width: 50px;
  40.     }
  41. }
  42. /*BOTAO FECHAR PC*/
  43. @media (min-width: 700px)
  44. {
  45.     .botao
  46.     {
  47.         background: url(http://i.imgur.com/neItjPt.png?1) no-repeat;
  48.         display: block !important;
  49.         height: 50px !important;
  50.         left: 328px !important;
  51.         position: absolute !important;
  52.         top: 178px !important;
  53.         width: 50px !important;
  54.         z-index: 10001 !important;
  55.     }
  56. }
  57. /*IMAGEM/BANNER CELULAR*/
  58. @media (min-width: 100px)
  59. {
  60.     .imagem
  61.     {
  62.         background: url(http://s12.postimg.org/8crihx325/1curta.jpg) no-repeat;
  63.         height: 290px;
  64.         margin-left: -14%;
  65.         position: absolute;
  66.         top: 390px;
  67.         width: 290px;
  68.         z-index: 10000;
  69.     }
  70. }
  71. /*IMAGEM/BANNER PC*/
  72. @media (min-width: 700px)
  73. {
  74.     .imagem
  75.     {
  76.         background: url(https://fbcdn-sphotos-a-a.akamaihd.net/hphotos-ak-prn2/t1.0-9/970187_298143723695767_358146943777917244_n.png) no-repeat;
  77.         height: 500px;
  78.         margin-left: 50px !important;
  79.         position: absolute !important;
  80.         top: 380px !important;
  81.         width: 500px !important;
  82.         z-index: 10000 !important;
  83.     }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement