This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Источник http://codepen.io/shivasurya/pen/FatiB --> | |
<!-- //-- В файл HTML --// --> | |
<div><span class="count">200</span></div> | |
<div><span class="count">1000</span></div> | |
<div><span class="count">853</span></div> | |
<div><span class="count">154</span></div> | |
<div><span class="count">10</span></div> | |
<div><span class="count">87</span></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Источник http://codepen.io/scottkellum/pen/bHEcA | |
//-- В ФАЙЛ vars.sass --// | |
// parallax variables | |
$parallax-perspective: 1 !default | |
$parallax-element: "body" !default | |
$parallax-ios: true !default | |
//-end parallax variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-- В ФАЙЛ _vars.sass --// | |
//font-size | |
$df: 1em; | |
//font-media | |
$dfm: 3.3vw; | |
// Media enquiries | |
$large: 1199px; | |
$medium: 991px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-- В ФАЙЛ _vars.sass --// | |
//font-size | |
$df: 1em | |
//font-media | |
$dfm: 3.3vw | |
// Media enquiries | |
$large: 1199px | |
$medium: 991px |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--HTML--// | |
<div class="worko-tabs"> | |
<input class="state" type="radio" title="tab-one" name="tabs-state" id="tab-one" checked /> | |
<input class="state" type="radio" title="tab-two" name="tabs-state" id="tab-two" /> | |
<input class="state" type="radio" title="tab-three" name="tabs-state" id="tab-three" /> | |
<input class="state" type="radio" title="tab-four" name="tabs-state" id="tab-four" /> | |
<div class="tabs flex-tabs"> | |
<label for="tab-one" id="tab-one-label" class="tab">Газ</label> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--HTML--// | |
<label class="file" title=""><input type="file" onchange="this.parentNode.setAttribute('title', this.value.replace(/^.*[\\/]/, ''))" /></label> | |
//--end HTML--// | |
//--CSS--// | |
label.file input { | |
position: absolute; | |
width: 0; | |
overflow: hidden; | |
opacity: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<-- HTML --> | |
<div class="hamburger-menu"> | |
<div class="bar"></div> | |
</div> | |
<-- END HTML --> | |
<-- SCSS --> | |
//Меню гамбургер -------// | |
$bar-width: 50px; | |
$bar-height: 5px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--HTMl--// | |
<div class="one_col file-upload"> | |
<div id="file"> | |
<ul class="image-list"> | |
<li> | |
<i class="fa fa-plus-circle"></i> | |
</li> | |
</ul> | |
</div> | |
<input type="file" class="file" name="images" id="images"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//--HTML--// | |
<nav class="bottom_bar"> | |
<ul> | |
<li><p>+7 (495) 979-4994</p></li> | |
<li><p>Московская область Ногинский район п. Новые дома дом 1Б</p></li> | |
<li><a href="mailto:[email protected]" class="gray">E-mail: [email protected]</a></li> | |
<li><a href="#" title="@"><img src="img/metr_2.png" alt="ment"></a></li> | |
<li><a href="#" title="@"><img src="img/ment_1.png" alt="ment"></a></li> | |
</ul> | |
</nav> |