Guest User

Untitled

a guest
Sep 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Myportfolio</title>
  7. <base href="/">
  8.  
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <link rel="icon" type="image/x-icon" href="favicon.ico">
  11. <style>
  12. .loader {
  13. border: 5px double #d7d7d7;
  14. border-radius: 50%;
  15. border-top: 5px double #6E27C5;
  16. width: 50px;
  17. height: 50px;
  18. -webkit-animation: spin 1.5s linear infinite;
  19. animation: spin 1.5s linear infinite;
  20. position: absolute;
  21. top: 50%;
  22. left: 50%;
  23. margin-left: -70px;
  24. margin-top: -50px;
  25. }
  26.  
  27. @-webkit-keyframes spin {
  28. 0% {
  29. -webkit-transform: rotate(0deg);
  30. }
  31.  
  32. 100% {
  33. -webkit-transform: rotate(360deg);
  34. }
  35. }
  36.  
  37. @keyframes spin {
  38. 0% {
  39. transform: rotate(0deg);
  40. }
  41.  
  42. 100% {
  43. transform: rotate(360deg);
  44. }
  45. }
  46. </style>
  47. </head>
  48.  
  49. <body>
  50. <app-root>
  51. <div class="loader"></div>
  52. </app-root>
  53. </body>
  54.  
  55. </html>
Add Comment
Please, Sign In to add comment