Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_code.scss « tale « scss « assets - github.com/EmielH/tale-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d97161d4f641744f429255ccace3a6455b2a419 (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
46
47
48
49
50
51
52
53
pre,
code {
  font-family: $monospaced;
}

code {
  background-color: var(--grey-4);
  border-radius: 3px;
  color: var(--code-color);
  font-size: 85%;
  padding: .25em .5em;
  white-space: pre-wrap;
}

pre {
  margin: 0 0 1rem;
}

pre code {
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  padding: 0;
}

pre code > span {
    // This isn't very pretty, but the precise RGB values are generated
    // server-side, the usual trick of putting the colors in CSS variables does
    // not quite work and this is the best I could come up with.
    filter: var(--code-filter);
}
.highlight {
  background-color: var(--grey-4);
  border-radius: 3px;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 1rem;

  pre {
    margin-bottom: 0;
    overflow-x: auto;
  }

  .lineno {
    color: var(--default-tint);
    display: inline-block; // Ensures the null space also isn't selectable
    padding: 0 .75rem 0 .25rem;
    // Make sure numbers aren't selectable
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}