Facebook
From sanjaya, 3 Years ago, written in CSS.
Embed
Download Paste or View Raw
Hits: 57
  1. /* Loader */
  2. section {
  3.   display: flex;
  4.   justify-content: center;
  5.   align-items: center;
  6.   min-width: 100vw;
  7.   min-height: 100vh;
  8.   background: #042104;
  9. }
  10.  
  11. .overlay {
  12.   z-index: 9999999;
  13.   position: fixed;
  14.   top: 0;
  15.   bottom: 0;
  16.   left: 0;
  17.   right: 0;
  18. }
  19.  
  20. section .loader{
  21. position: relative;
  22. width: 120px;
  23. height: 120px;
  24. }
  25.  
  26. section .loader span {
  27.   position: absolute;
  28.   top: 0;
  29.   left: 0;
  30.   width: 100%;
  31.   height: 100%;
  32. }
  33.  
  34. section .loader span::before {
  35.   content: "";
  36.   position: absolute;
  37.   top: 0;
  38.   left: 0;
  39.   width: 15px;
  40.   height: 15px;
  41.   background: #00ff0a;
  42.   box-shadow: 0 0 10px #00ff0a,
  43.               0 0 20px #00ff0a,
  44.               0 0 40px #00ff0a,
  45.               0 0 60px #00ff0a,
  46.               0 0 80px #00ff0a,
  47.               0 0 100px #00ff0a;
  48. }
  49. /* akhir Loader */
  50.  

Replies to element tidak lurus rss

Title Name Language When
Re: element tidak lurus sanjaya css 3 Years ago.