basic.css 5.4 KB
Newer Older
1
html, body{
2 3 4 5 6 7 8
    width: 100%;
    padding: 0;
    height: auto;
    background-color: white;
    margin: 0;
}

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
::-webkit-scrollbar {
    width: 14px;
    background-color:white;
}


::-webkit-scrollbar-thumb {
    border-radius: 10px; 
    background-color:lightgray;
    border: 2px solid gray;
}

::-webkit-scrollbar-button:vertical:start{
    border-radius: 10px;
    background-color:lightgray;
    background-image: url(../images/trgUp.png);
    background-size: 8px auto;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid gray;
}

::-webkit-scrollbar-button:vertical:end{
    border-radius: 10px;
    background-color:lightgray;
    background-image: url(../images/trgDown.png);
    background-size: 8px auto;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid gray;
}

41
a {
unknown's avatar
unknown committed
42
    text-decoration: underline;    
43 44
}

unknown's avatar
unknown committed
45
#disc_nav_cont{
46
    height: auto;
47
    position: fixed;
48
    left: 0;
unknown's avatar
unknown committed
49
    bottom: 0;    
unknown's avatar
unknown committed
50 51 52 53
    width: 100%;
}

.disclaimer{  
54 55
    padding: 5px;
    text-align: center;
unknown's avatar
unknown committed
56 57
    background-color: #BBBBBB;    
    border-top: solid 4px #EEEEEE;
58
    border-bottom: none;
59
    font-size: 12px;
60 61
}

unknown's avatar
unknown committed
62 63 64 65 66 67 68 69 70 71
.resultFooter{    
    width: 100%;    
    padding: 3px;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-weight: bold;
    font-size: x-large;
    text-align: center;
    background-color: white;
}

72 73 74
#searchResult {
    overflow: hidden;
    text-align: center;
unknown's avatar
unknown committed
75 76
    margin-top: 50px;
    margin-bottom: 50px;
77 78
}

unknown's avatar
unknown committed
79
.search{   
80 81 82 83 84
    position: fixed;
    top: 0;
    left: 0;
    padding: 5px;
    background-color: #BBBBBB;
unknown's avatar
unknown committed
85
    border-bottom: solid 4px #EEEEEE;
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
}

.search,
.disclaimer {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.toggleIcon{
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../images/trgUp.png) 50% no-repeat;
    
}

.searchInput{
    padding: 3px;
    float: left;
    width: 100%;
    border-radius: 3px;
    border-style: none;
    height: 22px;
    line-height: 18px;
    vertical-align: middle;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.searchButton{
    background: url("../images/search_app.png") -38px -38px no-repeat;
    width: 24px;
    height: 24px;
    overflow: hidden;
    position: absolute;
    right: 30px;
    top: 9px;
    margin-left: -2px;
    cursor: pointer;
}

.subSearch{
    margin: 0;
    float: left;    
}

#subSearchInput{
    width: 100%;
    float: left;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 5px;
    padding-right: 26px;
}

#subSearchFilter{
    width: 100%;
    float: left;
    display: none;
}

.searchResult{
    width: 98%;
    padding: 3px;
unknown's avatar
unknown committed
151

152 153 154 155 156 157 158 159 160 161 162 163 164 165
    background-color:#123456;
}

.imgContainer{
    display: inline-block;
    padding: 3px;
    margin: 3px;
    text-align: center;
    overflow: hidden;
    font-size: small;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    vertical-align: top;
}

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
.filterContainer{
    float: left;
    margin: 2px;
    padding: 2px;
    font-size: 14px;
    
}

.filterSelect{
    border-style:none;
    -webkit-border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-radius-topright: 15px;
    -moz-border-radius-bottomright: 15px;
    border-top-right-radius: 15px;
181 182
    margin-top: 2px;
    width: 100%;
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
}

span{    
    font-family: Verdana,Arial,Helvetica,sans-serif;
    color: #666;
}

[draggable] {
  -webkit-user-select: none;
  user-select: none;
}

.toggleFilters{
    margin: 0;
    padding: 0;
    background-position: center;
    background-image: url(../images/down.png);
    position: absolute;
201 202
    top: 11px;
    right: 6px;
203 204 205
    width: 20px;
    height: 20px;
    cursor: pointer;
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
}

.colors_line {
    float: left;
    margin: 4px;
    margin-right: 0;
    clear: left;
}

.custom {
    opacity: 0;
    position: absolute;
    left: -10000px;
}

.filter_button.button.color {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #EBEBEB;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.filter_button.button.color:hover {
  border: 1px solid rgb(128,128,128);
  cursor: pointer;
}

input[type="radio"]:checked + .filter_button.button.color {
  border: 1px solid rgb(255,255,255);
  box-shadow: 0 0 0px 1px #000;
  -webkit-box-shadow: 0 0 0px 1px #000;
}

#allcolor {
    background: white url('../images/search_app.png') -43px -144px no-repeat;
}

#colored {
    background: white url('../images/search_app.png') -43px -244px no-repeat;
}

#grayed {
    background: white url('../images/search_app.png') -45px -343px no-repeat;
}

#black{
    background-color:#ffffff;
}
#blue{
    background-color:#0000FF;
}
#brown{
    background-color:rgba(139, 82, 16, 1);
}

#gray{
    background-color:#999999;
}

#green{
    background-color:#00CC00;
}

#orange{
    background-color:#FB940B;
}

#pink{
    background-color:#FF98BF;
} 

#purple{
    background-color:#762CA7;
}

#red{
    background-color:#CC0000;
}

#teal{
    background-color:#03C0C6;
}

#white{
    background-color:#000000;
}

#yellow{
    background-color:#FFFF00;
}

.selectBox-dropdown, .selectBox-options li a { 
    line-height: 1.3 !important;
    font-size: 13px;
}

.pager_button {
    padding: 3px 5px;
    font-size: 16px;
    color: black;
    display: inline-block;
}

.pager_button.active {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: gray;
    color: white;
318
}