Files
edx-platform/lms/static/certificates/sass/_base.scss
Adam Butterworth fc0694397e Reapply [BD-10] [DEPR-92] Remove pattern library of certificate styles. (#24694)
* Revert "Revert "[BD-10] [DEPR-92] Remove pattern library of certificate styles." (#24633)"

This reverts commit ca7f488796.

* Add missing slash in font path
2020-08-05 11:41:59 -05:00

67 lines
1.3 KiB
SCSS

// ------------------------------
// // Open edX Certificates: Base
// About: Base resets and definitons (using shared resources from elements when appropriate).
// ------------------------------
// #RESET
// ------------------------------
// ------------------------------
// #BASE
// ------------------------------
html,
body {
height: 100%;
margin: 0;
padding: 0;
background: $white;
font-family: $font-family-sans;
}
// ------------------------------
// #TYPOGRAPHY
// ------------------------------
// Level one heading
.hd-1 {
margin-bottom: map-get($spacing-vertical, small);
font-size: rem(38);
line-height: 1.4;
}
// Level two heading
.hd-2 {
margin-bottom: map-get($spacing-vertical, small);
font-size: rem(28);
line-height: 1.4;
}
// Level three heading
.hd-3 {
margin-bottom: map-get($spacing-vertical, x-small);
font-size: rem(24);
line-height: 1.5;
}
// Level four heading
.hd-4 {
margin-bottom: map-get($spacing-vertical, x-small);
font-size: rem(21);
line-height: 1.6;
}
// Level five heading
.hd-5 {
margin-bottom: map-get($spacing-vertical, x-small);
font-size: rem(18);
line-height: 1.6;
}
// Level six heading
.hd-6 {
margin-bottom: map-get($spacing-vertical, xx-small);
font-size: rem(16);
font-weight: 600;
line-height: 1.6;
}