Skip to content

Commit

Permalink
Merge pull request wesbos#108 from apopitich/fix-incorrect-styles
Browse files Browse the repository at this point in the history
Fix incorrect styles
  • Loading branch information
wesbos authored Feb 13, 2017
2 parents 61184a2 + a5592bc commit 66ed54e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 19 - Webcam Fun/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ html {
background:white;
}

.strip a:nth-child(5n+1) img { rotate: 10deg; }
.strip a:nth-child(5n+2) img { rotate: -2deg; }
.strip a:nth-child(5n+3) img { rotate: 8deg; }
.strip a:nth-child(5n+4) img { rotate: -11deg; }
.strip a:nth-child(5n+5) img { rotate: 12deg; }
.strip a:nth-child(5n+1) img { transform: rotate(10deg); }
.strip a:nth-child(5n+2) img { transform: rotate(-2deg); }
.strip a:nth-child(5n+3) img { transform: rotate(8deg); }
.strip a:nth-child(5n+4) img { transform: rotate(-11deg); }
.strip a:nth-child(5n+5) img { transform: rotate(12deg); }

0 comments on commit 66ed54e

Please sign in to comment.