blob: c2ec3a859c55fc3567b664ad2148819e4e3fe981 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
@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;
}
.whitespace--nowrap {
white-space: nowrap;
}
.overflow--ellipsis {
overflow: hidden;
text-overflow: ellipsis;
}
.fa {
&.fa-margin--left {
margin-left: 3px;
}
&.fa-margin--right {
margin-right: 3px;
}
}
.font-weight--normal {
font-weight: normal;
}
|