-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(isct-97): add style-guide.scss
- Loading branch information
Showing
7 changed files
with
56 additions
and
50 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
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,3 @@ | ||
@import './fonts'; | ||
@import './shadows'; | ||
@import './grid'; |
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,33 +1,33 @@ | ||
$boxShadowXS: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); | ||
$boxShadowSM: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06); | ||
$boxShadowMD: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06); | ||
$boxShadowLG: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03); | ||
$boxShadowXL: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -6px rgba(16, 24, 40, 0.08); | ||
$boxShadowXXL: 0px 24px 48px -12px rgba(16, 24, 40, 0.18); | ||
$boxShadowXXXL: 0px 19px 32px 2px rgba(44, 45, 45, 0.14); | ||
$boxShadowSLG: 0px 27px 27px 2px rgba(44, 45, 45, 0.14); | ||
$boxShadowV4-XS: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); | ||
$boxShadowV4-SM: 0px 1px 3px 0px rgba(16, 24, 40, 0.10), 0px 1px 2px 0px rgba(16, 24, 40, 0.06); | ||
$boxShadowV4-MD: 0px 4px 8px -2px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.06); | ||
$boxShadowV4-LG: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03); | ||
$boxShadowV4-XL: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -6px rgba(16, 24, 40, 0.08); | ||
$boxShadowV4-XXL: 0px 24px 48px -12px rgba(16, 24, 40, 0.18); | ||
$boxShadowV4-XXXL: 0px 19px 32px 2px rgba(44, 45, 45, 0.14); | ||
$boxShadowV4-SLG: 0px 27px 27px 2px rgba(44, 45, 45, 0.14); | ||
|
||
%shadow-v4-xs{ | ||
box-shadow: $boxShadowXS; | ||
box-shadow: $boxShadowV4-XS; | ||
} | ||
%shadow-v4-sm{ | ||
box-shadow: $boxShadowSM; | ||
box-shadow: $boxShadowV4-SM; | ||
} | ||
%shadow-v4-md{ | ||
box-shadow: $boxShadowMD; | ||
box-shadow: $boxShadowV4-MD; | ||
} | ||
%shadow-v4-lg{ | ||
box-shadow: $boxShadowLG; | ||
box-shadow: $boxShadowV4-LG; | ||
} | ||
%shadow-v4-xl{ | ||
box-shadow: $boxShadowXL; | ||
box-shadow: $boxShadowV4-XL; | ||
} | ||
%shadow-v4-xxl{ | ||
box-shadow: $boxShadowXXL; | ||
box-shadow: $boxShadowV4-XXL; | ||
} | ||
%shadow-v4-xxxl{ | ||
box-shadow: $boxShadowXXXL; | ||
box-shadow: $boxShadowV4-XXXL; | ||
} | ||
%shadow-v4-slg{ | ||
box-shadow: $boxShadowSLG; | ||
box-shadow: $boxShadowV4-SLG; | ||
} |
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