summaryrefslogtreecommitdiff
path: root/src/web/styles/styles.scss
blob: 7a1b0c064ceb2a325019ee0e2862f6f925a61af6 (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
@import "theme/global";
@import "partials/navbar";

// TODO: If I like this font I'll host it myself
// @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;

  // font-family: 'Lato', sans-serif;
  font-family: 'Open Sans', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: $defBackgroundColor;
  color: $defForegroundColor;
}

@include selectionColors($selectionBackground, $selectionForeground);

a {
  color: $defLinkForeground;
  text-decoration: none;
}