| 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 - BLUE **********************************************************************************************/ |
| 18 |
/* Button */ |
| 19 |
.wpbc_times_selector div { |
| 20 |
color: #737373; |
| 21 |
border:1px solid #dbdbdb; |
| 22 |
background: #fafafa; |
| 23 |
border-radius: 5px; |
| 24 |
text-align: center; |
| 25 |
font-weight: 400; |
| 26 |
font-size: 1em; |
| 27 |
} |
| 28 |
|
| 29 |
/* Button - Mouse Over */ |
| 30 |
.wpbc_times_selector div:hover{ |
| 31 |
background: #eaeaea; |
| 32 |
box-shadow: 1px 0px #eee; |
| 33 |
} |
| 34 |
/* Button - Selected */ |
| 35 |
.wpbc_times_selector div.wpbc_time_selected{ |
| 36 |
background: #8c8c8c; |
| 37 |
color: #fff; |
| 38 |
box-shadow: 1px 0px #eee; |
| 39 |
font-weight: 400; |
| 40 |
} |
| 41 |
|