File tree Expand file tree Collapse file tree 1 file changed +20
-7
lines changed
Expand file tree Collapse file tree 1 file changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,12 @@ namespace noximo;
99 body {
1010 background-color: #34495e;
1111 color: white;
12- font-family: sans-serif;
12+ font-family: monospace;
13+ font-size: 16px;
14+ }
15+
16+ b {
17+ color: lightskyblue;
1318 }
1419
1520 h1 {
@@ -29,23 +34,31 @@ namespace noximo;
2934 color: yellow;
3035 }
3136
37+ table {
38+ width: 100%;
39+ font-size: 12px;
40+ }
41+
3242 th {
3343 text-align: left;
3444 padding: 25px 0 10px 0;
3545 }
3646
47+ td {
48+ padding: 5px;
49+ }
50+
3751 .section {
3852 font-size: 1.4em;
3953 }
4054
4155 .line {
4256 text-align: right;
43- vertical-align: top;
44- padding: 1px 10px 0 0px;
57+ vertical-align: middle;
4558 }
4659
47- tr :nth-child(even ) {
48- background: #475a73
60+ .error :nth-child(odd ) {
61+ background: #374d63
4962 }
5063
5164 #thanks {
@@ -71,7 +84,7 @@ namespace noximo;
7184 </tr>
7285 </thead>
7386 <?php foreach ($ data [FileOutput::UNKNOWN ] as $ error ): ?>
74- <tr>
87+ <tr class="error" >
7588 <td>
7689 <?= $ error ?>
7790 </td>
@@ -91,7 +104,7 @@ namespace noximo;
91104 </tr>
92105 </thead>
93106 <?php foreach ($ errors as $ error ): ?>
94- <tr>
107+ <tr class="error" >
95108 <td class="line">
96109 <a href='<?= $ error [FileOutput::LINK ] ?> '><?= $ error [FileOutput::LINE ] ?> </a>
97110 </td>
You can’t perform that action at this time.
0 commit comments