Skip to content

Instantly share code, notes, and snippets.

View nicollecastrog's full-sized avatar

Nico Castro nicollecastrog

View GitHub Profile
@nicollecastrog
nicollecastrog / index.html
Created September 6, 2014 14:00
A Pen by Nico Castro.
<body>
<p>
The text in this paragraph DOES wrap: this is the DEFAULT behaviour. This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
<p class="no-wrap">
@nicollecastrog
nicollecastrog / using_mixins-input.scss
Last active August 29, 2015 14:01
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin button($font-size, $bg) {
font-size: $font-size;
background: $bg;
}
@nicollecastrog
nicollecastrog / media_queries_input.scss
Last active August 29, 2015 14:01
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$media-tablet: 'screen and (max-width:800px)';
@media #{$media-tablet} {
p {
color: blue;