-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Included all necessary tools and function - boilerplates for settings files - included resets and base files - included global objects => those who appear on every site - included sample components => because why not - included sample helpers
- Loading branch information
1 parent
e9ce2e0
commit 4533f8e
Showing
24 changed files
with
750 additions
and
381 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 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,20 @@ | ||
/* | ||
BASE.FONTS | ||
---- | ||
* ==================================================== */ | ||
|
||
/* Use mixin to include desired font, one mixin per weight/style pair */ | ||
//@include font-face($font-family: 'FontNAME', $file-path: 'fontPath', $font-weight: '500', $font-style: 'normal', $RoR: false); | ||
|
||
html{ | ||
font-size: $s-base-font-size; | ||
} | ||
|
||
body{ | ||
font: normal 1rem/1.5 "Helvetica Neue", -apple-system, BlinkMacSystemFont,"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,"Open Sans", sans-serif; | ||
letter-spacing: -0.01px; | ||
font-weight: 500; | ||
color: getAppColor('grayscale', 'base'); | ||
background: white; | ||
} |
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
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,89 @@ | ||
/* | ||
OBJECTS.BAR | ||
---- | ||
Horizonal bars, usefull for headers, footers, | ||
headers in windows, overlay bars in cards you | ||
name it. | ||
* ==================================================== */ | ||
|
||
$bar-height-maps:( | ||
primary: ( | ||
base: 56px, | ||
md: 70px | ||
), | ||
secondary:( | ||
base: 48px, | ||
md: 56px | ||
) | ||
); | ||
|
||
.o-bar{ | ||
position: relative; | ||
display: flex; | ||
width: 100%; | ||
|
||
&--primary{ | ||
height: map-deep-get($bar-height-maps, primary, base); | ||
|
||
@include mappy-bp(md){ | ||
height: map-deep-get($bar-height-maps, primary, md); | ||
} | ||
} | ||
|
||
&--secondary{ | ||
height: map-deep-get($bar-height-maps, secondary, base); | ||
|
||
@include mappy-bp(md){ | ||
height: map-deep-get($bar-height-maps, secondary, md); | ||
} | ||
} | ||
} | ||
|
||
/* inner bits */ | ||
.o-bar__block{ | ||
display: flex; | ||
align-items: center; | ||
padding: 0 8px; | ||
|
||
&:only-child, | ||
.o-bar--collapse & { | ||
padding: 0; | ||
} | ||
|
||
|
||
.o-bar--collapse\@md &{ | ||
&:first-child{ | ||
@include mappy-bp(md){ | ||
padding-left:0; | ||
} | ||
} | ||
|
||
&:last-child{ | ||
@include mappy-bp(md){ | ||
padding-right:0; | ||
} | ||
} | ||
} | ||
|
||
|
||
&--shy-right{ margin-left: auto; } | ||
&--shy-left{ margin-right: auto; } | ||
} | ||
|
||
|
||
.o-bar__title{ | ||
position: relative; | ||
@include font-size(16px, 1); | ||
|
||
|
||
@include mappy-bp(sm){ | ||
@include font-size(18px, 1); | ||
} | ||
|
||
.o-bar__block:first-child & { | ||
margin-left: 16px; | ||
} | ||
|
||
} | ||
|
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
Oops, something went wrong.