forked from BrandedEntertainmentNetwork/cypress-rest-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.css
126 lines (109 loc) · 1.93 KB
/
display.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
120
121
122
123
124
125
126
.cypress-rest-graphql {
text-align: left;
}
div.code {
white-space: pre;
}
.container {
background: #fff;
padding: 0;
}
.header {
background: #EFF3F7;
border-radius: 10px;
overflow: hidden;
display: flex;
align-items: center;
padding-right: 8px;
margin-bottom: 16px;
}
.header h1 {
display: inline-flex;
background: #6D8FB8;
color: #fff;
font-weight: 600;
font-size: 16px;
line-height: 19px;
letter-spacing: 1px;
padding: 16px;
}
.header h2 {
margin-left: 8px;
color: #5246AE;
font-size: 16px;
line-height: 19px;
letter-spacing: 1px;
}
.duration-response {
display: inline-flex;
align-items: center;
border-radius: 10px;
margin-left: auto;
overflow: hidden;
}
.duration {
color: #6D8FB8;
padding: 8px;
background: #fff;
}
.statusText {
background: #6FCF97;
color: #fff;
padding: 8px;
}
.statusText.Unauthorized {
background: #FB7168;
color: #fff;
padding: 8px;
}
.item {
background: #fff;
box-shadow: 0 4px 16px rgba(82, 70, 174, 0.2);
border-radius: 10px;
padding: 12px;
position: relative;
margin-bottom: 16px;
overflow: hidden;
}
.item .title {
font-weight: 600;
font-size: 14px;
line-height: 16px;
margin-right: 8px;
color: #6D8FB8;
}
.item:not(.short) .title {
padding-bottom: 12px;
margin-bottom: 12px;
border-bottom: 1px solid #EFF3F7;
}
.item pre {
white-space: pre-wrap;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.item code {
white-space: pre-wrap;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.item.short {
display: inline-flex;
align-items: center;
margin-right: 12px;
}
.item.short::before {
content: "";
position: absolute;
background: #ABC4E1;
width: 4px;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.item.short pre {
font-weight: 600;
font-size: 14px;
line-height: 16px;
color: #171490;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}