sequenceserver-beta 0.8.7.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE.Apache.txt +176 -0
- data/LICENSE.txt +69 -0
- data/README.txt +5 -0
- data/bin/sequenceserver +82 -0
- data/config.ru +6 -0
- data/example.config.yml +39 -0
- data/lib/profile_code.rb +217 -0
- data/lib/sequenceserver.rb +527 -0
- data/lib/sequenceserver/blast.rb +92 -0
- data/lib/sequenceserver/customisation.rb +60 -0
- data/lib/sequenceserver/database.rb +29 -0
- data/lib/sequenceserver/database_formatter.rb +190 -0
- data/lib/sequenceserver/helpers.rb +136 -0
- data/lib/sequenceserver/sequencehelpers.rb +93 -0
- data/lib/sequenceserver/sinatralikeloggerformatter.rb +12 -0
- data/lib/sequenceserver/version.rb +9 -0
- data/public/css/beige.css.css +254 -0
- data/public/css/bootstrap.dropdown.css +29 -0
- data/public/css/bootstrap.icons.css +155 -0
- data/public/css/bootstrap.min.css +415 -0
- data/public/css/bootstrap.modal.css +28 -0
- data/public/css/custom.css +232 -0
- data/public/img/glyphicons-halflings-white.png +0 -0
- data/public/img/glyphicons-halflings.png +0 -0
- data/public/js/bootstrap.dropdown.js +92 -0
- data/public/js/bootstrap.modal.js +7 -0
- data/public/js/bootstrap.transition.js +7 -0
- data/public/js/jquery-scrollspy.js +98 -0
- data/public/js/jquery-ui.js +14987 -0
- data/public/js/jquery.activity.js +10 -0
- data/public/js/jquery.enablePlaceholder.min.js +10 -0
- data/public/js/jquery.js +5 -0
- data/public/js/sequenceserver.blast.js +208 -0
- data/public/js/sequenceserver.js +304 -0
- data/public/js/store.min.js +2 -0
- data/sequenceserver.gemspec +49 -0
- data/tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta +5486 -0
- data/tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nhr +0 -0
- data/tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nin +0 -0
- data/tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nsq +0 -0
- data/tests/database/protein/Sinvicta2-2-3.prot.subset.fasta +6449 -0
- data/tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.phr +0 -0
- data/tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.pin +0 -0
- data/tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.psq +0 -0
- data/tests/run +26 -0
- data/tests/test_sequencehelpers.rb +77 -0
- data/tests/test_sequenceserver_blast.rb +60 -0
- data/tests/test_ui.rb +104 -0
- data/tests/test_ui.rb~ +104 -0
- data/tests/ui.specs.todo +10 -0
- data/views/500.erb +22 -0
- data/views/_options.erb +144 -0
- data/views/search.erb +220 -0
- metadata +226 -0
@@ -0,0 +1,415 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.0.2
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
|
11
|
+
.clearfix:after{clear:both;}
|
12
|
+
.hide-text{overflow:hidden;text-indent:100%;white-space:nowrap;}
|
13
|
+
.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
|
14
|
+
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;}
|
15
|
+
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}
|
16
|
+
audio:not([controls]){display:none;}
|
17
|
+
html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
|
18
|
+
a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
19
|
+
a:hover,a:active{outline:0;}
|
20
|
+
sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
|
21
|
+
sup{top:-0.5em;}
|
22
|
+
sub{bottom:-0.25em;}
|
23
|
+
img{height:auto;border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;}
|
24
|
+
button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;}
|
25
|
+
button,input{*overflow:visible;line-height:normal;}
|
26
|
+
button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;}
|
27
|
+
button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;}
|
28
|
+
input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}
|
29
|
+
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;}
|
30
|
+
textarea{overflow:auto;vertical-align:top;}
|
31
|
+
body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;color:#333333;background-color:#ffffff;}
|
32
|
+
a{color:#0088cc;text-decoration:none;}
|
33
|
+
a:hover{color:#005580;text-decoration:underline;}
|
34
|
+
.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;content:"";}
|
35
|
+
.row:after{clear:both;}
|
36
|
+
[class*="span"]{float:left;margin-left:20px;}
|
37
|
+
.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
|
38
|
+
.span16{width:940px;}
|
39
|
+
.span15{width:880px;}
|
40
|
+
.span14{width:820px;}
|
41
|
+
.span13{width:760px;}
|
42
|
+
.span12{width:700px;}
|
43
|
+
.span11{width:640px;}
|
44
|
+
.span10{width:580px;}
|
45
|
+
.span9{width:520px;}
|
46
|
+
.span8{width:460px;}
|
47
|
+
.span7{width:400px;}
|
48
|
+
.span6{width:340px;}
|
49
|
+
.span5{width:280px;}
|
50
|
+
.span4{width:220px;}
|
51
|
+
.span3{width:160px;}
|
52
|
+
.span2{width:100px;}
|
53
|
+
.span1{width:40px;}
|
54
|
+
.offset16{margin-left:980px;}
|
55
|
+
.offset15{margin-left:920px;}
|
56
|
+
.offset14{margin-left:860px;}
|
57
|
+
.offset13{margin-left:800px;}
|
58
|
+
.offset12{margin-left:740px;}
|
59
|
+
.offset11{margin-left:680px;}
|
60
|
+
.offset10{margin-left:620px;}
|
61
|
+
.offset9{margin-left:560px;}
|
62
|
+
.offset8{margin-left:500px;}
|
63
|
+
.offset7{margin-left:440px;}
|
64
|
+
.offset6{margin-left:380px;}
|
65
|
+
.offset5{margin-left:320px;}
|
66
|
+
.offset4{margin-left:260px;}
|
67
|
+
.offset3{margin-left:200px;}
|
68
|
+
.offset2{margin-left:140px;}
|
69
|
+
.offset1{margin-left:80px;}
|
70
|
+
.row-fluid{width:100%;*zoom:1;}.row-fluid:before,.row-fluid:after{display:table;content:"";}
|
71
|
+
.row-fluid:after{clear:both;}
|
72
|
+
.row-fluid>[class*="span"]{float:left;margin-left:2.127659574%;}
|
73
|
+
.row-fluid>[class*="span"]:first-child{margin-left:0;}
|
74
|
+
.row-fluid > .span16{width:134.042553178%;}
|
75
|
+
.row-fluid > .span15{width:125.531914881%;}
|
76
|
+
.row-fluid > .span14{width:117.02127658399999%;}
|
77
|
+
.row-fluid > .span13{width:108.510638287%;}
|
78
|
+
.row-fluid > .span12{width:99.99999998999999%;}
|
79
|
+
.row-fluid > .span11{width:91.489361693%;}
|
80
|
+
.row-fluid > .span10{width:82.97872339599999%;}
|
81
|
+
.row-fluid > .span9{width:74.468085099%;}
|
82
|
+
.row-fluid > .span8{width:65.95744680199999%;}
|
83
|
+
.row-fluid > .span7{width:57.446808505%;}
|
84
|
+
.row-fluid > .span6{width:48.93617020799999%;}
|
85
|
+
.row-fluid > .span5{width:40.425531911%;}
|
86
|
+
.row-fluid > .span4{width:31.914893614%;}
|
87
|
+
.row-fluid > .span3{width:23.404255317%;}
|
88
|
+
.row-fluid > .span2{width:14.89361702%;}
|
89
|
+
.row-fluid > .span1{width:6.382978723%;}
|
90
|
+
.container{margin-left:auto;margin-right:auto;*zoom:1;}.container:before,.container:after{display:table;content:"";}
|
91
|
+
.container:after{clear:both;}
|
92
|
+
.container-fluid{padding-left:20px;padding-right:20px;*zoom:1;}.container-fluid:before,.container-fluid:after{display:table;content:"";}
|
93
|
+
.container-fluid:after{clear:both;}
|
94
|
+
p{margin:0 0 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;line-height:18px;}p small{font-size:11px;color:#999999;}
|
95
|
+
.lead{margin-bottom:18px;font-size:20px;font-weight:200;line-height:27px;}
|
96
|
+
h1,h2,h3,h4,h5,h6{margin:0;font-family:inherit;font-weight:bold;color:inherit;text-rendering:optimizelegibility;}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;color:#999999;}
|
97
|
+
h1{font-size:30px;line-height:36px;}h1 small{font-size:18px;}
|
98
|
+
h2{font-size:24px;line-height:36px;}h2 small{font-size:18px;}
|
99
|
+
h3{line-height:27px;font-size:18px;}h3 small{font-size:14px;}
|
100
|
+
h4,h5,h6{line-height:18px;}
|
101
|
+
h4{font-size:14px;}h4 small{font-size:12px;}
|
102
|
+
h5{font-size:12px;}
|
103
|
+
h6{font-size:11px;color:#999999;text-transform:uppercase;}
|
104
|
+
.page-header{padding-bottom:17px;margin:18px 0;border-bottom:1px solid #eeeeee;}
|
105
|
+
.page-header h1{line-height:1;}
|
106
|
+
ul,ol{padding:0;margin:0 0 9px 25px;}
|
107
|
+
ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}
|
108
|
+
ul{list-style:disc;}
|
109
|
+
ol{list-style:decimal;}
|
110
|
+
li{line-height:18px;}
|
111
|
+
ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}
|
112
|
+
dl{margin-bottom:18px;}
|
113
|
+
dt,dd{line-height:18px;}
|
114
|
+
dt{font-weight:bold;line-height:17px;}
|
115
|
+
dd{margin-left:9px;}
|
116
|
+
.dl-horizontal dt{float:left;clear:left;width:120px;text-align:right;}
|
117
|
+
.dl-horizontal dd{margin-left:130px;}
|
118
|
+
hr{margin:18px 0;border:0;border-top:1px solid #eeeeee;border-bottom:1px solid #ffffff;}
|
119
|
+
strong{font-weight:bold;}
|
120
|
+
em{font-style:italic;}
|
121
|
+
.muted{color:#999999;}
|
122
|
+
abbr[title]{border-bottom:1px dotted #ddd;cursor:help;}
|
123
|
+
abbr.initialism{font-size:90%;text-transform:uppercase;}
|
124
|
+
blockquote{padding:0 0 0 15px;margin:0 0 18px;border-left:5px solid #eeeeee;}blockquote p{margin-bottom:0;font-size:16px;font-weight:300;line-height:22.5px;}
|
125
|
+
blockquote small{display:block;line-height:18px;color:#999999;}blockquote small:before{content:'\2014 \00A0';}
|
126
|
+
blockquote.pull-right{float:right;padding-left:0;padding-right:15px;border-left:0;border-right:5px solid #eeeeee;}blockquote.pull-right p,blockquote.pull-right small{text-align:right;}
|
127
|
+
q:before,q:after,blockquote:before,blockquote:after{content:"";}
|
128
|
+
address{display:block;margin-bottom:18px;line-height:18px;font-style:normal;}
|
129
|
+
small{font-size:100%;}
|
130
|
+
cite{font-style:normal;}
|
131
|
+
code,pre{padding:0 3px 2px;font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;color:#333333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
132
|
+
code{padding:2px 4px;color:#d14;background-color:#f7f7f9;border:1px solid #e1e1e8;}
|
133
|
+
pre{display:block;padding:8.5px;margin:0 0 9px;font-size:12.025px;line-height:18px;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;white-space:pre;white-space:pre-wrap;word-break:break-all;word-wrap:break-word;}pre.prettyprint{margin-bottom:18px;}
|
134
|
+
pre code{padding:0;color:inherit;background-color:transparent;border:0;}
|
135
|
+
.pre-scrollable{max-height:340px;overflow-y:scroll;}
|
136
|
+
.label{padding:1px 4px 2px;font-size:10.998px;font-weight:bold;line-height:13px;color:#ffffff;vertical-align:middle;white-space:nowrap;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#999999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
137
|
+
.label:hover{color:#ffffff;text-decoration:none;}
|
138
|
+
.label-important{background-color:#b94a48;}
|
139
|
+
.label-important:hover{background-color:#953b39;}
|
140
|
+
.label-warning{background-color:#f89406;}
|
141
|
+
.label-warning:hover{background-color:#c67605;}
|
142
|
+
.label-success{background-color:#468847;}
|
143
|
+
.label-success:hover{background-color:#356635;}
|
144
|
+
.label-info{background-color:#3a87ad;}
|
145
|
+
.label-info:hover{background-color:#2d6987;}
|
146
|
+
.label-inverse{background-color:#333333;}
|
147
|
+
.label-inverse:hover{background-color:#1a1a1a;}
|
148
|
+
.badge{padding:1px 9px 2px;font-size:12.025px;font-weight:bold;white-space:nowrap;color:#ffffff;background-color:#999999;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}
|
149
|
+
.badge:hover{color:#ffffff;text-decoration:none;cursor:pointer;}
|
150
|
+
.badge-error{background-color:#b94a48;}
|
151
|
+
.badge-error:hover{background-color:#953b39;}
|
152
|
+
.badge-warning{background-color:#f89406;}
|
153
|
+
.badge-warning:hover{background-color:#c67605;}
|
154
|
+
.badge-success{background-color:#468847;}
|
155
|
+
.badge-success:hover{background-color:#356635;}
|
156
|
+
.badge-info{background-color:#3a87ad;}
|
157
|
+
.badge-info:hover{background-color:#2d6987;}
|
158
|
+
.badge-inverse{background-color:#333333;}
|
159
|
+
.badge-inverse:hover{background-color:#1a1a1a;}
|
160
|
+
table{max-width:100%;border-collapse:collapse;border-spacing:0;background-color:transparent;}
|
161
|
+
.table{width:100%;margin-bottom:18px;}.table th,.table td{padding:8px;line-height:18px;text-align:left;vertical-align:top;border-top:1px solid #dddddd;}
|
162
|
+
.table th{font-weight:bold;}
|
163
|
+
.table thead th{vertical-align:bottom;}
|
164
|
+
.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
|
165
|
+
.table tbody+tbody{border-top:2px solid #dddddd;}
|
166
|
+
.table-condensed th,.table-condensed td{padding:4px 5px;}
|
167
|
+
.table-bordered{border:1px solid #dddddd;border-left:0;border-collapse:separate;*border-collapse:collapsed;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;}
|
168
|
+
.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;}
|
169
|
+
.table-bordered thead:first-child tr:first-child th:first-child,.table-bordered tbody:first-child tr:first-child td:first-child{-webkit-border-radius:4px 0 0 0;-moz-border-radius:4px 0 0 0;border-radius:4px 0 0 0;}
|
170
|
+
.table-bordered thead:first-child tr:first-child th:last-child,.table-bordered tbody:first-child tr:first-child td:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0;}
|
171
|
+
.table-bordered thead:last-child tr:last-child th:first-child,.table-bordered tbody:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;}
|
172
|
+
.table-bordered thead:last-child tr:last-child th:last-child,.table-bordered tbody:last-child tr:last-child td:last-child{-webkit-border-radius:0 0 4px 0;-moz-border-radius:0 0 4px 0;border-radius:0 0 4px 0;}
|
173
|
+
.table-striped tbody tr:nth-child(odd) td,.table-striped tbody tr:nth-child(odd) th{background-color:#f9f9f9;}
|
174
|
+
.table tbody tr:hover td,.table tbody tr:hover th{background-color:#f5f5f5;}
|
175
|
+
table .span1{float:none;width:24px;margin-left:0;}
|
176
|
+
table .span2{float:none;width:84px;margin-left:0;}
|
177
|
+
table .span3{float:none;width:144px;margin-left:0;}
|
178
|
+
table .span4{float:none;width:204px;margin-left:0;}
|
179
|
+
table .span5{float:none;width:264px;margin-left:0;}
|
180
|
+
table .span6{float:none;width:324px;margin-left:0;}
|
181
|
+
table .span7{float:none;width:384px;margin-left:0;}
|
182
|
+
table .span8{float:none;width:444px;margin-left:0;}
|
183
|
+
table .span9{float:none;width:504px;margin-left:0;}
|
184
|
+
table .span10{float:none;width:564px;margin-left:0;}
|
185
|
+
table .span11{float:none;width:624px;margin-left:0;}
|
186
|
+
table .span12{float:none;width:684px;margin-left:0;}
|
187
|
+
table .span13{float:none;width:744px;margin-left:0;}
|
188
|
+
table .span14{float:none;width:804px;margin-left:0;}
|
189
|
+
table .span15{float:none;width:864px;margin-left:0;}
|
190
|
+
table .span16{float:none;width:924px;margin-left:0;}
|
191
|
+
table .span17{float:none;width:984px;margin-left:0;}
|
192
|
+
table .span18{float:none;width:1044px;margin-left:0;}
|
193
|
+
table .span19{float:none;width:1104px;margin-left:0;}
|
194
|
+
table .span20{float:none;width:1164px;margin-left:0;}
|
195
|
+
table .span21{float:none;width:1224px;margin-left:0;}
|
196
|
+
table .span22{float:none;width:1284px;margin-left:0;}
|
197
|
+
table .span23{float:none;width:1344px;margin-left:0;}
|
198
|
+
table .span24{float:none;width:1404px;margin-left:0;}
|
199
|
+
form{margin:0 0 18px;}
|
200
|
+
fieldset{padding:0;margin:0;border:0;}
|
201
|
+
legend{display:block;width:100%;padding:0;margin-bottom:27px;font-size:19.5px;line-height:36px;color:#333333;border:0;border-bottom:1px solid #eee;}legend small{font-size:13.5px;color:#999999;}
|
202
|
+
label,input,button,select,textarea{font-size:13px;font-weight:normal;line-height:18px;}
|
203
|
+
input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
|
204
|
+
label{display:block;margin-bottom:5px;color:#333333;}
|
205
|
+
input,textarea,select,.uneditable-input{display:inline-block;width:210px;height:18px;padding:4px;margin-bottom:9px;font-size:13px;line-height:18px;color:#555555;border:1px solid #cccccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
206
|
+
.uneditable-textarea{width:auto;height:auto;}
|
207
|
+
label input,label textarea,label select{display:block;}
|
208
|
+
input[type="image"],input[type="checkbox"],input[type="radio"]{width:auto;height:auto;padding:0;margin:3px 0;*margin-top:0;line-height:normal;cursor:pointer;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;border:0 \9;}
|
209
|
+
input[type="image"]{border:0;}
|
210
|
+
input[type="file"]{width:auto;padding:initial;line-height:initial;border:initial;background-color:#ffffff;background-color:initial;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
211
|
+
input[type="button"],input[type="reset"],input[type="submit"]{width:auto;height:auto;}
|
212
|
+
select,input[type="file"]{height:28px;*margin-top:4px;line-height:28px;}
|
213
|
+
input[type="file"]{line-height:18px \9;}
|
214
|
+
select{width:220px;background-color:#ffffff;}
|
215
|
+
select[multiple],select[size]{height:auto;}
|
216
|
+
input[type="image"]{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
217
|
+
textarea{height:auto;}
|
218
|
+
input[type="hidden"]{display:none;}
|
219
|
+
.radio,.checkbox{padding-left:18px;}
|
220
|
+
.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-18px;}
|
221
|
+
.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
|
222
|
+
.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
|
223
|
+
.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;}
|
224
|
+
input,textarea{-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;}
|
225
|
+
input:focus,textarea:focus{border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 8px rgba(82, 168, 236, 0.6);outline:0;outline:thin dotted \9;}
|
226
|
+
input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus,select:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
227
|
+
.input-mini{width:60px;}
|
228
|
+
.input-small{width:90px;}
|
229
|
+
.input-medium{width:150px;}
|
230
|
+
.input-large{width:210px;}
|
231
|
+
.input-xlarge{width:270px;}
|
232
|
+
.input-xxlarge{width:530px;}
|
233
|
+
input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{float:none;margin-left:0;}
|
234
|
+
input,textarea,.uneditable-input{margin-left:0;}
|
235
|
+
input.span16, textarea.span16, .uneditable-input.span16{width:930px;}
|
236
|
+
input.span15, textarea.span15, .uneditable-input.span15{width:870px;}
|
237
|
+
input.span14, textarea.span14, .uneditable-input.span14{width:810px;}
|
238
|
+
input.span13, textarea.span13, .uneditable-input.span13{width:750px;}
|
239
|
+
input.span12, textarea.span12, .uneditable-input.span12{width:690px;}
|
240
|
+
input.span11, textarea.span11, .uneditable-input.span11{width:630px;}
|
241
|
+
input.span10, textarea.span10, .uneditable-input.span10{width:570px;}
|
242
|
+
input.span9, textarea.span9, .uneditable-input.span9{width:510px;}
|
243
|
+
input.span8, textarea.span8, .uneditable-input.span8{width:450px;}
|
244
|
+
input.span7, textarea.span7, .uneditable-input.span7{width:390px;}
|
245
|
+
input.span6, textarea.span6, .uneditable-input.span6{width:330px;}
|
246
|
+
input.span5, textarea.span5, .uneditable-input.span5{width:270px;}
|
247
|
+
input.span4, textarea.span4, .uneditable-input.span4{width:210px;}
|
248
|
+
input.span3, textarea.span3, .uneditable-input.span3{width:150px;}
|
249
|
+
input.span2, textarea.span2, .uneditable-input.span2{width:90px;}
|
250
|
+
input.span1, textarea.span1, .uneditable-input.span1{width:30px;}
|
251
|
+
input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{background-color:#eeeeee;border-color:#ddd;cursor:not-allowed;}
|
252
|
+
.control-group.warning>label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;}
|
253
|
+
.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;border-color:#c09853;}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:0 0 6px #dbc59e;-moz-box-shadow:0 0 6px #dbc59e;box-shadow:0 0 6px #dbc59e;}
|
254
|
+
.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;}
|
255
|
+
.control-group.error>label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;}
|
256
|
+
.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;border-color:#b94a48;}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:0 0 6px #d59392;-moz-box-shadow:0 0 6px #d59392;box-shadow:0 0 6px #d59392;}
|
257
|
+
.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;}
|
258
|
+
.control-group.success>label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;}
|
259
|
+
.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;border-color:#468847;}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:0 0 6px #7aba7b;-moz-box-shadow:0 0 6px #7aba7b;box-shadow:0 0 6px #7aba7b;}
|
260
|
+
.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;}
|
261
|
+
input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
|
262
|
+
.form-actions{padding:17px 20px 18px;margin-top:18px;margin-bottom:18px;background-color:#eeeeee;border-top:1px solid #ddd;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";}
|
263
|
+
.form-actions:after{clear:both;}
|
264
|
+
.uneditable-input{display:block;background-color:#ffffff;border-color:#eee;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
|
265
|
+
:-moz-placeholder{color:#999999;}
|
266
|
+
::-webkit-input-placeholder{color:#999999;}
|
267
|
+
.help-block,.help-inline{color:#555555;}
|
268
|
+
.help-block{display:block;margin-bottom:9px;}
|
269
|
+
.help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
|
270
|
+
.input-prepend,.input-append{margin-bottom:5px;}.input-prepend input,.input-append input,.input-prepend select,.input-append select,.input-prepend .uneditable-input,.input-append .uneditable-input{*margin-left:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}.input-prepend input:focus,.input-append input:focus,.input-prepend select:focus,.input-append select:focus,.input-prepend .uneditable-input:focus,.input-append .uneditable-input:focus{position:relative;z-index:2;}
|
271
|
+
.input-prepend .uneditable-input,.input-append .uneditable-input{border-left-color:#ccc;}
|
272
|
+
.input-prepend .add-on,.input-append .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:normal;line-height:18px;text-align:center;text-shadow:0 1px 0 #ffffff;vertical-align:middle;background-color:#eeeeee;border:1px solid #ccc;}
|
273
|
+
.input-prepend .add-on,.input-append .add-on,.input-prepend .btn,.input-append .btn{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
274
|
+
.input-prepend .active,.input-append .active{background-color:#a9dba9;border-color:#46a546;}
|
275
|
+
.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
|
276
|
+
.input-append input,.input-append select .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
277
|
+
.input-append .uneditable-input{border-left-color:#eee;border-right-color:#ccc;}
|
278
|
+
.input-append .add-on,.input-append .btn{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
|
279
|
+
.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
280
|
+
.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;}
|
281
|
+
.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0;}
|
282
|
+
.search-query{padding-left:14px;padding-right:14px;margin-bottom:0;-webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px;}
|
283
|
+
.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;margin-bottom:0;}
|
284
|
+
.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}
|
285
|
+
.form-search label,.form-inline label{display:inline-block;}
|
286
|
+
.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
|
287
|
+
.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
|
288
|
+
.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-left:0;margin-right:3px;}
|
289
|
+
.control-group{margin-bottom:9px;}
|
290
|
+
legend+.control-group{margin-top:18px;-webkit-margin-top-collapse:separate;}
|
291
|
+
.form-horizontal .control-group{margin-bottom:18px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";}
|
292
|
+
.form-horizontal .control-group:after{clear:both;}
|
293
|
+
.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right;}
|
294
|
+
.form-horizontal .controls{margin-left:160px;*display:inline-block;*margin-left:0;*padding-left:20px;}
|
295
|
+
.form-horizontal .help-block{margin-top:9px;margin-bottom:0;}
|
296
|
+
.form-horizontal .form-actions{padding-left:160px;}
|
297
|
+
.btn{display:inline-block;*display:inline;*zoom:1;padding:4px 10px 4px;margin-bottom:0;font-size:13px;line-height:18px;color:#333333;text-align:center;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);vertical-align:middle;background-color:#f5f5f5;background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-ms-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(top, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);border:1px solid #cccccc;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);cursor:pointer;*margin-left:.3em;}.btn:hover,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{background-color:#e6e6e6;}
|
298
|
+
.btn:active,.btn.active{background-color:#cccccc \9;}
|
299
|
+
.btn:first-child{*margin-left:0;}
|
300
|
+
.btn:hover{color:#333333;text-decoration:none;background-color:#e6e6e6;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-ms-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
|
301
|
+
.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
|
302
|
+
.btn.active,.btn:active{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 2px 4px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);background-color:#e6e6e6;background-color:#d9d9d9 \9;outline:0;}
|
303
|
+
.btn.disabled,.btn[disabled]{cursor:default;background-image:none;background-color:#e6e6e6;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
|
304
|
+
.btn-large{padding:9px 14px;font-size:15px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
|
305
|
+
.btn-large [class^="icon-"]{margin-top:1px;}
|
306
|
+
.btn-small{padding:5px 9px;font-size:11px;line-height:16px;}
|
307
|
+
.btn-small [class^="icon-"]{margin-top:-1px;}
|
308
|
+
.btn-mini{padding:2px 6px;font-size:11px;line-height:14px;}
|
309
|
+
.btn-primary,.btn-primary:hover,.btn-warning,.btn-warning:hover,.btn-danger,.btn-danger:hover,.btn-success,.btn-success:hover,.btn-info,.btn-info:hover,.btn-inverse,.btn-inverse:hover{text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);color:#ffffff;}
|
310
|
+
.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);}
|
311
|
+
.btn-primary{background-color:#0074cc;background-image:-moz-linear-gradient(top, #0088cc, #0055cc);background-image:-ms-linear-gradient(top, #0088cc, #0055cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));background-image:-webkit-linear-gradient(top, #0088cc, #0055cc);background-image:-o-linear-gradient(top, #0088cc, #0055cc);background-image:linear-gradient(top, #0088cc, #0055cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);border-color:#0055cc #0055cc #003580;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-primary:hover,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{background-color:#0055cc;}
|
312
|
+
.btn-primary:active,.btn-primary.active{background-color:#004099 \9;}
|
313
|
+
.btn-warning{background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-ms-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(top, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-warning:hover,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{background-color:#f89406;}
|
314
|
+
.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}
|
315
|
+
.btn-danger{background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-ms-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(top, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-danger:hover,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{background-color:#bd362f;}
|
316
|
+
.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
|
317
|
+
.btn-success{background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-ms-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(top, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-success:hover,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{background-color:#51a351;}
|
318
|
+
.btn-success:active,.btn-success.active{background-color:#408140 \9;}
|
319
|
+
.btn-info{background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-ms-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(top, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-info:hover,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{background-color:#2f96b4;}
|
320
|
+
.btn-info:active,.btn-info.active{background-color:#24748c \9;}
|
321
|
+
.btn-inverse{background-color:#414141;background-image:-moz-linear-gradient(top, #555555, #222222);background-image:-ms-linear-gradient(top, #555555, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));background-image:-webkit-linear-gradient(top, #555555, #222222);background-image:-o-linear-gradient(top, #555555, #222222);background-image:linear-gradient(top, #555555, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);}.btn-inverse:hover,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{background-color:#222222;}
|
322
|
+
.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
|
323
|
+
button.btn,input[type="submit"].btn{*padding-top:2px;*padding-bottom:2px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;}
|
324
|
+
button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;}
|
325
|
+
button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;}
|
326
|
+
button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;}
|
327
|
+
.btn-group{position:relative;*zoom:1;*margin-left:.3em;}.btn-group:before,.btn-group:after{display:table;content:"";}
|
328
|
+
.btn-group:after{clear:both;}
|
329
|
+
.btn-group:first-child{*margin-left:0;}
|
330
|
+
.btn-group+.btn-group{margin-left:5px;}
|
331
|
+
.btn-toolbar{margin-top:9px;margin-bottom:9px;}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1;}
|
332
|
+
.btn-group .btn{position:relative;float:left;margin-left:-1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
333
|
+
.btn-group .btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
|
334
|
+
.btn-group .btn:last-child,.btn-group .dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
|
335
|
+
.btn-group .btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
|
336
|
+
.btn-group .btn.large:last-child,.btn-group .large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
|
337
|
+
.btn-group .btn:hover,.btn-group .btn:focus,.btn-group .btn:active,.btn-group .btn.active{z-index:2;}
|
338
|
+
.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
|
339
|
+
.btn-group .dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 1px 0 0 rgba(255, 255, 255, 0.125),inset 0 1px 0 rgba(255, 255, 255, 0.2),0 1px 2px rgba(0, 0, 0, 0.05);*padding-top:3px;*padding-bottom:3px;}
|
340
|
+
.btn-group .btn-mini.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:1px;*padding-bottom:1px;}
|
341
|
+
.btn-group .btn-small.dropdown-toggle{*padding-top:4px;*padding-bottom:4px;}
|
342
|
+
.btn-group .btn-large.dropdown-toggle{padding-left:12px;padding-right:12px;}
|
343
|
+
.btn-group.open{*z-index:1000;}.btn-group.open .dropdown-menu{display:block;margin-top:1px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
|
344
|
+
.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 6px rgba(0, 0, 0, 0.15),0 1px 2px rgba(0, 0, 0, 0.05);}
|
345
|
+
.btn .caret{margin-top:7px;margin-left:0;}
|
346
|
+
.btn:hover .caret,.open.btn-group .caret{opacity:1;filter:alpha(opacity=100);}
|
347
|
+
.btn-mini .caret{margin-top:5px;}
|
348
|
+
.btn-small .caret{margin-top:6px;}
|
349
|
+
.btn-large .caret{margin-top:6px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid #000000;}
|
350
|
+
.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;opacity:0.75;filter:alpha(opacity=75);}
|
351
|
+
.navbar{*position:relative;*z-index:2;overflow:visible;margin-bottom:18px;}
|
352
|
+
.navbar-inner{padding-left:20px;padding-right:20px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.25),inset 0 -1px 0 rgba(0, 0, 0, 0.1);}
|
353
|
+
.navbar .container{width:auto;}
|
354
|
+
.btn-navbar{display:none;float:right;padding:7px 10px;margin-left:5px;margin-right:5px;background-color:#2c2c2c;background-image:-moz-linear-gradient(top, #333333, #222222);background-image:-ms-linear-gradient(top, #333333, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222));background-image:-webkit-linear-gradient(top, #333333, #222222);background-image:-o-linear-gradient(top, #333333, #222222);background-image:linear-gradient(top, #333333, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);filter:progid:dximagetransform.microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1),0 1px 0 rgba(255, 255, 255, 0.075);}.btn-navbar:hover,.btn-navbar:active,.btn-navbar.active,.btn-navbar.disabled,.btn-navbar[disabled]{background-color:#222222;}
|
355
|
+
.btn-navbar:active,.btn-navbar.active{background-color:#080808 \9;}
|
356
|
+
.btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);-moz-box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);box-shadow:0 1px 0 rgba(0, 0, 0, 0.25);}
|
357
|
+
.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}
|
358
|
+
.nav-collapse.collapse{height:auto;}
|
359
|
+
.navbar{color:#999999;}.navbar .brand:hover{text-decoration:none;}
|
360
|
+
.navbar .brand{float:left;display:block;padding:8px 20px 12px;margin-left:-20px;font-size:20px;font-weight:200;line-height:1;color:#ffffff;}
|
361
|
+
.navbar .navbar-text{margin-bottom:0;line-height:40px;}
|
362
|
+
.navbar .btn,.navbar .btn-group{margin-top:5px;}
|
363
|
+
.navbar .btn-group .btn{margin-top:0;}
|
364
|
+
.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;content:"";}
|
365
|
+
.navbar-form:after{clear:both;}
|
366
|
+
.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;}
|
367
|
+
.navbar-form input,.navbar-form select{display:inline-block;margin-bottom:0;}
|
368
|
+
.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;}
|
369
|
+
.navbar-form .input-append,.navbar-form .input-prepend{margin-top:6px;white-space:nowrap;}.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;}
|
370
|
+
.navbar-search{position:relative;float:left;margin-top:6px;margin-bottom:0;}.navbar-search .search-query{padding:4px 9px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;color:#ffffff;background-color:#626262;border:1px solid #151515;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1),0 1px 0px rgba(255, 255, 255, 0.15);-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none;}.navbar-search .search-query:-moz-placeholder{color:#cccccc;}
|
371
|
+
.navbar-search .search-query::-webkit-input-placeholder{color:#cccccc;}
|
372
|
+
.navbar-search .search-query:focus,.navbar-search .search-query.focused{padding:5px 10px;color:#333333;text-shadow:0 1px 0 #ffffff;background-color:#ffffff;border:0;-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);-moz-box-shadow:0 0 3px rgba(0, 0, 0, 0.15);box-shadow:0 0 3px rgba(0, 0, 0, 0.15);outline:0;}
|
373
|
+
.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;}
|
374
|
+
.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-left:0;padding-right:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
|
375
|
+
.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;}
|
376
|
+
.navbar-fixed-top{top:0;}
|
377
|
+
.navbar-fixed-bottom{bottom:0;}
|
378
|
+
.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;}
|
379
|
+
.navbar .nav.pull-right{float:right;}
|
380
|
+
.navbar .nav>li{display:block;float:left;}
|
381
|
+
.navbar .nav>li>a{float:none;padding:10px 10px 11px;line-height:19px;color:#999999;text-decoration:none;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);}
|
382
|
+
.navbar .nav>li>a:hover{background-color:transparent;color:#ffffff;text-decoration:none;}
|
383
|
+
.navbar .nav .active>a,.navbar .nav .active>a:hover{color:#ffffff;text-decoration:none;background-color:#222222;}
|
384
|
+
.navbar .divider-vertical{height:40px;width:1px;margin:0 9px;overflow:hidden;background-color:#222222;border-right:1px solid #333333;}
|
385
|
+
.navbar .nav.pull-right{margin-left:10px;margin-right:0;}
|
386
|
+
.navbar .dropdown-menu{margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.navbar .dropdown-menu:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0, 0, 0, 0.2);position:absolute;top:-7px;left:9px;}
|
387
|
+
.navbar .dropdown-menu:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #ffffff;position:absolute;top:-6px;left:10px;}
|
388
|
+
.navbar-fixed-bottom .dropdown-menu:before{border-top:7px solid #ccc;border-top-color:rgba(0, 0, 0, 0.2);border-bottom:0;bottom:-7px;top:auto;}
|
389
|
+
.navbar-fixed-bottom .dropdown-menu:after{border-top:6px solid #ffffff;border-bottom:0;bottom:-6px;top:auto;}
|
390
|
+
.navbar .nav .dropdown-toggle .caret,.navbar .nav .open.dropdown .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
|
391
|
+
.navbar .nav .active .caret{opacity:1;filter:alpha(opacity=100);}
|
392
|
+
.navbar .nav .open>.dropdown-toggle,.navbar .nav .active>.dropdown-toggle,.navbar .nav .open.active>.dropdown-toggle{background-color:transparent;}
|
393
|
+
.navbar .nav .active>.dropdown-toggle:hover{color:#ffffff;}
|
394
|
+
.navbar .nav.pull-right .dropdown-menu,.navbar .nav .dropdown-menu.pull-right{left:auto;right:0;}.navbar .nav.pull-right .dropdown-menu:before,.navbar .nav .dropdown-menu.pull-right:before{left:auto;right:12px;}
|
395
|
+
.navbar .nav.pull-right .dropdown-menu:after,.navbar .nav .dropdown-menu.pull-right:after{left:auto;right:13px;}
|
396
|
+
.alert{padding:8px 35px 8px 14px;margin-bottom:18px;text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853;}
|
397
|
+
.alert-heading{color:inherit;}
|
398
|
+
.alert .close{position:relative;top:-2px;right:-21px;line-height:18px;}
|
399
|
+
.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847;}
|
400
|
+
.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48;}
|
401
|
+
.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#3a87ad;}
|
402
|
+
.alert-block{padding-top:14px;padding-bottom:14px;}
|
403
|
+
.alert-block>p,.alert-block>ul{margin-bottom:0;}
|
404
|
+
.alert-block p+p{margin-top:5px;}
|
405
|
+
.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #eee;border:1px solid rgba(0, 0, 0, 0.05);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);}.well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15);}
|
406
|
+
.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
|
407
|
+
.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
|
408
|
+
.close{float:right;font-size:20px;font-weight:bold;line-height:18px;color:#000000;text-shadow:0 1px 0 #ffffff;opacity:0.2;filter:alpha(opacity=20);}.close:hover{color:#000000;text-decoration:none;opacity:0.4;filter:alpha(opacity=40);cursor:pointer;}
|
409
|
+
.pull-right{float:right;}
|
410
|
+
.pull-left{float:left;}
|
411
|
+
.hide{display:none;}
|
412
|
+
.show{display:block;}
|
413
|
+
.invisible{visibility:hidden;}
|
414
|
+
.fade{-webkit-transition:opacity 0.15s linear;-moz-transition:opacity 0.15s linear;-ms-transition:opacity 0.15s linear;-o-transition:opacity 0.15s linear;transition:opacity 0.15s linear;opacity:0;}.fade.in{opacity:1;}
|
415
|
+
.collapse{-webkit-transition:height 0.35s ease;-moz-transition:height 0.35s ease;-ms-transition:height 0.35s ease;-o-transition:height 0.35s ease;transition:height 0.35s ease;position:relative;overflow:hidden;height:0;}.collapse.in{height:auto;}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v2.0.3
|
3
|
+
*
|
4
|
+
* Copyright 2012 Twitter, Inc
|
5
|
+
* Licensed under the Apache License v2.0
|
6
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
*
|
8
|
+
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
9
|
+
*/
|
10
|
+
.clearfix{*zoom:1;}.clearfix:before,.clearfix:after{display:table;content:"";}
|
11
|
+
.clearfix:after{clear:both;}
|
12
|
+
.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
|
13
|
+
.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}
|
14
|
+
.modal-open .dropdown-menu{z-index:2050;}
|
15
|
+
.modal-open .dropdown.open{*z-index:2050;}
|
16
|
+
.modal-open .popover{z-index:2060;}
|
17
|
+
.modal-open .tooltip{z-index:2070;}
|
18
|
+
.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000000;}.modal-backdrop.fade{opacity:0;}
|
19
|
+
.modal-backdrop,.modal-backdrop.fade.in{opacity:0.8;filter:alpha(opacity=80);}
|
20
|
+
.modal{position:fixed;top:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#ffffff;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-moz-box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);box-shadow:0 3px 7px rgba(0, 0, 0, 0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;}.modal.fade{-webkit-transition:opacity .3s linear, top .3s ease-out;-moz-transition:opacity .3s linear, top .3s ease-out;-ms-transition:opacity .3s linear, top .3s ease-out;-o-transition:opacity .3s linear, top .3s ease-out;transition:opacity .3s linear, top .3s ease-out;top:-25%;}
|
21
|
+
.modal.fade.in{top:50%;}
|
22
|
+
.modal-header{padding:9px 15px;border-bottom:1px solid #eee;}.modal-header .close{margin-top:2px;}
|
23
|
+
.modal-body{overflow-y:auto;max-height:400px;padding:15px;}
|
24
|
+
.modal-form{margin-bottom:0;}
|
25
|
+
.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #ffffff;-moz-box-shadow:inset 0 1px 0 #ffffff;box-shadow:inset 0 1px 0 #ffffff;*zoom:1;}.modal-footer:before,.modal-footer:after{display:table;content:"";}
|
26
|
+
.modal-footer:after{clear:both;}
|
27
|
+
.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0;}
|
28
|
+
.modal-footer .btn-group .btn+.btn{margin-left:-1px;}
|
@@ -0,0 +1,232 @@
|
|
1
|
+
html, body{
|
2
|
+
height: 100%;
|
3
|
+
}
|
4
|
+
|
5
|
+
pre {
|
6
|
+
font-family: Monospace;
|
7
|
+
}
|
8
|
+
|
9
|
+
br.large {
|
10
|
+
line-height: 28px;
|
11
|
+
}
|
12
|
+
|
13
|
+
.control-group {
|
14
|
+
margin-bottom: 0px;
|
15
|
+
}
|
16
|
+
|
17
|
+
.nojs-error {
|
18
|
+
margin-top: 10px;
|
19
|
+
padding: 10px;
|
20
|
+
color: white;
|
21
|
+
background-color: red;
|
22
|
+
}
|
23
|
+
|
24
|
+
.offset-left {
|
25
|
+
margin-left: 20px;
|
26
|
+
}
|
27
|
+
|
28
|
+
.offset-right {
|
29
|
+
margin-right: 20px;
|
30
|
+
}
|
31
|
+
|
32
|
+
.box {
|
33
|
+
background: #D5E1DD;
|
34
|
+
border-radius: 6px;
|
35
|
+
-moz-border-radius: 6px;
|
36
|
+
}
|
37
|
+
|
38
|
+
fieldset legend {
|
39
|
+
padding-left: 2%;
|
40
|
+
margin-bottom: 0px;
|
41
|
+
font-size: 16px;
|
42
|
+
font-weight: bold;
|
43
|
+
border: 0px;
|
44
|
+
}
|
45
|
+
|
46
|
+
body {
|
47
|
+
background-color: #2B3E42;
|
48
|
+
}
|
49
|
+
|
50
|
+
.page {
|
51
|
+
border-radius: 6px 6px 6px 6px;
|
52
|
+
margin: 50px 0px;
|
53
|
+
}
|
54
|
+
|
55
|
+
#banner {
|
56
|
+
background: #EBCD7B;
|
57
|
+
padding: 2%;
|
58
|
+
border-radius: 6px 6px 0px 0px;
|
59
|
+
text-align: center;
|
60
|
+
}
|
61
|
+
|
62
|
+
#blast {
|
63
|
+
background-color: white;
|
64
|
+
padding-top: 20px;
|
65
|
+
padding-bottom: 20px;
|
66
|
+
margin: 0px;
|
67
|
+
}
|
68
|
+
|
69
|
+
.detached-top {
|
70
|
+
border-top-left-radius: 6px;
|
71
|
+
border-top-right-radius: 6px;
|
72
|
+
}
|
73
|
+
|
74
|
+
.detached-bottom {
|
75
|
+
border-radius: 0px 0px 6px 6px;
|
76
|
+
}
|
77
|
+
|
78
|
+
#sequence {
|
79
|
+
height: 198px;
|
80
|
+
width: 890px;
|
81
|
+
display: block;
|
82
|
+
margin: 0 auto;
|
83
|
+
}
|
84
|
+
|
85
|
+
.notifications {
|
86
|
+
height: 0px;
|
87
|
+
position: relative;
|
88
|
+
top: -12px;
|
89
|
+
}
|
90
|
+
|
91
|
+
.notification {
|
92
|
+
margin: 0 auto;
|
93
|
+
z-index: 1050;
|
94
|
+
border-radius: 6px;
|
95
|
+
-webkit-border-radius: 6px;
|
96
|
+
-moz-border-radius: 6px;
|
97
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
98
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
99
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
100
|
+
font-size: 14px;
|
101
|
+
font-weight: bold;
|
102
|
+
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
|
103
|
+
text-align: center;
|
104
|
+
padding: 6px 12px 6px 12px;
|
105
|
+
}
|
106
|
+
|
107
|
+
#sequence-type {
|
108
|
+
font-style: italic;
|
109
|
+
}
|
110
|
+
|
111
|
+
#nucleotide-sequence-notification, #protein-sequence-notification {
|
112
|
+
width: 250px;
|
113
|
+
}
|
114
|
+
|
115
|
+
#mixed-sequence-notification {
|
116
|
+
width: 740px;
|
117
|
+
}
|
118
|
+
|
119
|
+
.databases {
|
120
|
+
padding-bottom: 10px;
|
121
|
+
}
|
122
|
+
|
123
|
+
span.highlight {
|
124
|
+
font-weight: bold;
|
125
|
+
}
|
126
|
+
|
127
|
+
.advanced label {
|
128
|
+
display: inline-block;
|
129
|
+
font-size: 16px;
|
130
|
+
font-weight: bold;
|
131
|
+
padding-left: 2%;
|
132
|
+
}
|
133
|
+
|
134
|
+
.advanced input {
|
135
|
+
width: 440px;
|
136
|
+
margin: 1% 1%;
|
137
|
+
}
|
138
|
+
|
139
|
+
.advanced span {
|
140
|
+
cursor: pointer;
|
141
|
+
}
|
142
|
+
|
143
|
+
.hover-focus {
|
144
|
+
background-color: #FFC;
|
145
|
+
}
|
146
|
+
|
147
|
+
#method, #methods li {
|
148
|
+
text-transform: uppercase;
|
149
|
+
}
|
150
|
+
|
151
|
+
#methods li {
|
152
|
+
font-size: 15px;
|
153
|
+
text-align: center;
|
154
|
+
padding-top: 4px;
|
155
|
+
padding-bottom: 4px;
|
156
|
+
cursor: pointer;
|
157
|
+
}
|
158
|
+
|
159
|
+
.dropdown-menu li {
|
160
|
+
border-bottom: 1px solid #ccc;
|
161
|
+
}
|
162
|
+
|
163
|
+
.dropdown-menu li:last-child {
|
164
|
+
border-bottom: 0px;
|
165
|
+
}
|
166
|
+
|
167
|
+
#methods > button {
|
168
|
+
height: 38px;
|
169
|
+
}
|
170
|
+
|
171
|
+
.results {
|
172
|
+
background-color: #2B3E42;
|
173
|
+
padding-top: 20px;
|
174
|
+
padding-bottom: 20px;
|
175
|
+
}
|
176
|
+
|
177
|
+
#result {
|
178
|
+
padding: 20px;
|
179
|
+
background-color: white;
|
180
|
+
border-radius: 6px;
|
181
|
+
-moz-border-radius: 6px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.resultn {
|
185
|
+
background-color: #dfefe6;
|
186
|
+
margin: 18px 0px 18px 0px;
|
187
|
+
border-radius: 6px;
|
188
|
+
-moz-border-radius: 6px;
|
189
|
+
padding: 3%;
|
190
|
+
border: 1px solid transparent;
|
191
|
+
}
|
192
|
+
|
193
|
+
div.focussed {
|
194
|
+
border: 1px solid black;
|
195
|
+
}
|
196
|
+
|
197
|
+
#underbar {
|
198
|
+
background: #EBCD7B;
|
199
|
+
padding: 1%;
|
200
|
+
border-bottom-right-radius: 6px;
|
201
|
+
border-bottom-left-radius: 6px;
|
202
|
+
text-align: center;
|
203
|
+
}
|
204
|
+
|
205
|
+
#spinner {
|
206
|
+
color: gray;
|
207
|
+
background-color: transparent;
|
208
|
+
border: none;
|
209
|
+
box-shadow: none;
|
210
|
+
overflow: hidden;
|
211
|
+
}
|
212
|
+
|
213
|
+
#spinner > div {
|
214
|
+
height: 200px;
|
215
|
+
}
|
216
|
+
|
217
|
+
#social p {
|
218
|
+
font-size: 14px;
|
219
|
+
}
|
220
|
+
|
221
|
+
#social .buttons {
|
222
|
+
width: 268px;
|
223
|
+
margin: 0px auto;
|
224
|
+
}
|
225
|
+
|
226
|
+
.button-container {
|
227
|
+
width: 74px;
|
228
|
+
height: 32px;
|
229
|
+
float: left;
|
230
|
+
margin-right: 20px;
|
231
|
+
text-align: center;
|
232
|
+
}
|