Built files from Bizgaze WebServer
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

toggles-all.css 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .toggle-dark .toggle-slide {
  2. border-radius: 5px;
  3. box-shadow: 0 0 0 1px #242529, 0 1px 0 1px #666;
  4. }
  5. .toggle-dark .toggle-on,
  6. .toggle-dark .toggle-off,
  7. .toggle-dark .toggle-blob {
  8. color: rgba(255, 255, 255, 0.7);
  9. font-size: 11px;
  10. }
  11. .toggle-dark .toggle-on,
  12. .toggle-dark .toggle-select .toggle-inner .active {
  13. background: -webkit-linear-gradient(#1A70BE, #31A2E1);
  14. background: linear-gradient(#1A70BE, #31A2E1);
  15. }
  16. .toggle-dark .toggle-off,
  17. .toggle-dark .toggle-select .toggle-on {
  18. background: -webkit-linear-gradient(#242529, #34363B);
  19. background: linear-gradient(#242529, #34363B);
  20. }
  21. .toggle-dark .toggle-blob {
  22. border-radius: 4px;
  23. background: -webkit-linear-gradient(#CFCFCF, whiteSmoke);
  24. background: linear-gradient(#CFCFCF, whiteSmoke);
  25. box-shadow: inset 0 0 0 1px #888, inset 0 0 0 2px white;
  26. }
  27. .toggle-dark .toggle-blob:hover {
  28. background: -webkit-linear-gradient(#c0c0c0, #dadada);
  29. background: linear-gradient(#c0c0c0, #dadada);
  30. box-shadow: inset 0 0 0 1px #888,inset 0 0 0 2px #ddd;
  31. }
  32. .toggle-iphone .toggle-slide {
  33. border-radius: 9999px;
  34. box-shadow: 0 0 0 1px #999;
  35. }
  36. .toggle-iphone .toggle-on,
  37. .toggle-iphone .toggle-off {
  38. color: white;
  39. font-size: 18px;
  40. font-weight: bold;
  41. text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  42. }
  43. .toggle-iphone .toggle-on {
  44. border-radius: 9999px 0 0 9999px;
  45. background: #037bda;
  46. box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4);
  47. }
  48. .toggle-iphone .toggle-on:after {
  49. background: -webkit-linear-gradient(#1189f1, #3797ef);
  50. background: linear-gradient(#1189f1, #3797ef);
  51. height: 50%;
  52. content: '';
  53. margin-top: -19%;
  54. display: block;
  55. border-radius: 9999px;
  56. margin-left: 10%;
  57. }
  58. .toggle-iphone .toggle-off {
  59. box-shadow: inset -2px 2px 5px rgba(0, 0, 0, 0.4);
  60. border-radius: 0 9999px 9999px 0;
  61. color: #828282;
  62. background: #ECECEC;
  63. text-shadow: 0 0 1px white;
  64. }
  65. .toggle-iphone .toggle-off:after {
  66. background: -webkit-linear-gradient(#fafafa, #fdfdfd);
  67. background: linear-gradient(#fafafa, #fdfdfd);
  68. height: 50%;
  69. content: '';
  70. margin-top: -19%;
  71. display: block;
  72. margin-right: 10%;
  73. border-radius: 9999px;
  74. }
  75. .toggle-iphone .toggle-blob {
  76. border-radius: 50px;
  77. background: -webkit-linear-gradient(#d1d1d1, #fafafa);
  78. background: linear-gradient(#d1d1d1, #fafafa);
  79. box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6), inset 0 0 0 2px white, 0 0 3px rgba(0, 0, 0, 0.6);
  80. }
  81. .toggle-light .toggle-slide {
  82. border-radius: 9999px;
  83. box-shadow: 0 0 0 1px #999;
  84. }
  85. .toggle-light .toggle-on,
  86. .toggle-light .toggle-off {
  87. font-size: 11px;
  88. font-weight: 500;
  89. }
  90. .toggle-light .toggle-on,
  91. .toggle-light .toggle-select .toggle-inner .active {
  92. background: #45a31f;
  93. box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
  94. text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  95. color: rgba(255, 255, 255, 0.8);
  96. }
  97. .toggle-light .toggle-off,
  98. .toggle-light .toggle-select .toggle-on {
  99. color: rgba(0, 0, 0, 0.6);
  100. text-shadow: 0 1px rgba(255, 255, 255, 0.2);
  101. background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  102. background: linear-gradient(#cfcfcf, #f5f5f5);
  103. }
  104. .toggle-light .toggle-blob {
  105. border-radius: 50px;
  106. background: -webkit-linear-gradient(#f5f5f5, #cfcfcf);
  107. background: linear-gradient(#f5f5f5, #cfcfcf);
  108. box-shadow: 1px 1px 2px #888;
  109. }
  110. .toggle-light .toggle-blob:hover {
  111. background: -webkit-linear-gradient(#e4e4e4, #f9f9f9);
  112. background: linear-gradient(#e4e4e4, #f9f9f9);
  113. }
  114. .toggle-modern .toggle-slide {
  115. border-radius: 4px;
  116. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.2);
  117. background: -webkit-linear-gradient(#c0c5c9, #a1a9af);
  118. background: linear-gradient(#c0c5c9, #a1a9af);
  119. box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.15);
  120. }
  121. .toggle-modern .toggle-on,
  122. .toggle-modern .toggle-off {
  123. -webkit-transition: all 0.1s ease-out;
  124. transition: all 0.1s ease-out;
  125. color: white;
  126. text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  127. font-size: 11px;
  128. box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
  129. }
  130. .toggle-modern .toggle-select .toggle-off,
  131. .toggle-modern .toggle-select .toggle-on {
  132. background: none;
  133. }
  134. .toggle-modern .toggle-off,
  135. .toggle-modern .toggle-off.active {
  136. background: -webkit-linear-gradient(#737e8d, #3f454e);
  137. background: linear-gradient(#737e8d, #3f454e);
  138. }
  139. .toggle-modern .toggle-on,
  140. .toggle-modern .toggle-on.active {
  141. background: -webkit-linear-gradient(#4894cd, #2852a6);
  142. background: linear-gradient(#4894cd, #2852a6);
  143. }
  144. .toggle-modern .toggle-blob {
  145. background: -webkit-linear-gradient(#c0c6c9, #81898f);
  146. background: linear-gradient(#c0c6c9, #81898f);
  147. box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
  148. border-radius: 3px;
  149. }
  150. .toggle-modern .toggle-blob:hover {
  151. background-image: -webkit-linear-gradient(#a1a9af, #a1a9af);
  152. background-image: linear-gradient(#a1a9af, #a1a9af);
  153. }
  154. .toggle-soft .toggle-slide {
  155. border-radius: 5px;
  156. box-shadow: 0 0 0 1px #999;
  157. }
  158. .toggle-soft .toggle-on,
  159. .toggle-soft .toggle-off {
  160. color: rgba(0, 0, 0, 0.7);
  161. font-size: 11px;
  162. text-shadow: 1px 1px white;
  163. }
  164. .toggle-soft .toggle-on,
  165. .toggle-soft .toggle-select .toggle-inner .active {
  166. background: -webkit-linear-gradient(#d2ff52, #91e842);
  167. background: linear-gradient(#d2ff52, #91e842);
  168. }
  169. .toggle-soft .toggle-off,
  170. .toggle-soft .toggle-select .toggle-on {
  171. background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  172. background: linear-gradient(#cfcfcf, #f5f5f5);
  173. }
  174. .toggle-soft .toggle-blob {
  175. border-radius: 4px;
  176. background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  177. background: linear-gradient(#cfcfcf, #f5f5f5);
  178. box-shadow: inset 0 0 0 1px #bbb, inset 0 0 0 2px white;
  179. }
  180. .toggle-soft .toggle-blob:hover {
  181. background: -webkit-linear-gradient(#e4e4e4, #f9f9f9);
  182. background: linear-gradient(#e4e4e4, #f9f9f9);
  183. box-shadow: inset 0 0 0 1px #ddd,inset 0 0 0 2px #ddd;
  184. }