| 1 |
/*******************************************************************************/ |
| 2 |
/* C O L O R S K I N **********************************************/ |
| 3 |
/*******************************************************************************/ |
| 4 |
/* For better compatibility, please change here only following properties: */ |
| 5 |
/* |
| 6 |
* background , background-color, background-repeat, background-image, background-repeat, background-position |
| 7 |
* border |
| 8 |
* box-shadow, -moz-box-shadow, -webkit-box-shadow |
| 9 |
* border-radius, -moz-border-radius, -webkit-border-radius |
| 10 |
* color |
| 11 |
* font-weight |
| 12 |
* text-shadow |
| 13 |
* text-transform |
| 14 |
* |
| 15 |
*/ |
| 16 |
|
| 17 |
/* S K I N - BLACK **********************************************************************************************/ |
| 18 |
/* Button */ |
| 19 |
.wpbc_times_selector div { |
| 20 |
color: #bbb;; |
| 21 |
border:2px solid transparent; |
| 22 |
background: #595959; |
| 23 |
border-radius: 5px; |
| 24 |
text-align: center; |
| 25 |
font-weight: 400; |
| 26 |
font-size: 1em; |
| 27 |
box-shadow: 0px 0 4px transparent; |
| 28 |
} |
| 29 |
|
| 30 |
/* Button - Mouse Over */ |
| 31 |
.wpbc_times_selector div:hover{ |
| 32 |
color: #ddddcf; |
| 33 |
} |
| 34 |
/* Button - Selected */ |
| 35 |
.wpbc_times_selector div.wpbc_time_selected{ |
| 36 |
background: #404040; |
| 37 |
color: #ddddcf; |
| 38 |
box-shadow: 0 0 4px #585858; |
| 39 |
font-weight: 600; |
| 40 |
border: 2px solid transparent; |
| 41 |
} |