Advertisement
Guest User

Untitled

a guest
May 27th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.75 KB | None | 0 0
  1. @media screen and (max-width: 480px), screen and (max-device-width: 768px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape){
  2. /* Custom injected code*/
  3.     th {
  4.         display: none;
  5.     }
  6.  
  7.     tr {
  8.         display: block;
  9.     }
  10.  
  11.     .col1:before, .col2:before, .col3:before, .col4:before,.col5:before {
  12.         font-weight: bold;
  13.         display: block;
  14.     }
  15.  
  16. /* naming fields */
  17.     td.col1:before {
  18.         content:"Produto";
  19.     }
  20.  
  21.     td.col2:before {
  22.         content:"Quantidade";
  23.     }
  24.  
  25.     td.col3:before {
  26.         content:"Tamanho";
  27.     }
  28.  
  29.     td.col4:before {
  30.         content:"Marca";
  31.     }
  32.  
  33.     td.col5:before {
  34.         content:"Cores";
  35.     }
  36.  
  37. /* positioning fields */
  38.     td.col1 {
  39.         display: block;
  40.         position: relative;
  41.         top: 3px !important;
  42.         margin-left: 0px;
  43.         width: 192px;
  44.     }
  45.  
  46.     td.col2 {
  47.         display: block;
  48.         position: relative;
  49.         top: -37px !important;
  50.         margin-left: 170px;
  51.         width: 192px;
  52.     }
  53.  
  54.     td.col3 {
  55.         display: block;
  56.         position: relative;
  57.         top: -28px !important;
  58.         margin-left: 0px;
  59.         width: 192px;
  60.     }
  61.  
  62.     td.col4 {
  63.         display: block;
  64.         position: relative;
  65.         top: -126px !important;
  66.         margin-left: 170px;
  67.         width: 192px;
  68.     }
  69.  
  70.     td.col5 {
  71.         display: block;
  72.         position: relative;
  73.         top: -62px !important;
  74.         margin-left: 0px;
  75.     }
  76.  
  77.     td.col6 {
  78.         display: block;
  79.         position: relative;
  80.         top: -55px !important;
  81.         margin-left: 0px;
  82.     }
  83.      
  84.  
  85.     button.add {
  86.         margin-top: -28px;
  87.         position: relative;
  88.         display: block;
  89.     }
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement