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! While you're at it, check out some resources Treehouse students have shared here.

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

CSS Compass Basics Getting Started with Compass Getting Started with Compass

css compass

Challenge Task 2 of 5

Next, use a mixin to give body a linear-gradient background. Make the start color #3d69b5 and the end color #1a335e.

I do not see my mistake Help me please

sass/style.scss
/* Write your SCSS code below. */

// Imports
@import "compass/css3";



// Variables
// gradients
body {
  $experimental-support-for-svg: true;
  @include background(radial-gradient(top, #3d69b5,#1a335e));
}

// Page Styles

body {

}
index.html
<!DOCTYPE html>
<html>
<head>
  <title>My Compass Project</title>
  <link href="stylesheets/style.css" rel="stylesheet">
</head>
<body>
  <div class="main-logo"></div>
</body>
</html>

1 Answer

Tim Knight
Tim Knight
28,888 Points

Ary,

The question asks you to use a linear gradient and you're using a radial gradient.

Try something like:

body {
 @include background(linear-gradient(#3d69b5, #1a335e));
}