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

              
                <div class="wrapper">
	<h1>Off Canvas Menu with Animated Links</h1>
	<div class="mobile">
		<!-- Checkbox to toggle the menu -->
		<input type="checkbox" id="tm" />
		<!-- The menu -->
		<ul class="sidenav">
			<li><a href="#"><i class="fa fa-check"></i><b>Tasks</b></a></li>
			<li><a href="#"><i class="fa fa-inbox"></i><b>Messages</b></a></li>
			<li><a href="#"><i class="fa fa-pencil"></i><b>New Post</b></a></li>
			<li><a href="#"><i class="fa fa-cog"></i><b>Settings</b></a></li>
			<li><a href="#"><i class="fa fa-star"></i><b>Starred</b></a></li>
			<li><a href="#"><i class="fa fa-power-off"></i><b>Logout</b></a></li>
		</ul>
		<!-- Content area -->
		<section>
			<!-- Label for #tm checkbox -->
			<label for="tm"><span>menu</span> <i class="fa fa-chevron-right"></i></label>
		</section>
	</div>
</div>
<span class="madewith">Made with <i class="fa fa-heart heart"></i> By <a href="http://mugfoundation.com">Matheus Silva</a> <span id="fbm">Happy bithday father!!</span></span>
              
            
!

CSS

              
                $darkPrimaryColor:   #00796B;
$primaryColor:       #009688;
$lightPrimaryColor:  #B2DFDB;
$textPrimaryColor:   #FFFFFF;
$accentColor:        #536DFE;
$primaryTextColor:   #212121;
$secondaryTextColor: #727272;
$dividerColor:       #B6B6B6;
$barColor:           #ffffff;
/*Fontawesome Iconfont*/
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);

@import url('https://fonts.googleapis.com/css?family=Inconsolata');
/*Montserrat, Open Sans*/
@import url( https://fonts.googleapis.com/css?family=Roboto:400,300);

* {margin: 0; padding: 0;}
html, body {
  width: 100%;
  height: 100%;
  background: #333;
}

.wrapper {
  width: 645px;
  height: 500px;
  margin: 35px auto 0 auto;
}
h1 {
	color: white; font: 300 40px Inconsolata;
	width: 300px; padding: 30px; float: left;
}

.mobile {
	float: left;
  position: relative;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
	overflow: hidden;
}
/*Hiding the checkbox*/
#tm {display: none;}
/*Content area*/
.mobile section {
	background: url("https://storage.googleapis.com/content.codealkemy.co/app/images/100037_bryce.jpg");
  background-color: #303F9F;
	width: 285px;
  height: 500px;
	position: relative;
  transition: all 0.25s;
}
.mobile section label {
  outline: none;
	color: rgb(0,128,128);
  font: bold 14px Inconsolata;
  text-align: center;
	border: 2px solid rgb(0,128,128);
  border-radius: 4px;
	display: block;
  padding: 10px 0;
	width: 25%;
  position: absolute;
  left: 20%; top: 100px;
	cursor: pointer;
  text-transform: uppercase;
  transition: all 0.4s ease;
  &:after{
    content: '';
    width: 5px;
    height: 10px;
    background-color: salmon;
  }
}
/*Nav styles*/
.sidenav {
	background: rgb(0,128,128);
  width: 150px;
	position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  padding-top: 100px;
}
.sidenav li {
  list-style-type: none;
  transition: all .5s;
}
.sidenav li:hover {
  background: rgb(255,87,34);
}
.sidenav a { 
  color: rgb(255,255,255);
  text-decoration: none;
}
.sidenav b {
	font: bold 12px/48px Inconsolata;
  display: block;
	opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s;
}
.sidenav i {
	display: block; width: 50px; float: left; 
	font-size: 16px; line-height: 48px; text-align: center;
}
/*Animation controls using checkbox hack*/
/*Animate content area to the right*/
section{
  transform-origin: right;
}
#tm:checked ~ section {
  transform: translateX(150px);
}
/*Animate links from right to left + fade in effect*/
#tm:checked ~ .sidenav b {
  opacity: 1;
  transform: translateX(0);
}
#tm:checked ~ section label {
  width: 30%;
  border-radius: 10%;
  width: 10%;
  span{
    display: none;
  }
}
#tm:checked ~ section label i{
  margin-left: -10%;
  transform: rotate(180deg);
}
/*Adding delay to link animation - in multiples of .08s*/
/*One can use jQuery also for creating the delayed effect. But I will stick to manual CSS.*/
#tm:checked ~ .sidenav li:nth-child(1) b {transition-delay: 0.08s;}
#tm:checked ~ .sidenav li:nth-child(2) b {transition-delay: 0.16s;}
#tm:checked ~ .sidenav li:nth-child(3) b {transition-delay: 0.24s;}
#tm:checked ~ .sidenav li:nth-child(4) b {transition-delay: 0.32s;}
#tm:checked ~ .sidenav li:nth-child(5) b {transition-delay: 0.40s;}
#tm:checked ~ .sidenav li:nth-child(6) b {transition-delay: 0.48s;}

#fbm{
  visibility: hidden;
}

.madewith{
  .heart{
    color: salmon;
  }
  a{
    color: $textPrimaryColor;
  }
  color: $secondaryTextColor;
}
              
            
!

JS

              
                (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-61157304-1', 'auto');
  ga('send', 'pageview');
var d = new Date();
if(d.getMonth() == 4 && d.getDate() == 31) {
   $("#fbm").css("visibility", 'visible');
}
              
            
!
999px

Console