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.
input#solid.variation(type="radio" value="1" name="border" checked)
label(for="solid")
span.circle
span Flat UI
input#shadow.variation(type="radio" value="2" name="border")
label(for="shadow")
span.circle
span Realistic
.folder
.tabs
button.tab.active(onclick="openTab(event, 'tab-1')")
div
span Work stuff
button.tab(onclick="openTab(event, 'tab-2')")
div
span Food
button.tab(onclick="openTab(event, 'tab-3')")
div
span Baking
button.tab(onclick="openTab(event, 'tab-4')")
div
span Cat
.content
#tab-1.content__inner
.page
p Productize. Optics accountable talk. Thought shower. High performance keywords market-facing drink from the firehose, or you better eat a reality sandwich before you walk back in that boardroom, but accountable talk knowledge process outsourcing.
p What's our go to market strategy? cross functional teams enable out of the box brainstorming nor zeitgeist viral engagement. Deep dive. Organic growth quick sync, feed the algorithm.
#tab-2.content__inner
.page
p I love cheese, especially the big cheese gouda. Monterey jack red leicester roquefort cheese and wine fromage frais smelly cheese melted cheese dolcelatte. Fromage smelly cheese manchego paneer cheese and wine danish fontina macaroni cheese red leicester.
p Stilton fondue queso emmental when the cheese comes out everybody's happy croque monsieur queso paneer. Say cheese pecorino swiss boursin halloumi cottage cheese taleggio boursin.
#tab-3.content__inner
.page
p Cupcake ipsum dolor sit amet jujubes tart. Tiramisu icing gingerbread halvah cake. Marzipan cake soufflé cookie brownie ice cream cupcake. Dragée croissant bonbon ice cream oat cake jelly cookie. Wafer candy dessert jelly jelly-o.
p Oat cake donut powder pastry wafer brownie cupcake caramels bear claw. Bonbon caramels oat cake cake shortbread. Cake cheesecake candy icing bear claw marshmallow icing jelly. Halvah biscuit pudding danish cookie bonbon gummies.
#tab-4.content__inner
.page
p Miaow then turn around and show you my bum flee in terror at cucumber discovered on floor. Terrorize the hundred-and-twenty-pound rottweiler and steal his bed, not sorry sleep on dog bed, force dog to sleep on floor and grab pompom in mouth and put in water dish cats are fats i like to pets them they like to meow back present belly, scratch hand when stroked.
p Bleghbleghvomit my furball really tie the room together love asdflkjaertvlkjasntvkjn (sits on keyboard) but bawl under human beds.
* {
box-sizing: border-box;
}
:root {
--background: #f9d877;
}
body {
padding: 4rem 2rem 2rem;
min-height: 100vh;
background: linear-gradient(to bottom right, rgb(173, 83, 137), rgb(60, 16, 83));
font-size: 1.2rem;
font-family: "Patrick Hand";
display: grid;
grid: 2rem auto / repeat(2, 50%);
grid-column-gap: 2rem;
justify-content: center;
width: 100%;
.folder {
grid-column: 1 / -1;
}
}
p {
margin-bottom: 1rem;
}
.tab {
font-family: "Patrick Hand";
text-transform: uppercase;
line-height: 0.8;
display: inline-block;
margin-left: -35px;
filter: drop-shadow(0px -3px 2px rgba(0, 0, 0, 0.05));
border: none;
border-radius: 6px 6px 0 0;
position: relative;
margin-right: 4rem;
background: var(--background);
white-space: nowrap;
cursor: pointer;
background: var(--background);
&:focus {
outline: none;
span {
border-bottom: 2px solid;
border-radius: 0;
}
}
&:first-of-type {
margin-left: 30px;
}
div {
background: var(--background);
padding: 6px 0;
position: relative;
z-index: 10;
}
span {
display: inline-block;
border: 2px solid transparent;
padding: 6px 15px 6px;
border-radius: 5px;
z-index: 5;
position: relative;
font-size: 140%;
color: #fff;
min-width: 6rem;
}
&:before,
&:after {
content: "";
height: 100%;
position: absolute;
background: var(--background);
border-radius: 8px 8px 0 0;
width: 30px;
top: 0;
}
&:before {
right: -16px;
transform: skew(25deg);
border-radius: 0 8px 0 0;
}
&:after {
transform: skew(-25deg);
left: -16px;
border-radius: 8px 0 0 0;
}
&.active {
z-index: 50;
position: relative;
span {
background: white;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
border-radius: 5px;
color: black;
}
}
}
.content {
border-radius: 10px;
position: relative;
width: 100%;
#tab-1 {
display: block;
}
&:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
top: 0;
left: 0;
border-radius: inherit;
}
&__inner {
font-family: "Yomogi", sans-serif;
display: none;
background: var(--background);
border-radius: inherit;
padding: 1rem;
filter: drop-shadow(0px -2px 2px rgba(0, 0, 0, 0.1));
z-index: 5;
}
}
.folder {
margin: 1rem auto;
max-width: 50rem;
width: 100%;
scrollbar-height: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
::-webkit-scrollbar {
background: transparent; /* Chrome/Safari/Webkit */
display: none;
}
}
.page {
padding: 1.5rem;
border-radius: 2px;
min-height: 20rem;
line-height: 160%;
background-color: #f9f9f9;
filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.15));
background-image: linear-gradient(#e4e4e4 1px, transparent 1px);
background-size: 8% 8%, 2px 2px;
}
.tabs {
padding: 2rem 0 0 0;
width: 100%;
margin: 0 0.5rem;
overflow-x: auto;
width: calc(100% - 1rem);
white-space: nowrap;
@media(min-width: 50rem) {
margin: 0 2rem;
width: calc(100% - 4rem);
}
}
#solid:checked ~ .folder {
.tab,
.content__inner {
&:nth-of-type(1) {
--background: #af4d98;
}
&:nth-of-type(2) {
--background: #d66ba0;
}
&:nth-of-type(3) {
--background: #e5a9a9;
}
&:nth-of-type(4) {
--background: #6cb6bb;
}
}
.tab {
border: 2px solid;
border-width: 2px 0 0;
&:before,
&:after {
top: -2px;
border-top: 2px solid;
}
&:before {
border-right: 2px solid;
}
&:after {
border-left: 2px solid;
}
&.active {
span {
border: 2px solid;
}
&:focus span {
outline: 1px solid rgba(255, 255, 255, 0.7);
}
}
&:not(.active) {
border-bottom: 2px solid;
&:before,
&:after {
box-shadow: 0 1.5px 0 black;
}
}
}
.content {
top: -2px;
left: -2px;
&__inner {
box-shadow: 0 0 0 1.5px black;
}
}
.page {
border: 2px solid;
}
}
#shadow:checked ~ .folder {
.tab {
--background: linear-gradient(to bottom, #fee9a5, #f9d877);
span {
color: black;
}
&:focus span {
border-bottom-color: black;
}
&.active:focus span {
border-color: black;
}
}
.content__inner {
--background: linear-gradient(to bottom, #f9d877, #fee9a5);
}
}
/* radio buttons styling */
input.variation {
display: none;
+ label {
display: flex;
column-gap: 10px;
align-items: center;
cursor: pointer;
color: white;
.circle {
width: 25px;
height: 25px;
border-radius: 50%;
border: 3px solid white;
}
}
&:checked + label .circle {
background: white;
box-shadow: inset 0 0 0 3px #3c1053;
}
&:nth-of-type(1) + label {
justify-self: flex-end;
}
}
function openTab(evt, tab) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("content__inner");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tab");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(tab).style.display = "block";
evt.currentTarget.className += " active";
}
//Horizontal scroll for the tabs on mousewheel. If tabs are longer than the content section, there's a scroll bar but it's hidden to retain the design.
if (window.innerWidth > 800) {
const scrollContainer = document.querySelector(".tabs");
scrollContainer.addEventListener("wheel", (evt) => {
evt.preventDefault();
scrollContainer.scrollLeft += evt.deltaY;
});
}
Also see: Tab Triggers