-
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.
- Loading branch information
1 parent
666de4d
commit dee9f95
Showing
7 changed files
with
196 additions
and
77 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ html { | |
*::before, | ||
*::after { | ||
box-sizing: inherit; | ||
// outline: 1px solid red; | ||
} | ||
|
||
body { | ||
|
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,48 @@ | ||
.privacy-wrapper { | ||
padding: 36px 0 64px; | ||
font-feature-settings: 'liga' off; | ||
@include media(desktop) { | ||
padding: 64px 0 151px; | ||
@include font(24, 30); | ||
} | ||
} | ||
|
||
.privacy-title { | ||
@include title(28, 39, 1.12, attr(text)); | ||
margin-bottom: 36px; | ||
@include media(desktop) { | ||
@include title(48, 66, 1.92, attr(text)); | ||
} | ||
} | ||
|
||
.privacy-subtitle { | ||
@include title(24, 33, 0.96, attr(text)); | ||
margin-bottom: 20px; | ||
@include media(desktop) { | ||
@include title(32, 44, 1.28, attr(text)); | ||
margin-bottom: 36px; | ||
} | ||
} | ||
.privacy-description { | ||
margin-bottom: 36px; | ||
@include media(desktop) { | ||
margin-bottom: 56px; | ||
} | ||
} | ||
.privacy-section { | ||
padding: 18px 0px; | ||
&.marketing-section { | ||
padding-top: 0px; | ||
} | ||
@include media(desktop) { | ||
padding: 28px 0; | ||
} | ||
} | ||
|
||
.privacy-item:not(:last-child), | ||
.privacy-text:not(:last-child) { | ||
margin-bottom: 16px; | ||
} | ||
.privacy-text-accent { | ||
color: $_yellow_color; | ||
} |
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