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

              
                <div class="container">
    <div class="cassette">
      <div class="top-tape">
        <div class="arrow-mark-container">
          <div class="arrow-mark">🡁</div>
        </div>
        <div class="brand-mark">SONY</div>
      </div>
      <div class="medium-tape">
        <div class="label-container">
          <div class="label">
            <div class="top-label">
              <div class="predefined-text">INDEX</div>
              <div class="top-text">
                <div>MICHAEL JACKSON</div>
                <div>THRILLER (CUMBIA VERSION)</div>
              </div>
            </div>
            <div class="medium-label">
              <div class="side-name">A</div>
              <div class="gap-container">
                <div class="gap">
                  <div class="left tapereel">
                    <div class="notch notch-1"></div>
                    <div class="notch notch-2"></div>
                    <div class="notch notch-3"></div>
                  </div>
                  <div class="central-gap">
                    <div class="left innertape"></div>
                    <div class="right innertape"></div>
                  </div>
                  <div class="right tapereel">
                    <div class="notch notch-1"></div>
                    <div class="notch notch-2"></div>
                    <div class="notch notch-3"></div>
                  </div>
                </div>
              </div>
              <div class="noise-reduction">
                NOISE REDUCTION
                <div class="box">
                  <div>ON</div>
                  <div>OFF</div>
                </div>
              </div>
            </div>
            <div class="bottom-label">
              <div class="brand-text">
                <div class="maintext">SONY</div>
                <div class="subtext">TYPE I (NORMAL) POSITION</div>
              </div>
              <div class="arrow-text"><span>🡆</span></div>
              <div class="model-text"><span>AHF</span>46</div>
            </div>
          </div>
        </div>
      </div>
      <div class="bottom-tape">
        <div class="magnetic-shield-container">
          <div class="magnetic-shield">
            <div class="left-hole-container">
              <div class="hole hole-1"></div>
              <div class="hole hole-2"></div>
            </div>
            <div class="screw-container">
              <div class="screw"></div>
            </div>
            <div class="right-hole-container">
              <div class="hole hole-3"></div>
              <div class="hole hole-4"></div>
            </div>
          </div>
        </div>
      </div>
      <div class="screw screw-1">
        <div class="dot"></div>
      </div>
      <div class="screw screw-2">
        <div class="dot"></div>
      </div>
      <div class="screw screw-3">
        <div class="dot"></div>
      </div>
      <div class="screw screw-4">
        <div class="dot"></div>
      </div>
    </div>
  </div>

<div class="created">
  <span>Created by</span>
  <a href="https://manz.dev/"><h2>Manz.dev</h2></a>
  <p>on <a href="https://twitch.tv/ManzDev">Twitch</a> / <a href="https://www.youtube.com/c/ManzDev/videos">Youtube</a></p>
</div>
              
            
!

CSS

              
                @use postcss-nested;

