-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made updates to CSS, removed modifiers.scss and moved its contents to…
… modules.scss which got moved into design/ More variables. Cleaner.
- Loading branch information
Showing
9 changed files
with
137 additions
and
93 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* Modules | ||
/* Grid | ||
======================================================================================= | ||
Put all your module and object related styles here. | ||
Place your favorite grid system here. | ||
==================================================================================== */ |
This file was deleted.
Oops, something went wrong.
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,58 @@ | ||
/* Modules | ||
======================================================================================= | ||
Put all your modifiers, modules and objects here. | ||
==================================================================================== */ | ||
|
||
/* Content Modifiers | ||
------------------------------------------------------------------------------ | ||
The following styles build upon the core elements and add some | ||
interesting visual modifications. Unlike Helpers, these elements focus | ||
more on making things visually interesting and less on the function. | ||
------------------------------------------------------------------------------ */ | ||
|
||
// Extend Headings to 'h' classes | ||
.h1 { @extend h1; } | ||
.h2 { @extend h2; } | ||
.h3 { @extend h3; } | ||
.h4 { @extend h4; } | ||
.h5 { @extend h5; } | ||
.h6 { @extend h6; } | ||
|
||
|
||
// Paragraph lead text | ||
p.lead { | ||
color: $gray-dark; | ||
@include rem('font-size', $fs-body-accent); | ||
@include em('line-height', $fs-body-accent, $lh-body-accent); } | ||
|
||
|
||
// Text Modifiers, used with <span> tags | ||
.lowercase { text-transform: lowercase; } | ||
.uppercase { text-transform: uppercase; } | ||
.small-caps { font-variant: small-caps; } | ||
|
||
|
||
// Align content, can be used in blocks | ||
.text-left { text-align: left; } | ||
.text-center { text-align: center; } | ||
.text-right { text-align: right; } | ||
|
||
|
||
// Image Modifiers | ||
img { | ||
&.img-scaled { | ||
max-width: 100%; | ||
height: auto; } | ||
|
||
&.img-bordered { | ||
padding: 2px; | ||
border: $border; } | ||
|
||
&.img-circle { | ||
border-radius: 100%; } } | ||
|
||
|
||
/* Modules & Objects, | ||
------------------------------------------------------------------------------ | ||
Enter all your module and object class here, e.g., .media, .callout, etc. | ||
------------------------------------------------------------------------------ */ |
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