blob: f5795d862ea4bcf47b1911dbc6ffc970f06b30e8 (
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 {
color: $primary-color;
cursor: pointer;
text-decoration: none;
word-break: break-word;
&:focus,
&:hover {
color: $primary-color--hover;
}
}
body {
@include font-smoothing;
font-family: 'Open Sans', sans-serif;
}
.word-break--all {
word-break: break-all;
}
|