Created
June 29, 2011 13:15
-
-
Save DerAlbertCom/1053798 to your computer and use it in GitHub Desktop.
Retro-Rahmen
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.camplogo | |
{ | |
text-align: center; | |
position: absolute; | |
background: rgba(255, 255, 255, 0.5); | |
width: 240px; | |
height: 116px; | |
left: 75px; | |
top: 0px; | |
z-index: 1; | |
border-top: 15px solid #e56102; | |
border-left: 30px solid #e56102; | |
border-right: 10px solid #e56102; | |
border-bottom: 10px solid #e56102; | |
border-top-left-radius:75px 50px; | |
border-bottom-left-radius: 75px 50px; | |
border-top-right-radius: 50px 50px; | |
border-bottom-right-radius: 50px 50px; | |
-webkit-border-radius: 10px; | |
} | |
#HeaderDiv | |
{ | |
-webkit-animation: move-header 15s infinite linear; | |
-moz-animation: move-header 15s infinite linear; | |
} | |
@-webkit-keyframes move-header { | |
from { background-position: 0 0px; } | |
to { background-position: -150px 0px; } | |
} | |
@-moz-keyframes move-header { | |
from { background-position: 0 0px; } | |
to { background-position: -150px 0px; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment