This file contains 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
// variables.scss | |
$screen-xs-max: 767px; | |
$screen-sm: $screen-xs-max + 1px; | |
$screen-sm-max: 991px; | |
$screen-md: $screen-sm-max + 1px; | |
$screen-md-max: 1199px; | |
$screen-lg: $screen-md-max + 1px; | |
// mixins.scss | |
@mixin media($device, $only: false) { |
This file contains 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
.foo { | |
padding-bottom: 30px; | |
} | |
@media screen and (min-width: $screen-sm) { | |
.foo { | |
padding-bottom: 40px; | |
} | |
} |
This file contains 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
@import "bourbon"; | |
@import "bootstrap"; | |
@import "settings/fonts"; | |
@import "settings/variables"; | |
// etc etc | |
@media screen and (min-width: $screen-sm) { | |
@import 'responsive/tablet/layout'; | |
} | |
@media screen and (min-width: $screen-lg) { |
This file contains 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
%p dupa |
This file contains 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
.btn-group.pull-right.green-button | |
%span.rounded-number | |
%span 3 | |
%span.button-text | |
Create Campaign | |
%span.caret |
This file contains 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
.post--green | |
.post__title | |
%h1 kalsk | |
%h2 kaksfl | |
%h3 kalsfksfl | |
%h4 kasklsfk |
This file contains 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
<div class="google-plus"> | |
<div class="g-plusone" data-size="medium" data-annotation="none" data-href="https://plus.google.com/106297399131866996068/posts"> | |
</div> | |
</div> |
This file contains 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
function f(i,n:Integer; x: vector) : Extended; far; | |
begin | |
case i of | |
1: f:=3*x[1]-Cos(x[2]*x[3])-0.5; | |
2: f:=Sqr(x[1])-81*Sqr(x[2]+0.1)+Sin(x[3])+1.06; | |
3: f:=Exp(-x[1]*x[2])+20*x[3]+(10*Pi-3)/3; | |
end | |
end; | |
function f1(i,n:Integer; x: vector) : Extended; far; |
NewerOlder