-
-
Save jensgro/5451049 to your computer and use it in GitHub Desktop.
Animierte Listeneinträge - könnten Headlines sein
This file contains 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
/** | |
* Animierte Listeneinträge - könnten Headlines sein | |
*/ | |
body { | |
font-family: 'open sans', helvetica, arial, | |
sans-serif; | |
} | |
ul { | |
width: 40em; | |
margin: 0 auto; | |
} | |
li { | |
margin: 1.2em 20px; | |
padding: 5px 20px; | |
background: #cf6; | |
font-size: 1.8em; | |
list-style: none; | |
background: #eee; | |
color: #a20000; | |
} | |
li:nth-child(even):hover { | |
-webkit-transform: rotate(3deg) scale(1.5); | |
transform: rotate(3deg) scale(1.5); | |
color: #000; | |
background: #6cf; | |
-webkit-transition: 0.5s; | |
transition: 0.5s; | |
box-shadow: 4px 4px 10px rgba(0,0,0,0.5); | |
} | |
li:nth-child(odd):hover { | |
-webkit-transform: rotate(-3deg) scale(1.5); | |
transform: rotate(-3deg) scale(1.5); | |
color: #000; | |
background: #6f6; | |
-webkit-transition: 0.5s; | |
transition: 0.5s; | |
box-shadow: 4px 4px 10px rgba(0,0,0,0.5); | |
} |
This file contains 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
<ul> | |
<li>Be on time - delays affect everyone</li> | |
<li>No phones, no mails, no messages, no Twitter, no Facebook</li> | |
<li>There are no stupid questions</li> | |
<li>This is your time - use it</li> | |
<li>Empty your mind - today you get a reset that will make you 4x more effective</li> | |
</ul> |
This file contains 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
{"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