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;
}
|