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

              
                .dometer
  .gauge
    .needle
    .spinner
    ul.levels
      - for i in 1..6
        li.level #{4 + 14 * i} mph

              
            
!

CSS

              
                @use "sass:color"

$gaugeRadius: 160px
$spinnerRadius: $gaugeRadius/4
$needleHeight: $gaugeRadius*0.6
$textSpacing: 12px
$bg: #eee
$fg: #01cd73

.dometer, .gauge, .needle, .spinner, .spinner::after, .level, .level::after
  position: absolute
  
.dometer
  top: 0
  left: 0
  height: 100%
  width: 100%
  font: 600 16px / 16px 'Open Sans', sans-serif
  color: color.scale($fg, $lightness: -6.67%)
  background: $bg
  
.gauge
  top: 50%
  left: 50%
  height: $gaugeRadius
  width: $gaugeRadius*2
  margin: -$gaugeRadius / 2 + 36px $gaugeRadius*-1
  border-radius: $gaugeRadius $gaugeRadius 0 0
  background: $fg
  
.needle, .spinner
  bottom: 0
  left: 50%
 
.needle
  height: 0
  width: 0
  margin-left: -$spinnerRadius / 2
  border-left: $spinnerRadius / 2 solid transparent
  border-right: $spinnerRadius / 2 solid transparent
  border-bottom: $needleHeight solid $bg
  transform-origin: 50% 100%
  animation: oscillate ease-in-out 1s alternate infinite
  
.spinner
  height: $spinnerRadius
  width: $spinnerRadius * 2
  margin-left: -$spinnerRadius
  border-radius: $spinnerRadius $spinnerRadius 0 0
  background: $bg
  &::after
    $pinRadius: $spinnerRadius / 4
    content: ''
    top: $spinnerRadius - $pinRadius
    left: $spinnerRadius - $pinRadius
    height: $pinRadius
    width: $pinRadius * 2
    border-radius: $pinRadius $pinRadius 0 0
    background: $fg

.levels
  list-style: none
  padding: 0
  
.level
  bottom: 0
  padding: 0 $gaugeRadius + 4px
  &::after
    color: $bg
  
  @for $i from 1 through 6
    &:nth-child(#{$i})
      $degs: $i * 30 - 15
      @if $degs > 90
        $degs: $degs - 180
        left: $gaugeRadius
        transform-origin: 0% 50%
        transform: rotate(#{$degs}deg)
        &::after
          left: $gaugeRadius - 24px
          transform: translate(-100%, 0) rotate(#{-$degs}deg)
      @else
        right: $gaugeRadius
        transform-origin: 100% 50%
        transform: rotate(#{$degs}deg)
        &::after
          right: $gaugeRadius - 24px
          transform: translate(100%, 0) rotate(#{-$degs}deg)

      &::after
        content: '#{$i}'
  
@keyframes oscillate
  from
    transform: rotate(-70deg)
  to
    transform: rotate(70deg)
    
              
            
!

JS

              
                
              
            
!
999px

Console