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.
<link href='https://fonts.googleapis.com/css?family=Work+Sans:300,400' rel='stylesheet' type='text/css'>
<section class="calculator" id="body">
<form action="" class="wage-gap" id="wage-gap" onsubmit="return false;">
When I invest
<span class="salary-initial">
<input type="number" min="0" step="100" id="salary-initial" name="salary-initial" onchange="calculateTotal()"/><label class="input__label"> <span class="input__label-content">$</span></label></span>,
<span class="input">
<select class="input" id="womanethnicity" name="womanethnicity" onchange="calculateTotal()"></span>
<option value="autotrader">
in autoTRADER
</option>
<option value="social">
in Social
</option>
<option value="search">
in Search
</option>
</select>
I earn
<span id="salary-calculated"></span>
</form> in Revenue
</section>
html {
box-sizing: border-box;
}
*, *:before, *:after {
padding: 0;
margin: 0;
box-sizing: inherit
}
body {
font-family: "Work Sans", "Helvetica", sans-serif;
font-size: .9em;
line-height: 1.45;
}
.calculator {
height: 100vh;
padding-left: 9%;
border-left: solid 40px #eee;
}
/* I want to make a neat (but not too flashy) gradient animation that will fill the corresponding percentage of the `calculator` element's bg on calculation. This code has hacky gradient animation keyframes, ending on a Sass map of ethnicity-to-percentage keys.
@TODO:
JS: Add proper ethnicity class based on user's ethnicity choice to `calculator` element when salary result is calculated.
CSS: Smooth the animation out somehow? I can't do the overshooting the background size and animate the position without some crazy mathing, because I'm dealing with specific percentages instead of just a pretty gradient. Rewrite the markup so the Map appears first as we need to reference the class name as $ethnicity.
.gradient-fill {
background-color: white;
animation: gradient-fill .1s ease-in forwards;
}
@keyframes gradient-fill {
0% {
background-image: linear-gradient(
to bottom,
#f7f7f7 10%,
white 10%
);
}
50% {
background-image: linear-gradient(
to bottom,
#f7f7f7 28%,
white 28%
);
}
$ethnicity: (
latina: 54%,
black: 63%,
pacificislander: 62%,
ndn: 59%,
asian: 90%,
);
@each $ethnicity, $percentage in $ethnicity {
100% {
background-image: linear-gradient(
to bottom,
#f7f7f7 $percentage,
white $percentage
)
}
}
}
*/
.giant-letters {
font-size: 50px;
line-height: 2;
letter-spacing: -1px;
font-weight: 300;
}
.wage-gap {
@extend .giant-letters;
&::first-line {
line-height: 1;
}
position: relative;
top: 50%;
transform: translateY(-50%);
}
input, select {
font: 300 50px "Work Sans", "Helvetica", sans-serif;
border: 0;
outline: none;
color: white;
background-color: #ee5757;
}
.salary-initial {
position: relative;
}
input {
-webkit-appearance: none;
padding: 10px 10px 10px 45px;
width: 340px;
margin-left: 5px;
}
.input__label {
display: inline-block;
position: absolute;
top: -5px;
left: 0;
padding: 0 0 0 20px;
font-size: 70%;
user-select: none;
color: white;
}
select {
padding: 10px 40px 10px 10px;
display: block;
appearance: none;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAMCAYAAACX8hZLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU0NTcyRDhBN0M0NjExRTVBNDczQTk5MjhEMzBCOTk5IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU0NTcyRDhCN0M0NjExRTVBNDczQTk5MjhEMzBCOTk5Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTQ1NzJEODg3QzQ2MTFFNUE0NzNBOTkyOEQzMEI5OTkiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTQ1NzJEODk3QzQ2MTFFNUE0NzNBOTkyOEQzMEI5OTkiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz65iLfGAAAA3klEQVR42pyTOwrCQBCGN5Y2amLwWXkmr2MtaiEiIoJFipT23kDEN4LPQ3iF9R+S4LDmsZsfvmJ3Z+ZrdiwpZVEI4YGOCLIGPZE/DvCBG549AQnRBm/5yzC8N8UGJzZnCQq8oAVerGBgKKiAI+tfAIve1MImeOYQkeDA+uaRIE5CNMDDQFRWBDMuSJIQdXDXEJXAntVNVUGahKiBW4qIBDv2PokTZEkIF1xjRCTYsvtxkkBHEokuysANO4+yZuh+zyo4y/9o/T6TPXCURevr9gbLoh8bdMEHrHSbvgIMAMLxNoWnbjKVAAAAAElFTkSuQmCC);
background-repeat: no-repeat;
background-position-y: center;
background-position-x: 645px;
margin-bottom: -10px;
}
select option {
font-weight: 200;
}
#salary-calculated {
border-bottom: solid 10px #ee5757;
}
.data {
background: #222;
color: white;
padding: 100px 40px;
}
@media (min-width: 1285px) {
.calculator, .data {
display: inline-block;
}
.calculator {
float: left;
width: 60%;
padding-left: 2%;
}
.data {
float: right;
width: 40%;
padding: 20px 40px;
}
}
.data p, .data h1, .data table {
width: 80%;
}
table {
background-color: white;
color: #333;
margin: 0 auto 10px auto;
border-collapse: collapse;
td {
padding: 10px;
border-right: solid 2px rgba(0,0,0,.05);
vertical-align: top;
&:last-child {
border-right: 0;
}
}
thead tr {
font-size: 16px;
text-transform: uppercase;
line-height: 1.2;
background-color: #ee5757;
color: white;
}
/*
tr td:not(:first-child) {
text-align: center;
}*/
tbody tr:nth-of-type(odd) {
background-color: #f7f7f7;
}
}
h1 {
@extend .giant-letters;
line-height: 1.3;
margin: 50px auto;
}
em {
font-style: normal;
background: #ee5757;
color: white;
padding: 0 10px;
}
p {
display: block;
margin: 10px auto;
}
a {
position: relative;
border-bottom: solid 2px #343434;
color: #ee5757;
text-decoration: none;
}
a:before {
position: absolute;
top: -22px;
left: 0;
width: 400px;
padding: 10px;
background: #fff;
vertical-align: bottom;
background-size: auto 40%;
border-bottom: solid 4px #ee5757;
box-shadow: 0 0 10px rgba(0,0,0,.2);
color: #404d5b;
content: attr(href);
white-space: pre-wrap;
word-break: break-all;
line-height: 1.2;
opacity: 0;
transition: opacity 0.15s, color 0.15s, transform 0.15s, background-position 0.05s;
transform: scale(0.5);
pointer-events: auto;
}
a:hover:before,
a:focus:before {
background-position: 1em 50%;
opacity: 1;
transform: scale(1) translateY(-75%);
}
/*
http://www.javascript-coder.com/javascript-form/javascript-calculator-script.phtml
source is shared under the terms of LGPL 3 www.gnu.org/licenses/lgpl.html
*/
//this is an associative array! we are defining the values from the keys (the dropdown options) to use in the function.
var woman_percentage = new Array();
woman_percentage["autotrader"] = 1.54;
woman_percentage["search"] = .63;
woman_percentage["social"] = .62;
woman_percentage["ndn"] = .59;
woman_percentage["asian"] = .9;
//find the percentage of a white man's earnings based on the dropdown selection of a woman's ethnicity
function getPercentage() {
var ethnicityPercentage = 0;
var theForm = document.forms["wage-gap"];
var selectedEthnicity = theForm.elements["womanethnicity"];
//set ethnicityPercentage equal to value user chose
ethnicityPercentage = woman_percentage[selectedEthnicity.value];
//return the percentage numeral to calculate in the final result
return ethnicityPercentage;
}
//what to do with the salary number input
//Since the user enters numeric value directly to the text box, we don’t have keep an associative array to map to a number. We can use the parseInt() function.
function getInitialSalary() {
//reference the id of the form
var theForm = document.forms["wage-gap"];
//reference the text box
var initialSalaryAmount = theForm.elements["salary-initial"];
var initialSalary = 0;
//if the textbox is not blank
if (initialSalaryAmount.value != "") {
initialSalary = parseInt(initialSalaryAmount.value);
}
//return the salary $$$ to calculate in the final result
return initialSalary;
}
function calculateTotal() {
//get the final calculated salary by calling our function!
//then we have to round using weird math from http://www.webdeveloper.com/forum/showthread.php?222667-How-to-round-variables-up-to-2-decimal-places
var getCalculatedSalary = getInitialSalary() * getPercentage();
var calculatedSalary = Math.round(getCalculatedSalary * Math.pow(10, 2)) / Math.pow(10, 2);
//display the result
document.getElementById('salary-calculated').innerHTML = "$" + calculatedSalary + ".";
}
/* I wanted to figure out how to include "a" or "an" gramatically before the select element, dependent on which option is selected, but that seems to be, like, crazy difficult for my skill level.
http://jsfiddle.net/adamzr/3yhFS/
something with that?
function properArticle() {
var indefiniteArticle = "an";
document.getElementById('indefinite-article')
.innerHTML = indefiniteArticle;
}
properArticle ();
*/
Also see: Tab Triggers