Till Westmann | 0f6ee0a | 2015-10-02 17:10:19 -0700 | [diff] [blame] | 1 | /* |
| 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.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 20 | body { |
| 21 | background: none repeat scroll 0 0 white; |
genia.likes.science@gmail.com | 6995caf | 2013-05-20 18:05:02 -0700 | [diff] [blame] | 22 | color: black; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 23 | font-family: 'Bitter'; |
| 24 | font-size: 14px; |
| 25 | line-height: 17px; |
| 26 | width: 100%; |
| 27 | } |
| 28 | |
| 29 | .content { |
genia.likes.science@gmail.com | bcd0ea1 | 2013-05-13 01:34:31 -0700 | [diff] [blame] | 30 | margin-top: 36px; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | label.query, label.result { |
| 34 | font-size: 24px; |
| 35 | padding-bottom: 10px; |
| 36 | font-weight: bold; |
genia.likes.science@gmail.com | d427d44 | 2013-05-24 10:58:56 -0700 | [diff] [blame] | 37 | color : #17265a; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | div.host { |
| 41 | float: left; |
| 42 | margin: 0 100px 0 10px; |
| 43 | } |
| 44 | |
| 45 | div.port { |
| 46 | } |
| 47 | |
| 48 | div.left { |
| 49 | float: left; |
| 50 | width: 320px; |
| 51 | padding: 0 20px 0 10px; |
| 52 | } |
| 53 | |
| 54 | div.right { |
| 55 | } |
| 56 | |
genia.likes.science@gmail.com | 024749d | 2013-05-20 21:33:08 -0700 | [diff] [blame] | 57 | #run-btn { |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 58 | } |
| 59 | |
genia.likes.science@gmail.com | 016314e | 2013-05-25 03:19:07 -0700 | [diff] [blame] | 60 | #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.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 67 | textarea.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.com | 833aea7 | 2013-04-04 22:38:29 +0000 | [diff] [blame] | 77 | color: #333; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 78 | resize: none; |
| 79 | border: 10px solid #eee; |
| 80 | } |
| 81 | |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 82 | label { |
| 83 | padding-top: 10px; |
| 84 | } |
| 85 | |
genia.likes.science@gmail.com | 016314e | 2013-05-25 03:19:07 -0700 | [diff] [blame] | 86 | #opts { |
| 87 | margin-right: 4px; |
| 88 | } |
| 89 | |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 90 | input[type=text] { |
| 91 | height: 20px; |
| 92 | } |
| 93 | |
| 94 | pre { |
genia.likes.science@gmail.com | ba39611 | 2013-06-03 01:05:46 -0700 | [diff] [blame] | 95 | overflow-x : auto; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 96 | overflow: auto; |
genia.likes.science@gmail.com | ba39611 | 2013-06-03 01:05:46 -0700 | [diff] [blame] | 97 | overflow-wrap: normal; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 98 | white-space: pre; |
| 99 | } |
| 100 | |
| 101 | div.output label.heading { |
| 102 | font-size: 24px; |
| 103 | margin-top: 2px; |
| 104 | padding-bottom: 10px; |
| 105 | font-weight: bold; |
genia.likes.science@gmail.com | d427d44 | 2013-05-24 10:58:56 -0700 | [diff] [blame] | 106 | color : #17265a; |
genia.likes.science@gmail.com | b0680b3 | 2013-05-22 16:21:53 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Madhusudan.C.S | e7bdea6 | 2013-06-02 14:34:30 -0700 | [diff] [blame] | 109 | div.output label.heading.error { |
| 110 | color: #E03809; |
| 111 | } |
| 112 | |
genia.likes.science@gmail.com | b0680b3 | 2013-05-22 16:21:53 -0700 | [diff] [blame] | 113 | div.output h4 { |
genia.likes.science@gmail.com | 9d239d1 | 2013-05-14 01:31:28 -0700 | [diff] [blame] | 114 | color : #17265a; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 115 | } |
| 116 | |
genia.likes.science@gmail.com | b0680b3 | 2013-05-22 16:21:53 -0700 | [diff] [blame] | 117 | a.accordion-toggle { |
genia.likes.science@gmail.com | c69cb70 | 2013-05-22 12:50:52 -0700 | [diff] [blame] | 118 | color : #17265a; |
| 119 | } |
| 120 | |
Madhusudan.C.S | e7bdea6 | 2013-06-02 14:34:30 -0700 | [diff] [blame] | 121 | .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.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 129 | div.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.com | 6acd314 | 2013-04-05 01:16:28 +0000 | [diff] [blame] | 138 | div.output .message pre.error { |
Madhusudan.C.S | e7bdea6 | 2013-06-02 14:34:30 -0700 | [diff] [blame] | 139 | border: 0; |
madhusudancs@gmail.com | 2e1e54c | 2013-03-31 02:31:10 +0000 | [diff] [blame] | 140 | } |
| 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.com | bcd0ea1 | 2013-05-13 01:34:31 -0700 | [diff] [blame] | 176 | |
| 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.com | 6995caf | 2013-05-20 18:05:02 -0700 | [diff] [blame] | 185 | /*.navbar .nav > li > a { |
genia.likes.science@gmail.com | 9d239d1 | 2013-05-14 01:31:28 -0700 | [diff] [blame] | 186 | color: #17265a; |
genia.likes.science@gmail.com | 6995caf | 2013-05-20 18:05:02 -0700 | [diff] [blame] | 187 | }*/ |
genia.likes.science@gmail.com | 9d239d1 | 2013-05-14 01:31:28 -0700 | [diff] [blame] | 188 | |
genia.likes.science@gmail.com | 5db8ef2 | 2013-05-24 14:05:55 -0700 | [diff] [blame] | 189 | .extarget { |
genia.likes.science@gmail.com | bcd0ea1 | 2013-05-13 01:34:31 -0700 | [diff] [blame] | 190 | margin-left: 4px; |
genia.likes.science@gmail.com | 5db8ef2 | 2013-05-24 14:05:55 -0700 | [diff] [blame] | 191 | padding-bottom: 2px; |
genia.likes.science@gmail.com | bcd0ea1 | 2013-05-13 01:34:31 -0700 | [diff] [blame] | 192 | } |
genia.likes.science@gmail.com | 8e68684 | 2013-05-13 01:52:47 -0700 | [diff] [blame] | 193 | |
| 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.com | ba4533f | 2013-05-13 04:25:31 -0700 | [diff] [blame] | 229 | |
| 230 | .span6 { |
| 231 | padding: 24px; |
| 232 | } |