-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocumentation.css
executable file
·99 lines (80 loc) · 1.71 KB
/
documentation.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
@import '../bolt/documentation.css';
:root {
background-color: #f5f3f3;
--name-color: #332256;
}
html,
body {
background-color: #f9f6ff;
background-color: #fbf7ff;
background-color: #fdf6fa;
background-color: #f5f3f3;
}
body {
color: #272a2b;
color: #c1004d;
color: #94003b;
color: #58233e;
color: #423275;
color: #351a6b;
color: #332256;
}
code,
.params {
color: #e2006f;
}
.js.block,
code.block {
background-color: #383244;
background-color: #303740;
background-color: #fdfcff;
background-color: #312b3e;
}
.test-section {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-gap: 3.75rem;
padding-left: 1.875rem;
padding-right: 1.875rem;
}
.test-article {
position: relative;
display: block;
margin-left: 0;
margin-right: 0;
border-top: 3px solid black;
border-color: inherit;
}
.test-article.test-failed {
border-color: red;
}
.test-article.test-passed {
border-color: #a0ce0b;
}
.test-article.test-passed > .test-title {
color: #a0ce0b;
}
.span-1-test-article { grid-column-end: span 1; }
.span-2-test-article { grid-column-end: span 2; }
.span-3-test-article { grid-column-end: span 3; }
.span-4-test-article { grid-column-end: span 4; }
.span-5-test-article { grid-column-end: span 5; }
.span-6-test-article { grid-column-end: span 6; }
.test-title {
font-size: 0.9375rem;
line-height: 1.125rem;
font-weight: 300;
min-height: 2.5rem;
}
.test-title + .test-fixture {
margin-top: 1.25rem;
}
@media (min-width: 42em) {
.test-title {
font-size: 1.125rem;
line-height: 1.25rem;
}
}
.test-fixture > canvas {
width: 100%;
}