aboutsummaryrefslogtreecommitdiffstats
path: root/src/less/main.less
blob: 3e6376fc21bd956c923279052224fccf4662731b (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
@background-color: #111114;
@foreground-color: #bfbfbf;
@link-color: #a88654;
@font-family: sans-serif;

body {
  background-color: @background-color;
  color: @foreground-color;
  font-family: @font-family;
}

a {
  color: @link-color;
}

figure {
  text-align: center;
}

pre.src {
  @import (less) "yoshi.css";

  position: static;

  &::before {
    background-color: @background-color;
  }
}

.org-src-container { position: relative; }
.org-svg { width: unset; }

#content {
  max-width: 900px;
  margin: 0 auto;
}