Skip to content

Instantly share code, notes, and snippets.

View Panya's full-sized avatar
🐗
boaring

Panya

🐗
boaring
View GitHub Profile
@Panya
Panya / SassMeister-input.scss
Created November 21, 2014 17:12
Generated by SassMeister.com.
// ----
// libsass (v3.0.1)
// ----
@each $name, $code in (user: "\e600", group: "\e601") {
%icon-#{$name} {
content: $code;
}
}
@Panya
Panya / SassMeister-input.scss
Created February 3, 2015 23:35
Generated by SassMeister.com.
// ----
// Sass (v3.4.11)
// Compass (v1.0.3)
// ----
$min-height: 60px;
body {
min-height: calc( $min-height * 1.3 );
}
@Panya
Panya / SassMeister-input.scss
Created April 3, 2015 17:34
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
.component{
color: red;
@at-root{
#{&}--foo#{&}--bar {
color: blue;
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Html.App exposing (..)
import Dom
import Task
type Msg
= Click
| NoOp