HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
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.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
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.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
h1 StarWars BB-8 CSS Illustration
.artboard
.bb8
.bb8-body
.dot.dot-1
.line.line-1
.line.line-2
.line.line-3
.dot.dot-2
.circle.circle-1
.circle.circle-2
.circle.circle-3
.body-shadow-crop
.body-shadow
.bb8-head
.head-bottom
.head-side-1
.head-side-2
.head-bottom-base
.head-top-crop
.head-top
.lens
.freckle
.speedlines
.one.tail
.two.tail
.three
.four
.five.tail
.sparkles
.one.small.pulse-1
.two.blue.small.pulse-2
.three.blue.med.pulse-3
.four.orange.pulse-2
.five.orange.pulse-1
.six.blue.small.pulse
.seven.blue.small.pulse
.eight.small.pulse-3
.nine.pulse
.ten.orange.small-1.pulse
.eleven.small.pulse
.twelve.small.pulse-2
.thirteen.orange.small.pulse
.fourteen.orange.med.pulse-3
.fifteen.small.pulse-1
.sixteen.small.pulse
.ground
.one
.bump.move-1
.two
.three
.bump.move-2
.four
.bump
.five
.six
.bump.move-2
.seven
.bump
.eight
.bump.move-1
.credit.
Original Illustration by <a href="https://dribbble.com/shots/2408834-BB-8">Justas Galaburda</a> · Animation by <a href="https://www.youtube.com/watch?v=QZdj42liTtU">DevTips</a>
hr
h2 Watch the video
<iframe width="640" height="360" src="https://www.youtube.com/embed/QZdj42liTtU?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
// Variables
$bg: #F5FAFC
$base: #EBF2FA
$base-tint: #A7D0E0
$stroke: #244356
$orange: #FDC23E
$blue: #449BAA
$red: #FF7761
// Styles
*
box-sizing: border-box
body
background: #eee
.artboard
width: 800px
height: 600px
background: $bg
box-shadow: 0px 3px 20px rgba(0,0,0,0.2)
border-radius: 3px
margin: 50px auto
border: 20px white solid
position: relative
.bb8
width: 220px
height: 220px
position: absolute
top: 222px
left: 180px
.bb8-body
width: 220px
height: 220px
background: $base
position: absolute
border-radius: 50%
border: solid 8px $stroke
overflow: hidden
animation: spin 1s linear infinite
.circle
width: 120px
height: 120px
border: 8px solid $stroke
background-color: $orange
border-radius: 50%
position: absolute
&:after
content: ''
display: block
border: 8px solid $stroke
background: $base
border-radius: 50%
position: absolute
top: 50%
left: 50%
transform: translate(-50%, -50%)
height: 35%
width: 35%
.circle-1
top: 10px
left: -30px
.circle-2
top: 123px
left: 80px
.circle-3
height: 300px
width: 300px
left: 120px
top: -180px
.dot
height: 18px
width: 18px
border-radius: 50%
background: $stroke
position: absolute
.dot-1
top: 79px
left: 113px
.dot-2
top: 145px
left: 40px
.line
position: absolute
height: 8px
width: 100px
background: $stroke
.line-1
transform: rotate(40deg)
top: 40px
left: -70px
.line-2
transform: rotate(160deg)
top: -45px
left: -60px
.line-3
transform: rotate(-60deg)
top: 25px
left: 10px
.body-shadow-crop
width: 220px
height: 220px
position: absolute
border-radius: 50%
border: solid 8px $stroke
overflow: hidden
-webkit-transform: translate3d(0, 0, 0)
.body-shadow
width: 220px
height: 220px
border-radius: 50%
position: absolute
box-shadow: 0px 0px 60px rgba(0,0,0,0.4)
left: -50px
top: -20px
.bb8-head
width: 160px
height: 160px
position: absolute
top: -60px
left: -30px
transform: rotate(-30deg)
.head-top
width: 160px
height: 160px
background: $base
border: solid 8px $stroke
position: absolute
border-radius: 50%
box-shadow: -10px 0px 0px 5px rgba(0,0,0,0.2) inset
.lens
width: 56px
height: 56px
border-radius: 50%
border: solid 8px $stroke
background: #295A6D
position: absolute
top: 20px
left: 50%
margin-left: -28px
overflow: hidden
&:before,
&:after
content: ''
display: block
width: 6px
height: 70px
background: #2A6B80
position: absolute
left: 10px
top: -20px
transform: rotate(40deg)
&:after
width: 10px
left: 25px
top: -10px
.freckle
height: 13px
width: 13px
border-radius: 50%
background: $stroke
top: 60px
left: 120px
position: absolute
.head-top-crop
height: 50%
overflow: hidden
position: relative
.head-bottom
position: absolute
width: 100%
top: 80px
.head-bottom-base,
.head-side-1,
.head-side-2
border-bottom: 8px solid $stroke
background: $base-tint
height: 20px
position: absolute
.head-bottom-base
width: 78%
left: 11%
.head-side-1
width: 30px
transform: rotate(40deg)
transform-origin: bottom left
top: -16px
left: -3px
border-radius: 0px 0px 8px 8px
.head-side-2
width: 30px
transform: rotate(-40deg)
transform-origin: bottom right
top: -16px
right: -3px
border-radius: 0px 0px 8px 8px
.speedlines > div
height: 8px
width: 55px
background: $stroke
border-radius: 8px
position: absolute
left: 120px
&.tail:after
content: ''
display: block
height: 8px
width: 20px
border-radius: 8px
background: $stroke
position: absolute
left: 100%
margin-left: 5px
&.one
top: -60px
left: 53px
&.two
top: -21px
left: 113px
&.three
top: -10px
left: 103px
width: 30px
&.four
top: 121px
left: 203px
width: 30px
&.five
top: 141px
left: 218px
width: 50px
.sparkles > div
width: 30px
height: 30px
position: absolute
&:before,
&:after
content: ''
display: block
width: 40%
height: 100%
border-radius: 20px
background: $red
position: absolute
left: 50%
top: 50%
transform: translate(-50%, -50%)
&:after
transform: translate(-50%, -50%) rotate(90deg)
&.blue:before,
&.blue:after
background: $blue
&.orange:before,
&.orange:after
background: $orange
&.med
transform: scale(0.6)
&.small
transform: scale(0.4)
&.one
top: -53px
left: 140px
&.two
top: -46px
left: 210px
&.three
top: -6px
left: 186px
&.four
top: -16px
left: 280px
&.five
top: 44px
left: 230px
&.six
top: 94px
left: 240px
&.seven
top: 154px
left: 216px
&.eight
top: 187px
left: 185px
&.nine
top: 63px
left: 325px
&.ten
top: 124px
left: 315px
&.eleven
top: 161px
left: 294px
&.twelve
top: 27px
left: 366px
&.thirteen
top: 37px
left: 415px
&.fourteen
top: 87px
left: 385px
&.fifteen
top: 137px
left: 378px
&.sixteen
top: 97px
left: 455px
&.pulse
animation: pulse 1s linear infinite
&.pulse-1
animation: pulse 1s 300ms linear infinite
&.pulse-2
animation: pulse 1s 600ms linear infinite
&.pulse-3
animation: pulse 1s 900ms linear infinite
.ground > div
height: 8px
width: 80px
background: $stroke
position: absolute
top: 212px
left: -90px
border-radius: 8px
&.one .bump
left: 40px
&.two
width: 25px
left: -1px
&.three
width: 300px
left: 34px
&.four
width: 90px
left: 346px
.bump
left: 10px
&.five
width: 20px
left: 450px
&.six
width: 80px
left: 11px
top: 255px
.bump
left: 10px
&.seven
width: 127px
left: 171px
top: 255px
.bump
left: 60px
&.eight
width: 87px
left: 71px
top: 295px
.bump
left: 30px
.bump
height: 15px
width: 30px
position: absolute
top: -7px
overflow: hidden
animation: move 0.5s linear infinite
&.move-1
animation: move 0.5s 350ms linear infinite
&.move-2
animation: move 0.5s 700ms linear infinite
&:after
content: ''
display: block
height: 30px
width: 30px
border: 8px solid $stroke
border-radius: 50%
background: $bg
box-sizing: border-box
@keyframes spin
0%
transform: rotate(360deg)
100%
transform: rotate(0deg)
@keyframes pulse
0%
transform: scale(1)
90%
transform: scale(0.3)
100%
transform: scale(1)
@keyframes move
0%
left: 5%
transform: scale(0)
10%
transform: scale(1)
90%
transform: scale(1)
100%
left: 55%
transform: scale(0)
// Page Styles
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono)
.credit
text-align: center
color: #999
font-family: 'Roboto Mono'
a
color: #333
h1, h2
font-family: 'Roboto Mono'
text-align: center
margin: 50px
h2
color: #666
iframe
margin: 50px auto
display: block
hr
height: 0px
border: none
border-top: 2px solid #ccc
margin: 100px auto 50px
width: 80px
Also see: Tab Triggers