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.
<!--
This was created based on the Dribble shot by Deepak Yadav that you can find at https://goo.gl/XRALsw
I'm @hk95 on GitHub. Feel free to message me anytime.
-->
<section class="user">
<div class="user_options-container">
<div class="user_options-text">
<div class="user_options-unregistered">
<h2 class="user_unregistered-title">Don't have an account?</h2>
<p class="user_unregistered-text">Banjo tote bag bicycle rights, High Life sartorial cray craft beer whatever street art fap.</p>
<button class="user_unregistered-signup" id="signup-button">Sign up</button>
</div>
<div class="user_options-registered">
<h2 class="user_registered-title">Have an account?</h2>
<p class="user_registered-text">Banjo tote bag bicycle rights, High Life sartorial cray craft beer whatever street art fap.</p>
<button class="user_registered-login" id="login-button">Login</button>
</div>
</div>
<div class="user_options-forms" id="user_options-forms">
<div class="user_forms-login">
<h2 class="forms_title">Login</h2>
<form class="forms_form">
<fieldset class="forms_fieldset">
<div class="forms_field">
<input type="email" placeholder="Email" class="forms_field-input" required autofocus />
</div>
<div class="forms_field">
<input type="password" placeholder="Password" class="forms_field-input" required />
</div>
</fieldset>
<div class="forms_buttons">
<button type="button" class="forms_buttons-forgot">Forgot password?</button>
<input type="submit" value="Log In" class="forms_buttons-action">
</div>
</form>
</div>
<div class="user_forms-signup">
<h2 class="forms_title">Sign Up</h2>
<form class="forms_form">
<fieldset class="forms_fieldset">
<div class="forms_field">
<input type="text" placeholder="Full Name" class="forms_field-input" required />
</div>
<div class="forms_field">
<input type="email" placeholder="Email" class="forms_field-input" required />
</div>
<div class="forms_field">
<input type="password" placeholder="Password" class="forms_field-input" required />
</div>
</fieldset>
<div class="forms_buttons">
<input type="submit" value="Sign up" class="forms_buttons-action">
</div>
</form>
</div>
</div>
</div>
</section>
/**
* General variables
*/
$bdrds: 3px
$white: #fff
$black: #000
$gray: #ccc
$salmon: #e8716d
$smoky-black: rgba(#222222, .85)
$ff: 'Montserrat', sans-serif
$ff-body: 12px
$ff-light: 300
$ff-regular: 400
$ff-medium: 500
/**
* General configs
*/
*
box-sizing: border-box
body
font-family: $ff
font-size: $ff-body
line-height: 1em
button
background-color: transparent
padding: 0
border: 0
outline: 0
cursor: pointer
input
background-color: transparent
padding: 0
border: 0
outline: 0
&[type="submit"]
cursor: pointer
&::placeholder
font-size: .85rem
font-family: $ff
font-weight: $ff-light
letter-spacing: .1rem
color: $gray
/**
* Bounce to the left side
*/
@keyframes bounceLeft
0%
transform: translate3d(100%, -50%, 0)
50%
transform: translate3d(-30px, -50%, 0)
100%
transform: translate3d(0, -50%, 0)
/**
* Bounce to the left side
*/
@keyframes bounceRight
0%
transform: translate3d(0, -50%, 0)
50%
transform: translate3d(calc(100% + 30px), -50%, 0)
100%
transform: translate3d(100%, -50%, 0)
/**
* Show Sign Up form
*/
@keyframes showSignUp
100%
opacity: 1
visibility: visible
transform: translate3d(0, 0, 0)
/**
* Page background
*/
.user
display: flex
justify-content: center
align-items: center
width: 100%
height: 100vh
background: #ccc
background-size: cover
&_options-container
position: relative
width: 80%
&_options-text
display: flex
justify-content: space-between
width: 100%
background-color: $smoky-black
border-radius: $bdrds
/**
* Registered and Unregistered user box and text
*/
.user_options-registered,
.user_options-unregistered
width: 50%
padding: 75px 45px
color: $white
font-weight: $ff-light
.user_registered-title,
.user_unregistered-title
margin-bottom: 15px
font-size: 1.66rem
line-height: 1em
.user_unregistered-text,
.user_registered-text
font-size: .83rem
line-height: 1.4em
.user_registered-login,
.user_unregistered-signup
margin-top: 30px
border: 1px solid $gray
border-radius: $bdrds
padding: 10px 30px
color: $white
text-transform: uppercase
line-height: 1em
letter-spacing: .2rem
transition: background-color .2s ease-in-out, color .2s ease-in-out
&:hover
color: $smoky-black
background-color: $gray
/**
* Login and signup forms
*/
.user_options-forms
position: absolute
top: 50%
left: 30px
width: calc(50% - 30px)
min-height: 420px
background-color: $white
border-radius: $bdrds
box-shadow: 2px 0 15px rgba($black, .25)
overflow: hidden
transform: translate3d(100%, -50%, 0)
transition: transform .4s ease-in-out
.user_forms-login
transition: opacity .4s ease-in-out, visibility .4s ease-in-out
.forms
&_title
margin-bottom: 45px
font-size: 1.5rem
font-weight: $ff-medium
line-height: 1em
text-transform: uppercase
color: $salmon
letter-spacing: .1rem
&_field
&:not(:last-of-type)
margin-bottom: 20px
&_field-input
width: 100%
border-bottom: 1px solid $gray
padding: 6px 20px 6px 6px
font-family: $ff
font-size: 1rem
font-weight: $ff-light
color: darken($gray, 30%)
letter-spacing: .1rem
transition: border-color .2s ease-in-out
&:focus
border-color: darken($gray, 30%)
&_buttons
display: flex
justify-content: space-between
align-items: center
margin-top: 35px
&-forgot
font-family: $ff
letter-spacing: .1rem
color: $gray
text-decoration: underline
transition: color .2s ease-in-out
&:hover
color: darken($gray, 10%)
&-action
background-color: $salmon
border-radius: $bdrds
padding: 10px 35px
font-size: 1rem
font-family: $ff
font-weight: $ff-light
color: $white
text-transform: uppercase
letter-spacing: .1rem
transition: background-color .2s ease-in-out
&:hover
background-color: darken($salmon, 10%)
.user_forms-signup,
.user_forms-login
position: absolute
top: 70px
left: 40px
width: calc(100% - 80px)
opacity: 0
visibility: hidden
transition: opacity .4s ease-in-out, visibility .4s ease-in-out, transform .5s ease-in-out
.user_forms-signup
transform: translate3d(120px, 0, 0)
.forms_buttons
justify-content: flex-end
.user_forms-login
transform: translate3d(0, 0, 0)
opacity: 1
visibility: visible
/**
* Triggers
*/
.user_options-forms
&.bounceLeft
animation: bounceLeft 1s forwards
.user_forms-signup
animation: showSignUp 1s forwards
.user_forms-login
opacity: 0
visibility: hidden
transform: translate3d(-120px, 0, 0)
&.bounceRight
animation: bounceRight 1s forwards
/**
* Responsive 990px
*/
@media screen and (max-width: 990px)
.user_options-forms
min-height: 350px
.forms_buttons
flex-direction: column
.user_forms-login
.forms_buttons-action
margin-top: 30px
.user_forms-signup,
.user_forms-login
top: 40px
.user_options-registered,
.user_options-unregistered
padding: 50px 45px
/**
* Variables
*/
const signupButton = document.getElementById('signup-button'),
loginButton = document.getElementById('login-button'),
userForms = document.getElementById('user_options-forms')
/**
* Add event listener to the "Sign Up" button
*/
signupButton.addEventListener('click', () => {
userForms.classList.remove('bounceRight')
userForms.classList.add('bounceLeft')
}, false)
/**
* Add event listener to the "Login" button
*/
loginButton.addEventListener('click', () => {
userForms.classList.remove('bounceLeft')
userForms.classList.add('bounceRight')
}, false)
Also see: Tab Triggers