-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphql-playground.css
106 lines (90 loc) · 2.22 KB
/
graphql-playground.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
@media only screen and (min-width: 1280px) and (max-width: 1600px) {
graphql-playground {
margin-left: -250px;
margin-right: -250px;
}
}
@media only screen and (min-width: 1600px) {
graphql-playground {
margin-left: -450px;
margin-right: -450px;
}
}
graphql-playground {
display: block;
}
.graphql-playground-header {
display: flow-root;
}
.light :is(.graphql-playground-heading) {
background-color: #e535ab;
}
.rust :is(.graphql-playground-heading) {
background-color: #e535ab;
}
.coal :is(.graphql-playground-heading) {
background-color: #e535ab;
}
.navy :is(.graphql-playground-heading) {
background-color: #e535ab;
}
.ayu :is(.graphql-playground-heading) {
background-color: #e535ab;
}
:is(.graphql-playground-heading) {
/*background-color: #e535ab;*/
border-color: #9e9e9e;
border-radius: 0.6rem 0.6rem 0 0;
-moz-border-radius: 0.6rem 0.6rem 0 0;
margin-bottom: 0;
}
.graphql-playground-heading {
display: block ruby;
color: #161e26;
background-color: #e535ab;
padding: 16px;
text-align: center;
}
h3.graphql-playground-heading {
margin-top: 0;
}
.graphql-playground-heading:before {
content: "";
position: absolute;
display: block;
background: url("images/graphql-wordmark-white.svg") no-repeat;
background-size: 120px;
width: 120px;
height: 58px;
margin: -24px 10px -24px 10px;
}
.graphql-playground-heading:after {
content: "";
display: block;
background: url("images/inexor.svg") no-repeat;
background-size: 40px;
width: 40px;
height: 46px;
float: right;
margin: -10px 10px -15px 80px;
}
.graphql-playground-description {
display: block ruby;
background-color: rgba(0, 184, 212, 0.1);
margin: 0;
border-right: 3px solid #9e9e9e;
}
.navy :is(.graphql-playground-description):is(.info, .todo) {
border-left: 3px solid #9e9e9e;
border-right: 3px solid #e535ab;
border-radius: 0;
}
graphql-playground-container {
display: block;
padding: 1px;
border-left: 3px solid #9e9e9e;
border-right: 3px solid #e535ab;
border-bottom: 3px solid #9e9e9e;
border-radius: 0 0 0.6rem 0.6rem;
-moz-border-radius: 0 0 0.6rem 0.6rem;
}