| 1 |
#spoiler-arrow{ |
| 2 |
width: 0; |
| 3 |
height: 0; |
| 4 |
position: relative; |
| 5 |
border-left: 7px solid transparent; |
| 6 |
border-right: 7px solid transparent; |
| 7 |
float: right; |
| 8 |
margin-top: 4px; |
| 9 |
margin-right: 24px; |
| 10 |
} |
| 11 |
#spoiler-title .up{ |
| 12 |
border-bottom: 10px solid #666; |
| 13 |
} |
| 14 |
#spoiler-title .down{ |
| 15 |
border-top: 10px solid #666; |
| 16 |
} |
| 17 |
#spoiler-block #spoiler-content{ |
| 18 |
transition: max-height 0.5s; |
| 19 |
-webkit-transition: max-height 0.5s; |
| 20 |
-moz-transition: max-height 0.5s; |
| 21 |
-o-transition: max-height 0.5s; |
| 22 |
overflow: hidden; |
| 23 |
padding: 0px 10px 10px 30px; |
| 24 |
} |
| 25 |
#spoiler-block{ |
| 26 |
background-color: #f9f9f9; |
| 27 |
border-radius: 6px; |
| 28 |
color: #666; |
| 29 |
border-bottom: 1px solid #96D5F1; |
| 30 |
font-size: 13px; |
| 31 |
} |
| 32 |
#spoiler-block .closed{ |
| 33 |
max-height: 0px; |
| 34 |
padding: 0px !important; |
| 35 |
} |
| 36 |
#spoiler-block li{ |
| 37 |
border-bottom: 1px dotted #ddd; |
| 38 |
} |
| 39 |
#spoiler-title{ |
| 40 |
cursor: pointer; |
| 41 |
width: 100%; |
| 42 |
display: block; |
| 43 |
padding: 10px; |
| 44 |
} |
| 45 |
.sendwp-page{ |
| 46 |
padding: 20px; |
| 47 |
position: relative; |
| 48 |
margin: auto; |
| 49 |
display: block; |
| 50 |
width: 80%; |
| 51 |
max-width: 800px; |
| 52 |
color: #0D2842; |
| 53 |
font-size: 15px; |
| 54 |
} |
| 55 |
.sendwp-page .logo{ |
| 56 |
margin: 0px auto 100px; |
| 57 |
display: block; |
| 58 |
} |
| 59 |
.sendwp-page hr{ |
| 60 |
margin: 25px 0px; |
| 61 |
} |
| 62 |
#sendwp-enabled-status{ |
| 63 |
margin-left: 15px; |
| 64 |
} |
| 65 |
/* The switch - the box around the slider */ |
| 66 |
.switch { |
| 67 |
position: relative; |
| 68 |
display: inline-block; |
| 69 |
width: 44px; |
| 70 |
height: 24px; |
| 71 |
} |
| 72 |
/* Hide default HTML checkbox */ |
| 73 |
.switch input { |
| 74 |
opacity: 0; |
| 75 |
width: 0; |
| 76 |
height: 0; |
| 77 |
} |
| 78 |
/* The slider */ |
| 79 |
.slider { |
| 80 |
position: absolute; |
| 81 |
cursor: pointer; |
| 82 |
top: 0; |
| 83 |
left: 0; |
| 84 |
right: 0; |
| 85 |
bottom: 0; |
| 86 |
background-color: #ccc; |
| 87 |
-webkit-transition: .4s; |
| 88 |
transition: .4s; |
| 89 |
} |
| 90 |
.slider:before { |
| 91 |
position: absolute; |
| 92 |
content: ""; |
| 93 |
height: 20px; |
| 94 |
width: 20px; |
| 95 |
left: 3px; |
| 96 |
bottom: 2px; |
| 97 |
background-color: white; |
| 98 |
-webkit-transition: .4s; |
| 99 |
transition: .4s; |
| 100 |
} |
| 101 |
input:checked + .slider { |
| 102 |
background-color: #84cc1e; |
| 103 |
} |
| 104 |
input:focus + .slider { |
| 105 |
box-shadow: 0 0 1px #84cc1e; |
| 106 |
} |
| 107 |
input:checked + .slider:before { |
| 108 |
-webkit-transform: translateX(18px); |
| 109 |
-ms-transform: translateX(18px); |
| 110 |
transform: translateX(18px); |
| 111 |
} |
| 112 |
/* Rounded sliders */ |
| 113 |
.slider.round { |
| 114 |
border-radius: 34px; |
| 115 |
} |
| 116 |
.slider.round:before { |
| 117 |
border-radius: 50%; |
| 118 |
} |