Skip to content

Instantly share code, notes, and snippets.

View intellix's full-sized avatar

D intellix

View GitHub Profile
@intellix
intellix / SassMeister-input.scss
Created January 12, 2016 15:22
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
#this,
#looks,
#innocent {
.red {
color: red;
@intellix
intellix / SassMeister-input.scss
Last active November 25, 2015 13:47
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@import "bourbon/bourbon";
$bars: (
#3366CC #45afe2,
#DC3912 #FF3300,
);
@intellix
intellix / SassMeister-input.scss
Created November 16, 2015 14:53
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Import
$red: #cc0000;
// Defaults
@intellix
intellix / SassMeister-input.scss
Created November 9, 2015 10:27
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin zig-zag($color) {
background-image:
linear-gradient(135deg, $color 0%, $color 50%, rgba($color, 0) 50%, rgba($color, 0) 100%),
linear-gradient(-135deg, $color 0%, $color 50%, rgba($color, 0) 50%, rgba($color, 0) 100%),
linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}
@intellix
intellix / SassMeister-input.scss
Created October 31, 2015 09:29
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$max-notifications: 10;
&:nth-child(n+#{$max-notifications + 1}) {
margin-top: -#{120px * ($max-notifications + 2)};
z-index: 100 - #{$max-notifications + 1};
left: -210px;
@intellix
intellix / SassMeister-input.scss
Created September 16, 2015 07:52
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.foot-ribbon, .foot-content {
padding: 15px 30px;
.seperator {
&:before {
content: " ";
@intellix
intellix / SassMeister-input.scss
Created September 14, 2015 15:28
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$text-color-primary: #fff;
$headings-font-family: Arial;
.btn {
&.btn-primary,
@intellix
intellix / SassMeister-input.scss
Created August 26, 2015 13:06
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// .popover
.popover {
padding: 10px;
color: red;
background: green;
margin-bottom: 10px;
@intellix
intellix / SassMeister-input.scss
Created August 26, 2015 13:05
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// .popover
.popover {
padding: 10px;
color: red;
background: green;
margin-bottom: 10px;
@intellix
intellix / btn-thinking.js
Created March 3, 2015 12:50
Thinking button in angular
'use strict';
angular.module('app.common').directive('btnThinking', function($compile) {
return {
restrict: 'A',
link: function (scope, element, attrs)
{
var html = element.html();
attrs.$observe('btnThinking', function(thinking) {