Built files from Bizgaze WebServer
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

toggles-modern.css 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .toggle-modern .toggle-slide {
  2. border-radius: 4px;
  3. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.2);
  4. background: -webkit-linear-gradient(#c0c5c9, #a1a9af);
  5. background: linear-gradient(#c0c5c9, #a1a9af);
  6. 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);
  7. }
  8. .toggle-modern .toggle-on,
  9. .toggle-modern .toggle-off {
  10. -webkit-transition: all 0.1s ease-out;
  11. transition: all 0.1s ease-out;
  12. color: white;
  13. text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  14. font-size: 11px;
  15. 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);
  16. }
  17. .toggle-modern .toggle-select .toggle-off,
  18. .toggle-modern .toggle-select .toggle-on {
  19. background: none;
  20. }
  21. .toggle-modern .toggle-off,
  22. .toggle-modern .toggle-off.active {
  23. background: -webkit-linear-gradient(#737e8d, #3f454e);
  24. background: linear-gradient(#737e8d, #3f454e);
  25. }
  26. .toggle-modern .toggle-on,
  27. .toggle-modern .toggle-on.active {
  28. background: -webkit-linear-gradient(#4894cd, #2852a6);
  29. background: linear-gradient(#4894cd, #2852a6);
  30. }
  31. .toggle-modern .toggle-blob {
  32. background: -webkit-linear-gradient(#c0c6c9, #81898f);
  33. background: linear-gradient(#c0c6c9, #81898f);
  34. 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);
  35. border-radius: 3px;
  36. }
  37. .toggle-modern .toggle-blob:hover {
  38. background-image: -webkit-linear-gradient(#a1a9af, #a1a9af);
  39. background-image: linear-gradient(#a1a9af, #a1a9af);
  40. }