summaryrefslogtreecommitdiff
path: root/site/css/fixup.css
blob: 858e376335d8eaf820ae72a65a620789ff29f59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#content {
  max-width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

p {
  text-align: left;
}

@supports (hyphens: auto) {
  p {
    text-align: justify;
    hyphens: auto;
  }
}

pre, code, sample {
  white-space: pre-wrap;
  hyphens: none;
}