Show & Tell @ Develop Denver 2016
A Pen by Chris Coyier on CodePen.
<div class="words words-1"> | |
<span>S</span> | |
<span>H</span> | |
<span>O</span> | |
<span>W</span> | |
</div> | |
<div class="words words-1"> | |
<span>A</span> | |
<span>N</span> | |
<span>D</span> | |
</div> | |
<div class="words words-1"> | |
<span>T</span> | |
<span>E</span> | |
<span>L</span> | |
<span>L</span> | |
</div> | |
<div class="about"> | |
<p>Join Tim Sabat and Tim Holman at <a href="https://developdenver.org">Develop Denver</a>, where they will be hosting a <a href="https://developdenver.org/panels/10">Show & Tell event!</a></p> | |
<p>Anybody can hop up and share something they think is awesome. It could be your own work, but it doesn't have to be. It could be on CodePen (as that's useful for showing off front end code), but it doesn't have to be. Pretty much anything goes. Just no pitches, please.</p> | |
<p>For example: Show us a cool library you just used for something. Show us a webpage you just launched. Show us a design pattern you really like. Show us a coding technique you find helpful. Show us some new software you bet we didn't know about.</p> | |
<p>You don't need to be a fancy professional speaker. It's just a few minutes showing off an idea. The Tims will be your hosts, helping everything along.</p> | |
</div> |
A Pen by Chris Coyier on CodePen.
@import 'https://fonts.googleapis.com/css?family=Rubik+Mono+One'; | |
body { | |
background: #444; | |
overflow-x: hidden; | |
font-family: 'Rubik Mono One', sans-serif; | |
padding: 40px; | |
text-align: center; | |
} | |
.words { | |
color: #444; | |
font-size: 0; | |
line-height: 1; | |
span { | |
font-size: 120px; | |
display: inline-block; | |
animation: move 2s ease-in-out infinite; | |
&:nth-child(2) { animation-delay: 0.5s; } | |
&:nth-child(3) { animation-delay: 1.0s; } | |
&:nth-child(4) { animation-delay: 1.5s; } | |
} | |
} | |
@keyframes move { | |
0% { | |
transform: translate(-33%, 0); | |
} | |
50% { | |
text-shadow: 0 15px 40px rgba(black, 0.6); | |
} | |
100% { | |
transform: translate(33%, 0); | |
} | |
} | |
* { | |
box-sizing: border-box; | |
} | |
.about { | |
max-width: 600px; | |
margin: 60px auto; | |
border: 2px solid #6d5b5e; | |
color: #a99094; | |
padding: 20px; | |
font-family: monaco, courier, mono-space; | |
line-height: 2; | |
box-shadow: 5px 5px 0 #333; | |
a { | |
background: #a99094; | |
color: #444; | |
text-decoration: none; | |
padding: 1px 4px; | |
white-space: nowrap; | |
} | |
} |