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
| <!doctype html> | |
| <!--[if lte IE 8]><html lang="ru-RU" class="lteie8"><![endif]--> | |
| <!--[if gt IE 8]><!--><html lang="ru-RU"><!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Superdeal.com.ua</title> | |
| <link rel="stylesheet" media="screen" href="css/screen.css" > | |
| <script src="http://code.jquery.com/jquery-1.8.3.min.js"></script> | |
| <script src="js/jquery.cycle.all.js"></script> | |
| <script src="js/common.js"></script> |
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
| .benefits{ | |
| .benefits__iconact{ | |
| } | |
| .benefits__iconeco{ | |
| } | |
| .benefits__iconpar{ | |
| } |
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
| .n-versus__media-img{ | |
| $height: 90px; | |
| $line-height: 90px; | |
| } | |
| .n-versus__media-img img{ | |
| $line-height: 90px; | |
| $zoom: 1; | |
| $vertical-align: middle; | |
| $margin-top: expression((parentNode.offsetHeight.offsetHeight/2)-(parseInt(this.offsetHeight)/2) <0 ? "0" :(parentNode.offsetHeight/2)-(parseInt(this.offsetHeight)/2) +'px'); | |
| } |
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
| .block | |
| font-size: 20px | |
| display: block |
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
| .block | |
| font-size: 20px |
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
| $('a[href$="ABC"]') | |
| // a[href$="ABC"] | |
| ------------------------------------- | |
| = is exactly equal | |
| != is not equal | |
| ^= is starts with | |
| $= is ends with | |
| *= is contains |
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
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| includes: { | |
| files: { | |
| src: ['dev/*.html'], // Source files | |
| dest: 'fancy', // Destination directory | |
| flatten: true, | |
| cwd: '.', | |
| options: { |
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
| var stickyPanelSettings = { | |
| // Use this to set the top margin of the detached panel. | |
| topPadding: 60, | |
| // This class is applied when the panel detaches. | |
| afterDetachCSSClass: "", | |
| // When set to true the space where the panel was is kept open. | |
| savePanelSpace: true, |
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
| <snippet> | |
| <content><![CDATA[ | |
| <!-- begin $1 --> | |
| <div class="$1"> | |
| $2 | |
| </div> | |
| <!-- end $1 --> | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>di</tabTrigger> |
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
| .row | |
| +clr | |
| @mixin g($n:1) | |
| width: $n*240 | |
| float: left | |
| +box | |
| +respond-to(mobile) | |
| width: $n*20% | |
| .block |