Revision 8188
Added by Lauren Walker about 11 years ago
docs/user/metacat/source/themes/metacatui/layout.html | ||
---|---|---|
1 |
{%- block doctype -%} |
|
2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
|
3 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|
4 |
{%- endblock %} |
|
5 |
{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %} |
|
6 |
{%- set reldelim2 = reldelim2 is not defined and ' ' or reldelim2 %} |
|
7 |
|
|
8 |
{%- macro relbar() %} |
|
9 |
<div class="related"> |
|
10 |
<h3>{{ _('Navigation') }}</h3> |
|
11 |
<ul> |
|
12 |
|
|
13 |
{%- if pagename != "search" %} |
|
14 |
<li class="right"> |
|
15 |
<span id="searchbox" style="display: none;"> |
|
16 |
<form class="search" action="{{ pathto('search') }}" method="get"> |
|
17 |
<input type="text" name="q" size="18" /> |
|
18 |
<input type="submit" value="{{ _('Go') }}" class="icon-search"/> |
|
19 |
<input type="hidden" name="check_keywords" value="yes" /> |
|
20 |
<input type="hidden" name="area" value="default" /> |
|
21 |
</form> |
|
22 |
</span> |
|
23 |
</li> |
|
24 |
<script type="text/javascript">$('#searchbox').show(0);</script> |
|
25 |
{%- endif %} |
|
26 |
|
|
27 |
|
|
28 |
{%- for rellink in rellinks %} |
|
29 |
<li class="right"> |
|
30 |
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags }}" |
|
31 |
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a> |
|
32 |
{{ reldelim2 }}</li> |
|
33 |
{%- endfor %} |
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
{%- block rootrellink %} |
|
38 |
<li class="breadcrumb first"><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li> |
|
39 |
{%- endblock %} |
|
40 |
{%- for parent in parents %} |
|
41 |
<li class="breadcrumb"><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li> |
|
42 |
{%- endfor %} |
|
43 |
{%- block relbaritems %} {% endblock %} |
|
44 |
</ul> |
|
45 |
|
|
46 |
</div> |
|
47 |
{%- endmacro %} |
|
48 |
|
|
49 |
{%- macro sidebar() %} |
|
50 |
{%- if not embedded %}{% if not theme_nosidebar|tobool %} |
|
51 |
<div class="sphinxsidebar"> |
|
52 |
<div class="sphinxsidebarwrapper"> |
|
53 |
{%- block sidebarlogo %} |
|
54 |
{%- if logo %} |
|
55 |
<p class="logo"><a href="{{ pathto(master_doc) }}"> |
|
56 |
<img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/> |
|
57 |
</a></p> |
|
58 |
{%- endif %} |
|
59 |
{%- endblock %} |
|
60 |
{%- block sidebartoc %} |
|
61 |
{%- if display_toc %} |
|
62 |
<h3><a href="{{ pathto(master_doc) }}">{{ _('Table Of Contents') }}</a></h3> |
|
63 |
{{ toc }} |
|
64 |
{%- endif %} |
|
65 |
{%- endblock %} |
|
66 |
{%- block sidebarrel %} |
|
67 |
{%- if prev %} |
|
68 |
<h4>{{ _('Previous topic') }}</h4> |
|
69 |
<p class="topless"><a href="{{ prev.link|e }}" |
|
70 |
title="{{ _('previous chapter') }}">{{ prev.title }}</a></p> |
|
71 |
{%- endif %} |
|
72 |
{%- if next %} |
|
73 |
<h4>{{ _('Next topic') }}</h4> |
|
74 |
<p class="topless"><a href="{{ next.link|e }}" |
|
75 |
title="{{ _('next chapter') }}">{{ next.title }}</a></p> |
|
76 |
{%- endif %} |
|
77 |
{%- endblock %} |
|
78 |
{%- block sidebarsourcelink %} |
|
79 |
{%- if show_source and has_source and sourcename %} |
|
80 |
<h3>{{ _('This Page') }}</h3> |
|
81 |
<ul class="this-page-menu"> |
|
82 |
<li><a href="{{ pathto('_sources/' + sourcename, true)|e }}" |
|
83 |
rel="nofollow">{{ _('Show Source') }}</a></li> |
|
84 |
</ul> |
|
85 |
{%- endif %} |
|
86 |
{%- endblock %} |
|
87 |
{%- if customsidebar %} |
|
88 |
{% include customsidebar %} |
|
89 |
{%- endif %} |
|
90 |
{%- block sidebarsearch %} |
|
91 |
{%- if pagename != "search" %} |
|
92 |
<div id="searchbox" style="display: none"> |
|
93 |
<h3>{{ _('Quick search') }}</h3> |
|
94 |
<form class="search" action="{{ pathto('search') }}" method="get"> |
|
95 |
<input type="text" name="q" size="18" /> |
|
96 |
<input type="submit" value="{{ _('Go') }}" /> |
|
97 |
<input type="hidden" name="check_keywords" value="yes" /> |
|
98 |
<input type="hidden" name="area" value="default" /> |
|
99 |
</form> |
|
100 |
<p class="searchtip" style="font-size: 90%"> |
|
101 |
{{ _('Enter search terms or a module, class or function name.') }} |
|
102 |
</p> |
|
103 |
</div> |
|
104 |
<script type="text/javascript">$('#searchbox').show(0);</script> |
|
105 |
{%- endif %} |
|
106 |
{%- endblock %} |
|
107 |
</div> |
|
108 |
</div> |
|
109 |
{%- endif %}{% endif %} |
|
110 |
{%- endmacro %} |
|
111 |
|
|
112 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
|
113 |
<head> |
|
114 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
115 |
{{ metatags }} |
|
116 |
{%- if not embedded %} |
|
117 |
{%- set titlesuffix = " — "|safe + docstitle|e %} |
|
118 |
{%- else %} |
|
119 |
{%- set titlesuffix = "" %} |
|
120 |
{%- endif %} |
|
121 |
<title>{{ title|striptags }}{{ titlesuffix }}</title> |
|
122 |
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" /> |
|
123 |
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" /> |
|
124 |
{%- if not embedded %} |
|
125 |
<script type="text/javascript"> |
|
126 |
var DOCUMENTATION_OPTIONS = { |
|
127 |
URL_ROOT: '{{ pathto("", 1) }}', |
|
128 |
VERSION: '{{ release|e }}', |
|
129 |
COLLAPSE_MODINDEX: false, |
|
130 |
FILE_SUFFIX: '{{ file_suffix }}', |
|
131 |
HAS_SOURCE: {{ has_source|lower }} |
|
132 |
}; |
|
133 |
</script> |
|
134 |
{%- for scriptfile in script_files %} |
|
135 |
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script> |
|
136 |
{%- endfor %} |
|
137 |
{%- if use_opensearch %} |
|
138 |
<link rel="search" type="application/opensearchdescription+xml" |
|
139 |
title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}" |
|
140 |
href="{{ pathto('_static/opensearch.xml', 1) }}"/> |
|
141 |
{%- endif %} |
|
142 |
{%- if favicon %} |
|
143 |
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/> |
|
144 |
{%- endif %} |
|
145 |
{%- endif %} |
|
146 |
{%- block linktags %} |
|
147 |
{%- if hasdoc('about') %} |
|
148 |
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" /> |
|
149 |
{%- endif %} |
|
150 |
{%- if hasdoc('genindex') %} |
|
151 |
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" /> |
|
152 |
{%- endif %} |
|
153 |
{%- if hasdoc('search') %} |
|
154 |
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" /> |
|
155 |
{%- endif %} |
|
156 |
{%- if hasdoc('copyright') %} |
|
157 |
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" /> |
|
158 |
{%- endif %} |
|
159 |
<link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" /> |
|
160 |
{%- if parents %} |
|
161 |
<link rel="up" title="{{ parents[-1].title|striptags }}" href="{{ parents[-1].link|e }}" /> |
|
162 |
{%- endif %} |
|
163 |
{%- if prev %} |
|
164 |
<link rel="prev" title="{{ prev.title|striptags }}" href="{{ prev.link|e }}" /> |
|
165 |
{%- endif %} |
|
166 |
{%- if next %} |
|
167 |
<link rel="next" title="{{ next.title|striptags }}" href="{{ next.link|e }}" /> |
|
168 |
{%- endif %} |
|
169 |
{%- endblock %} |
|
170 |
{%- block extrahead %} {% endblock %} |
|
171 |
</head> |
|
172 |
<body> |
|
173 |
<div class="banner"> |
|
174 |
<img class="logo" src="_static/metacat-logo-white.png" /> |
|
175 |
<img class="logo-right" src="_static/nceas-logo-white.png" /> |
|
176 |
<p class="title">Metacat: Metadata and Data Management Server</p> |
|
177 |
</div> |
|
178 |
|
|
179 |
{%- block header %}{% endblock %} |
|
180 |
|
|
181 |
{%- block relbar1 %}{{ relbar() }}{% endblock %} |
|
182 |
|
|
183 |
{# Comment out the sidebar |
|
184 |
{%- block sidebar1 %} {# possible location for sidebar {% endblock %} |
|
185 |
#} |
|
186 |
<div class="document"> |
|
187 |
{%- block document %} |
|
188 |
<div class="documentwrapper"> |
|
189 |
{%- if not embedded %}{% if not theme_nosidebar|tobool %} |
|
190 |
<div class="bodywrapper"> |
|
191 |
{%- endif %}{% endif %} |
|
192 |
<div class="body"> |
|
193 |
{% block body %} {% endblock %} |
|
194 |
</div> |
|
195 |
{%- if not embedded %}{% if not theme_nosidebar|tobool %} |
|
196 |
</div> |
|
197 |
{%- endif %}{% endif %} |
|
198 |
</div> |
|
199 |
{%- endblock %} |
|
200 |
|
|
201 |
{# {%- block sidebar2 %}{{ sidebar() }}{% endblock %} #} |
|
202 |
<div class="clearer"></div> |
|
203 |
</div> |
|
204 |
|
|
205 |
|
|
206 |
{%- block footer %} |
|
207 |
<div class="footer"> |
|
208 |
<div class="footerNav"> |
|
209 |
{{ relbar() }} |
|
210 |
</div> |
|
211 |
<div class="small-print"> |
|
212 |
{%- if hasdoc('copyright') %} |
|
213 |
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %} |
|
214 |
{%- else %} |
|
215 |
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} |
|
216 |
{%- endif %} |
|
217 |
{%- if last_updated %} |
|
218 |
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} |
|
219 |
{%- endif %} |
|
220 |
{%- if show_sphinx %} |
|
221 |
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %} |
|
222 |
{%- endif %} |
|
223 |
</div> |
|
224 |
</div> |
|
225 |
{%- endblock %} |
|
226 |
</body> |
|
227 |
</html> |
|
0 | 228 |
docs/user/metacat/source/themes/metacatui/theme.conf | ||
---|---|---|
1 |
[theme] |
|
2 |
inherit = sphinxdoc |
|
3 |
stylesheet = metacatui.css |
|
4 |
pygments_style = |
|
5 |
|
|
6 |
[options] |
|
7 |
|
docs/user/metacat/source/themes/metacatui/static/bootstrap-responsive.min.css | ||
---|---|---|
1 |
/*! |
|
2 |
* Bootstrap Responsive v2.3.1 |
|
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 |
*/.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;line-height:0;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@-ms-viewport{width:device-width}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}.visible-desktop{display:inherit!important}@media(min-width:768px) and (max-width:979px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}}@media(max-width:767px){.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}.visible-phone{display:inherit!important}.hidden-phone{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:inherit!important}.hidden-print{display:none!important}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:30px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.564102564102564%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%}.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%}.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%}.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%}.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%}.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%}.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%}.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%}.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%}.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%}.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%}.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%}.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%}.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%}.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%}.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%}.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%}.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%}.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%}.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%}.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%}.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%}.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%}.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%}.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%}.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%}.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%}.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%}.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%}.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:30px}input.span12,textarea.span12,.uneditable-input.span12{width:1156px}input.span11,textarea.span11,.uneditable-input.span11{width:1056px}input.span10,textarea.span10,.uneditable-input.span10{width:956px}input.span9,textarea.span9,.uneditable-input.span9{width:856px}input.span8,textarea.span8,.uneditable-input.span8{width:756px}input.span7,textarea.span7,.uneditable-input.span7{width:656px}input.span6,textarea.span6,.uneditable-input.span6{width:556px}input.span5,textarea.span5,.uneditable-input.span5{width:456px}input.span4,textarea.span4,.uneditable-input.span4{width:356px}input.span3,textarea.span3,.uneditable-input.span3{width:256px}input.span2,textarea.span2,.uneditable-input.span2{width:156px}input.span1,textarea.span1,.uneditable-input.span1{width:56px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;line-height:0;content:""}.row:after{clear:both}[class*="span"]{float:left;min-height:1px;margin-left:20px}.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.7624309392265194%}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%}.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%}.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%}.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%}.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%}.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%}.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%}.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%}.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%}.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%}.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%}.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%}.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%}.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%}.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%}.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%}.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%}.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%}.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%}.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%}.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%}.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%}.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%}.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%}.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%}.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%}.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%}.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%}.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%}.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%}input,textarea,.uneditable-input{margin-left:0}.controls-row [class*="span"]+[class*="span"]{margin-left:20px}input.span12,textarea.span12,.uneditable-input.span12{width:710px}input.span11,textarea.span11,.uneditable-input.span11{width:648px}input.span10,textarea.span10,.uneditable-input.span10{width:586px}input.span9,textarea.span9,.uneditable-input.span9{width:524px}input.span8,textarea.span8,.uneditable-input.span8{width:462px}input.span7,textarea.span7,.uneditable-input.span7{width:400px}input.span6,textarea.span6,.uneditable-input.span6{width:338px}input.span5,textarea.span5,.uneditable-input.span5{width:276px}input.span4,textarea.span4,.uneditable-input.span4{width:214px}input.span3,textarea.span3,.uneditable-input.span3{width:152px}input.span2,textarea.span2,.uneditable-input.span2{width:90px}input.span1,textarea.span1,.uneditable-input.span1{width:28px}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}.thumbnails>li{float:none;margin-left:0}[class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.span12,.row-fluid .span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="offset"]:first-child{margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}.controls-row [class*="span"]+[class*="span"]{margin-left:0}.modal{position:fixed;top:20px;right:20px;left:20px;width:auto;margin:0}.modal.fade{top:-100px}.modal.fade.in{top:20px}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:20px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px}.media-object{margin-right:0;margin-left:0}.modal{top:10px;right:10px;left:10px}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:20px}.navbar-fixed-bottom{margin-top:20px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 10px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#777;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:9px 15px;font-weight:bold;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .dropdown-menu a:focus{background-color:#f2f2f2}.navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a{color:#999}.navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:focus{background-color:#111}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .open>.dropdown-menu{display:block}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} |
|
0 | 10 |
docs/user/metacat/source/themes/metacatui/static/metacatui.css | ||
---|---|---|
1 |
|
|
2 |
/* Import font families */ |
|
3 |
@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700); |
|
4 |
/* Oswald weights: |
|
5 |
Light 300 |
|
6 |
Normal 400 |
|
7 |
Bold 700 |
|
8 |
*/ |
|
9 |
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,400italic); |
|
10 |
/* Source Sans Pro weights: |
|
11 |
Light 300 |
|
12 |
Normal 400 |
|
13 |
Normal italic 400 |
|
14 |
Semi-bold 600 |
|
15 |
Bold 700 |
|
16 |
*/ |
|
17 |
|
|
18 |
@import url('font-awesome.min.css'); |
|
19 |
@import url('bootstrap-responsive.min.css'); |
|
20 |
@import url('font-awesome.min.css'); |
|
21 |
|
|
22 |
|
|
23 |
/* BANNER/HEADER CSS |
|
24 |
---------------------------------------------------- */ |
|
25 |
.banner{ |
|
26 |
width: 100%; |
|
27 |
height: 100px; |
|
28 |
} |
|
29 |
|
|
30 |
.banner > img{ |
|
31 |
float: left; |
|
32 |
width: auto; |
|
33 |
margin: 20px 10px; |
|
34 |
max-height: 100%; |
|
35 |
height: 60px; |
|
36 |
} |
|
37 |
|
|
38 |
.banner > .title{ |
|
39 |
font: 300 18px/18px Oswald; |
|
40 |
color: #CCCCCC; |
|
41 |
float: left; |
|
42 |
margin: 38px 10px; |
|
43 |
} |
|
44 |
|
|
45 |
/* RELATED/NAVIGATION CSS |
|
46 |
---------------------------------------------------- */ |
|
47 |
body > .related{ |
|
48 |
width: 100%; |
|
49 |
position: relative; |
|
50 |
top: -80px; |
|
51 |
left: -20px; |
|
52 |
} |
|
53 |
|
|
54 |
.related > h3{ |
|
55 |
display: none; |
|
56 |
} |
|
57 |
|
|
58 |
.related > ul { |
|
59 |
list-style: none; |
|
60 |
float: right; |
|
61 |
} |
|
62 |
|
|
63 |
.related > ul > li.right > a{ |
|
64 |
color: #FFFFFF; |
|
65 |
font: 400 30px/30px Oswald; |
|
66 |
text-decoration: none; |
|
67 |
text-transform: uppercase; |
|
68 |
} |
|
69 |
|
|
70 |
.related > ul > li.right{ |
|
71 |
margin-right: 20px; |
|
72 |
float:left; |
|
73 |
} |
|
74 |
|
|
75 |
|
|
76 |
.related > ul > li > a:hover, |
|
77 |
.related > ul > li > a:focus{ |
|
78 |
color: #FFFFFF; |
|
79 |
text-decoration: none; |
|
80 |
opacity: 0.7; |
|
81 |
} |
|
82 |
|
|
83 |
.related > ul input[type="submit"]{ /*"Go" button on navigation search bar */ |
|
84 |
position: relative; |
|
85 |
left: -10px; |
|
86 |
top: 1px; |
|
87 |
height: 27px; |
|
88 |
border-radius: 0 4px 4px 0; |
|
89 |
-webkit-border-radius: 0 4px 4px 0; |
|
90 |
-moz-border-radius: 0 4px 4px 0; |
|
91 |
border-left: 1px solid #CCCCCC; |
|
92 |
font: 300 16px/16px "Oswald", sans-serif; |
|
93 |
} |
|
94 |
|
|
95 |
.related > ul input[type="submit"]:hover{ /*"Go" button on navigation search bar */ |
|
96 |
background-color: #166194; |
|
97 |
color: #FFFFFF; |
|
98 |
cursor: pointer; |
|
99 |
} |
|
100 |
|
|
101 |
.related > ul > li > span#searchbox{ |
|
102 |
display: block; |
|
103 |
margin-right: 0px; |
|
104 |
} |
|
105 |
|
|
106 |
.related > ul > li > span#searchbox > form{ |
|
107 |
display: inline; |
|
108 |
vertical-align: top; |
|
109 |
} |
|
110 |
|
|
111 |
|
|
112 |
.related .breadcrumb{ |
|
113 |
float: left; |
|
114 |
margin:10px 0px 0px 10px; |
|
115 |
clear: none; |
|
116 |
} |
|
117 |
|
|
118 |
.related .breadcrumb, |
|
119 |
.related .breadcrumb > a{ |
|
120 |
font: 300 16px/16px Oswald; |
|
121 |
color: #CCCCCC; |
|
122 |
} |
|
123 |
|
|
124 |
.related .breadcrumb.first{ |
|
125 |
clear: left; |
|
126 |
} |
|
127 |
|
|
128 |
.footerNav > .related li.right{ |
|
129 |
|
|
130 |
|
|
131 |
} |
|
132 |
|
|
133 |
.footerNav > .related li.breadcrumb:last-child{ |
|
134 |
margin-right: 20px; |
|
135 |
} |
|
136 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
/* DOCUMENT / MAIN CONTENT AREA |
|
142 |
------------------------------------------------------*/ |
|
143 |
.document{ |
|
144 |
background: rgba(255, 255, 255, 0.8); |
|
145 |
margin: 20px auto; |
|
146 |
padding: 20px 30px; |
|
147 |
width: 1170px; |
|
148 |
padding-bottom: 360px; |
|
149 |
border-radius: 20px; |
|
150 |
-webkit-border-radius: 20px; |
|
151 |
-moz-border-radius: 20px; |
|
152 |
} |
|
153 |
|
|
154 |
/* Permalink icons */ |
|
155 |
.document .headerlink{ |
|
156 |
display: none; |
|
157 |
margin-left: 10px; |
|
158 |
} |
|
159 |
|
|
160 |
.document h1:hover > .headerlink, |
|
161 |
.document h2:hover > .headerlink, |
|
162 |
.document h3:hover > .headerlink{ |
|
163 |
display: inline; |
|
164 |
color: #166194; |
|
165 |
} |
|
166 |
|
|
167 |
|
|
168 |
/* SIDEBAR |
|
169 |
---------------------------------------------------- */ |
|
170 |
.sidebar{ |
|
171 |
float: right; |
|
172 |
margin: 20px 0px 30px 20px; |
|
173 |
background: rgba(255,255,255, 0.5); |
|
174 |
border-radius: 20px; |
|
175 |
padding: 20px; |
|
176 |
max-width:60%; |
|
177 |
} |
|
178 |
|
|
179 |
.sidebar .sidebar-title{ |
|
180 |
font: 300 24px/24px Oswald; |
|
181 |
margin-top: 0; |
|
182 |
} |
|
183 |
|
|
184 |
.sidebar img{ |
|
185 |
margin: 0; |
|
186 |
} |
|
187 |
|
|
188 |
/* FOOTER |
|
189 |
---------------------------------------------------- */ |
|
190 |
.footer{ |
|
191 |
height: 100px; |
|
192 |
color: #fdfdfd; |
|
193 |
bottom: 0; |
|
194 |
width: 100%; |
|
195 |
margin: 50px auto 0 auto; |
|
196 |
|
|
197 |
} |
|
198 |
|
|
199 |
.footer > .small-print{ |
|
200 |
width: 550px; |
|
201 |
display: block; |
|
202 |
float: none; |
|
203 |
margin: 0 auto; |
|
204 |
color: #CCCCCC; |
|
205 |
font: 300 14px/14px Source Sans Pro; |
|
206 |
} |
|
207 |
|
|
208 |
.footer > .footerNav{ |
|
209 |
width: 100%; |
|
210 |
display: block; |
|
211 |
height: 40px; |
|
212 |
margin-bottom: 10px; |
|
213 |
} |
|
214 |
|
|
215 |
|
|
216 |
/* Body CSS |
|
217 |
-------------------------------------------------- */ |
|
218 |
html, body { |
|
219 |
margin: 0; |
|
220 |
padding: 0; |
|
221 |
height: 100%; |
|
222 |
} |
|
223 |
|
|
224 |
body { |
|
225 |
color: #333333; |
|
226 |
font: 400 15px/20px "Source Sans Pro", "Helvetica Nueue", "Helvetica", "sans serif"; |
|
227 |
background: #FFFFFF; |
|
228 |
background: url(bg.jpg) no-repeat center center fixed; |
|
229 |
-webkit-background-size: cover; |
|
230 |
-moz-background-size: cover; |
|
231 |
-o-background-size: cover; |
|
232 |
background-size: cover; |
|
233 |
} |
|
234 |
|
|
235 |
/* TABLES |
|
236 |
-----------------------------------------------*/ |
|
237 |
table, tr, th, td, thead, tbody{ |
|
238 |
border: 0px; |
|
239 |
border-collapse: collapse; |
|
240 |
padding: 8px; |
|
241 |
} |
|
242 |
|
|
243 |
table{ |
|
244 |
background: rgba(255,255,255, 0.8); |
|
245 |
margin: 40px auto; |
|
246 |
|
|
247 |
} |
|
248 |
|
|
249 |
thead, th{ |
|
250 |
background-color: #555555; |
|
251 |
color: #FFFFFF; |
|
252 |
font: 300 16px/20px Source Sans Pro; |
|
253 |
} |
|
254 |
|
|
255 |
td{ |
|
256 |
font: 400 15px/20px Source Sans Pro; |
|
257 |
} |
|
258 |
|
|
259 |
tr.row-odd{ |
|
260 |
background: rgba(103, 184, 229, 0.2); |
|
261 |
} |
|
262 |
|
|
263 |
|
|
264 |
/* TAG STYLING |
|
265 |
-------------------------------------------------------- */ |
|
266 |
|
|
267 |
h3 { |
|
268 |
font: 400 24.5px/40px "Source Sans Pro" sans-serif; |
|
269 |
} |
|
270 |
|
|
271 |
h2{ |
|
272 |
font: 400 27.5px/40px "Oswald" sans-serif; |
|
273 |
} |
|
274 |
|
|
275 |
h1 > a, |
|
276 |
h2 > a, |
|
277 |
h3 > a, |
|
278 |
h4 > a{ |
|
279 |
color: #333333; |
|
280 |
} |
|
281 |
|
|
282 |
h1{ |
|
283 |
font: 400 32px/40px "Oswald" sans-serif; |
|
284 |
} |
|
285 |
|
|
286 |
|
|
287 |
article, aside, figure, footer, header, hgroup, menu, nav, section { |
|
288 |
display:block; |
|
289 |
} |
|
290 |
|
|
291 |
img{ |
|
292 |
max-width: 100%; |
|
293 |
display: block; |
|
294 |
} |
|
295 |
|
|
296 |
input { |
|
297 |
-webkit-appearance: none; |
|
298 |
background-color: white; |
|
299 |
border-radius: 4px; |
|
300 |
height: 25px; |
|
301 |
width: 200px; |
|
302 |
box-shadow: none; |
|
303 |
border: 0; |
|
304 |
} |
|
305 |
|
|
306 |
input[type="submit"]{ |
|
307 |
width: auto; |
|
308 |
} |
|
309 |
|
|
310 |
a{ |
|
311 |
color: #166194; |
|
312 |
text-decoration: none; |
|
313 |
} |
|
314 |
|
|
315 |
a:hover{ |
|
316 |
color: #3399CC; |
|
317 |
text-decoration: none; |
|
318 |
} |
|
319 |
|
|
320 |
|
|
321 |
ul, ol{ |
|
322 |
margin: 0px; |
|
323 |
} |
|
324 |
|
|
325 |
select{ |
|
326 |
font: 300 16px/16px "Oswald" Arial sans-serif; |
|
327 |
} |
|
328 |
|
|
329 |
dt{ |
|
330 |
font: 300 18px/40px Oswald; |
|
331 |
} |
|
332 |
|
|
333 |
|
|
334 |
|
|
335 |
|
|
336 |
/* HIGHLIGHTING |
|
337 |
-----------------------------------------------*/ |
|
338 |
.highlight{ |
|
339 |
padding-left: 10px; |
|
340 |
padding-right: 10px; |
|
341 |
word-wrap: break-word; |
|
342 |
color: #FFFFFF; |
|
343 |
background: none; |
|
344 |
clear: right; |
|
345 |
} |
|
346 |
|
|
347 |
.highlight-python{ |
|
348 |
word-wrap: break-word; |
|
349 |
color: #FFFFFF; |
|
350 |
clear: right; |
|
351 |
} |
|
352 |
|
|
353 |
pre{ |
|
354 |
padding: 10px; |
|
355 |
background: rgba(22,97,148,0.7); |
|
356 |
color: #FFFFFF; |
|
357 |
font-size: 15px; |
|
358 |
border-radius: 5px; |
|
359 |
-moz-border-radius: 5px; |
|
360 |
-webkit-border-radius: 5px; |
|
361 |
margin: 20px auto; |
|
362 |
} |
|
363 |
|
|
364 |
|
|
365 |
/* MISC |
|
366 |
-----------------------------------------------*/ |
|
367 |
.align-center{ |
|
368 |
margin-left: auto; |
|
369 |
margin-right: auto; |
|
370 |
} |
|
371 |
|
|
372 |
.figure{ |
|
373 |
max-width: 80%; |
|
374 |
background-color: #FFFFFF; |
|
375 |
padding: 10px; |
|
376 |
display: block; |
|
377 |
border: 1px solid #666666; |
|
378 |
margin-top: 20px; |
|
379 |
} |
|
380 |
|
|
381 |
.figure > img{ |
|
382 |
max-width: 90%; |
|
383 |
margin: 10px auto; |
|
384 |
} |
|
385 |
|
|
386 |
.figure > .caption{ |
|
387 |
margin-bottom: 0px; |
|
388 |
text-align: center; |
|
389 |
font: 400 14px/14px Source Sans Pro; |
|
390 |
color: #666; |
|
391 |
padding-top: 10px; |
|
392 |
} |
|
393 |
|
|
394 |
|
|
395 |
.topic{ |
|
396 |
background: rgba(255,255,255,0.5); |
|
397 |
padding: 10px; |
|
398 |
border-radius: 20px; |
|
399 |
-webkit-border-radius: 20px; |
|
400 |
-moz-border-radius: 20px; |
|
401 |
} |
|
402 |
|
|
403 |
.topic-title{ |
|
404 |
font: 300 24px/24px Oswald; |
|
405 |
margin-top: 0; |
|
406 |
} |
|
407 |
|
|
408 |
#license pre{ |
|
409 |
width: 700px; |
|
410 |
margin: 0 auto; |
|
411 |
} |
|
412 |
|
|
413 |
#installing-the-registry .sidebar{ |
|
414 |
max-width: 100%; |
|
415 |
} |
|
416 |
|
|
417 |
|
|
418 |
|
|
0 | 419 |
docs/user/metacat/source/themes/metacatui/static/font-awesome.min.css | ||
---|---|---|
1 |
/*! |
|
2 |
* Font Awesome 3.0.2 |
|
3 |
* the iconic font designed for use with Twitter Bootstrap |
|
4 |
* ------------------------------------------------------- |
|
5 |
* The full suite of pictographic icons, examples, and documentation |
|
6 |
* can be found at: http://fortawesome.github.com/Font-Awesome/ |
|
7 |
* |
|
8 |
* License |
|
9 |
* ------------------------------------------------------- |
|
10 |
* - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL |
|
11 |
* - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - |
|
12 |
* http://opensource.org/licenses/mit-license.html |
|
13 |
* - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ |
|
14 |
* - Attribution is no longer required in Font Awesome 3.0, but much appreciated: |
|
15 |
* "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" |
|
16 |
|
|
17 |
* Contact |
|
18 |
* ------------------------------------------------------- |
|
19 |
* Email: dave@davegandy.com |
|
20 |
* Twitter: http://twitter.com/fortaweso_me |
|
21 |
* Work: Lead Product Designer @ http://kyruus.com |
|
22 |
*/ |
|
23 |
|
|
24 |
@font-face{ |
|
25 |
font-family:'FontAwesome'; |
|
26 |
src:url('../font/fontawesome-webfont.eot?v=3.0.1'); |
|
27 |
src:url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), |
|
28 |
url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), |
|
29 |
url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); |
|
30 |
font-weight:normal; |
|
31 |
font-style:normal } |
|
32 |
|
|
33 |
[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}a [class^="icon-"],a [class*=" icon-"]{display:inline-block}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}.btn [class^="icon-"],.nav [class^="icon-"],.btn [class*=" icon-"],.nav [class*=" icon-"]{display:inline}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}li [class^="icon-"],.nav li [class^="icon-"],li [class*=" icon-"],.nav li [class*=" icon-"]{display:inline-block;width:1.25em;text-align:center}li [class^="icon-"].icon-large,.nav li [class^="icon-"].icon-large,li [class*=" icon-"].icon-large,.nav li [class*=" icon-"].icon-large{width:1.5625em}ul.icons{list-style-type:none;text-indent:-0.75em}ul.icons li [class^="icon-"],ul.icons li [class*=" icon-"]{width:.75em}.icon-muted{color:#eee}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@-moz-document url-prefix(){.icon-spin{height:.9em}.btn .icon-spin{height:auto}.icon-spin.icon-large{height:1.25em}.btn .icon-spin.icon-large{height:.75em}}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before{content:"\f112"}.icon-github-alt:before{content:"\f113"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"} |
|
0 | 34 |
docs/user/metacat/source/conf.py | ||
---|---|---|
83 | 83 |
# The name of the Pygments (syntax highlighting) style to use. |
84 | 84 |
pygments_style = 'sphinx' |
85 | 85 |
|
86 |
|
|
86 | 87 |
# A list of ignored prefixes for module index sorting. |
87 | 88 |
#modindex_common_prefix = [] |
88 | 89 |
|
... | ... | |
92 | 93 |
# The theme to use for HTML and HTML Help pages. Major themes that come with |
93 | 94 |
# Sphinx are currently 'default' and 'sphinxdoc'. |
94 | 95 |
#html_theme = 'default' |
95 |
html_theme = 'readable'
|
|
96 |
html_theme = 'metacatui'
|
|
96 | 97 |
|
97 | 98 |
# Theme options are theme-specific and customize the look and feel of a theme |
98 | 99 |
# further. For a list of options available for each theme, see the |
... | ... | |
163 | 164 |
htmlhelp_basename = 'Metacatdoc' |
164 | 165 |
|
165 | 166 |
|
167 |
|
|
166 | 168 |
# -- Options for LaTeX output -------------------------------------------------- |
167 | 169 |
|
168 | 170 |
# The paper size ('letter' or 'a4'). |
docs/user/metacat/source/install.rst | ||
---|---|---|
131 | 131 |
|
132 | 132 |
Check Out Metacat Source Code from SVN (for Developers) |
133 | 133 |
....................................................... |
134 |
If you wish to work with the most recent Metacat code, or you'd like to extend |
|
135 |
the Metacat code yourself, you may wish to check out the Metacat source code |
|
136 |
from SVN. You will need a Subversion (SVN) client installed and configured on |
|
137 |
your system (see the end of this section for information about obtaining an SVN |
|
138 |
client). |
|
139 | 134 |
|
140 | 135 |
.. sidebar:: Installing an SVN Client: |
141 | 136 |
|
... | ... | |
148 | 143 |
|
149 | 144 |
Otherwise, you can get the SVN client from The Subversion homepage |
150 | 145 |
(http://subversion.tigris.org/). |
146 |
|
|
147 |
If you wish to work with the most recent Metacat code, or you'd like to extend |
|
148 |
the Metacat code yourself, you may wish to check out the Metacat source code |
|
149 |
from SVN. You will need a Subversion (SVN) client installed and configured on |
|
150 |
your system (see the end of this section for information about obtaining an SVN |
|
151 |
client). |
|
151 | 152 |
|
152 | 153 |
To check out the code from SVN, go to the directory where you would like the |
153 | 154 |
code to live and type:: |
... | ... | |
951 | 952 |
|
952 | 953 |
:: |
953 | 954 |
|
954 |
Psql ���U metacat ���W ���h localhost metacat
|
|
955 |
Psql ���������U metacat ���������W ���������h localhost metacat
|
|
955 | 956 |
|
956 | 957 |
10. Exit PostgreSQL: |
957 | 958 |
|
docs/user/metacat/source/index.rst | ||
---|---|---|
4 | 4 |
|
5 | 5 |
.. sidebar:: Version: 2.1.1 |
6 | 6 |
|
7 |
.. image:: themes/readable/static/metacat-logo.png
|
|
7 |
.. image:: themes/metacatui/static/metacat-logo-darkgray.png
|
|
8 | 8 |
:height: 130pt |
9 | 9 |
|
10 | 10 |
Send feedback and bugs to: |
Also available in: Unified diff
Added a Sphinx theme for the documentation that mirrors the new default theme for MetacatUI.
https://projects.ecoinformatics.org/ecoinfo/issues/6075