Skip to content

Commit 66ed54e

Browse files
authored
Merge pull request wesbos#108 from apopitich/fix-incorrect-styles
Fix incorrect styles
2 parents 61184a2 + a5592bc commit 66ed54e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

19 - Webcam Fun/style.css

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ html {
5252
background:white;
5353
}
5454

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

0 commit comments

Comments
 (0)