Skip to content

Instantly share code, notes, and snippets.

@Yakprod
Yakprod / index.html
Created June 21, 2017 11:02
page wrapper
<div id="my-page">
<div id="my-header">
</div>
<div id="my-content">
@Yakprod
Yakprod / index.html
Created June 6, 2017 14:23
mmenu wrap
<div id="my-page">
<div id="my-header"></div>
<div id="my-content"></div>
<div id="my-footer"></div>
</div>
@Yakprod
Yakprod / script.js
Created May 28, 2017 18:21
ease tabs
/*tabs*/
$(".tab-item").not(":first").hide();
$(".tab-wrapper .tab").click(function () {
$(".tab-wrapper .tab").removeClass("active").eq($(this).index()).addClass("active");
$(".tab-item").hide().eq($(this).index()).fadeIn()
}).eq(0).addClass("active");
@Yakprod
Yakprod / scroll-top.html
Created May 24, 2017 21:07 — forked from agragregra/scroll-top.html
Scroll Top Button
<div class="top" title="Наверх"><i class="fa fa-angle-double-up"></i></div>
.top
position: fixed
bottom: 25px
background-color: #E0E0E0
border-radius: 10em
color: #666
font-size: 26px
width: 50px
@Yakprod
Yakprod / button.sass
Created May 12, 2017 12:57 — forked from agragregra/button.sass
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600