style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. body {
  2. font-family: sans-serif;
  3. font-size: 3em;
  4. color: #FFF;
  5. text-align: center;
  6. padding: 0;
  7. }
  8. .table-side {
  9. width: 100%;
  10. }
  11. .section {
  12. height: 500px;
  13. line-height: 500px;
  14. margin: auto;
  15. }
  16. .loader {
  17. display: inline-block;
  18. height: 50px;
  19. width: 50px;
  20. border-style: solid;
  21. border-width: 6px;
  22. border-radius: 50px;
  23. border-color: #FFF;
  24. vertical-align: middle;
  25. position: relative;
  26. }
  27. .main-container {
  28. width: 100%;
  29. vertical-align: top;
  30. text-align: center;
  31. border-collapse: collapse;
  32. border-spacing: 0;
  33. padding: 0;
  34. height: 200px;
  35. }
  36. .center-container {
  37. width: 480px;
  38. padding: 0;
  39. }
  40. .side-container {
  41. background-color: #8e44ad;
  42. padding: 0;
  43. }
  44. .header-container {
  45. background-color: #34495e;
  46. width: auto;
  47. padding: 0;
  48. height: 50px;
  49. }
  50. /*
  51. * Section 1
  52. */
  53. .section1 {
  54. background-color: #2cc36b;
  55. }
  56. .loader-quart {
  57. border-color: rgba(255, 255, 255, 0.6);
  58. }
  59. .loader-quart:after {
  60. content: '';
  61. border-color: transparent;
  62. border-top-color: #FFF;
  63. border-style: solid;
  64. border-radius: 50px;
  65. border-width: 6px;
  66. top: -6px;
  67. right: -6px;
  68. width: 50px;
  69. height: 50px;
  70. position: absolute;
  71. -webkit-animation: spin 1s linear infinite;
  72. animation: spin 1s linear infinite;
  73. }
  74. /*
  75. * Section 2
  76. */
  77. .section2 {
  78. background-color: #2980b9;
  79. }
  80. /*
  81. * Keyframe
  82. */
  83. @-webkit-keyframes spin {
  84. 0% {
  85. -webkit-transform: rotate(0deg);
  86. transform: rotate(0deg);
  87. }
  88. }
  89. @keyframes spin {
  90. 0% {
  91. -webkit-transform: rotate(0deg);
  92. transform: rotate(0deg);
  93. }
  94. 100% {
  95. -webkit-transform: rotate(360deg);
  96. -moz-transform: rotate(360deg);
  97. -ms-transform: rotate(360deg);
  98. -o-transform: rotate(360deg);
  99. transform: rotate(360deg);
  100. }
  101. }
  102. /*
  103. * Section 3
  104. */
  105. .section3 {
  106. background-color: #e74c3c;
  107. line-height: 50px;
  108. height: 200px;
  109. }
  110. .void {
  111. height: 150px;
  112. }