58 lines
1011 B
SCSS
58 lines
1011 B
SCSS
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
|
|
|
// Font color classes.
|
|
//
|
|
|
|
//== Sizes.
|
|
//
|
|
|
|
.ms-fontSize-68 {
|
|
@include ms-fontSize-68;
|
|
}
|
|
.ms-fontSize-42 {
|
|
@include ms-fontSize-42;
|
|
}
|
|
.ms-fontSize-32 {
|
|
@include ms-fontSize-32;
|
|
}
|
|
.ms-fontSize-28 {
|
|
@include ms-fontSize-28;
|
|
}
|
|
.ms-fontSize-24 {
|
|
@include ms-fontSize-24;
|
|
}
|
|
.ms-fontSize-20 {
|
|
@include ms-fontSize-20;
|
|
}
|
|
.ms-fontSize-18 {
|
|
@include ms-fontSize-18;
|
|
}
|
|
.ms-fontSize-16 {
|
|
@include ms-fontSize-16;
|
|
}
|
|
.ms-fontSize-14 {
|
|
@include ms-fontSize-14;
|
|
}
|
|
.ms-fontSize-12 {
|
|
@include ms-fontSize-12;
|
|
}
|
|
.ms-fontSize-10 {
|
|
@include ms-fontSize-10;
|
|
}
|
|
|
|
//== Weights.
|
|
//
|
|
|
|
.ms-fontWeight-regular {
|
|
@include ms-fontWeight-regular;
|
|
}
|
|
.ms-fontWeight-semibold {
|
|
@include ms-fontWeight-semibold;
|
|
}
|
|
.ms-fontWeight-bold {
|
|
@include ms-fontWeight-bold;
|
|
}
|
|
|
|
// Deprecated MDL2 font classes.
|
|
@import "./Font.MDL2";
|