| 1 |
body { |
| 2 |
font-family: Arial, Helvetica, Verdana, sans-serif; |
| 3 |
font-size: 12px; |
| 4 |
} |
| 5 |
|
| 6 |
.r-tabs { |
| 7 |
position: relative; |
| 8 |
} |
| 9 |
|
| 10 |
.r-tabs .r-tabs-nav { |
| 11 |
border-bottom: 1px solid #ccc; |
| 12 |
} |
| 13 |
|
| 14 |
.r-tabs .r-tabs-nav .r-tabs-tab { |
| 15 |
position: relative; |
| 16 |
top: 1px; |
| 17 |
} |
| 18 |
|
| 19 |
.r-tabs .r-tabs-nav .r-tabs-anchor { |
| 20 |
background: #000000; |
| 21 |
margin-bottom: 3px; |
| 22 |
padding: 10px 12px; |
| 23 |
display: inline-block; |
| 24 |
text-decoration: none; |
| 25 |
color: #fff; |
| 26 |
font-weight: bold; |
| 27 |
} |
| 28 |
|
| 29 |
.r-tabs .r-tabs-nav .r-tabs-state-active { |
| 30 |
background-color: #fff; |
| 31 |
margin-bottom: -1px; |
| 32 |
border-top: 1px solid #ccc; |
| 33 |
border-right: 1px solid #ccc; |
| 34 |
border-left: 1px solid #ccc; |
| 35 |
} |
| 36 |
|
| 37 |
.r-tabs .r-tabs-nav .r-tabs-state-disabled { |
| 38 |
opacity: 0.5; |
| 39 |
} |
| 40 |
|
| 41 |
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor { |
| 42 |
color: #000000; |
| 43 |
background-color: #fff; |
| 44 |
} |
| 45 |
|
| 46 |
.r-tabs .r-tabs-panel { |
| 47 |
border-right: 1px solid #ccc; |
| 48 |
border-bottom: 1px solid #ccc; |
| 49 |
border-left: 1px solid #ccc; |
| 50 |
margin-bottom: 3px; |
| 51 |
} |
| 52 |
|
| 53 |
.r-tabs .r-tabs-accordion-title .r-tabs-anchor { |
| 54 |
display: block; |
| 55 |
padding: 10px; |
| 56 |
background-color: #000000; |
| 57 |
color: #fff; |
| 58 |
font-weight: bold; |
| 59 |
text-decoration: none; |
| 60 |
margin-bottom: 3px; |
| 61 |
} |
| 62 |
|
| 63 |
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled { |
| 64 |
opacity: 0.5; |
| 65 |
} |
| 66 |
|
| 67 |
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor { |
| 68 |
background-color: #fff; |
| 69 |
color: #000000; |
| 70 |
border-top: 1px solid #ccc; |
| 71 |
border-right: 1px solid #ccc; |
| 72 |
border-left: 1px solid #ccc; |
| 73 |
margin-bottom: 0; |
| 74 |
} |
| 75 |
|