Created
April 13, 2013 16:25
-
-
Save nylki/5379074 to your computer and use it in GitHub Desktop.
Für eine Leuchtschrift. Sparsam verwenden.
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
div#glowtext{ | |
padding-right: 25px; | |
opacity: 1; | |
color: rgba(10%,0%,0%,1); | |
font-weight: bold; | |
font-size: 45px; | |
font-family: sans-serif; | |
text-shadow: | |
/*levels of shadows for 3D text*/ | |
0.2px 0.2px 0 rgba(50%,30%,30%,1), | |
/*glow*/ | |
1px 1px 30px rgba(100%,10%,10%,0.9), | |
-1px -1px 100px rgba(100%,10%,10%,0.9), | |
-1px -1px 100px rgba(100%,10%,10%,0.9), | |
-1px -1px 100px rgba(100%,10%,10%,0.9), | |
-1px -1px 100px rgba(100%,10%,10%,0.9), | |
/*glow end*/ | |
1px 1px 0 rgba(95%,0%,0%,1), 2px 2px 0 rgba(95%,0%,0%,1), | |
3px 3px 0 rgba(0%,80%,0%,1), 4px 4px 0 rgba(0%,80%,0%,1), | |
5px 5px 0 rgba(0%,0%,70%,1), 6px 6px 0 rgba(0%,0%,70%,1), | |
7px 7px 0 rgba(60%,20%,20%,1), 8px 8px 0 rgba(60%,20%,20%,1), | |
9px 9px 0 rgba(0%,40%,0%,1), 10px 10px 0 rgba(0%,40%,0%,1), | |
11px 11px 0 rgba(0%,0%,30%,1), 12px 12px 0 rgba(0%,0%,30%,1), | |
13px 13px 0 rgba(25%,0%,0%,1), 14px 14px 0 rgba(25%,0%,0%,1), | |
15px 15px 0 rgba(0%,10%,0%,1), 16px 16px 0 rgba(0%,10%,0%,1), | |
17px 17px 0 rgba(0%,0%,20%,0.8),18px 18px 0 rgba(0%,0%,20%,0.8), | |
19px 19px 0 rgba(30%,0%,0%,0.8),20px 20px 0 rgba(30%,0%,0%,0.8), | |
21px 21px 0 rgba(0%,15%,0%,0.8),22px 22px 0 rgba(0%,15%,0%,0.8), | |
/* actual shadow:*/ | |
50px 50px 10px rgba(0%,0%,0%,1);; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment