style.css
175 lines
| 1 | .tabBox { |
| 2 | border-radius: 4px; |
| 3 | margin: 10px 0 40px 0; |
| 4 | float: left; |
| 5 | width: 100%; |
| 6 | } |
| 7 | |
| 8 | .tabBox > input[type="radio"] { |
| 9 | position: absolute; |
| 10 | left:-100px; |
| 11 | top:-100px; |
| 12 | } |
| 13 | |
| 14 | .tabBox > input[type="radio"] + label { |
| 15 | display: inline-block; |
| 16 | border: 1px solid #DEDBD1; |
| 17 | border-radius: 5px 5px 0 0; |
| 18 | -moz-border-radius: 5px 5px 0 0; |
| 19 | -webkit-border-radius: 5px 5px 0 0; |
| 20 | border-bottom: 0; |
| 21 | padding: 8px 10px; |
| 22 | background-color:#ddd; |
| 23 | color: #111; |
| 24 | font-size: 13px; |
| 25 | } |
| 26 | |
| 27 | .tabBox > input[type="radio"]:checked + label { |
| 28 | background-color:white; |
| 29 | font-weight: bold; |
| 30 | margin-bottom: -1px; |
| 31 | color: #0073aa; |
| 32 | border-top: 1px solid #1A9AC9; |
| 33 | } |
| 34 | |
| 35 | .tabBox > div { |
| 36 | display: none; |
| 37 | border: 1px solid #DEDBD1; |
| 38 | background-color: white; |
| 39 | padding: 10px 20px 10px 20px; |
| 40 | height: auto; |
| 41 | overflow: auto; |
| 42 | margin-top: -1px; |
| 43 | |
| 44 | border-radius: 0 5px 5px 5px; |
| 45 | -moz-border-radius: 0 5px 5px 5px; |
| 46 | -webkit-border-radius: 0 5px 5px 5px; |
| 47 | } |
| 48 | |
| 49 | #aDBc-clean:checked ~ .tab1, #aDBc-optimize:checked ~ .tab2, #aDBc-reset:checked ~ .tab3{ |
| 50 | display: block; |
| 51 | min-height: 400px; |
| 52 | } |
| 53 | |
| 54 | /* style for count numbers */ |
| 55 | .aDBcCount { |
| 56 | text-align: right !important; |
| 57 | color: #666 !important; |
| 58 | } |
| 59 | |
| 60 | /* Style for check box */ |
| 61 | input[type=checkbox] { |
| 62 | visibility: hidden; |
| 63 | } |
| 64 | /* SQUARED FOUR */ |
| 65 | .squaredFour { |
| 66 | position: relative; |
| 67 | text-align: center; |
| 68 | } |
| 69 | .squaredFour label { |
| 70 | cursor: pointer; |
| 71 | position: absolute; |
| 72 | width: 16px; |
| 73 | height: 16px; |
| 74 | top: 0; |
| 75 | border-radius: 4px; |
| 76 | border: 1px solid #999; |
| 77 | background: #fcfff4; |
| 78 | } |
| 79 | .squaredFour label:after { |
| 80 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; |
| 81 | filter: alpha(opacity=0); |
| 82 | opacity: 0; |
| 83 | content: ''; |
| 84 | position: absolute; |
| 85 | width: 7px; |
| 86 | height: 4px; |
| 87 | background: transparent; |
| 88 | top: 4px; |
| 89 | left: 4px; |
| 90 | border: 2px solid #71ADE1; |
| 91 | border-top: none; |
| 92 | border-right: none; |
| 93 | -webkit-transform: rotate(-45deg); |
| 94 | -moz-transform: rotate(-45deg); |
| 95 | -o-transform: rotate(-45deg); |
| 96 | -ms-transform: rotate(-45deg); |
| 97 | transform: rotate(-45deg); |
| 98 | } |
| 99 | .squaredFour label:hover::after { |
| 100 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; |
| 101 | filter: alpha(opacity=30); |
| 102 | opacity: 0.3; |
| 103 | } |
| 104 | .squaredFour input[type=checkbox]:checked + label:after { |
| 105 | -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; |
| 106 | filter: alpha(opacity=100); |
| 107 | opacity: 1; |
| 108 | } |
| 109 | |
| 110 | /* Style for sidebar */ |
| 111 | .aDBcSidebar { |
| 112 | float:right; |
| 113 | border: 1px solid #ccc; |
| 114 | background: #fff; |
| 115 | margin-right: -300px; |
| 116 | margin-top:44px; |
| 117 | width: 280px; |
| 118 | border-radius: 5px 5px 0 0; |
| 119 | -moz-border-radius: 5px 5px 0 0; |
| 120 | -webkit-border-radius: 5px 5px 0 0; |
| 121 | } |
| 122 | .aDBcSidebar > div{ |
| 123 | padding: 15px; |
| 124 | } |
| 125 | .aDBcSidebar h2{ |
| 126 | font-size:20px; |
| 127 | } |
| 128 | |
| 129 | /* Box warning */ |
| 130 | .box-warning { |
| 131 | border-radius: 5px; |
| 132 | -moz-border-radius: 5px; |
| 133 | -webkit-border-radius: 5px; |
| 134 | background: #fff5cc url("../images/warning.png") no-repeat scroll 8px 50%; |
| 135 | border-color: #f2dd8c; |
| 136 | color: #404040; |
| 137 | padding: 10px 10px 10px 50px; |
| 138 | margin-top: 20px; |
| 139 | } |
| 140 | /* Info box */ |
| 141 | .box-info { |
| 142 | border-radius: 5px; |
| 143 | -moz-border-radius: 5px; |
| 144 | -webkit-border-radius: 5px; |
| 145 | background: #e1f1ff url("../images/info.png") no-repeat scroll 8px 50%; |
| 146 | border-color: #a3d4ff; |
| 147 | color: #404040; |
| 148 | padding: 10px 10px 10px 60px; |
| 149 | margin-top: 20px; |
| 150 | } |
| 151 | |
| 152 | /* boxes in tab to inform users about the current option */ |
| 153 | .box-notice{ |
| 154 | border-radius: 5px; |
| 155 | -moz-border-radius: 5px; |
| 156 | -webkit-border-radius: 5px; |
| 157 | border: 1px solid #eee; |
| 158 | margin-top:40px; |
| 159 | padding:10px; |
| 160 | background:#F4F4F4; |
| 161 | width:300px; |
| 162 | font-size: 12px; |
| 163 | text-align:justify; |
| 164 | } |
| 165 | |
| 166 | /* For Data already cleaned */ |
| 167 | .already-cleaned{ |
| 168 | float: left; |
| 169 | background:#c4c4c4; |
| 170 | padding:2px 6px 2px 6px; |
| 171 | border-radius: 8px; |
| 172 | color: #fff; |
| 173 | margin: 2px; |
| 174 | font-size: 11px; |
| 175 | } |