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

              
                <main>
	<div class="inner-column">
		<section class="recent-work">
			<h6>The Guardian Newspaper</h6>

			<ol>
				<li>
					<a href="#">Header</a>

					<sup>'17 - '18</sup>
				</li>

				<li>
					<a href="#">Editorial Design</a>

					<sup>'16 - '19</sup>
				</li>

				<li>
					<a href="#">Design System</a>

					<sup>'16 - '19</sup>
				</li>
			</ol>
		</section>

		<section class="name">
			<h1>Zef<br>
				Cherry―Kyna<span class="letter-s">s</span><span class="letter-t">t</span><span class="letter-o">o</span><span class="letter-n">n</span>
			</h1>
		</section>

		<section class="personal-projects">
			<h6>Personal Projects</h6>

			<ol>
				<li>
					<a href="#">Log flumes</a>

					<sup>'14 - now</sup>
				</li>

				<li>
					<a href="#">McKatsu</a>

					<sup>'14</sup>
				</li>

				<li>
					<a href="#">Pigeon</a>

					<sup>'15</sup>
				</li>

				<li>
					<a href="#">Nostalgic CV</a>

					<sup>'12</sup>
				</li>
			</ol>
		</section>
		<svg class="half-circle-1 circles" viewBox="0 0 100 100">
			<circle cx="50" cy="0" r="50" />
		</svg>

		<svg class="half-circle-2 circles" viewBox="0 0 100 100">
			<circle cx="50" cy="0" r="50" />
		</svg>

		<section class="more-stuff">
			<ul>
				<li>
					<sup>'19 - now</sup>

					<h5>GoMore</h5>

					<h5>Senior Product Manager</h5>
				</li>

				<li>
					<sup>'15 - '19</sup>

					<h5>The Guardian</h5>

					<h5>Senior Digital Designer</h5>
				</li>
				<li>
					<sup>'13 - '14</sup>

					<h5>Paper Partnership LTD</h5>

					<h5>Creative Director</h5>
				</li>
				<li>
					<sup>'11 - '13</sup>

					<h5>Lost Boys International</h5>

					<h5>Associate Designer</h5>
				</li>
			</ul>
		</section>

		<section class="info">
			<p>A senior <strike>digital UX developer</strike> product designer with 8ish years' experience currently working at GoMore in Copenhagen</p>
		</section>

		<section class="contact">
			<a href="">hello@zefs.website</a>

			<a href="">
				<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 250 204">
					<path fill="black" d="M78.6 203.099c94.3 0 145.9-78.2 145.9-145.9 0-2.2 0-4.4-.1-6.6 10-7.3 18.7-16.3 25.6-26.5-9.4 4.1-19.3 6.9-29.5 8.1 10.7-6.4 18.7-16.5 22.5-28.4-10.1 6-21.1 10.2-32.6 12.4-19.4-20.7-51.9-21.7-72.6-2.2-13.3 12.5-19 31.2-14.8 49-41.1-2.1-79.6-21.6-105.6-53.6-13.6 23.4-6.7 53.4 15.9 68.4-8.2-.2-16.1-2.4-23.3-6.4v.6c0 24.4 17.2 45.4 41.2 50.3-7.6 2.1-15.5 2.4-23.2.9 6.7 20.9 26 35.2 47.9 35.6-18.2 14.3-40.6 22-63.7 22-4.1 0-8.2-.3-12.2-.7 23.5 15.1 50.7 23 78.6 23z"></path>
				</svg>
			</a>
		</section>
	</div>
</main>
              
            
!

CSS

              
                :root {
/* Ultimate size control for everything 😈 */
	--space: 12vw;

	/* Typography	 */
	--xxl-voice: calc(var(--space) * 2);
	--xl-voice: calc(var(--space) * 0.88);
	--l-voice: calc(var(--space) / 1.5);
	--m-voice: calc(var(--space) / 2);
	--s-voice: calc(var(--space) / 3);
	--xs-voice: calc(var(--space) / 4);
}

html, body {
	position: relative;
	overflow-x: hidden;
}

body {
	background-color: #fb8760;
	font-family: sans-serif;
	line-height: 1.2;
}

.inner-column {
	width: 90vw;
	margin: var(--space) auto;
}

