File: mypy-html.css

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (104 lines) | stat: -rw-r--r-- 1,391 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* CSS for type check coverage reports */

/*
    Used by both summary and file.
*/
body {
    font-family: "Helvetica Neue", sans-serif;
}

/*
    Used only by summary.
*/

h1 {
    text-align: center;
    font-size: 135%;
    margin: 20px;
}

table.summary {
    border-collapse: collapse;
    margin-left: 7%;
    margin-right: 7%;
    width: 85%;
}

table caption {
    margin: 1em;
}

table.summary, tr.summary, th.summary, td.summary {
    border: 1px solid #aaa;
}

th.summary, td.summary {
    padding: 0.4em;
}

td.summary a {
    text-decoration: none;
}

.summary-quality-0 {
    background-color: #dfd;
}

.summary-quality-1 {
    background-color: #ffa;
}

.summary-quality-2 {
    background-color: #faa;
}

td.summary-filename, th.summary-filename {
    text-align: left;
}

td.summary-filename {
    width: 50%;
}

.summary-precision {
    text-align: center;
}

.summary-lines {
    text-align: center;
}

/*
    Used only by file.
*/

td.table-lines {
    text-align: right;
    padding-right: 0.5em;
}

td.table-code { }

span.lineno {
    text-align: right;
}

a:link.lineno, a:visited.lineno {
    color: #999; text-decoration: none;
}

a:hover.lineno, a:active.lineno {
    color: #000; text-decoration: underline;
}

.line-empty, .line-precise {
    background-color: #dfd;
}

.line-imprecise {
    background-color: #ffa;
}

.line-any {
    background-color: #faa;
}