50 lines
724 B
SCSS
50 lines
724 B
SCSS
.title {
|
|
font-size: 1.75rem;
|
|
margin-bottom: 1em;
|
|
font-weight: $bold;
|
|
text-align: center;
|
|
|
|
.subtitle{
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
font-family: $sans-serif;
|
|
}
|
|
|
|
h1{
|
|
font-size: 1.75rem;
|
|
margin-bottom: 1em;
|
|
font-weight: $bold;
|
|
text-align: center;
|
|
}
|
|
|
|
h2{
|
|
clear: both; // used if float is present before heading
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1em;
|
|
font-weight: $bold;
|
|
}
|
|
|
|
h3{
|
|
clear: both;
|
|
font-size: 1.25rem;
|
|
margin-bottom: 0.5em;
|
|
}
|
|
|
|
h4{
|
|
font-size: 1.15rem;
|
|
margin-bottom: 0.5em;
|
|
color:#2980B9;
|
|
font-weight: $light;
|
|
}
|
|
|
|
h5{
|
|
font-size: 1.1rem;
|
|
margin-bottom: 0.5em;
|
|
color:#2980B9;
|
|
font-weight:light;
|
|
}
|