-
Notifications
You must be signed in to change notification settings - Fork 1
/
log.css
95 lines (79 loc) · 1.48 KB
/
log.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
@import 'details-view.css';
:root {
/* Colors */
--white: #FFFFFF;
--light-gray: #F9F9F9;
--gray: #E6E6E6;
--dark-gray: #8E8E93;
--black: #2C2C2E;
--red: #ED5545;
--green: #63C366;
--accent: #1226AA;
/* Padding */
--gap-l:30px;
--gap-m:20px;
--gap-s:10px;
/* Breakpoints */
--mobile:670px;
--tablet:1280px;
--desktop:1920px;
}
section {
margin: 0;
padding: 4px;
overflow: hidden;
width: 100%;
}
section.property-list.test-passed { background-color: #D7ECD4; }
section.property-list.test-failed { background-color: #F5CFCA; }
section.property-list a:link {
color: #00006f;
}
section.property-list > dl {
margin: 0;
}
section.property-list > dl > div {
display: block;
line-height: 1.2em;
}
header.test-passed {
background-color: var(--green);
position: sticky;
left: 0;
top: 0;
width: calc(100vw - 15px);
}
header.test-failed {
background-color: var(--red);
position: sticky;
left: 0;
top: 0;
width: calc(100vw - 15px);
}
section.property-list > dl dt {
display: inline;
font-weight: bold;
}
section.property-list > dl dt::after {
content: ":";
}
section.property-list > dl dd {
margin: 0 0 0 0.5em;
display: inline;
}
section.property-list > dl dd ul {
margin: 0 0 0.5rem 1rem;
padding: 0;
}
section.property-list > dl dd ul li {
list-style-type: none;
}
section.log {
padding: 4px;
background-color: white;
}
section.log > pre {
margin: 0;
padding: 0;
font-family: "Courier New", Consolas, monospace;
}