aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/coverage/index.css
diff options
context:
space:
mode:
authoregor-tensin <egor@tensin.name>2024-04-25 03:50:51 +0000
committeregor-tensin <egor@tensin.name>2024-04-25 03:50:51 +0000
commitd1cd99244f96bd95bbd67cc737248df346dec08b (patch)
treebd6fc02cb1bb7b5cf3dba0badb7c13c68e78acf1 /coverage/index.css
downloadcimple-gh-pages.tar.gz
cimple-gh-pages.zip
Deploying to gh-pages from @ egor-tensin/cimple@8e652dd2cb69928ea1596aa3e59845fef6854e2c 🚀gh-pages
Diffstat (limited to '')
-rw-r--r--coverage/index.css505
1 files changed, 505 insertions, 0 deletions
diff --git a/coverage/index.css b/coverage/index.css
new file mode 100644
index 0000000..b51dc2e
--- /dev/null
+++ b/coverage/index.css
@@ -0,0 +1,505 @@
+:root {
+ font-family: sans-serif;
+ --unknown_color: LightGray;
+ --low_color: #FF6666;
+ --medium_color: #F9FD63;
+ --high_color: #85E485;
+ --covered_color: #85E485;
+ --uncovered_color: #FF8C8C;
+ --takenBranch_color: Green;
+ --notTakenBranch_color: Red;
+}
+
+body
+{
+ color: #000000;
+ background-color: #FFFFFF;
+}
+
+h1
+{
+ text-align: center;
+ margin: 0;
+ padding-bottom: 10px;
+ font-size: 20pt;
+ font-weight: bold;
+}
+
+hr
+{
+ background-color: navy;
+ height: 2px;
+ border: 0;
+}
+
+/* Link formats: use maroon w/underlines */
+a:link
+{
+ color: navy;
+ text-decoration: underline;
+}
+a:visited
+{
+ color: maroon;
+ text-decoration: underline;
+}
+
+/*** Summary formats ***/
+
+.summary
+{
+ display: flex;
+ flex-flow: row wrap;
+ max-width: 100%;
+ justify-content: flex-start;
+}
+
+.summary > table
+{
+ flex: 1 0 7em;
+ border: 0;
+}
+
+.summary > :last-child {
+ margin-left: auto;
+}
+
+table.legend
+{
+ color: black;
+ display: flex;
+ flex-flow: row wrap;
+ justify-content: flex-start;
+}
+
+table.legend th[scope=row]
+{
+ font-weight: normal;
+ text-align: right;
+ white-space: nowrap;
+}
+
+table.legend td
+{
+ color: blue;
+ text-align: left;
+ white-space: nowrap;
+ padding-left: 5px;
+}
+
+table.legend td.legend
+{
+ color: black;
+ font-size: 80%;
+}
+
+table.coverage td,
+table.coverage th
+{
+ text-align: right;
+ color: black;
+ font-weight: normal;
+ white-space: nowrap;
+ padding-left: 5px;
+ padding-right: 4px;
+}
+
+table.coverage td
+{
+ background-color: LightSteelBlue;
+}
+
+table.coverage th[scope=row]
+{
+ color: black;
+ font-weight: normal;
+ white-space: nowrap;
+}
+
+table.coverage th[scope=col]
+{
+ color: blue;
+ font-weight: normal;
+ white-space: nowrap;
+}
+
+table.legend span
+{
+ margin-right: 4px;
+ padding: 2px;
+}
+
+table.legend span.coverage-unknown,
+table.legend span.coverage-none,
+table.legend span.coverage-low,
+table.legend span.coverage-medium,
+table.legend span.coverage-high
+{
+ padding-left: 3px;
+ padding-right: 3px;
+}
+
+table.legend span.coverage-unknown,
+table.coverage td.coverage-unknown
+{
+ background-color: var(--unknown_color) !important;
+}
+
+table.legend span.coverage-none,
+table.legend span.coverage-low,
+table.coverage td.coverage-none,
+table.coverage td.coverage-low
+{
+ background-color: var(--low_color) !important;
+}
+
+table.legend span.coverage-medium,
+table.coverage td.coverage-medium
+{
+ background-color: var(--medium_color) !important;
+}
+
+table.legend span.coverage-high,
+table.coverage td.coverage-high
+{
+ background-color: var(--high_color) !important;
+}
+
+
+/*** End of Summary formats ***/
+/*** Meter formats ***/
+
+/* Common */
+meter {
+ -moz-appearance: none;
+
+ width: 30vw;
+ min-width: 4em;
+ max-width: 15em;
+ height: 0.75em;
+ padding: 0;
+ vertical-align: baseline;
+ margin-top: 3px;
+ /* Outer background for Mozilla */
+ background: none;
+ background-color: whitesmoke;
+}
+
+/* Webkit */
+
+meter::-webkit-meter-bar {
+ /* Outer background for Webkit */
+ background: none;
+ background-color: whitesmoke;
+ height: 0.75em;
+ border-radius: 0px;
+}
+
+meter::-webkit-meter-optimum-value,
+meter::-webkit-meter-suboptimum-value,
+meter::-webkit-meter-even-less-good-value
+{
+ /* Inner shadow for Webkit */
+ border: solid 1px black;
+}
+
+meter.coverage-none::-webkit-meter-optimum-value,
+meter.coverage-low::-webkit-meter-optimum-value
+{
+ background: var(--low_color);
+}
+
+meter.coverage-medium::-webkit-meter-optimum-value
+{
+ background: var(--medium_color);
+}
+
+meter.coverage-high::-webkit-meter-optimum-value
+{
+ background: var(--high_color);
+}
+
+/* Mozilla */
+
+meter::-moz-meter-bar
+{
+ box-sizing: border-box;
+}
+
+meter:-moz-meter-optimum::-moz-meter-bar,
+meter:-moz-meter-sub-optimum::-moz-meter-bar,
+meter:-moz-meter-sub-sub-optimum::-moz-meter-bar
+{
+ /* Inner shadow for Mozilla */
+ border: solid 1px black;
+}
+
+meter.coverage-none:-moz-meter-optimum::-moz-meter-bar,
+meter.coverage-low:-moz-meter-optimum::-moz-meter-bar
+{
+ background: var(--low_color);
+}
+
+meter.coverage-medium:-moz-meter-optimum::-moz-meter-bar
+{
+ background: var(--medium_color);
+}
+
+meter.coverage-high:-moz-meter-optimum::-moz-meter-bar
+{
+ background: var(--high_color);
+}
+
+/*** End of Meter formats ***/
+.file-list td, .file-list th {
+ padding: 0 10px;
+ font-weight: bold;
+}
+
+.file-list th[scope^=col]
+{
+ text-align: center;
+ color: white;
+ background-color: SteelBlue;
+ font-size: 120%;
+}
+
+.file-list th[scope=row]
+{
+ text-align: left;
+ color: black;
+ font-family: monospace;
+ font-weight: bold;
+ font-size: 110%;
+}
+
+.file-list tr > td,
+.file-list tr > th {
+ background: aliceblue;
+}
+
+.file-list tr:nth-child(even) > td,
+.file-list tr:nth-child(even) > th {
+ background: LightSteelBlue
+}
+
+.file-list tr:hover > td,
+.file-list tr:hover > th[scope=row]
+{
+ background-color: #ddd;
+}
+td.CoverValue
+{
+ text-align: right;
+ white-space: nowrap;
+}
+
+td.coveredLine,
+span.coveredLine
+{
+ background-color: var(--covered_color) !important;
+}
+
+td.uncoveredLine,
+span.uncoveredLine
+{
+ background-color: var(--uncovered_color) !important;
+}
+
+.linebranch, .linecount
+{
+ font-family: monospace;
+ border-right: 1px gray solid;
+ background-color: lightgray;
+ text-align: right;
+}
+
+.linebranchDetails
+{
+ position: relative;
+}
+.linebranchSummary
+{
+ cursor: help;
+}
+.linebranchContents
+{
+ font-family: sans-serif;
+ font-size: small;
+ text-align: left;
+ position: absolute;
+ width: 15em;
+ padding: 1em;
+ background: white;
+ border: solid gray 1px;
+ box-shadow: 5px 5px 10px gray;
+ z-index: 1; /* show in front of the table entries */
+}
+
+.takenBranch
+{
+ color: var(--takenBranch_color) !important;
+}
+
+.notTakenBranch
+{
+ color: var(--notTakenBranch_color) !important;
+}
+
+.src
+{
+ padding-left: 12px;
+ text-align: left;
+
+ font-family: monospace;
+ white-space: pre;
+
+ tab-size: var(--tab_size);
+ -moz-tab-size: var(--tab_size);
+}
+
+span.takenBranch,
+span.notTakenBranch
+{
+ font-family: monospace;
+ font-weight: bold;
+}
+
+pre
+{
+ height : 15px;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.source-line
+{
+ height : 15px;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.lineno
+{
+ background-color: #EFE383;
+ border-right: 1px solid #BBB15F;
+ text-align: right;
+ unicode-bidi: embed;
+ font-family: monospace;
+ white-space: pre;
+}
+
+.lineno > a
+{
+ text-decoration: none;
+ color: inherit;
+}
+
+.file-list
+{
+ margin: 1em auto;
+ border: 0;
+ border-spacing: 1px;
+}
+
+.file-source table
+{
+ border-spacing: 0;
+}
+
+.file-source table td,
+.file-source table th
+{
+ padding: 1px 10px;
+}
+
+.file-source table th
+{
+ font-family: monospace;
+ font-weight: bold;
+}
+
+.file-source table td:last-child
+{
+ width: 100%;
+}
+footer
+{
+ text-align: center;
+ padding-top: 3px;
+}
+
+/* pygments syntax highlighting */
+pre { line-height: 125%; }
+td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
+td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
+.hll { background-color: #ffffcc }
+.c { color: #3D7B7B; font-style: italic } /* Comment */
+.err { border: 1px solid #FF0000 } /* Error */
+.k { color: #008000; font-weight: bold } /* Keyword */
+.o { color: #666666 } /* Operator */
+.ch { color: #3D7B7B; font-style: italic } /* Comment.Hashbang */
+.cm { color: #3D7B7B; font-style: italic } /* Comment.Multiline */
+.cp { color: #9C6500 } /* Comment.Preproc */
+.cpf { color: #3D7B7B; font-style: italic } /* Comment.PreprocFile */
+.c1 { color: #3D7B7B; font-style: italic } /* Comment.Single */
+.cs { color: #3D7B7B; font-style: italic } /* Comment.Special */
+.gd { color: #A00000 } /* Generic.Deleted */
+.ge { font-style: italic } /* Generic.Emph */
+.gr { color: #E40000 } /* Generic.Error */
+.gh { color: #000080; font-weight: bold } /* Generic.Heading */
+.gi { color: #008400 } /* Generic.Inserted */
+.go { color: #717171 } /* Generic.Output */
+.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
+.gs { font-weight: bold } /* Generic.Strong */
+.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
+.gt { color: #0044DD } /* Generic.Traceback */
+.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
+.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
+.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
+.kp { color: #008000 } /* Keyword.Pseudo */
+.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
+.kt { color: #B00040 } /* Keyword.Type */
+.m { color: #666666 } /* Literal.Number */
+.s { color: #BA2121 } /* Literal.String */
+.na { color: #687822 } /* Name.Attribute */
+.nb { color: #008000 } /* Name.Builtin */
+.nc { color: #0000FF; font-weight: bold } /* Name.Class */
+.no { color: #880000 } /* Name.Constant */
+.nd { color: #AA22FF } /* Name.Decorator */
+.ni { color: #717171; font-weight: bold } /* Name.Entity */
+.ne { color: #CB3F38; font-weight: bold } /* Name.Exception */
+.nf { color: #0000FF } /* Name.Function */
+.nl { color: #767600 } /* Name.Label */
+.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
+.nt { color: #008000; font-weight: bold } /* Name.Tag */
+.nv { color: #19177C } /* Name.Variable */
+.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
+.w { color: #bbbbbb } /* Text.Whitespace */
+.mb { color: #666666 } /* Literal.Number.Bin */
+.mf { color: #666666 } /* Literal.Number.Float */
+.mh { color: #666666 } /* Literal.Number.Hex */
+.mi { color: #666666 } /* Literal.Number.Integer */
+.mo { color: #666666 } /* Literal.Number.Oct */
+.sa { color: #BA2121 } /* Literal.String.Affix */
+.sb { color: #BA2121 } /* Literal.String.Backtick */
+.sc { color: #BA2121 } /* Literal.String.Char */
+.dl { color: #BA2121 } /* Literal.String.Delimiter */
+.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
+.s2 { color: #BA2121 } /* Literal.String.Double */
+.se { color: #AA5D1F; font-weight: bold } /* Literal.String.Escape */
+.sh { color: #BA2121 } /* Literal.String.Heredoc */
+.si { color: #A45A77; font-weight: bold } /* Literal.String.Interpol */
+.sx { color: #008000 } /* Literal.String.Other */
+.sr { color: #A45A77 } /* Literal.String.Regex */
+.s1 { color: #BA2121 } /* Literal.String.Single */
+.ss { color: #19177C } /* Literal.String.Symbol */
+.bp { color: #008000 } /* Name.Builtin.Pseudo */
+.fm { color: #0000FF } /* Name.Function.Magic */
+.vc { color: #19177C } /* Name.Variable.Class */
+.vg { color: #19177C } /* Name.Variable.Global */
+.vi { color: #19177C } /* Name.Variable.Instance */
+.vm { color: #19177C } /* Name.Variable.Magic */
+.il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file