-
Notifications
You must be signed in to change notification settings - Fork 0
/
_e-base.scss
58 lines (47 loc) · 1.04 KB
/
_e-base.scss
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
51
52
53
54
55
56
57
58
/* ==========================================================================
e-base
========================================================================== */
*, *:after, *:before {
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
color: $auk-color-text;
line-height: 1.6;
font-family: flanders-sans, sans-serif;
font-size: 1.5rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: none;
}
p {
word-break: break-word;
white-space: normal;
&:not(.au-c-content p, .say-editor p) { // only target paragraphs that are not in a content block or in the rdfa-editor (fix for KAS-4057 within kanselarij-vlaanderen/frontend-kaleidos)
&::first-letter {
text-transform: uppercase;
}
}
}
a {
color: $auk-blue-500;
}
strong {
font-weight: 500;
}
i, em {
font-style: italic;
}
hr {
border: none;
border-top: .1rem solid $auk-gray-300;
margin: 0;
}
abbr[title] {
text-decoration: none;
}
::selection {
background: rgba($auk-yellow-500, .3);
}