mirror of
https://github.com/moparisthebest/mail
synced 2024-11-13 12:45:04 -05:00
30 lines
476 B
SCSS
30 lines
476 B
SCSS
|
.typo-title {
|
||
|
font-size: $font-size-bigger;
|
||
|
color: $color-main;
|
||
|
margin: 0 0 10px;
|
||
|
|
||
|
@include respond-to(md) {
|
||
|
font-size: $font-size-huge;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.typo-paragraph {
|
||
|
margin: 0 0 10px;
|
||
|
|
||
|
strong {
|
||
|
font-weight: normal;
|
||
|
color: $color-main;
|
||
|
}
|
||
|
em {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
a {
|
||
|
color: $color-main;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.typo-code {
|
||
|
font-family: monospace;
|
||
|
font-weight: bold;
|
||
|
}
|