aboutsummaryrefslogtreecommitdiffstats
path: root/app/global-styles.js
blob: ab1b54aa093d0380f451bbbd568b5ee35c596d9a (plain) (blame)
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
import { injectGlobal } from 'styled-components';

/* eslint no-unused-expressions: 0 */
injectGlobal`
  html,
  body {
    width: 100%;
  }

  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  body.fontLoaded {
    font-family: 'Overpass Mono', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  #app {
    color: white;
    background-color: black;
    min-height: 100%;
    min-width: 100%;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul, ol {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0.5em;
    list-style-position: inside;
  }

  li {
    margin: .1em 0;
  }
`;