blob: 4b1478497747b5b0690d5b768e41bf6ecc41d50b [file] [log] [blame]
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +00001body {
2 background: none repeat scroll 0 0 white;
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -07003 color: black;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +00004 font-family: 'Bitter';
5 font-size: 14px;
6 line-height: 17px;
7 width: 100%;
8}
9
10.content {
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -070011 margin-top: 36px;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000012}
13
14label.query, label.result {
15 font-size: 24px;
16 padding-bottom: 10px;
17 font-weight: bold;
18}
19
20div.host {
21 float: left;
22 margin: 0 100px 0 10px;
23}
24
25div.port {
26}
27
28div.left {
29 float: left;
30 width: 320px;
31 padding: 0 20px 0 10px;
32}
33
34div.right {
35}
36
genia.likes.science@gmail.com024749d2013-05-20 21:33:08 -070037#run-btn {
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000038 clear: both;
39 float: left;
genia.likes.science@gmail.com024749d2013-05-20 21:33:08 -070040 margin-top: 2em;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000041}
42
43textarea.query {
44 -webkit-box-sizing: border-box;
45 -moz-box-sizing: border-box;
46 -ms-box-sizing: border-box;
47 box-sizing: border-box;
48 font-size: 16px;
49 line-height: 20px;
50 font-family: bitter, helvetica;
51 width: 100%;
52 padding: 10px;
madhusudancs@gmail.com833aea72013-04-04 22:38:29 +000053 color: #333;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000054 resize: none;
55 border: 10px solid #eee;
56}
57
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000058label {
59 padding-top: 10px;
60}
61
62input[type=text] {
63 height: 20px;
64}
65
66pre {
67 overflow: auto;
68 white-space: pre;
69}
70
71div.output label.heading {
72 font-size: 24px;
73 margin-top: 2px;
74 padding-bottom: 10px;
75 font-weight: bold;
genia.likes.science@gmail.comb0680b32013-05-22 16:21:53 -070076}
77
78div.output h4 {
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -070079 color : #17265a;
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000080}
81
genia.likes.science@gmail.comb0680b32013-05-22 16:21:53 -070082a.accordion-toggle {
genia.likes.science@gmail.comc69cb702013-05-22 12:50:52 -070083 color : #17265a;
84}
85
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000086div.output .message {
87 -webkit-box-sizing: border-box;
88 -moz-box-sizing: border-box;
89 -ms-box-sizing: border-box;
90 box-sizing: border-box;
91 color: #000;
92 resize: none;
93}
94
madhusudancs@gmail.com6acd3142013-04-05 01:16:28 +000095div.output .message pre.error {
madhusudancs@gmail.com2e1e54c2013-03-31 02:31:10 +000096 -webkit-box-sizing: border-box;
97 -moz-box-sizing: border-box;
98 -ms-box-sizing: border-box;
99 box-sizing: border-box;
100 border-color: rgba(82, 168, 236, 0.8);
101 outline: 0;
102 outline: thin dotted 9;
103
104 -webkit-box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.8);
105 -moz-box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 1.0);
106 box-shadow: inset 0 1px 1px rgba(250, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 1.0);
107 color: #000;
108 resize: none;
109 border: 1px solid #eee;
110 margin-top: 7px;
111 padding: 20px 20px 20px 20px;
112}
113
114.footer {
115 margin-top: 40px;
116}
117
118.footer .line {
119 border-top: 1px solid #EEEEEE;
120 bottom: 20px;
121 height: 10px;
122 left: 0;
123 position: fixed;
124 width: 100%;
125}
126
127.footer .content {
128 background: none repeat scroll 0 0 #FFFFFF;
129 bottom: 0;
130 color: #666666;
131 font-size: 12px;
132 height: 25px;
133 left: 0;
134 padding-top: 5px;
135 position: fixed;
136 width: 100%;
137}
138
139.footer .content .left {
140 padding-left: 20px;
141 float: left;
142}
143
144.footer .content .right {
145 padding-right: 20px;
146 float: right;
147}
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -0700148
149.navbar .brand {
150 width: 160px;
151 height: 40px;
152 overflow: visible;
153 padding-top: 0;
154 padding-bottom: 0;
155}
156
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -0700157/*.navbar .nav > li > a {
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -0700158 color: #17265a;
genia.likes.science@gmail.com6995caf2013-05-20 18:05:02 -0700159}*/
genia.likes.science@gmail.com9d239d12013-05-14 01:31:28 -0700160
genia.likes.science@gmail.combcd0ea12013-05-13 01:34:31 -0700161i {
162 margin-left: 4px;
163}
genia.likes.science@gmail.com8e686842013-05-13 01:52:47 -0700164
165.btn-custom-darken.active {
166 color: rgba(255, 255, 255, 0.75);
167}
168.btn-custom-darken {
169 color: #ffffff;
170 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
171 background-color: #233887;
172 background-image: -moz-linear-gradient(top, #273f97, #1d2e6e);
173 background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#273f97), to(#1d2e6e));
174 background-image: -webkit-linear-gradient(top, #273f97, #1d2e6e);
175 background-image: -o-linear-gradient(top, #273f97, #1d2e6e);
176 background-image: linear-gradient(to bottom, #273f97, #1d2e6e);
177 background-repeat: repeat-x;
178 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff273f97', endColorstr='#ff1d2e6e', GradientType=0);
179 border-color: #1d2e6e #1d2e6e #0d1532;
180 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
181 *background-color: #1d2e6e;
182 /* Darken IE7 buttons by default so they stand out more given they won't have borders */
183
184 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
185}
186.btn-custom-darken:hover,
187.btn-custom-darken:focus,
188.btn-custom-darken:active,
189.btn-custom-darken.active,
190.btn-custom-darken.disabled,
191.btn-custom-darken[disabled] {
192 color: #ffffff;
193 background-color: #1d2e6e;
194 *background-color: #17265a;
195}
196.btn-custom-darken:active,
197.btn-custom-darken.active {
198 background-color: #121d46 ;
199}
genia.likes.science@gmail.comba4533f2013-05-13 04:25:31 -0700200
201.span6 {
202 padding: 24px;
203}