@font-face {
  font-family: "BioRhyme";
  src: url(https://manzdev.github.io/twitch-cassette/assets/biorhyme.woff) format("woff");
}

@font-face {
  font-family: "Code";
  src: url(https://manzdev.github.io/twitch-cassette/assets/code.woff2) format("woff");
}

@font-face {
  font-family: "Desyrel";
  src:
    url(https://manzdev.github.io/twitch-cassette/assets/desyrel.woff) format("woff"),
    url(https://manzdev.github.io/twitch-cassette/assets/desyrel.woff2) format("woff2");
}

:root {
  --body-bgcolor: #774486;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

body {
  background: var(--body-bgcolor);
}

.cassette {
  --width: 458px;
  --bgcolor: #2f2f2f;
  --border-color: #404040;
  --light-color: #555;
  --dark-color: #1c1c1c;
  --external-notch-shape: polygon(100% 0, 0 5%, 0 95%, 100% 100%);

  width: var(--width);
  background: var(--bgcolor);
  background-image:
    linear-gradient(273deg, #fff1, transparent),
    repeating-linear-gradient(to bottom, #1c1c1c 3px, #2c2c2c 6px);
  border: 3px solid var(--border-color);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 10px 2px #2227;

  &::before,
  &::after {
    content: "";
    display: block;
    background: #333;
    width: 5px;
    height: 75px;
    position: absolute;
    bottom: 20px;
    clip-path: var(--external-notch-shape);
  }

  &::before {
    left: -8px;
  }

  &::after {
    right: -8px;
    transform: scaleX(-1);
    background: #444;
  }

  & .top-tape {
    display: flex;
    justify-content: space-between;
    height: 25px;
    padding: 0 25px;

    & .arrow-mark-container {
      background: #0004;
      display: flex;

      & .arrow-mark {
        color: var(--light-color);
        font-size: 32px;
        transform: scaleY(1.6) translate(0, -10px);
      }
    }

    & .brand-mark {
      background: #0004;
      font-family: "BioRhyme", serif;
      padding: 0 6px;
      color: var(--light-color);
    }
  }

  & .medium-tape {
    display: flex;
    justify-content: center;

    & .label-container {
      width: 400px;
      background: var(--dark-color);
      border-radius: 4px;
      padding: 4px;

      & .label {
        background: #eee;
        background-image:
          repeating-linear-gradient(transparent 0 20px, #c6c6c6 20px 21px),
          linear-gradient(278deg, #eee, #ccc);
        border-radius: 10px;

        & .top-label {
          height: 62px;
          font-weight: normal;
          font-size: 16px;
          color: #333;

          & .predefined-text {
            font-family: Arial;
            font-size: 9px;
            padding: 6px 6px 4px;
            position: absolute;
          }

          & .top-text {
            font-family: "Desyrel", sans-serif;
            padding: 6px 10px;
            font-size: 24px;
            line-height: 110%;
            text-shadow: 0 0 1px #444;
            text-align: center;
          }
        }

        & .medium-label {
          height: 95px;
          background: #4d7fb4;
          display: flex;
          justify-content: center;
          align-items: center;
          font-family: Arial, sans-serif;

          & .side-name {
            width: 50px;
            font-weight: bold;
            font-size: 28px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #222;
          }

          & .gap-container {
            width: 360px;
            height: 75px;
            border: 4px solid var(--dark-color);
            background: var(--bgcolor);
            background-image: linear-gradient(76deg, transparent, #aaa2);
            border-radius: 5px;

            & .gap {
              height: 100%;
              display: flex;
              justify-content: center;
              align-items: center;

              & .tapereel {
                width: 50px;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                border: 4px solid #aaa;
                box-shadow: 0 0 0 4px #111;
                background: var(--body-bgcolor);

                &.left {
                  animation: spin 6s linear infinite reverse;
                }

                &.right {
                  animation: spin 8s linear infinite reverse;
                }

                & .notch {
                  background: linear-gradient(to right, #aaa 0 10%, transparent 12% 88%, #aaa 90% 100%);
                  width: 50px;
                  height: 8px;
                  position: absolute;
                }

                & .notch-1 { transform: rotate(60deg); }
                & .notch-2 { transform: rotate(0deg); }
                & .notch-3 { transform: rotate(-60deg); }
              }

              & .central-gap {
                width: 100px;
                height: 50px;
                border: 3px solid #222;
                background: var(--body-bgcolor);
                margin: 0 10px;
                overflow: hidden;
                position: relative;

                &::after {
                  content: "";
                  display: block;
                  width: 100%;
                  height: 100%;
                  background-image: linear-gradient(transparent, #fff5, transparent);
                  position: absolute;
                  top: 0;
                }

                & .innertape {
                  width: 150px;
                  height: 150px;
                  border-radius: 50%;
                  background: radial-gradient(#999 45%, #3e3e3e 47% 100%);
                  border: 2px solid #2e2e2e;
                  position: relative;

                  &.left {
                    transform: translate(-119px, -52px);
                  }

                  &.right {
                    transform: translate(66px, -206px);
                    box-shadow: -10px -10px 15px #3335;
                  }
                }
              }
            }
          }

          & .noise-reduction {
            width: 50px;
            font-size: 7px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: 2px;

            & .box {
              display: flex;
              margin-top: 2px;

              & > div {
                border: 1px solid #444;
                background: #fff;
                font-size: 6px;
                padding: 0 3px;
                border-radius: 2px;
              }
            }
          }
        }

        & .bottom-label {
          border-bottom-left-radius: 10px;
          border-bottom-right-radius: 10px;
          background: #eee;
          background-image: linear-gradient(-278deg, #eee, #ccc);
          height: 32px;
          display: flex;
          justify-content: space-around;
          align-items: center;

          & .brand-text {
            & .maintext {
              font-family: "BioRhyme", sans-serif;
              font-size: 20px;
              color: #222;
              transform: translate(18px, 0) scaleX(1.4);
            }

            & .subtext {
              font-family: Arial, sans-serif;
              font-weight: bold;
              color: #333;
              font-size: 7px;
              transform: translateY(-7px);
            }
          }

          & .arrow-text {
            color: #4d7fb4;
            font-size: 32px;
            transform: scaleX(1.5) translate(-6px, -3px);
          }

          & .model-text {
            font-family: "Code", sans-serif;
            font-weight: bold;
            color: #222;
            font-size: 28px;
            transform: translate(0, 2px);

            & span {
              color: #4d7fb4;
            }
          }
        }
      }
    }
  }

  & .bottom-tape {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-end;

    & .magnetic-shield-container {
      filter:
        drop-shadow(-4px 0 1px #131313)
        drop-shadow(4px 0 1px #383838)
        drop-shadow(0 -4px 0 #202020);

      & .magnetic-shield {
        background: #2a2a2a;
        width: 350px;
        height: 65px;
        clip-path: polygon(0 100%, 4% 0, 96% 0, 100% 100%);
        display: flex;
        justify-content: space-between;
        background-image: repeating-linear-gradient(to bottom, #2c2c2c 3px, #1c1c1c 6px);

        & .left-hole-container,
        & .right-hole-container {
          width: 125px;
          display: flex;
          justify-content: space-evenly;
          align-items: flex-end;
        }

        & .hole.hole-2,
        & .hole.hole-3 {
          transform: translateY(-15px);
          border: 3px solid #222;
          width: 24px;
          height: 18px;
          border-radius: 30px;
          box-shadow: 0 0 0 2px #111;
        }

        & .hole.hole-3 {
          width: 20px;
          border-radius: 10px;
          transform-origin: 50% 50%;
          transform: rotate(90deg) translateX(-17px);
        }

        & .screw-container {
          &::before {
            content: "";
            display: block;
            background: rgba(0, 0, 0, 0.75);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            position: relative;
            top: 10px;
            z-index: 10;
          }

          & .screw {
            position: absolute;
            left: calc(50% - 8px);
            top: 10px;
            box-shadow:
              0 0 2px 4px #000,
              0 0 2px 8px #111;
          }
        }

        & .hole {
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background: #111;
          border: 2px solid #191919;
          box-shadow: 0 0 0 2px #171717;
          transform: translateY(-5px);
        }
      }
    }
  }

  & .screw {
    background: linear-gradient(#555, #333);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #666;
    transform: rotate(-25deg);
    box-shadow: 0 0 2px 2px #111;

    & .dot {
      width: 4px;
      height: 4px;
      background: #222;
      border-radius: 50%;
      position: absolute;
      z-index: 5;
      filter: blur(1px);
    }

    &::before,
    &::after {
      content: " ";
      display: block;
      background: linear-gradient(to right, #222 10%, #111 45% 65%, #222 90%);
      width: 14px;
      height: 4px;
      border-radius: 2px;
      position: absolute;
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }

    &.screw-1 {
      top: 4px;
      left: 4px;
    }

    &.screw-2 {
      top: 4px;
      right: 4px;
    }

    &.screw-3 {
      bottom: 4px;
      left: 4px;
    }

    &.screw-4 {
      bottom: 4px;
      right: 4px;
    }
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.created {
  background: 
    url(https://assets.codepen.io/154065/internal/avatars/users/default.png),
    linear-gradient(to bottom, #884ced, #ec1cce);
  background-size: 75px 75px, cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 2em;
  
  & span,
  & h2,
  & p,
  & a {
    font-family: Montserrat;
    margin: 0;
  }
  
  & a,
  & p,
  & span {
    color: #fff;    
  }
  
  & h2 {
    font-weight: 700;
    transform: translate(0, -4px);    
  }
  
  & a {
    text-decoration-color: rgba(255,255,255,0.4);
  }
  
  & a:hover {
    color: #e6e82a;
  }
}
              
            
!

JS

              
                /* Look mom, without JS */
              
            
!
999px

Console