aboutsummaryrefslogtreecommitdiffstats
path: root/src/less/main.less
blob: 4d16edd20bc5a124559a62fe1d7bb42bbcd42fe2 (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
37
38
39
40
41
42
43
44
45
@import 'include/components';
@import 'include/common';

.title {
  &:extend(.title-header);
}

.subtitle {
  &:extend(.subtitle);
}

#postamble {
  &:extend(.footer);
  &:extend(.content-wrapper);

  p {
    &:extend(.footer-text);
  }
}

#content {
  &:extend(.content-wrapper);
}

figure {
  text-align: center;
}

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

  position: static;

  &::before {
    @media (prefers-color-scheme: dark) {
      background-color: @dark-background;
    }
    @media (prefers-color-scheme: light) {
      background-color: @light-background;
    }
  }
}

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