Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>
      Thick Lines: Sundown
    </title>
  </head>

  <body>
    <div class="sun"></div>
    <div class="ground"></div>
  </body>
</html>

              
            
!

CSS

              
                * {
  margin: 0;
  padding: 0;
}

body {
  background-color: hsl(20, 85%, 18%);
  height: 100vh;
  overflow: hidden;
  position: relative;
}

// Generate a stepped gradient based on the colours we send it.
// This gives us a list of values we send to the ‘box-shadow’ property
// of the element of our choice. ‘$shadow-colors...’ creates a list
// of arbitrary length based on the remaining arguments we send.

@function get-shadows($step-width, $shadow-colors...) {

  // List of shadows needs to be initialized outside the loop
  $shadow-list: ();

  // Loop over the arglist
  @each $color in $shadow-colors {

    // It’s handy to stash this in a var
    $index: index($shadow-colors, $color);

    // We’re stacking shadows here, so we multiply the desired width
    // of the step by the current index to get the ‘spread’ value
    // for our rule
    $spread: $step-width * $index;

    // Generate the rule for this shadow
    $shadow: 0 0 0 $spread $color;

    // Append the rule to the list and add a comma if it’s not the last one
    @if $index != length($shadow-colors) {
      $shadow-list: append($shadow-list, $shadow, 'comma');
    } @else {
      $shadow-list: append($shadow-list, $shadow);
    }
  }

  // Return the finished list for ‘box-shadow’ to consume down there
  @return $shadow-list;

}

$sun-radius: 15vh;

.sun {
  background-color: hsl(42, 98%, 53%);
  border-radius: $sun-radius;
  box-shadow: get-shadows(
    $sun-radius,
    hsl(35, 95%, 54%),
    hsl(25, 91%, 54%),
    hsl(16, 88%, 54%),
    hsl(14, 84%, 34%)
  );
  height: $sun-radius * 2;
  position: absolute;
  bottom: 3vh;

  // 50% from the left, then back it up by half the sun’s width
  left: calc(50% - #{$sun-radius});

  width: $sun-radius * 2;
  z-index: -1;
}

.ground {
  background-color: hsl(14, 84%, 34%);
  height: 18vh;
  position: absolute;
  bottom: 0;
  width: 100%;
}

              
            
!

JS

              
                
              
            
!
999px

Console