| 1 |
.pc-switcher { |
| 2 |
clear: both; |
| 3 |
text-align: center; |
| 4 |
margin: 1.4em auto; |
| 5 |
} |
| 6 |
.pc-switcher a, |
| 7 |
.pc-switcher span { |
| 8 |
padding: 0.4em 8%; |
| 9 |
text-align: center; |
| 10 |
border: 1px solid #0059A8; |
| 11 |
border-left: none; |
| 12 |
color: #fff !important; |
| 13 |
font-weight: bold; |
| 14 |
text-decoration: none; |
| 15 |
} |
| 16 |
.pc-switcher a { |
| 17 |
background-color: #0074DA; |
| 18 |
background-image: -moz-linear-gradient(#0074DA, #004A8D); |
| 19 |
background-image: -o-linear-gradient(#0074DA, #004A8D); |
| 20 |
background-image: -ms-linear-gradient(#0074DA, #004A8D); |
| 21 |
background-image: -webkit-gradient(linear, left top, left bottom, from(#0074DA), to(#004A8D)); |
| 22 |
background-image: -webkit-linear-gradient(#0074DA, #004A8D); |
| 23 |
background-image: linear-gradient(#0074DA, #004A8D); |
| 24 |
} |
| 25 |
.pc-switcher a:hover { |
| 26 |
background-color: #0059A8; |
| 27 |
background-image: -moz-linear-gradient(#0059A8, #004A8D); |
| 28 |
background-image: -o-linear-gradient(#0059A8, #004A8D); |
| 29 |
background-image: -ms-linear-gradient(#0059A8, #004A8D); |
| 30 |
background-image: -webkit-gradient(linear, left top, left bottom, from(#0059A8), to(#004A8D)); |
| 31 |
background-image: -webkit-linear-gradient(#0059A8, #004A8D); |
| 32 |
background-image: linear-gradient(#0059A8, #004A8D); |
| 33 |
} |
| 34 |
.pc-switcher span.active { |
| 35 |
background-color: #00305C; |
| 36 |
} |
| 37 |
.pc-switcher a:first-child, |
| 38 |
.pc-switcher span:first-child { |
| 39 |
border-left: 1px solid #0074DA; |
| 40 |
-webkit-border-radius: 2.4em 0 0 2.4em; |
| 41 |
-moz-border-radius: 2.4em 0 0 2.4em; |
| 42 |
border-radius: 2.4em 0 0 2.4em; |
| 43 |
} |
| 44 |
.pc-switcher a:last-child, |
| 45 |
.pc-switcher span:last-child { |
| 46 |
-webkit-border-radius: 0 2.4em 2.4em 0; |
| 47 |
-moz-border-radius: 0 2.4em 2.4em 0; |
| 48 |
border-radius: 0 2.4em 2.4em 0; |
| 49 |
} |
| 50 |
|