styles.css 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @-webkit-keyframes spin {
  2. to {
  3. stroke-dashoffset: -264;
  4. }
  5. }
  6. @keyframes spin {
  7. to {
  8. stroke-dashoffset: -264;
  9. }
  10. }
  11. .spinner circle {
  12. fill: none;
  13. stroke: slategray;
  14. stroke-width: 16;
  15. stroke-linecap: round;
  16. stroke-dasharray: 0, 0, 70, 194;
  17. stroke-dashoffset: 0;
  18. animation: spin 1s infinite linear;
  19. -webkit-animation: spin 1s infinite linear;
  20. }
  21. html {
  22. font-family: sans-serif;
  23. line-height: 1.5;
  24. font-size: 14px;
  25. }
  26. h1 {
  27. font-family: Cambria, Georgia, serif;
  28. font-size: 2em;
  29. line-height: 1.3em;
  30. margin: 0 0 0.5em;
  31. }
  32. .network-fake {
  33. display: none;
  34. margin-bottom: 1em;
  35. }
  36. input {
  37. vertical-align: middle;
  38. }