OLD | NEW |
(Empty) | |
| 1 #main-content { |
| 2 display: -webkit-box; |
| 3 } |
| 4 |
| 5 #navbar-container { |
| 6 border: 1px solid black; |
| 7 background-color: #dfdfdf; |
| 8 cursor: pointer; |
| 9 font-weight: bold; |
| 10 height: 800px; |
| 11 padding: 10px; |
| 12 position: relative; |
| 13 width: 200px; |
| 14 } |
| 15 |
| 16 .navbar-item, .navbar-item2 { |
| 17 margin: 5px; |
| 18 padding: 5px; |
| 19 } |
| 20 |
| 21 .navbar-item-selected { |
| 22 background-color: #FFFFFF; |
| 23 } |
| 24 |
| 25 .navbar-item-normal { |
| 26 background-color: #dfdfdf; |
| 27 } |
| 28 |
| 29 #mainview { |
| 30 -webkit-box-align: stretch; |
| 31 border: 1px solid black; |
| 32 height: 800px; |
| 33 width: 600px; |
| 34 padding: 10px; |
| 35 position: relative; |
| 36 } |
| 37 |
| 38 section { |
| 39 margin-top: 10px; |
| 40 } |
| 41 |
| 42 .option { |
| 43 margin-top: 5px; |
| 44 } |
| 45 |
| 46 .option-control-table { |
| 47 margin-top: 5px; |
| 48 -webkit-padding-start: 10px; |
| 49 } |
| 50 |
| 51 .hidden { |
| 52 display: none; |
| 53 } |
| 54 |
| 55 .touch-slider { |
| 56 -webkit-appearance: slider-horizontal; |
| 57 } |
OLD | NEW |