Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
feat: add atomic class for text italic and add more level space
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciorodrigues1 committed Mar 29, 2019
1 parent db73e80 commit 7907954
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 6 deletions.
5 changes: 5 additions & 0 deletions assets/scss/core/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ small {
.cursive {
font-family: 'hand-of-sean';
}

.text-italic {
font-style: italic;
}

@font-face {
font-family: "proxima-nova";
src: url("../fonts/proxima-nova.eot");
Expand Down
91 changes: 85 additions & 6 deletions assets/scss/core/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ $dp-font-button-medium: 13px;
$dp-font-button-small: 11px;
$dp-font-size-15: 15px;
$dp-font-size-24: 24px;
$dp-font-small-lineheight: 18px;

//
$dp-font-small-lineheight: 18px; //
// variables margin bottom
//

Expand All @@ -58,9 +56,10 @@ $dp-spaces--lv9: 54px;
$dp-spaces--lv10: 60px;
$dp-spaces--lv11: 66px;
$dp-spaces--lv12: 72px;

////
/// Settings File
$dp-spaces--lv13: 78px;
$dp-spaces--lv14: 84px;
$dp-spaces--lv15: 90px;
$dp-spaces--lv16: 96px; /// Settings File
/// Init colors variables
/// @group Colors
////
Expand Down Expand Up @@ -111,6 +110,86 @@ $dp-line-height-rpgd: 16px;
color: $dp-color-grey;
text-transform: uppercase;
}
/* TEXT COLORS - grey */
.c-dark-grey {
color: $dp-color-darkgrey;
/* text */
}

.c-grey {
color: $dp-color-grey;
/* icons fonts */
}

.c-light-grey {
color: $dp-color-lightgrey;
/* placeholders, hovers*/
}
/* VERTICAL SPACES */
.space-0 {
margin-bottom: 0;
}

.space-8 {
margin-bottom: 8px;
/* drag boxes distanse, inputs conditional boxes */
}

.space-24 {
margin-bottom: 24px;
/* inputs distance */
}

.space-48 {
margin-bottom: 48px;
/* forms distance */
}

.space-64 {
margin-bottom: 64px;
}
/* SPACES */
/* TEXT COLORS - grey */

.c-dark-grey {
color: $dp-color-darkgrey;
/* text */
}

.c-grey {
color: $dp-color-grey;
/* icons fonts */
}

.c-light-grey {
color: $dp-color-lightgrey;
/* placeholders, hovers*/
}
/* VERTICAL SPACES */

.space-0 {
margin-bottom: 0;
}

.space-8 {
margin-bottom: 8px;
/* drag boxes distanse, inputs conditional boxes */
}

.space-24 {
margin-bottom: 24px;
/* inputs distance */
}

.space-48 {
margin-bottom: 48px;
/* forms distance */
}

.space-64 {
margin-bottom: 64px;
}
/* SPACES */

.margin--0 {
margin: 0;
Expand Down

0 comments on commit 7907954

Please sign in to comment.