fixed gruntfile, fixed modal buttons, fixed .gitignore .sass-cache folder
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/* LISIBILITY */
|
||||
@import "../components/gui/gui.less";
|
||||
@import "gui.scss";
|
||||
|
||||
|
||||
*{font-size:14px;}
|
||||
@@ -27,13 +27,13 @@ h6{font-size:12px;}
|
||||
br:after{content:"·"; color:red; border: 1px solid #999;}
|
||||
|
||||
/* LAYOUT AND GRAPHICS */
|
||||
#full{ width:99%; }
|
||||
#demi{ width:47%; }
|
||||
#tiers{ width:29%; }
|
||||
#quart{ width:23%; }
|
||||
#right{ float:right; margin-left:2%; }
|
||||
#left{ float:left; margin-right:2%; }
|
||||
#center{ display:block; margin:0 auto; }
|
||||
@mixin full(){ width:99%; }
|
||||
@mixin demi(){ width:47%; }
|
||||
@mixin tiers(){ width:29%; }
|
||||
@mixin quart(){ width:23%; }
|
||||
@mixin right(){ float:right; margin-left:2%; }
|
||||
@mixin left(){ float:left; margin-right:2%; }
|
||||
@mixin center(){ display:block; margin:0 auto; }
|
||||
|
||||
|
||||
img{height:auto; margin:0.5em 0;}
|
||||
@@ -43,22 +43,22 @@ div{border: 1px solid #1A1A1A;}
|
||||
img,p,div{ position:relative;
|
||||
&:before{font-size:10px; color:red; background-color: #1A1A1A; position:absolute; top:0; z-index:3000;}
|
||||
|
||||
&.full{#full; &:before{content:" full ";}}
|
||||
&.demi{ #demi; margin-right:2%; &:before{content:" demi "; right:0;}}
|
||||
&.tiers{ #tiers; margin-right:2%; &:before{content:" tiers "; right:0;}}
|
||||
&.quart{ #quart; margin-right:2%; &:before{content:" quart "; right:0;}}
|
||||
&.full{@include full(); &:before{content:" full ";}}
|
||||
&.demi{ @include demi(); margin-right:2%; &:before{content:" demi "; right:0;}}
|
||||
&.tiers{ @include tiers(); margin-right:2%; &:before{content:" tiers "; right:0;}}
|
||||
&.quart{ @include quart(); margin-right:2%; &:before{content:" quart "; right:0;}}
|
||||
|
||||
&.demi-left{ #demi; #left; &:before{content:" demi-left "; left:0;}}
|
||||
&.demi-right{ #demi; #right; &:before{content:" demi-right "; right:0;}}
|
||||
&.demi-center{ #demi; #center; &:before{content:" demi-denter "; right:0;}}
|
||||
&.demi-left{ @include demi(); @include left(); &:before{content:" demi-left "; left:0;}}
|
||||
&.demi-right{ @include demi(); @include right(); &:before{content:" demi-right "; right:0;}}
|
||||
&.demi-center{ @include demi(); @include center(); &:before{content:" demi-denter "; right:0;}}
|
||||
|
||||
&.tiers-left{ #tiers; #left; &:before{content:" tiers-left "; left:0;}}
|
||||
&.tiers-right{ #tiers; #right; &:before{content:" tiers-right "; right:0;}}
|
||||
&.tiers-center{ #tiers; #center; &:before{content:" tiers-center "; right:0;}}
|
||||
&.tiers-left{ @include tiers(); @include left(); &:before{content:" tiers-left "; left:0;}}
|
||||
&.tiers-right{ @include tiers(); @include right(); &:before{content:" tiers-right "; right:0;}}
|
||||
&.tiers-center{ @include tiers(); @include center(); &:before{content:" tiers-center "; right:0;}}
|
||||
|
||||
&.quart-left{ #quart; #left; &:before{content:" quart-left "; left:0;}}
|
||||
&.quart-right{ #quart; #right; &:before{content:" quart-right "; right:0;}}
|
||||
&.quart-center{ #quart; #center; &:before{content:" quart-center "; right:0;}}
|
||||
&.quart-left{ @include quart(); @include left(); &:before{content:" quart-left "; left:0;}}
|
||||
&.quart-right{ @include quart(); @include right(); &:before{content:" quart-right "; right:0;}}
|
||||
&.quart-center{ @include quart(); @include center(); &:before{content:" quart-center "; right:0;}}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user