Skip to content

Instantly share code, notes, and snippets.

Created August 4, 2012 16:53
Show Gist options
  • Save anonymous/3258754 to your computer and use it in GitHub Desktop.
Save anonymous/3258754 to your computer and use it in GitHub Desktop.
The Eccentri(; logo redesign
/**
* The Eccentri(; logo redesign
*/
#logo {
text-align: center;
/*display: block;*/
font-family: 'Baskerville', serif;
font-weight: 200;
font-size: 72pt;
border-radius: 5px;
border: 1px solid rgba(0,100,250,0.7);
padding: 3px;
/*background: rgba(0,100,250,1);*/
}
#smiley {
font-weight: bold;
-webkit-animation: rainbow 10s infinite alternate;
}
@-webkit-keyframes rainbow {
0% {
color: red; text-shadow: 0px 0px 10px red;
}
25% {
color: chartreuse; text-shadow: 0px 0px 10px chartreuse;
}
50% {
color: blue; text-shadow: 0px 0px 10px blue;
}
75% {
color: papyawhip; text-shadow: 0px 0px 10px papyawhip;
}
100% {
color: orange; text-shadow: 0px 0px 10px orange;
}
}
<span id="logo">The Eccentri<span id="smiley">(;</span></span>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment