-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All services: Adding new page template and new utilities
- Loading branch information
Showing
22 changed files
with
2,307 additions
and
17 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* | ||
* | ||
* @title: Colours | ||
* | ||
*/ | ||
|
||
.bg-light { | ||
background-color: $well-bg; | ||
} |
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* | ||
* @title: Spacing | ||
* | ||
*/ | ||
|
||
@each $prop, $abbrev in (margin: m, padding: p) { | ||
@each $size, $length in $spacers { | ||
.#{$abbrev}-#{$size} { #{$prop}: $length !important; } | ||
.#{$abbrev}t-#{$size}, | ||
.#{$abbrev}y-#{$size} { | ||
#{$prop}-top: $length !important; | ||
} | ||
.#{$abbrev}r-#{$size}, | ||
.#{$abbrev}x-#{$size} { | ||
#{$prop}-right: $length !important; | ||
} | ||
.#{$abbrev}b-#{$size}, | ||
.#{$abbrev}y-#{$size} { | ||
#{$prop}-bottom: $length !important; | ||
} | ||
.#{$abbrev}l-#{$size}, | ||
.#{$abbrev}x-#{$size} { | ||
#{$prop}-left: $length !important; | ||
} | ||
} | ||
} | ||
|
||
// Auto margins | ||
.m-auto { margin: auto !important; } | ||
.mt-auto, | ||
.my-auto { | ||
margin-top: auto !important; | ||
} | ||
.mr-auto, | ||
.mx-auto { | ||
margin-right: auto !important; | ||
} | ||
.mb-auto, | ||
.my-auto { | ||
margin-bottom: auto !important; | ||
} | ||
.ml-auto, | ||
.mx-auto { | ||
margin-left: auto !important; | ||
} |
Oops, something went wrong.