Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Guil Hernandez
Treehouse TeacherHelp QA our upcoming course: Animating SVG with CSS!
UPDATE: Sign ups are now closed! Thanks everyone!
Hey everyone!
We have an upcoming course called Animating SVG with CSS and we're ready to open it up for some beta testing!
If you're able to take the course and deliver feedback by this Thursday (July 9, 2015), respond below and let me know that you're interested. We only need a few testers and sign up is on a first-come-first-serve basis, so get in there quick!
If you get picked, you'll get an email about what to do next.
6 Answers

Omar Emara
18,249 PointsI'm ready to take it!

steyoung
12,781 PointsI'm ready!

Kevin Korte
28,147 PointsI can help if needed still.

Tony Nguyen
24,934 PointsI'll do it! :)

Warwick Hook
4,701 PointsPossible bug or I need help.
Animating SVG with CSS
Part 1 Code Challenge Task 2 of 6 In style.css, create a new rule that targets .star-bg. Add a 1s transition for the fill property.
I have been using this code and it works in preview, but does not pass.
.star-bg { transition: 1s ease-out; }
.star-bg:hover { fill: #FFF; }
Please correct me as I cannot see where I am going wrong? Note easing and fill colour were not specified in original task.

Guil Hernandez
Treehouse TeacherHi Warwick Hook,
If you include something that is not specified in the task, it will not pass. For example, the ease-out
timing function is not necessary and the fill color needs to be steelblue
instead of #FFF
.
Hope this helps.

Warwick Hook
4,701 PointsThanks Guil, all sorted. Your tutorials are terrific.