forked from remotestorage/api-test-suite
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (89 loc) · 1.55 KB
/
style.css
File metadata and controls
115 lines (89 loc) · 1.55 KB
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
:root {
--background: #eee;
--body-color: #333;
--body-cap: 630px;
--spacing: 8px;
--corner: 3px;
}
body {
max-width: var(--body-cap);
margin: auto;
background: var(--background);
color: var(--body-color);
font: Garamond, Georgia, "Times New Roman", Times, serif;
font-size: 11pt;
}
.content {
padding: var(--spacing);
border-radius: var(--corner);
background: #f9f9f9;
font-family: Lucida Grande, Helvetica Neue, Helvetica, Arial, sans-serif;
}
hr {
height: 0px;
border: 0.5px solid var(--body-color);
opacity: 0.3;
}
pre {
font-size: 80%;
white-space: break-spaces;
background: #eee;
padding: var(--spacing);
border-radius: var(--corner);
}
#error {
padding: var(--spacing);
margin: var(--spacing) 0;
border-radius: var(--corner);
background: #fecc66;
}
.hidden {
display: none !important;
}
/* header */
header h1 {
display: flex;
align-items: center;
gap: var(--spacing);
}
header img {
width: 32px;
}
header a:not([aria-hidden="true"]), footer a {
opacity: 0.6;
}
header a {
color: var(--body-color);
text-decoration: none;
}
footer {
display: flex;
justify-content: center;
}
footer a {
color: var(--body-color);
}
/* mocha */
#mocha .result {
padding-top: 0;
}
#mocha-stats {
position: unset;
display: flex;
}
#mocha-stats .progress-element {
visibility: unset;
}
#mocha-stats li {
padding-top: unset;
}
.progress-contain > * {
position: unset !important;
}
.progress-contain :not(.progress-element) {
display: none !important;
}
#mocha .test pre {
max-width: unset;
white-space: break-spaces;
}