Skip to content

Instantly share code, notes, and snippets.

@gt3
Last active July 19, 2017 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gt3/f29fc31a4098b6574ff1efe6a56ab141 to your computer and use it in GitHub Desktop.
Save gt3/f29fc31a4098b6574ff1efe6a56ab141 to your computer and use it in GitHub Desktop.
@import url('https://fonts.googleapis.com/css?family=Nixie+One');
.fizzbuzz {
width: 700px;
font: normal 2em consolas;
color: rgba(110, 110, 110, 1);
}
.cell {
display: table-cell;
padding: .5em;
text-align: center;
vertical-align: middle;
}
.counter {
background: rgba(110, 110, 110, 0.1);
border-radius: 8px;
width: 3em;
}
.fizz,
.buzz {
font: normal 3em 'Nixie One', Helvetica, Arial;
}
.fizz {
color: #FF1177;
text-shadow: 0 0 1em #ffaed1, 0 0 10px rgba(230, 161, 173, 0.41), 0 0 100px #ffaed1, 0 0 500px #ffaed1, 5px 9px 5px rgba(0, 0, 0, 0.2);
}
.buzz {
color: #228DFF;
text-shadow: 0 0 1em #228DFF, 0 0 10px rgba(230, 161, 173, 0.41), 0 0 100px #70b5ff, 0 0 500px #70b5ff, 5px 9px 5px rgba(0, 0, 0, 0.2);
}
.fizz.off, .buzz.off {
color: rgba(46, 46, 46, 0.2);
text-shadow: 7px 7px 5px rgba(0, 0, 0, 0.1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment