blob: b9b733c1f2f3e2b2097df2ae2a5534f8de64537d [file] [log] [blame]
Till Westmann0f6ee0a2015-10-02 17:10:19 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000020body {
21 background: none repeat scroll 0 0 white;
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -070022 color: black;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000023 font-family: 'Bitter';
24 font-size: 14px;
25 line-height: 17px;
26 width: 100%;
27}
28
29.content {
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -070030 margin-top: 36px;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000031}
32
33label.query, label.result {
34 font-size: 24px;
35 padding-bottom: 10px;
36 font-weight: bold;
genia.likes.science@gmail.comd427d442013-05-24 10:58:56 -070037 color : #17265a;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000038}
39
40div.host {
41 float: left;
42 margin: 0 100px 0 10px;
43}
44
45div.port {
46}
47
48div.left {
49 float: left;
50 width: 320px;
51 padding: 0 20px 0 10px;
52}
53
54div.right {
55}
56
genia.likes.science@gmail.com024749d2013-05-20 21:33:08 -070057#run-btn {
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000058}
59
genia.likes.science@gmail.com016314e2013-05-25 03:19:07 -070060#select-toggle-holder {
61 border: 1px black;
62 -webkit-border-radius: 5px;
63 -moz-border-radius: 5px;
64 border-radius: 5px;
65}
66
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000067textarea.query {
68 -webkit-box-sizing: border-box;
69 -moz-box-sizing: border-box;
70 -ms-box-sizing: border-box;
71 box-sizing: border-box;
72 font-size: 16px;
73 line-height: 20px;
74 font-family: bitter, helvetica;
75 width: 100%;
76 padding: 10px;
madhusudancs@gmail.com833aea72013-04-04 22:38:29 +000077 color: #333;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000078 resize: none;
79 border: 10px solid #eee;
80}
81
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000082label {
83 padding-top: 10px;
84}
85
genia.likes.science@gmail.com016314e2013-05-25 03:19:07 -070086#opts {
87 margin-right: 4px;
88}
89
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000090input[type=text] {
91 height: 20px;
92}
93
94pre {
genia.likes.science@gmail.comba396112013-06-03 01:05:46 -070095 overflow-x : auto;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000096 overflow: auto;
genia.likes.science@gmail.comba396112013-06-03 01:05:46 -070097 overflow-wrap: normal;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000098 white-space: pre;
99}
100
101div.output label.heading {
102 font-size: 24px;
103 margin-top: 2px;
104 padding-bottom: 10px;
105 font-weight: bold;
genia.likes.science@gmail.comd427d442013-05-24 10:58:56 -0700106 color : #17265a;
genia.likes.science@gmail.comb0680b32013-05-22 16:21:53 -0700107}
108
Madhusudan.C.Se7bdea62013-06-02 14:34:30 -0700109div.output label.heading.error {
110 color: #E03809;
111}
112
genia.likes.science@gmail.comb0680b32013-05-22 16:21:53 -0700113div.output h4 {
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -0700114 color : #17265a;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +0000115}
116
genia.likes.science@gmail.comb0680b32013-05-22 16:21:53 -0700117a.accordion-toggle {
genia.likes.science@gmail.comc69cb702013-05-22 12:50:52 -0700118 color : #17265a;
119}
120
Madhusudan.C.Se7bdea62013-06-02 14:34:30 -0700121.accordion-inner {
122 padding : 0 0 0 0;
123}
124
125#errorblock .accordion-group .accordion-heading a.accordion-toggle {
126 color: #E03809;
127}
128
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +0000129div.output .message {
130 -webkit-box-sizing: border-box;
131 -moz-box-sizing: border-box;
132 -ms-box-sizing: border-box;
133 box-sizing: border-box;
134 color: #000;
135 resize: none;
136}
137
madhusudancs@gmail.com6acd3142013-04-05 01:16:28 +0000138div.output .message pre.error {
Madhusudan.C.Se7bdea62013-06-02 14:34:30 -0700139 border: 0;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +0000140}
141
142.footer {
143 margin-top: 40px;
144}
145
146.footer .line {
147 border-top: 1px solid #EEEEEE;
148 bottom: 20px;
149 height: 10px;
150 left: 0;
151 position: fixed;
152 width: 100%;
153}
154
155.footer .content {
156 background: none repeat scroll 0 0 #FFFFFF;
157 bottom: 0;
158 color: #666666;
159 font-size: 12px;
160 height: 25px;
161 left: 0;
162 padding-top: 5px;
163 position: fixed;
164 width: 100%;
165}
166
167.footer .content .left {
168 padding-left: 20px;
169 float: left;
170}
171
172.footer .content .right {
173 padding-right: 20px;
174 float: right;
175}
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -0700176
177.navbar .brand {
178 width: 160px;
179 height: 40px;
180 overflow: visible;
181 padding-top: 0;
182 padding-bottom: 0;
183}
184
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -0700185/*.navbar .nav > li > a {
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -0700186 color: #17265a;
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -0700187}*/
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -0700188
genia.likes.science@gmail.com5db8ef22013-05-24 14:05:55 -0700189.extarget {
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -0700190 margin-left: 4px;
genia.likes.science@gmail.com5db8ef22013-05-24 14:05:55 -0700191 padding-bottom: 2px;
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -0700192}
genia.likes.science@gmail.com8e686842013-05-13 01:52:47 -0700193
194.btn-custom-darken.active {
195 color: rgba(255, 255, 255, 0.75);
196}
197.btn-custom-darken {
198 color: #ffffff;
199 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
200 background-color: #233887;
201 background-image: -moz-linear-gradient(top, #273f97, #1d2e6e);
202 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#273f97), to(#1d2e6e));
203 background-image: -webkit-linear-gradient(top, #273f97, #1d2e6e);
204 background-image: -o-linear-gradient(top, #273f97, #1d2e6e);
205 background-image: linear-gradient(to bottom, #273f97, #1d2e6e);
206 background-repeat: repeat-x;
207 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff273f97', endColorstr='#ff1d2e6e', GradientType=0);
208 border-color: #1d2e6e #1d2e6e #0d1532;
209 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
210 *background-color: #1d2e6e;
211 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
212
213 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
214}
215.btn-custom-darken:hover,
216.btn-custom-darken:focus,
217.btn-custom-darken:active,
218.btn-custom-darken.active,
219.btn-custom-darken.disabled,
220.btn-custom-darken[disabled] {
221 color: #ffffff;
222 background-color: #1d2e6e;
223 *background-color: #17265a;
224}
225.btn-custom-darken:active,
226.btn-custom-darken.active {
227 background-color: #121d46 ;
228}
genia.likes.science@gmail.comba4533f2013-05-13 04:25:31 -0700229
230.span6 {
231 padding: 24px;
232}