style.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. body {
  2. font-family: sans-serif;
  3. font-size: 3em;
  4. color: #FFF;
  5. text-align: center;
  6. }
  7. .section {
  8. height: 500px;
  9. line-height: 500px;
  10. margin: auto;
  11. }
  12. .loader {
  13. display: inline-block;
  14. height: 50px;
  15. width: 50px;
  16. border-style: solid;
  17. border-width: 6px;
  18. border-radius: 50px;
  19. border-color: #FFF;
  20. vertical-align: middle;
  21. position: relative;
  22. }
  23. /*
  24. * Section 1
  25. */
  26. .section1 {
  27. background-color: #2cc36b;
  28. }
  29. .loader-quart {
  30. border-color: rgba(255, 255, 255, 0.6);
  31. }
  32. .loader-quart:after {
  33. content: '';
  34. border-color: transparent;
  35. border-top-color: #FFF;
  36. border-style: solid;
  37. border-radius: 50px;
  38. border-width: 6px;
  39. top: -6px;
  40. right: -6px;
  41. width: 50px;
  42. height: 50px;
  43. position: absolute;
  44. -webkit-animation: spin 1s linear infinite;
  45. animation: spin 1s linear infinite;
  46. }
  47. /*
  48. * Section 2
  49. */
  50. .section2 {
  51. background-color: #2980b9;
  52. }
  53. /*
  54. * Keyframe
  55. */
  56. @-webkit-keyframes spin {
  57. 0% {
  58. -webkit-transform: rotate(0deg);
  59. transform: rotate(0deg);
  60. }
  61. }
  62. @keyframes spin {
  63. 0% {
  64. -webkit-transform: rotate(0deg);
  65. transform: rotate(0deg);
  66. }
  67. 100% {
  68. -webkit-transform: rotate(360deg);
  69. -moz-transform: rotate(360deg);
  70. -ms-transform: rotate(360deg);
  71. -o-transform: rotate(360deg);
  72. transform: rotate(360deg);
  73. }
  74. }