.name {
	margin-top: var(--space);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

h1 {
	font-size: var(--xl-voice);
}

span {
	display: inline-block;
}

.letter-s {
	transform: rotate(15deg);
}

.letter-t {
	transform: rotate(35deg) translate(50%, 15%);
}

.letter-o {
	transform: rotate(65deg) translate(90%, 20%);
}

.letter-n {
	transform: rotate(90deg) translate(200%, 40%);
}

h6,
sup,
li {
	font-size: var(--s-voice);
}

ol {
	margin-top: var(--m-voice);
}

a {
	font-size: var(--l-voice);
	vertical-align: -35%;
	display: inline-block;
}

sup,
li {
	list-style: decimal;
}

.recent-work {
	margin-left: var(--space);
}

.personal-projects {
	position: relative;
	left: calc(var(--space) * 2.5);
	top: var(--space);
}

.circles {
	fill: #8db9e4;
	position: fixed;
	z-index: -1;
	width: 75vw;
}

.half-circle-1 {
	transform: rotate(225deg) translate(35%, 120%);
	filter: blur(1rem);
}

.half-circle-2 {
	transform: rotate(45deg) translate(-35%, -20%);
}

.more-stuff {
	margin-top: calc(var(--xxl-voice) * 2);
	margin-left: var(--space);
}

.more-stuff li {
	margin-top: 10px;
	list-style-type: none;
}

.more-stuff h5 {
	font-size: calc(var(--s-voice) * 1.25);
	vertical-align: none;
}

.more-stuff sup {
	vertical-align: 30%;
	font-size: calc(var(--xs-voice) * 1.2);
}

.more-stuff h5:nth-of-type(1) {
	display: inline-block;
}

.more-stuff h5:nth-of-type(2)::before {
	content: "·";
	font-size: calc(var(--space) * 2);
	position: absolute;
	left: var(--m-voice);
	transform: translateY(-40%);
}

.more-stuff li + li::before {
	content: "│";
	font-size: calc(var(--space) * 1.4);
	position: absolute;
	left: calc(var(--xs-voice) * 0.3);
	transform: translateY(-44%);
}

.info {
	margin-top: var(--space);
	font-size: var(--m-voice);
}

.contact {
	margin-top: var(--xxl-voice);
	display: flex;
	justify-content: space-evenly;
}

.contact svg {
	position: static;
	width: var(--l-voice);
	margin-top: 5px;
}

@media only screen and (min-width: 530px) {
	h6,
	sup,
	li {
		font-size: calc(var(--xs-voice) / 1.5);
	}

	ol {
		margin-top: var(--s-voice);
	}

	a {
		font-size: var(--s-voice);
		vertical-align: -35%;
	}

	.personal-projects {
		position: absolute;
		left: calc(var(--xxl-voice) * 2.5);
		top: var(--xxl-voice);
	}

	.name {
		margin-top: calc(var(--xxl-voice) * 1.5);
	}

	.letter-s {
		transform: rotate(-15deg);
	}

	.letter-t {
		transform: rotate(-35deg) translate(20%, -5%);
	}

	.letter-o {
		transform: rotate(-65deg) translate(40%, -15%);
	}

	.letter-n {
		transform: rotate(-90deg) translate(140%, -50%);
	}

	.info {
		position: absolute;
		font-size: var(--s-voice);
		transform: translate(50%, -400%);
		width: 60%;
	}

	.more-stuff {
		transform: translateY(30%);
	}

	.more-stuff h5 {
		font-size: var(--xs-voice);
		vertical-align: none;
	}

	.more-stuff sup {
		vertical-align: 50%;
		font-size: calc(var(--xs-voice) * 0.5);
	}

	.more-stuff h5:nth-of-type(2)::before {
		font-size: calc(var(--space) * 1);
		left: -5%;
		transform: translateY(-40%);
	}

	.more-stuff li + li::before {
		font-size: calc(var(--l-voice) * 1.1);
		left: -8.5%;
		transform: translateY(-44%);
	}

	.circles {
	fill: #8db9e4;
	position: fixed;
	z-index: -1;
	width: 55vw;
	}

	.half-circle-1 {
		transform: rotate(225deg) translate(35%, 180%);
		filter: blur(10px);
	}

	.half-circle-2 {
		transform: rotate(45deg) translate(-35%, -80%);
	}
}

              
            
!

JS

              
                
              
            
!
999px

Console