| 1 |
/** |
| 2 |
* All of the CSS for your public-facing functionality should be |
| 3 |
* included in this file. |
| 4 |
*/ |
| 5 |
|
| 6 |
/* Style the buttons that are used to open and close the accordion panel */ |
| 7 |
.metasync-accordion { |
| 8 |
border: none; |
| 9 |
border-radius: 8px; |
| 10 |
color: #151433; |
| 11 |
background-color: #F5F5F5; |
| 12 |
cursor: pointer; |
| 13 |
width: 100%; |
| 14 |
text-align: left; |
| 15 |
font-size: 1.2rem; |
| 16 |
line-height: 30px; |
| 17 |
padding: 12px 0 12px 20px; |
| 18 |
} |
| 19 |
|
| 20 |
.metasync-active .metasync-accordion { |
| 21 |
border-radius: 8px 8px 0 0px; |
| 22 |
} |
| 23 |
|
| 24 |
.metasync-panel { |
| 25 |
padding: 1px 18px; |
| 26 |
display: none; |
| 27 |
border-radius: 0 0 8px 8px; |
| 28 |
background-color: #F5F5F5; |
| 29 |
color: #4E5C68!important; |
| 30 |
} |
| 31 |
|
| 32 |
.metasync-active .metasync-panel { |
| 33 |
display: block; |
| 34 |
|
| 35 |
} |
| 36 |
|
| 37 |
.metasync-accordion:after{ |
| 38 |
content: '\02795'; /* Unicode character for "plus" sign (+) */ |
| 39 |
color: #777; |
| 40 |
float: right; |
| 41 |
margin-right: 15px; |
| 42 |
} |
| 43 |
|
| 44 |
.metasync-active .metasync-accordion:after { |
| 45 |
content: "\2796"; /* Unicode character for "minus" sign (-) */ |
| 46 |
} |
| 47 |
.metasyncTable th{ |
| 48 |
border: 1px solid rgb(193, 193, 193); |
| 49 |
padding: 6px; |
| 50 |
background-color: rgb(233, 233, 233); |
| 51 |
text-align: center; |
| 52 |
} |
| 53 |
.metasyncTable td{ |
| 54 |
border: 1px solid rgb(193, 193, 193); |
| 55 |
padding: 6px; |
| 56 |
} |
| 57 |
.metasyncPara{ |
| 58 |
margin-bottom: 8px; |
| 59 |
} |