Skip to content

Instantly share code, notes, and snippets.

@sionjlewis
Last active January 8, 2017 13:02
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 sionjlewis/3e681f89649bbb592158e8bc235dd954 to your computer and use it in GitHub Desktop.
Save sionjlewis/3e681f89649bbb592158e8bc235dd954 to your computer and use it in GitHub Desktop.
Hello Angular World: code snippet for article (http://www.sjlewis.com). The complete source code and project files can be found here: https://github.com/sionjlewis/Hello.Angular.World
body {
}
@keyframes flashing-text {
0% {color: red;}
25% {color: darkred;}
50% {color: red;}
100% {color: darkred;}
}
.app-loading {
color: darkred;
animation-name: flashing-text;
animation-duration: 2s;
font-size: 11px;
padding: 5px;
font-size: 18px;
}
.app-content {
background-color: #DFDFDF;
display: inline-block;
width: 100%;
min-height: 60px;
}
.app-content h1 {
margin-top: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment