balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

redux-divide.scss (1286B)


      1 .redux-main {
      2     .divide {
      3         height: 20px;
      4         line-height: 20px;
      5         float: none;
      6         border-color: #e7e7e7;
      7         display: block;
      8         width: 100%;
      9         height: 35px !important;
     10         line-height: 35px !important;
     11         position: relative;
     12         margin: 15px 0 10px 0;
     13 
     14         .inner {
     15             width: 42% !important;
     16             left: 40% !important;
     17             margin-left: -6%;
     18             background-color: #fcfcfc;
     19             border-color: #e7e7e7;
     20             position: absolute;
     21             height: 1px;
     22             top: 50%;
     23             width: 100%;
     24             margin-top: -1px;
     25             border-top-width: 1px;
     26             border-top-style: solid;
     27             span {
     28                 background-color: #fcfcfc;
     29                 border-color: #e7e7e7;
     30                 height: 5px;
     31                 width: 5px;
     32                 border-width: 2px;
     33                 border-style: solid;
     34                 display: block;
     35                 position: absolute;
     36                 left: 50%;
     37                 margin-left: -5px;
     38                 margin-top: -5px;
     39             }
     40         }
     41     }
     42 }
     43 
     44 .wp-customizer .redux-container-divide {
     45     .divide .inner {
     46         width: 82% !important;
     47         left: 18% !important;
     48         margin-left: -8%;
     49     }
     50 }
     51