Skip to content

Commit

Permalink
Added css
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis de Dios Martín committed Apr 3, 2015
1 parent 3e7c376 commit 61abdc9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,4 @@ build/Release
node_modules

# Express SASS cache
public/.sass-cache
public/stylesheets/*.css
public/.sass-cache
36 changes: 36 additions & 0 deletions public/stylesheets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
body {
padding: 50px;
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
color: #00B7FF;
}

table {
background-color: #eee;
}
table tr:first-child {
font-weight: 700;
}
table td {
padding: 10px;
}

.blink {
color: red;
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}

@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
}

0 comments on commit 61abdc9

Please sign in to comment.