summaryrefslogtreecommitdiffstats
path: root/webapp/sass/base/_typography.scss
blob: 676a2c4058c0752ca7eb1fdb939ee2b9a9c095db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@charset 'UTF-8';

b,
strong {
    font-weight: 600;
}

a {
    cursor: pointer;
    text-decoration: none;
    word-break: break-word;
    color: $color--primary;
}

a:focus,
a:hover {
    color: $color--primary--hover;
}

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.word-break--all {
    word-break: break-all;
}