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

              
                <input type="range" value="11" min="1" max="11" oninput="this.setAttribute('value',this.value)" />
              
            
!

CSS

              
                @import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: 
    repeating-linear-gradient(transparent 0 13%, #ffffff08 0 calc(13% + 1px), transparent 0) 30% 0% / 40% 100%,
    repeating-linear-gradient(transparent 0 7%, #ffffff0a 0 calc(7% + 1px), transparent 0) 70% 0% / 33% 100%,
    repeating-linear-gradient(transparent 0 11%, #ffffff08 0 calc(11% + 1px), transparent 0) -10% 0% / 35% 100%,
    repeating-linear-gradient(transparent 0 17%, #ffffff11 0 calc(17% + 1px), transparent 0) 110% 0% / 27% 100%,
    repeating-linear-gradient(transparent 0 13%, #00000008 0 calc(13% + 1px), transparent 0) 60% -10% / 33% 100%,
    repeating-linear-gradient(transparent 0 8%, #00000008 0 calc(8% + 1px), transparent 0) 21% 2% / 27% 100%,
    repeating-linear-gradient(transparent 0 8%, #00000002 0 calc(8% + 1px), transparent 0) 31% 7% / 19% 100%,
    
    repeating-linear-gradient(transparent 0 13%, #00000004 0 calc(13% + 1px), transparent 0) 71% 15% / 19% 100%,
    linear-gradient(-45deg, #767a80, #b8b8bb);
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}

@property --x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 10%;
}

@property --y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

input {
  transition: all 0.2s;
  position: relative;
  --x: 10%;
  --y: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40vmin;
  height: 40vmin;
  border-radius: 50%;
  background: blue;
  box-shadow: 
    -24.75vmin 0 0 -19.5vmin #000c,
    -23.25vmin -9vmin 0 -19.4vmin #000c,
    -18.75vmin -16vmin 0 -19.3vmin #000c,
    -12.25vmin -21vmin 0 -19.2vmin #000c,
    -4.75vmin -24vmin 0 -19.1vmin #000c,
    4.75vmin -24vmin 0 -19.0vmin #000c,
    12.5vmin -21.25vmin 0 -18.9vmin #000c,
    19vmin -16.25vmin 0 -18.8vmin #000c,
    23.25vmin -9vmin 0 -18.7vmin #000c,
    25vmin 0 0 -18.6vmin #000c,
    23.25vmin 9vmin 0 -18.5vmin #000c,
    0 0 1.5vmin -0.5vmin #0007,
    3vmin 3vmin 3vmin -2vmin,
    inset 0.5vmin 0.5vmin 0.5vmin #fff6,
    inset -0.5vmin -0.5vmin 0.5vmin #0003;
  background:
    radial-gradient(farthest-side, transparent calc(95% - 1px), #fff3 0 95%, #87848a88 0),
    radial-gradient(#3a3a3a77, #1b213911 50%, transparent),
    radial-gradient(closest-side, #d00, #800 70%, #400 80%, #4444 0 calc(80% + 1px), transparent) var(--x) var(--y) / 10% 10%,
    repeating-radial-gradient(#fbfbfb11 0 0.625%, #3a3a3a11 0 1.25%),
    conic-gradient(#fbfbfb88 0, transparent 45deg 135deg, #fbfbfb88 180deg, transparent 225deg 315deg, #fbfbfb88),
    conic-gradient(transparent 45deg, #3a3a3a88 90deg, transparent 135deg 225deg, #3a3a3a88 270deg, transparent 300deg),
    linear-gradient(-45deg, #65696f, #d9d9d9aa);
    /* conic-gradient(white, gray 45deg, darkgray 90deg, gray 135deg, white 180deg, gray 225deg, darkgray 270deg, gray 315deg, white 360deg)*/
    background-color: #bbb;
  background-repeat: no-repeat;
  afilter: blur(1px) contrast(1.8)
}

input[value="1"] { --x: 10%; --y: 50%; }
input[value="2"] { --x: 12.5%; --y: 36%; }
input[value="3"] { --x: 19.5%; --y: 23.5%; }
input[value="4"] { --x: 30%; --y: 15%; }
input[value="5"] { --x: 42%; --y: 10%; }
input[value="6"] { --x: 58%; --y: 10%; }
input[value="7"] { --x: 70%; --y: 15%; }
input[value="8"] { --x: 80.5%; --y: 23.5%; }
input[value="9"] { --x: 87.5%; --y: 36%; }
input[value="10"] { --x: 90%; --y: 50%; }
input[value="11"] { --x: 87.5%; --y: 64%; }

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: transparent;
  border: 0 solid transparent;
  width: 10%;
  height: 10%;
  display: block;
}

input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  background: transparent;
  border: 0 solid transparent;
  width: 10%;
  height: 10%;
  display: block;
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

input::after {
  content: "VOLUME";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 150%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 4.5vmin;
  color: #222c;
  font-family: 'Zen Kurenaido', Verdana, Helvetica, Arial, sans-serif;
  font-weight: bold;
  background: #f003;
  background:
    linear-gradient(-45deg, transparent 50%, #111a 0 60%, transparent 0) 5% 48.5% / 0.75vmin 4vmin,
    linear-gradient(#111a, #111a) 5.75% 50% / 0.4vmin 3vmin,
    linear-gradient(-45deg, transparent 50%, #111a 0 60%, transparent 0) 90.875% 70.5% / 0.75vmin 4vmin,
    linear-gradient(#111a, #111a) 91% 72% / 0.4vmin 3vmin,
    linear-gradient(-45deg, transparent 50%, #111a 0 60%, transparent 0) 92.875% 70.5% / 0.75vmin 4vmin,
    linear-gradient(#111a, #111a) 93% 72% / 0.4vmin 3vmin
    ;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* input[value="1"] { transform: rotate(0) }
input[value="2"] { transform: rotate(18deg) }
input[value="3"] { transform: rotate(36deg) }
input[value="4"] { transform: rotate(54deg) }
input[value="5"] { transform: rotate(72deg) }
input[value="6"] { transform: rotate(80deg) }
input[value="7"] { transform: rotate(98deg) }
input[value="8"] { transform: rotate(116deg) }
input[value="9"] { transform: rotate(134deg) }
input[value="10"] { transform: rotate(162deg) }
input[value="11"] {transform: rotate(180deg) } */

/* input::before {
  content: "maybe?"
} */
              
            
!

JS

              
                
              
            
!
999px

Console