Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

globals.css 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. @import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Open+Sans:wght@400;700&display=swap');
  2. * {
  3. box-sizing: border-box;
  4. margin: 0;
  5. }
  6. body {
  7. font-family: 'Open Sans', 'Lato', sans-serif;
  8. }
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6 {
  15. font-family: 'Lato', sans-serif;
  16. }
  17. .spinner-wrapper {
  18. height: 100vh;
  19. width: 100vw;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. position: fixed;
  24. top: 0;
  25. left: 0;
  26. background-color: rgb(255, 255, 255);
  27. z-index: 99;
  28. }
  29. .spinner {
  30. position: absolute;
  31. left: 50%;
  32. top: 50%;
  33. height: 60px;
  34. width: 60px;
  35. margin: 0px auto;
  36. -webkit-animation: rotation 0.6s infinite linear;
  37. -moz-animation: rotation 0.6s infinite linear;
  38. -o-animation: rotation 0.6s infinite linear;
  39. animation: rotation 0.6s infinite linear;
  40. border-left: 6px solid rgba(0, 174, 239, 0.15);
  41. border-right: 6px solid rgba(0, 174, 239, 0.15);
  42. border-bottom: 6px solid rgba(0, 174, 239, 0.15);
  43. border-top: 6px solid rgba(0, 174, 239, 0.8);
  44. border-radius: 100%;
  45. }
  46. @-webkit-keyframes rotation {
  47. from {
  48. -webkit-transform: rotate(0deg);
  49. }
  50. to {
  51. -webkit-transform: rotate(359deg);
  52. }
  53. }
  54. @-moz-keyframes rotation {
  55. from {
  56. -moz-transform: rotate(0deg);
  57. }
  58. to {
  59. -moz-transform: rotate(359deg);
  60. }
  61. }
  62. @-o-keyframes rotation {
  63. from {
  64. -o-transform: rotate(0deg);
  65. }
  66. to {
  67. -o-transform: rotate(359deg);
  68. }
  69. }
  70. @keyframes rotation {
  71. from {
  72. transform: rotate(0deg);
  73. }
  74. to {
  75. transform: rotate(359deg);
  76. }
  77. }