forked from GSA/fedramp-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.css
119 lines (99 loc) · 1.69 KB
/
rules.css
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
caption {
font-weight: bold;
font-size: large;
}
thead tr {
background-color: #e0e0e0;
color: inherit;
}
thead th {
vertical-align: bottom;
text-align: left;
white-space: normal;
}
thead td {
}
tbody tr {
vertical-align: top;
}
tbody th {
text-align: left;
background-color: #e8e8e8;
color: inherit;
}
tbody tr {
background-color: #f0f0f0;
color: inherit;
}
code code {
color: inherit;
}
.highlight {
background-color: powderblue;
}
.highlight-missed {
background-color: yellow;
}
.missing {
background-color: orange;
}
.NB {
background-color: thistle;
}
.FedRAMP-ns {
background-color: chartreuse;
}
.context-item {
font-variant: small-caps;
}
.role-error,
.role-fatal {
color: red;
}
.role-warning {
color: orange;
}
blockquote {
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C" "\201D" "\2018" "\2019";
width: 50%;
}
*[title] {
cursor: help;
}
.assertion,
.diagnostic {
font-style: italic;
}
.assertion,
.diagnostic {
/*font-weight: bold;*/
font-size: inherit;
}
.assertion:before,
.diagnostic:before {
/*content: "affirmative message: ";*/
font-style: normal;
font-weight: normal;
}
.diagnostic:before {
/*content: "diagnostic message: ";*/
font-style: normal;
}
.substitution {
font-family: monospace;
background-color: lightgrey;
}
span.has-assertion {
text-decoration: underline;
text-decoration-color: green;
-moz-text-decoration-color:green;
}
span.lacks-assertion {
text-decoration: underline;
text-decoration-color: orange;
-moz-text-decoration-color:orange;
}