File: lcov-dark-theme.css

package info (click to toggle)
wiredpanda 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,560 kB
  • sloc: cpp: 16,024; sh: 232; ansic: 52; xml: 8; makefile: 5; javascript: 1
file content (65 lines) | stat: -rw-r--r-- 1,103 bytes parent folder | download
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
54
55
56
57
58
59
60
61
62
63
64
65
@import url("https://fonts.googleapis.com/css?family=Source Code Pro|Quicksand");

:root {
  --textColor: aliceblue;
  --mainBg: #131313;
  --linkColor: aquamarine;

  --lighter: #ffffff05;
}

a,
a:visited {
  color: var(--linkColor);
  text-decoration: none;
}

body center table tbody tr:nth-child(even):not(:nth-child(2)) {
  background-color: var(--lighter);
}

body {
  font-family: "Quicksand", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
    sans-serif;
  letter-spacing: 0.03em;
  background-color: var(--mainBg);
  color: var(--textColor);
}

center table {
  background-color: var(--lighter);
  border-radius: 1em;
  padding: 1em;
  padding-top: 0;
}

td,
th {
  padding: 0.5em;
}

td.coverBar > table {
  background: none;
  border-radius: 0;
  padding: 0;
}

/*code-related style is below this line*/

td.lineCov,
span.lineCov {
  background-color: rgb(0, 30, 30);
}
td.lineNoCov,
span.lineNoCov {
  background-color: rgb(50, 0, 0);
}

.source > a {
  color: var(--textColor);
  font-family: "Source Code Pro", "Courier New", Courier, monospace;
}

.source {
  font-size: 1.1em;
}