Add the styles to the .atom/styles.less stylesheet in Atom.
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
| <?php | |
| /** | |
| * Яндекс рефераты. Генерирует заголовок и тело реферата. | |
| * @author Andrey Mukha | |
| * @param mixed $category | |
| * Доступные значения: | |
| * - Конкретная категория из массива $arr | |
| * - random (случайная категория из массива $arr) | |
| * - all (выбор сразу всех категорий) |
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
| /* | |
| * @preserve dataset polyfill for IE < 11. See https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/dataset and http://caniuse.com/#search=dataset | |
| * | |
| * @author ShirtlessKirk copyright 2015 | |
| * @license WTFPL (http://www.wtfpl.net/txt/copying) | |
| */ | |
| /*global define: false, module: false */ | |
| /*jslint nomen: true, regexp: true, unparam: true */ | |
| (function datasetModule(global, definition) { // non-exporting module magic dance | |
| 'use strict'; |
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
| .datalist { | |
| @item: item; | |
| &-@{item} { | |
| display: block; | |
| &-term {font-weight: normal} | |
| &-description {font-weight: bold} | |
| } | |
| &-float &-@{item} { | |
| display: inline-block; |
NOTE: the list has moved to https://github.com/sketchplugins/plugin-directory
A list of Sketch plugins hosted at GitHub, in no particular order.
- brandonbeecroft/Lorem-Ipsum-Plugin-for-Sketch This is a plugin for quickly creating Lorem Ipsum text in Sketch
- sebj/Sketch Templates and Plugins for Sketch by Bohemian Coding
- FredericJacobs/crop_Artboard A script to export the Sketch App artboards to the clipboard
- almonk/SketchGit A simple Git client built right into Sketch.
This file has been truncated, but you can view the full file.
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
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
| // #### it's compilable -prefix-free | |
| // © 2011 Artem Sapegin http://sapegin.ru | |
| // + 2011 Grawl http://grawl.ru | |
| // + radial-gradient and other rules with vendor prefixes added by Grawl. | |
| // add your fixes to My table of vendor prefixes there: http://goo.gl/3hPfR | |
| /* mask: | |
| parameter() | |
| -webkit-parameter arguments | |
| -moz-parameter arguments | |
| -ms-parameter arguments |
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(){ | |
| // Take care of the initial page load | |
| $(".tabs-menu li:first, .tabs-content:first").addClass("active"); | |
| $(".tabs-content:not(:first)").hide(); | |
| // Capture clicks on the tabs menu. Set the clicked menu item | |
| // to active. Show the corresponding | |
| // content block (by index) and hide all others. | |
| $(".tabs-menu > li > a").click(function(e){ | |
| var index = $('.tabs-menu li').index($(this).parent('li')); |
