app/Plugin/QuantityDiscountDx/Resource/template/default/Product/detail_ex_css.twig line 1

Open in your IDE?
  1. <style>
  2.     .qd-Table {
  3.         display: table;
  4.         width: 100%;
  5.         margin-top: 20px;
  6.         margin-bottom: 20px;
  7.     }
  8.     .qd-Header {
  9.         display: table-row;
  10.         background: #f2f2f2;
  11.     }
  12.     .qd-Header .qd-Header-Column {
  13.         display: table-cell;
  14.         width: 50%;
  15.         border-bottom: 1px #ccc;
  16.         padding: 10px 16px;
  17.     }
  18.     .qd-Header .box-m {
  19.         width: 50%;
  20.     }
  21.     .qd-Header .box-s {
  22.         width: 25%;
  23.     }
  24.     .qd-Row {
  25.         display: table-row;
  26.     }
  27.     .qd-Row .qd-Row-Column {
  28.         display: table-cell;
  29.         text-align: center;
  30.         padding: 10px 16px;
  31.         border-bottom: 1px dotted #ccc;
  32.     }
  33.     .qd-Table ul:nth-child(2n+1) {
  34.         background: #f9f9f9;
  35.     }
  36.     .qd-Row .rigth {
  37.         text-align: right;
  38.     }
  39.     .qd-Row .left {
  40.         text-align: left;
  41.     }
  42.     @media only screen and (min-width: 768px) {
  43.         .qd-Table {
  44.             display: table;
  45.             width: 70%;
  46.         }
  47.         .qd-Table.col-3 {
  48.             display: table;
  49.             width: 100%;
  50.         }
  51.     }
  52. </style>