This file contains hidden or 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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
#this, | |
#looks, | |
#innocent { | |
.red { | |
color: red; | |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@import "bourbon/bourbon"; | |
$bars: ( | |
#3366CC #45afe2, | |
#DC3912 #FF3300, | |
); |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// Import | |
$red: #cc0000; | |
// Defaults |
This file contains hidden or 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
// ---- | |
// 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%); | |
} |
This file contains hidden or 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
// ---- | |
// 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; |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.foot-ribbon, .foot-content { | |
padding: 15px 30px; | |
.seperator { | |
&:before { | |
content: " "; |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$text-color-primary: #fff; | |
$headings-font-family: Arial; | |
.btn { | |
&.btn-primary, |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// .popover | |
.popover { | |
padding: 10px; | |
color: red; | |
background: green; | |
margin-bottom: 10px; |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// .popover | |
.popover { | |
padding: 10px; | |
color: red; | |
background: green; | |
margin-bottom: 10px; |
This file contains hidden or 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
'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) { |