Built files from Bizgaze WebServer
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

toggles-dark.css 1021B

12345678910111213141516171819202122232425262728293031
  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. }