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.
<div class="wrapper">
<div class="hulk">
<div class="head"><div class="mouth"></div></div>
<div class="right-arm"></div>
<div class="fist"></div>
<div class="left-arm"></div>
<div class="body"></div>
<div class="right-leg"></div>
<div class="left-leg"></div>
</div>
<div class="captain">
<div class="head">A</div>
<div class="body"><div class="star"></div></div>
<div class="arms"></div>
<div class="shield"><div class="star"></div></div>
<div class="hands"></div>
<div class="legs"></div>
<div class="boots"></div>
</div>
<div class="ironman">
<div class="helmet"><div class="mask"></div></div>
<div class="right-arm"></div>
<div class="left-arm"></div>
<div class="body"><div class="power"></div></div>
<div class="right-leg"></div>
<div class="left-leg"></div>
</div>
<div class="thor">
<div class="helmet"></div>
<div class="head">
<div class="beard"></div>
</div>
<div class="cap"></div>
<div class="arm-right"></div>
<div class="arm-left"></div>
<div class="body"></div>
<div class="hammer"></div>
<div class="legs"></div>
<div class="feet"></div>
</div>
</div>
</div>
<div class="footer--love">
<p>With <span class="love-heart"></span>by <a href="https://twitter.com/mariosmaselli" target="_blank">@mariosmaselli</a></p>
</div>
@import "compass/css3";
@import url(https://fonts.googleapis.com/css?family=Lato:300);
$verdeHulk: #bdbd00;
$hulkPants:#581bbb;
$body:#43abf0;
$bodyShadow:#29708f;
$white:#fff;
$whiteShadow:#ffffcb;
$red:#b63700;
$skin: #fdb0a4;
$shield:#c53905;
$ironbody:#ab3300;
$irondetail:#deb800;
$ironShadow:#c98700;
$thorbody:#004278;
$thorshadow:#00272b;
$thorskin:#ffcee7;
$thorskinShadow:#ffc688;
$hammer:#382727;
$time:7s;
@mixin keyframes($name) {
@-webkit-keyframes #{$name} {
@content;
}
@-moz-keyframes #{$name} {
@content;
}
@-ms-keyframes #{$name} {
@content;
}
@keyframes #{$name} {
@content;
}
}
@mixin star($top, $left) {
display: block;
color: $white;
width: 0px;
height: 0px;
border-right: 10px solid transparent;
border-bottom: 7px solid $white;
border-left: 10px solid transparent;
margin-top: $top;
margin-left: $left;
position: absolute;
transform: rotate(35deg);
&::before {
border-bottom: 8px solid $white;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
position: relative;
height: 0;
width: 0;
top: -4px;
left: -6px;
display: block;
content: '';
transform: rotate(-35deg);
}
&::after {
position: absolute;
display: block;
color: red;
top: 0px;
left: -10px;
width: 0px;
height: 0px;
border-right: 10px solid transparent;
border-bottom: 7px solid $white;
border-left: 10px solid transparent;
transform: rotate(-70deg);
content: '';
}
}
*, *:before, *:after {
box-sizing:border-box;
}
body{
font-size:16px;
position:absolute;
width:100%;
height:100%;
font-family: 'Lato', sans-serif;
}
.wrapper {
position:relative;
width:550px;
height:365px;
margin:15% auto;
animation: shake $time infinite;
}
//HULK
.hulk{
position:absolute;
margin-left:200px;
bottom:0px;
margin-bottom:300px;
.head {
width: 4.713em;
position:absolute;
margin-top:-2.75em;
margin-left:3.563em;
border-bottom: 3.75em solid $verdeHulk;
border-left: 0.938em solid transparent;
border-right: 0.938em solid transparent;
height: 0;
z-index:10;
&::after {
content:"";
width:2.25em;
height:0.375em;
position:absolute;
margin-top:0.538em;
margin-left:0.313em;
background:#034600;
}
&::before{
content:"";
width:3.25em;
height:0.75em;
position:absolute;
margin-top:-0.75em;
margin-left:-0.25em;
background:#034600;
border-top-left-radius: 1.875em;
border-top-right-radius:1.875em;
}
}
.mouth {
width:31px;
height:0px;
position:absolute;
margin-top:25px;
margin-left:8px;
overflow:hidden;
background-image:
linear-gradient(
to bottom,
#fff,
#fff 25%,
#4b0a00 25%,
#4b0a00 70%,
#fff 75%,
#fff 100%
);
border-top-left-radius: 0.5em;
border-top-right-radius: 0.5em;
animation: mouthOpen $time infinite;
&::before{
content:"";
width: 10px;
height:7px;
position:absolute;
background:#902e2b;
margin-top:9px;
margin-left:11px;
border-top-left-radius:0.5em;
border-top-right-radius: 0.5em;
}
}
.right-arm{
width:13.313em;
height:13.75em;
margin-top:1em;
margin-left:2em;
border-radius:50%;
background: #b5b500;
position:absolute;
clip: rect(-1em, 11.2em, 12.55em, 7.625em);
animation: hulkRightarm $time infinite;
&::after{
content:"";
width:12.063em;
height:9.625em;
border-radius:50%;
background:white;
position:absolute;
transform: translateY(1.25em);
margin-left:-3.313em;
}
}
.left-arm
{
width:13.313em;
height:13.75em;
margin-top:1em;
margin-left:-4.3em;
border-radius:50%;
background: #949400;
position:absolute;
clip: rect(-0.188em, 6.1em, 13.875em, 2.3em);
animation: hulkLeftarm $time infinite;
&::after{
content:"";
width: 12.063em;
height: 9.625em;
border-radius: 50%;
background: white;
position: absolute;
transform: translateY(1.25em);
margin-left: 4.563em;
}
}
.fist{
width: 4.375em;
height: 4.375em;
position: absolute;
border-radius: 50%;
margin-top: 11.7em;
margin-left: -2.1em;
background:#949400;
box-shadow: 11.1em 0 0 #b5b500;
z-index: 10;
animation: hulkHands $time infinite;
}
.body {
width: 12.5em;
height: 12.5em;
background: $verdeHulk;
border-radius: 50%;
position: absolute;
box-shadow: inset
1.125em 0 0 darken($verdeHulk, 5%),
-0.938em 0 0 darken($verdeHulk, 10%);
z-index:10;
&::before{
content:"";
width: 0.75em;
height: 0.75em;
border-radius: 50%;
position: absolute;
margin-top: 3.125em;
margin-left: 1.375em;
background: darken($verdeHulk,10%);
box-shadow: 7.625em 0 0 darken($verdeHulk, 10%);
}
&::after{
content:"";
position:absolute;
width:0.313em;
height:0.313em;
border-radius:50%;
margin-top:10em;
margin-left:5.625em;
background:darken($verdeHulk,10%);
box-shadow: 0 2.625em 0 #9ac7f1
}
}
.right-leg {
width:0.625em;
height:6.438em;
position:absolute;
margin-left:4.25em;
margin-top:12.3em;
background-image:
linear-gradient(
to bottom,
darken($hulkPants,20%),
darken($hulkPants,20%) 50%,
darken($verdeHulk,20%) 50%,
darken($verdeHulk,20%) 100%
);
animation:hulkPants2 $time infinite ;
&::after{
content:"";
width:0.938em;
height:0.875em;
position:absolute;
margin-left:0.625em;
background:darken($hulkPants, 10%);
}
&::before {
content:"";
width:1.125em;
height:0.188em;
position:absolute;
margin-top:6.25em;
margin-left:-1.125em;
background:darken($verdeHulk,20%);
}
}
.left-leg{
width:0.625em;
height:6.438em;
position:absolute;
margin-left:6.688em;
margin-top:12.3em;
background-image:
linear-gradient(
to bottom,
$hulkPants,
$hulkPants 50%,
$verdeHulk 50%,
$verdeHulk 100%
);
animation:hulkPants $time infinite ;
&::after{
content:"";
width:0.938em;
height:0.875em;
position:absolute;
background:$hulkPants;
margin-left:-0.938em;
}
&::before {
content:"";
width:1.125em;
height:0.188em;
position:absolute;
margin-top:6.25em;
margin-left:0.625em;
background:$verdeHulk;
}
}
}
//CAPTAIN AMERICA
.captain {
position: absolute;
z-index: 1000;
margin-left: 355px;
bottom: 0px;
margin-bottom: 146px;
.head {
width: 21px;
height: 36px;
background: $body;
position: absolute;
margin-top: -36px;
margin-left: 44px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
color: $white;
text-align: center;
font-size: 0.6em;
font-weight: bold;
&::before{
content:"";
width: 21px;
height: 17px;
background: $skin;
position: absolute;
margin-left: -7px;
margin-top: 19px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
box-shadow: inset 8px 0 0 0 darken($skin, 5%);
}
&::after {
content: "";
width: 4px;
height: 4px;
position: absolute;
background: $skin;
border-radius: 50%;
margin-top: 16px;
margin-left: -5px;
}
}
.body
{
height: 53px;
width: 107px;
border-radius: 0 0 110px 110px;
background: $body;
box-shadow: inset 8px 0px 0 0 $bodyShadow, inset 17px 0px 0 0 darken($body,3%);
z-index: 5;
&::before {
content:"";
width: 133px;
height: 30px;
margin-left: -14px;
position: absolute;
border-radius: 30px;
background-image: linear-gradient(to right,$bodyShadow, $body);
z-index:-1;
}
&::after{
content:'';
width: 30px;
height: 10px;
position: absolute;
margin-top: 49px;
margin-left: 38px;
background-image: linear-gradient(to right, darken($red,5%), darken($red,5%) 30%, $whiteShadow 30%, $whiteShadow 70%, $red 70%, $red 100%);
}
.star{
@include star(18px,43px)
}
}
.arms {
width: 10px;
height: 60px;
position: absolute;
background: $whiteShadow;
margin-top: -30px;
margin-left: 10px;
box-shadow: 75px 0 0 0 $whiteShadow;
z-index: -1;
&::before{
content:"";
width: 28px;
height: 50px;
position: absolute;
background: $whiteShadow;
border-radius: 30% 50%;
margin-left: -18px;
margin-top: -3px;
box-shadow: 95px 0 0 0 $whiteShadow;
}
}
.shield {
width: 40px;
height: 40px;
background: $body;
border-radius: 50%;
position: absolute;
z-index: 100;
margin-left: 75px;
margin-top: 30px;
box-shadow: 0 0 0 8px $whiteShadow, 0 0 0 18px $shield;
transform:rotate(-30deg);
.star{
@include star(15px,10px);
}
}
.hands {
width: 15px;
height: 30px;
position: absolute;
margin-top: 29px;
margin-left: 8px;
background: darken($red, 3%);
transform: skew(10deg);
&::before {
content:"";
width: 10px;
height: 30px;
background: darken($verdeHulk, 2%);
position: absolute;
margin-left: 12px;
transform: skew(-10deg);
}
&::after {
content:"";
width: 13px;
height: 13px;
border-radius: 50%;
position: absolute;
margin-top: 21px;
margin-left: -1px;
background: darken($red, 3%);
}
}
.legs {
width: 8px;
height: 100px;
background: $bodyShadow;
position:absolute;
margin-left: 38px;
margin-top: 5px;
box-shadow: 22px 0 0 0 $body;
&::before {
content:"";
width: 30px;
height: 5px;
background: darken($red,20%);
position:absolute;
}
&::after {
content: "";
width: 14px;
height: 9px;
background-image: linear-gradient(to right, $bodyShadow, $body);
position: absolute;
margin-left: 8px;
margin-top: 5px;
}
}
.boots {
width: 10px;
height: 41px;
position: absolute;
margin-top: 105px;
margin-left: 37px;
background: darken($red, 10%);
box-shadow: 22px 0 0 0 $red;
&::after {
content:"";
width: 25px;
height: 2px;
position: absolute;
background: darken($red, 10%);
margin-top: 39px;
margin-left: -15px;
box-shadow: 40px 0 0 0 $red;
}
&::before{
content: "";
width: 18px;
height: 12px;
background: darken($red, 10%);
position: absolute;
margin-left: -4px;
box-shadow: 22px 0 0 0 $red;
}
}
}
//IRONMAN
.ironman {
position: absolute;
z-index: 900;
margin-left: 0;
margin-bottom:135px;
bottom:0;
.helmet {
width:22px;
height:34px;
background:$ironbody;
position: absolute;
margin-top: -33px;
margin-left: 44px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
overflow:hidden;
&::before {
content:"";
width:7px;
height:2px;
background:white;
position:absolute;
margin-top:10px;
margin-left:0px;
z-index:3;
box-shadow:15px 0 0 0 white;
}
}
.mask{
width:10px;
height:18px;
background:$irondetail;
position:relative;
margin-top:7px;
margin-left:6px;
&::before {
content:"";
width:13px;
height:18px;
background:$irondetail;
position:absolute;
transform:rotate(60deg);
margin-top:-3px;
margin-left:4px;
}
&::after {
content:"";
width:13px;
height:18px;
background:$irondetail;
position:absolute;
transform:rotate(-60deg);
margin-top:-3px;
margin-left:-5px;
}
}
.body {
height: 53px;
width: 107px;
border-radius: 0 0 110px 110px;
background: $ironbody;
box-shadow: inset 10px 0px 0 0 darken($ironbody,5%), inset 20px 0px 0 0 darken($ironbody,3%);
padding-top:11px;
z-index:50;
&::before {
content:"";
width:32px;
height:32px;
background: darken( $ironbody, 5%);
position:absolute;
border-radius:50%;
margin-left:-15px;
margin-top:-18px;
box-shadow:105px 0 0 0 $ironbody;
z-index:50;
}
&::after {
content:"";
width:40px;
height:30px;
position:absolute;
margin-top:20px;
margin-left:35px;
background-image:
linear-gradient(
to right,
darken($ironbody, 5%),
darken($ironbody, 5%) 15%,
darken($ironbody, 3%) 15%,
darken($ironbody, 3%) 29%,
$ironbody 20%,
$ironbody 20%
);
}
}
.power {
width:17px;
height:17px;
background:white;
border-radius:50%;
margin:0 auto;
box-shadow:0 0 0 5px $irondetail;
}
.left-leg {
width:10px;
height:90px;
background: $ironShadow;
position:absolute;
margin-left:35px;
margin-top:12px;
border-top-right-radius:10px;
&::before {
content:"";
width:25px;
height:65px;
background: darken($ironbody,5%);
position:absolute;
border-top-right-radius:20px;
margin-top:60px;
margin-left:-10px;
}
}
.right-leg {
width:10px;
height:90px;
background: $irondetail;
position:absolute;
margin-left:65px;
margin-top:12px;
border-top-left-radius:10px;
&::before {
content:"";
width:25px;
height:65px;
background: $ironbody;
position:absolute;
border-top-left-radius:20px;
margin-top:60px;
margin-left:-5px;
}
}
.left-arm{
width:10px;
height:45px;
background:$ironShadow;
position:absolute;
margin-left:-6px;
margin-top:18px;
border-bottom-left-radius:20px;
&::before {
content:"";
height: 60px;
width: 31px;
border-radius: 60px 0px 0px 60px;
background: darken($ironbody,5%);
position:absolute;
margin-top:30px;
margin-left:-21px;
z-index:-1;
}
&::after {
content:"";
width:10px;
height:10px;
border-radius:50%;
background: darken($ironbody,5%);
position:absolute;
margin-top:80px;
margin-left:5px;
}
}
.right-arm{
width:10px;
height:45px;
background:$ironShadow;
position:absolute;
margin-left:105px;
margin-top:18px;
border-bottom-right-radius:20px;
&::before {
content:"";
height: 60px;
width: 31px;
border-radius: 0px 60px 60px 0px;
background: $ironbody;
position:absolute;
margin-top:30px;
margin-left:0px;
z-index:-1;
}
&::after {
content:"";
width:10px;
height:10px;
border-radius:50%;
background:$ironbody;
position:absolute;
margin-top:80px;
margin-left:-5px;
}
}
}
//THOR
.thor{
position:absolute;
margin-left:118px;
z-index:1000;
margin-bottom:220px;
bottom:0;
.helmet{
width: 0;
height: 0;
position:absolute;
border-left: 18px solid transparent;
border-right: 18px solid transparent;
border-bottom: 40px solid #d7a900;
margin-top:-40px;
margin-left:42px;
box-shadow:0 -18px 0 -16px #66999a;
&::before {
content:"";
width:13px;
height:25px;
position:absolute;
background:#66999a;
margin-left:-19px;
margin-top:-12px;
border-bottom-left-radius:10px;
border-top-right-radius:15px;
box-shadow:inset -3px 0px 0 transparent;
}
&::after {
content:"";
width:13px;
height:25px;
position:absolute;
background:#89b9ef;
margin-left:10px;
margin-top:-12px;
border-bottom-right-radius:10px;
border-top-left-radius:15px;
box-shadow:inset -3px 0px 0 transparent;
}
}
.head {
width:21px;
height:40px;
background-image:linear-gradient(#72a9d5, #72a9d5 32%,#ffdeef 10%);
position:absolute;
margin-top:-40px;
margin-left:50px;
border-radius:30px 30px 0 0;
overflow:hidden;
&::after {
content:"";
width:10px;
height:17px;
background:#d7a900;
position:absolute;
border-radius:10px 10px 0px 0px;
margin-top:20px;
margin-left:5px;
}
.beard{
width:21px;
height:5px;
background:#d7a900;
position:absolute;
margin-top:12px;
&::before {
content:"";
width:11px;
height:5px;
background:#d7a900;
position:absolute;
margin-left:12px;
margin-top:17px;
transform:rotate(-40deg);
}
&::after {
content:"";
width:11px;
height:5px;
background:#d7a900;
position:absolute;
margin-left:-3px;
margin-top:17px;
transform:rotate(40deg);
}
}
}
.body {
border-top: 65px solid $thorbody;
border-left: 40px solid transparent;
border-right:40px solid transparent;
height: 0;
width: 120px;
position:absolute;
&::before {
content:"";
width:40px;
height:5px;
position:absolute;
background-image: linear-gradient(to right, #c98700, #d7a900);
}
&::after {
content:"";
width:30px;
height:30px;
border-radius:50%;
position:absolute;
background:#94bdef;
margin-top:-60px;
margin-left:-17px;
box-shadow:45px 0 0 0 #94bdef,
10px 29px 0 -5px #94bdef,
35px 29px 0 -5px #94bdef
;
}
}
.arm-right {
width:40px;
height:40px;
background:$thorskin;
border-radius:50%;
position:absolute;
margin-left:100px;
box-shadow:-5px 0 0 $thorskin, -10px 0 0 $thorskin,-15px 0 0 $thorskin, -20px 0 0 $thorskin, -20px 90px 0 -15px $thorskin, -20px 95px 0 -15px $thorskin, -20px 100px 0 -15px $thorskin
;
&::before {
content:"";
width:40px;
height:100px;
position:absolute;
background:$thorskin;
margin-left:-5px;
margin-top:10px;
border-bottom-right-radius:30px;
}
&::after {
content:"";
width:10px;
height:5px;
background:#290000;
position:absolute;
margin-top:113px;
margin-left:-5px;
}
}
.arm-left {
width:40px;
height:40px;
background:$thorskinShadow;
border-radius:50%;
position:absolute;
margin-left:0px;
box-shadow:-5px 0 0 $thorskinShadow, -10px 0 0 $thorskinShadow,-15px 0 0 $thorskinShadow, -20px 0 0 $thorskinShadow, 0 90px 0 -15px $thorskinShadow,0 95px 0 -15px $thorskinShadow, 0 100px 0 -15px $thorskinShadow;
&::before {
content:"";
width:40px;
height:100px;
position:absolute;
background:$thorskinShadow;
margin-left:-15px;
margin-top:10px;
border-bottom-left-radius:30px;
}
&::after {
content:"";
width:10px;
height:5px;
background:#290000;
position:absolute;
margin-top:113px;
margin-left:15px;
}
}
.legs{
width:13px;
height:67px;
background:darken($thorbody,7%);
position:absolute;
margin-top:70px;
left:40px;
border-radius:0 0 30px 30px;
box-shadow:27px 0 0 0 $thorbody;
&::before {
content:"";
width:10px;
height:75px;
position:absolute;
background:darken($thorbody,7%);
margin-left:5px;
box-shadow: 0 75px 0 0 #b75600, 21px 0 0 0 $thorbody, 21px 75px 0 0 #ce9700;
}
&::after {
content:"";
width:11px;
height:10px;
background-image: linear-gradient(darken($thorbody,7%), $thorbody);
position:absolute;
margin-left:15px;
}
}
.cap {
width:120px;
height:200px;
position:absolute;
background:#a72300;
z-index:0;
box-shadow:inset 10px 0 0 #721200, inset 20px 0 0 #7b1e00;
}
.hammer {
width:42px;
height:27px;
position:absolute;
background: $hammer; /* fallback */
background:
linear-gradient(135deg, transparent 5px, $hammer 0) top left,
linear-gradient(225deg, transparent 5px, $hammer 0) top right,
linear-gradient(315deg, transparent 5px, $hammer 0) bottom right,
linear-gradient(45deg, transparent 5px, $hammer 0) bottom left;
background-size: 52% 52%;
background-repeat: no-repeat;
margin-top:148px;
margin-left:1px;
&::before{
content:"";
width:6px;
height:25px;
background:darken($hammer,5%);
position:absolute;
margin-top:-23px;
margin-left:18px;
}
&::after {
content:"";
width:6px;
height:3px;
position:absolute;
background:darken($hammer,5%);
margin-top:25px;
margin-left:18px;
}
}
.feet {
width:25px;
height:2px;
position:absolute;
background:#b75600;
margin-top:220px;
margin-left:30px;
box-shadow:36px 0 0 #ce9700;
&::after {
content:"";
height:10px;
width:20px;
position:absolute;
border-radius: 90px 90px 0 0;
background:#ce9700;
margin-top:-85px;
margin-left:8px;
box-shadow:24px 0 0 #b75600;
}
}
}
.awwwards {
position: absolute;
top: 30px;
left: 70px;
}
.awwwards a {
color: #ab3300;
text-decoration: none;
border-bottom: 1px solid #ab3300;
}
/*Hand Animation*/
@include keyframes(shake) {
78%, 80%,82%,84%,86%,88%,90%,92% {
top:3px;
left:2px;
}
79%,81%,83%,85%,87%,89%,91% {
top:0px;
left:-2px;
}
}
@include keyframes(mouthOpen) {
77%{height:0px;}
80%{
height:22px;
}
93%{
height:22px;
opacity:1;
}
95%{
height:0px;
opacity:0;
}
}
@include keyframes(hulkHands){
6%{
box-shadow: 11.1em 0 0 #b5b500;
}
77%{
box-shadow: 11.1em 0 0 #b5b500;
margin-left:-2.1em;
@include translate (0,0)
}
80%{
margin-left:0.5em;
box-shadow:8.5em 0 0 #b5b500;
@include translate (-0.9em,-19.9em)
}
93%{
margin-left:0.5em;
box-shadow:8.5em 0 0 #b5b500;
@include translate (-0.9em,-19.9em)
}
94%{
box-shadow: 11.1em 0 0 #b5b500;
margin-left:-2.1em;
@include translate (0em,-0em)
}
}
@include keyframes(hulkRightarm){
77%{
margin-top:1em;
margin-left:2em;
clip: rect(-1em, 11.2em, 12.55em, 7.625em);
}
80%{
margin-top:-8.125em;
margin-left:2.5em;
clip: rect(0.563em, 13.363em, 13.75em, 6.625em);
}
93%{
margin-top:-8.125em;
margin-left:2.5em;
clip: rect(0.563em, 13.363em, 13.75em, 6.625em);
}
95%{
margin-top:1em;
margin-left:2em;
clip: rect(-1em, 11.2em, 12.55em, 7.625em);
}
}
@include keyframes(hulkLeftarm){
77%{
margin-top:1em;
margin-left:-4.3em;
clip: rect(-0.188em, 6.1em, 13.875em, 2.3em);
}
80%{
margin-top:-8.125em;
margin-left:-4.375em;
clip: rect(-0.188em, 6.563em, 13.875em, 0em);
}
93%{
margin-top:-8.125em;
margin-left:-4.375em;
clip: rect(-0.188em, 6.563em, 13.875em, 0em);
}
95%{
margin-top:1em;
margin-left:-4.3em;
clip: rect(-0.188em, 6.1em, 13.875em, 2.3em);
}
}
.footer--love {
position:absolute;
right: 1.5rem;
bottom: 2.5rem;
font-size: 0.85rem;
font-family: 'Lato', sans-serif;
z-index:9999;
.love-heart {
background:url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/42764/heart-smil.svg);
width:16px;
height:16px;
display:inline-block;
margin:0 5px 0 2px;
vertical-align:top;
}
a {color:#43abf0;}
}
Also see: Tab Triggers