This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
combine mixins and variables into on partial
- Loading branch information
Joel Glovier
committed
Aug 15, 2014
1 parent
90cc34f
commit c213642
Showing
4 changed files
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
// Variables | ||
// -------------------------------------------/ | ||
|
||
$green: #00bd9c; | ||
$green_light: #13d8b6; | ||
$navy: #2e4359; | ||
$navy_drk: #253649; | ||
|
||
// end variables ------------/ | ||
|
||
|
||
// Mixins | ||
// -------------------------------------------/ | ||
|
||
@mixin vertically_centered { | ||
position: relative; | ||
top: 50%; | ||
margin-top: -50%; | ||
} | ||
|
||
@mixin transition($value) { | ||
transition: $value .2s ease; | ||
} | ||
// end mixins ------------/ |
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