Created
October 8, 2017 23:11
-
-
Save gdunstone/1feb497696a7eebf75ef26e9eb81b105 to your computer and use it in GitHub Desktop.
bloom eclipse loader no animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.loader { | |
position: relative; | |
margin: 10% auto; | |
height: 50vh; | |
width: 50vh; | |
border-radius: 100%; | |
background-color: black; | |
} | |
.loader::after{ | |
position: absolute; | |
height: 50vh; | |
width: 50vh; | |
background-color: #fff; | |
box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #ffffb3, 0 0 70px #ffffb3, 0 0 80px #ffffb3, 0 0 100px #ffffb3, 0 0 150px #FF1177; | |
content: ""; | |
z-index: -1; | |
border-radius: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment