Menu Item | Shortcut |
---|---|
Create Symbol | ⌃ + ⌥ + ⌘+ C |
Detach from Symbol | ⌃ + ⌥ + ⌘ + D |
Return to Instance | ⌃ + ⌥ + ⌘ + W |
View->Canvas->Layout Settings… | ⌃ + ⌘ + L |
Image… | ⌃ + ⌘ + I |
Make Exportable | ⌃ + ⌘ + E |
This file contains 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
javascript: (function() { | |
var bottomBar = document.getElementById('bottom_bar'); | |
var trayToggle = document.getElementsByClassName('hide-tray-toggle'); | |
var screensViewerNav = document.getElementById('screens_viewer_nav'); | |
var poweredBy = document.getElementsByClassName('powered-by'); | |
var toolbar = document.getElementsByClassName('toolbar'); | |
var slideshowNav =document.getElementsByClassName('slideshow-nav'); | |
var hotspots = document.getElementsByClassName('hotspot'); | |
This file contains 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
/*$textcolor: red;*/ | |
p { color: red;} |
This file contains 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
////$textcolor: red; | |
p { color: red;} |
This is the Responsive Grid proposed for BMW USA.
A Pen by Mark Reilly on CodePen.
This guide shows how to set up a PHP and MySQL development environment using OSX's built-in Apache, using Homebrew to install necessary components. With this strategy, you can use different versions of PHP for certain virtual hosts.
VirtualHostX is a convenient way to manage development sites, but not required.
Install homebrew-php
This file contains 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
<div class="wrap"> | |
<div class="full-bleed"> | |
<div class="carousel">Carousel</div> | |
</div> | |
<div class="grid"> | |
<main class="content"><h2>Content</h2></main> | |
<aside class="sidebar"><h2>Sidebar</h2></aside> | |
<div class="one-unit">1 Unit</div> | |
</div> | |
</div> |
This file contains 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> | |
<html> | |
<link rel="stylesheet" type="text/css" href="css/styles.css"> | |
<head> | |
<title>Responsive Grid Tests</title> | |
</head> | |
<body> | |
<div class="wrap"> | |
<div class="full-bleed"> | |
<div class="carousel">Carousel</div> |
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$namespace: "false"; | |
$namespace: false; | |
@mixin namespacer($namespace) { | |
@if $namespace { | |
.#{$namespace} { |
NewerOlder