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
| .mapjs-node, | |
| .mapjs-node.droppable{ | |
| border: none !important; | |
| border-radius: 3px; | |
| padding: 0 !important; | |
| box-shadow: 0 0 0 1px white !important; | |
| } | |
| .mapjs-node.dragging{ | |
| opacity: 0.9 !important; | |
| } |
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
| path= | |
| dest:'./' | |
| templates:'templates/' | |
| styles:'styles/' | |
| module.exports=(grunt) -> | |
| grunt.initConfig | |
| pkg:grunt.file.readJSON 'package.json' | |
| sass: | |
| compile: | |
| 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
| $format= | |
| $GLOBALS['wp_rewrite']->using_index_permalinks() | |
| && | |
| !strpos($pagenum_link,'index.php') | |
| ? | |
| 'index.php/' | |
| : | |
| ''; |
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
| //Settings | |
| $total-width: 940px | |
| $total-columns: 12 | |
| $column: 60px | |
| $gutter: 20px | |
| //Mixins | |
| =column($width) | |
| width: ($column*$width)+($gutter*($width - 1)) | |
| margin-right: $gutter | |
| float: left |
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
| $(document).ready(function(){ | |
| $(".tabs-menu li:first, .tabs-content:first").addClass("active"); | |
| $(".tabs-content:not(:first)").hide(); | |
| $(".tabs-menu > li > a").click(function(e){ | |
| var index = $('.tabs-menu li').index($(this).parent('li')); | |
| $('.tabs-menu li.active, .tabs-content.active').removeClass('active'); | |
| $(this).parent('li').addClass('active'); | |
| $('.tabs-content').hide(); | |
| $('.tabs-content').eq(index).show(); | |
| return false; |
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://regexpal.com/?flags=gm®ex=%5E(%3F!.media)((.*)%7C(%5B%20%5Cf%5Ct%5Cv%5D*))(-(moz%7Cms%7Cwebkit%7Ckhtml%7Co)-%7Cfilter%7C%5C*)(%5B%5E-tap-%5D%7C%5B%5Etouch%5D)(.*)%24&input=.select2-container%20%7B%0A%20%20%20%20zoom%3A%201%3B%0A%20%20%20%20*display%3A%20inline%3B%0A%20%20%20%20vertical-align%3A%20middle%3B%0A%7D%0A.select2-results%20.select2-result-label%20%7B%0A%20%20%20%20min-height%3A%201em%3B%0A%20%20%20%20-webkit-touch-callout%3A%20none%3B%0A%20%20%20%20%20%20-webkit-user-select%3A%20none%3B%0A%20%20%20%20%20%20%20-khtml-user-select%3A%20none%3B%0A%20%20%20%20%20%20%20%20%20-moz-user-select%3A%20none%3B%0A%20%20%20%20%20%20%20%20%20%20-ms-user-select%3A%20none%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20user-select%3A%20none%3B%0A%7D%0A.select2-container-multi%20.select2-choices%20%7B%0A%20%20%20%20overflow%3A%20hidden%3B%0A%20%20%20%20background-color%3A%20%23fff%3B%0A%20%20%20%20background-image%3A%20-webkit-gradient(linear%2C%200%25%200%25%2C%200%25%20100%25%2C%20color-stop(1%25%2C%20%23e |
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
| // Animation Properties | |
| @keyframes | |
| animation | |
| animation-name | |
| animation-duration | |
| animation-timing-function | |
| animation-delay | |
| animation-iteration-count | |
| animation-direction | |
| animation-play-state |
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
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{QUERY_STRING} !ajax | |
| RewriteRule ^(.*)$ /#$1 [R=301,L,NE] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d |
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
| /** | |
| * Loading spinner */ | |
| /* Centering */ | |
| html, body { | |
| height: 100%; | |
| } | |
| body { | |
| display: box; | |
| box-align: center; | |
| box-pack: center; |
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
| /** | |
| * HackStore Download button | |
| */ | |
| a[href^="http://"] { | |
| display: inline-block; | |
| position: relative; | |
| height: 7px; | |
| width: 54px; | |
| font-family: sans-serif; |