public/video-ui/styles/base/_typography.scss (40 lines of code) (raw):
/**
* Basic typography styles
*/
body {
color: $textColor;
font: normal 14px / 1.4 $text-font-stack;
}
h1, h2, h3, h4, h5, h6 {
font-family: $title-font-stack;
font-weight: normal;
font-style: normal;
margin: 0 0 10px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 20px;
}
a {
color: inherit;
text-decoration: underline;
}
// Less generic styles
.link {
color: $anchorColor;
text-decoration: none;
font-weight: bold;
&:hover {
text-decoration: underline;
}
}
.error {
color: $cRedB5;
}
.success {
color: $cGreen33;
}
.highlight {
color: $cYellow;
}