Skip to content

Instantly share code, notes, and snippets.

View finteractive's full-sized avatar

Aidan Foster finteractive

View GitHub Profile
@finteractive
finteractive / synthetic.conf
Created June 10, 2020 15:44
Mac OSX catelina - Mapping the _work folder to /Users/Shared/_work
# Create Symbolic Link from /Machintosh HD (or whatevery your system drive is) to /Users/Shared/_work
# See https://derflounder.wordpress.com/2020/01/18/creating-root-level-directories-and-symbolic-links-on-macos-catalina/
# NOTE: Must Use a Tab to "space" the first and second property
_work Users/Shared/_work
@finteractive
finteractive / SassMeister-input.scss
Last active August 3, 2017 16:38
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// Toolkit (v2.9.0)
// ----
@import 'toolkit';
$base-line-height: 24px;
$base-font-size: 16px;
/// Converts units from pixels to EMs
@finteractive
finteractive / SassMeister-input.scss
Last active July 22, 2016 13:05
Responsive Typography with Maps, and at-import/breakpoint
// ----
// libsass (v3.2.5)
// ----
@import "breakpoint";
$base-font-size: 16px;
$base-line-height: 22px;
// Strips units (From Foundation Zurb Base File)
@finteractive
finteractive / SassMeister-input.scss
Created January 14, 2016 02:25
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@import "singularitygs";
// settings.scss
@include add-grid(6);
@include add-gutter-style('split');
@include add-gutter(1em);
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
@finteractive
finteractive / SassMeister-input-HTML.html
Created January 20, 2014 03:04
5. Compass & Custom Mixins
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
@finteractive
finteractive / SassMeister-input-HTML.html
Created January 20, 2014 02:03
2. Selector nesting and magic "&" selector, native SASS function
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>
@finteractive
finteractive / SassMeister-input-HTML.html
Last active January 3, 2016 20:18
Example 1 - Plain old CSS before doing any SASS, Adding Variables
<html>
<body>
<div class="message-box">Hey Something happened</div>
<div class="message-box--success">Yay something worked!</div>
<div class="message-box--error">Warning Something is bad here <a href="#">Details</a></div>
<footer>&copy; 2014 - Someone <a href="#">legal link</a></a> </footer>
</body>
</html>