blob: 9156142383d6352c18a107644d672de97175ff9e (
plain)
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
|
body {
background: #e8eff0;
font-family: "Helvetica";
font-size: large;
}
h1,
h2,
h3 {
color: #11557c;
}
#invocation-list > ul > li {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
border: 1px solid #b2bec3;
border-radius: 6px;
margin-bottom: 15px;
padding: 3px 7px;
}
#invocation-verb {
font-weight: 700;
}
#invocation-target {
background-color: #ced6d9;
}
#invocation-failure {
color: #d63031;
}
|