Ghost/ghost/admin/app/styles/spirit/_font-weight.css

43 lines
997 B
CSS
Raw Normal View History

/*
Media Query Extensions:
-ns = not-small
-m = medium
-l = large
*/
.normal { font-weight: 300; }
.b, b, strong { font-weight: 700; }
.fw1 { font-weight: 100; }
.fw3 { font-weight: 300; }
.fw4 { font-weight: 400; }
.fw6 { font-weight: 600; }
.fw7 { font-weight: 700; }
@media (--breakpoint-not-small) {
.fw1-ns { font-weight: 100; }
.fw3-ns { font-weight: 300; }
.fw4-ns { font-weight: 400; }
.fw6-ns { font-weight: 600; }
.fw7-ns { font-weight: 700; }
}
@media (--breakpoint-medium) {
.fw1-m { font-weight: 100; }
.fw3-m { font-weight: 300; }
.fw4-m { font-weight: 400; }
.fw6-m { font-weight: 600; }
.fw7-m { font-weight: 700; }
}
@media (--breakpoint-large) {
.fw1-l { font-weight: 100; }
.fw3-l { font-weight: 300; }
.fw4-l { font-weight: 400; }
.fw6-l { font-weight: 600; }
.fw7-l { font-weight: 700; }
}