path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
Dataset/html/A._di_clemente.html
Mitali-Sodhi/CodeLingo
<!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" /> <meta http-equiv="Refresh" content="0;url=../../../a/l/d/Aldo_Di_Clemente_6f69.html" /> </head> <body> <p>Redirecting to <a href="../../../a/l/d/Aldo_Di_Clemente_6f69.html">Aldo Di Clemente</a></p> </body> </html>
libs/yui/yui3-gallery/src/gallery-web-notifications/tests/unit/index.html
inikoo/fact
<!doctype html> <html> <head> <title>gallery-web-notifications</title> <script src="http://yui.yahooapis.com/3.13.0/build/yui/yui-min.js"></script> <script type="text/javascript" src="../../../../build/gallery-web-notifications/gallery-web-notifications.js"></script> <script src="js/tests.js"></script> <meta charset="utf-8" /> </head> <body class="yui3-skin-sam"> <div id="logger"></div> <script> YUI({ coverage: ['gallery-web-notifications'], filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'raw' }).use('test-console', 'test', 'gallery-web-notifications', 'gallery-web-notifications-tests', function(Y) { (new Y.Test.Console()).render('#logger'); Y.Test.Runner.setName('gallery-web-notifications'); Y.Test.Runner.run(); }); </script> </body> </html>
src/app/home/home.tpl.html
melvincarvalho/cimba
<div ng-click="hideMenu()" ng-controller="PostsController as postCtrl"> <div id="newpost" class="container"> <div class="row"> <!-- <div class="clear-70"></div> --> <div class="col-md-12"> <!-- new post --> <post-box ng-show="loggedin && userProfile.webid && users[userProfile.webid].chspace"></postBox> <!-- end new post --> </div> </div> </div> <!-- new storage modal --> <div id="setup" class="container" ng-show="userProfile.webid && !userProfile.storagespace && !loading"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default text-center"> <h3>We could not find a shared storage space in your WebID profile.</h3> <p><button ng-click="showPopup('st')" class="btn btn-primary">Please provide one here</button></p> </div> </div> </div> </div> <!-- new uB modal --> <div id="setup" class="container" ng-show="userProfile.webid && userProfile.storagespace && users[userProfile.webid].mbspace == false && !loading"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default text-center"> <h3>To start using Cimba, you will need a microblogging space.</h3> <p><button ng-click="showPopup('mb')" class="btn btn-primary">Click here to create one</button></p> </div> </div> </div> </div> <!-- no channels found --> <div id="setup" class="container" ng-show="userProfile.webid && userProfile.storagespace && users[userProfile.webid].mbspace && users[userProfile.webid].chspace == false"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default text-center"> <h3>You're almost there! Now you just need to create a channel for your posts.</h3> <p><button ng-click="showPopup('ch')" class="btn btn-primary">Click here to create a channel</button></p> </div> </div> </div> </div> <!-- no posts found --> <div id="setup" class="container" ng-show="userProfile.webid && userProfile.storagespace && users[userProfile.webid].mbspace && users[userProfile.webid].chspace && users[userProfile.webid].gotposts == false && !loading"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default text-center"> <h3>You haven't posted anything. Try writing a new post or <a ui-sref="find" role="button"><button class="btn btn-primary"><i class="fa fa-rss white"></i> subscribe</button></a> to someone's channels!</h3> </div> </div> </div> </div> <!--new storage modal--> <div class="container popup" ng-show="newStorageModal"> <div class="row"> <div id="storage-modal" class="modal-content col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3 col-xs-12"> <div class="pull-right"> <button type="button" class="close" ng-click="hidePopup()" aria-hidden="true"><span class="fa fa-times"></span></button> </div> <div> <h2 class="text-center">Provide a URI for your storage</h2> <form id="storage-modal-form"> <p><small>Full storage location URI. Must start with http(s)://</small></p> <input type="text" id="storageuri" name="storageuri" ng-model="storageuri" class="form-control" placeholder="http.." required ng-pattern="/^http[A-Za-z0-9_.:/]*$/"> <div ng-show="storageuri" class="text-center"> <br> <p>Alternatively, if your WebID profile is not Web writable, you can manually add the following triple at the end of your profile:</p> <br> <textarea class="triples form-control"><{{userProfile.webid}}><http://www.w3.org/ns/pim/space#storage><{{storageuri}}> .</textarea> </div> </form> <div> <button class="btn btn-primary" ng-click="newStorage(true)" ng-disabled="!storageuri || addstoragebtn === 'Adding...'" tooltip="Skip all configuration">{{addstoragebtn}} (simple)</button> <button class="btn btn-primary" ng-click="newStorage()" ng-disabled="!storageuri || addstoragebtn === 'Adding...'" rel="tooltip" data-placement="top" title="Choose configuration options">{{addstoragebtn}} (advanced)</button> </div> </div> </div> </div> </div> <!--new microblogging workspace modal--> <div class="container popup" ng-show="newMBModal"> <div class="row"> <div id="mb-modal" class="modal-content col-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3 col-xs-12"> <div class="pull-right"> <button type="button" class="close" ng-click="hidePopup()" aria-hidden="true"><span class="fa fa-times"></span></button> </div> <div> <h2 class="text-center">Create a new microblog workspace</h2> <form> <input type="text" id="mburi" name="mburi" ng-model="mburi" class="form-control modal-input" placeholder="Name of Microblog (ex: mb, blog, etc..)" required ng-pattern="/^[A-Za-z0-9_ ]*$/"> </form> <p style="margin: 10px 0px 10px"> <button class="btn btn-primary" ng-click="newMB(mburi, false)" ng-disabled="!mburi || createbtn === 'Creating...'">{{createbtn}}</button> </p> </div> </div> </div> </div> <!--new channel modal--> <new-channel ng-show="newChannelModal"></new-channel> <div id="posts" class="container"> <div class="row"> <div class="col-md-12"> <!-- Loading animation --> <div ng-show="loading"> <!-- <div class="spinner"> --> <div class="clear-40"> <div class="circle circle-large"></div><div class="circle1 circle1-large"></div> </div> </div> <div class=""> <posts-viewer ng-show="loggedin"></posts-viewer> </div> </div> </div> </div> <div class="overlay" ng-show="showOverlay" ng-click="hidePopup()"></div> </div>
demo/styleguide.html
bennyn/chacha20-js
<!doctype html> <html lang="en" class="no-js no-touch" itemscope itemtype="http://schema.org/Article"> <head> <meta charset="utf-8" > <meta name="description" content="Visual style guide used by this site."> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1"> <meta itemprop="name" content="Visual Style Guide — Web Starter Kit"> <meta itemprop="description" content="Visual style guide used by this site."> <link rel="stylesheet" href="styles/components/components.css"> <title>Visual Style Guide — Web Starter Kit</title> <style> .auto-gen-code-snippet { display: none; } .auto-gen-code-visible { display: block; } </style> </head> <body class="page--styleguide"> <div class="container"> <h1>Web <strong>Starter Kit</strong></h1> </div> <div class="summary-header"> <div class="container"> <h2 class="summary-header__title">Visual Style Guide</h2> <ol class="summary-header__anchor-list list-links"> <li class="summary-header__anchors-item"><a href="#typography">Typography</a></li> <li class="summary-header__anchors-item"><a href="#buttons">Buttons</a></li> <li class="summary-header__anchors-item"><a href="#lists">Lists</a></li> <li class="summary-header__anchors-item"><a href="#links">Links</a></li> <li class="summary-header__anchors-item"><a href="#icons">Icons</a></li> <li class="summary-header__anchors-item"><a href="#breadcrumbs">Breadcrumbs</a></li> <li class="summary-header__anchors-item"><a href="#table">Table</a></li> <li class="summary-header__anchors-item"><a href="#grid">Grid</a></li> <li class="summary-header__anchors-item"><a href="#colors">Colors</a></li> <li class="summary-header__anchors-item"><a href="#highlights">Highlights</a></li> <li class="summary-header__anchors-item"><a href="#editorial-header">Editorial header</a></li> <li class="summary-header__anchors-item"><a href="#article-section">Article section</a></li> <li class="summary-header__anchors-item"><a href="#guides-section">Guides section</a></li> <li class="summary-header__anchors-item"><a href="#page-header">Page header</a></li> <li class="summary-header__anchors-item"><a href="#quote">Quote</a></li> <li class="summary-header__anchors-item"><a href="#guides-intro">Featured icons</a></li> <li class="summary-header__anchors-item"><a href="#featured-spotlight">Featured spotlight</a></li> <li class="summary-header__anchors-item"><a href="#featured-list">Featured list</a></li> <li class="summary-header__anchors-item"><a href="#next-lessons">Featured block</a></li> <li class="summary-header__anchors-item"><a href="#article-navigation">Article navigation</a></li> </ol> </div> </div> <div class="container"> <button id="snippet-toggle" class="button--primary">Toggle Code Snippets</button> </div> <div class="container"> <!-- Typography Start --> <a name="typography"></a> <section class="styleguide__typography"> <h2 class="subsection-title"><strong class="subsection-number">#01</strong> Typography</h2> <div class="code-sample"> <p class="small">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="base">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="medium">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="large">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="xlarge">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="xxlarge">Lorem ipsum dolor sit amet.</p> </div> <div class="code-sample"> <p class="huge">Lorem ipsum dolor sit amet.</p> </div> </section> <!-- Typography End--> <!-- Buttons Start --> <a name="buttons"></a> <section class="styleguide__buttons"> <h2 class="subsection-title"><strong class="subsection-number">#02</strong> Buttons</h2> <div> <h4>Primary</h4> <div class="code-sample"> <a href="#ignore-click" class="button--primary">Use our tool</a> </div> </div> <div> <h4>Secondary</h4> <div> <div class="code-sample"> <a href="#ignore-click" class="button--secondary">Use our tool</a> </div> </div> <div class="code-sample"> <div class="styleguide__inverted-block"> <a href="#ignore-click" class="button--secondary-variation">Use our tool</a> </div> </div> </div> </section> <!-- Buttons End --> <!-- Lists Start --> <a name="lists"></a> <section class="styleguide__lists"> <h2 class="subsection-title"><strong class="subsection-number">#03</strong> Lists</h2> <h3>Default lists</h3> <h4>ul</h4> <div class="code-sample"> <ul> <li>Lorem ipsum dolor sit amet.</li> <li>Dicta optio cumque dolore hic ea facilis</li> <li>Minus, possimus, veniam, incidunt eligendi</li> </ul> </div> <h4>ol</h4> <div class="code-sample"> <ol> <li>Lorem ipsum dolor sit amet</li> <li>Dicta optio cumque dolore hic ea facilis</li> <li>Minus, possimus, veniam, incidunt eligendi</li> </ol> </div> <h3>Default lists of links</h3> <h4>ul</h4> <div class="code-sample"> <ul class="list-links"> <li class="list__item"><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li class="list__item"><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li class="list__item"><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ul> </div> <div class="code-sample"> <ul class="list-links list-links--primary"> <li class="list__item"><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li class="list__item"><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li class="list__item"><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ul> </div> <h4>ol</h4> <div class="code-sample"> <ol class="list-links"> <li><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li class="current"><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ol> </div> <div class="code-sample"> <ol class="list-anchor"> <li><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ol> </div> <div class="code-sample"> <ol class="list-anchor list-small"> <li><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ol> </div> <div class="code-sample"> <ol class="list-links list-links--secondary"> <li><a href="#ignore-click">Layout basics</a></li> <li><a href="#ignore-click">Basics layouts</a></li> <li><a href="#ignore-click">Layout patterns</a></li> </ol> </div> <div class="code-sample"> <ol class="list-links list-links--secondary list-small"> <li><a href="#ignore-click">Layout basics</a></li> <li><a href="#ignore-click">Basics layouts</a></li> <li><a href="#ignore-click">Layout patterns</a></li> </ol> </div> </section> <!-- Lists End --> <!-- Links Start --> <a name="links"></a> <section class="styleguide__links"> <h2 class="subsection-title"><strong class="subsection-number">#04</strong> Links</h2> <div> <h4>Primary</h4> <div class="code-sample"> <a href="#ignore-click" class="cta--primary">Use our tool</a> </div> </div> <div> <h4>Secondary</h4> <div class="code-sample"> <a href="#ignore-click" class="cta--secondary">Use our tool</a> </div> </div> <div class="code-sample"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. <a href="#ignore-click" class="cta">use our tool</a> Fugiat, quam alias voluptatem tempora minus dolor facere cumque necessitatibus placeat velit aliquid ab dolore beatae. Neque ipsam in a illum repellendus?</p> </div> </section> <!-- Links End --> <!-- Icons Start --> <a name="icons"></a> <section class="styleguide__icons"> <h2 class="styleguide__icons"><strong class="subsection-number">#05</strong> Icons</h2> <div class="clear"> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-minus"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-plus"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-star"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-chevron-right"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-chevron-left"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-chevron-up"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-chevron-down"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-slash"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-google-dev"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-lessons"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-multi-device-layouts"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-user-input"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-introduction-to-media"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-performance"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-bullet"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-chevron-large"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-close"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-cog"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-diamond"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-exclamation"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-hash"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-menu"></i></div></p> </div> <div class="g--third"> <p><div class="code-sample"><i class="icon icon-question"></i></div></p> </div> <div class="g--third g--last"> <p><div class="code-sample"><i class="icon icon-tick"></i></div></p> </div> </div> <h4>Icon Circles</h4> <div class="clear"> <div class="g--half"> <p> <div class="code-sample"> <span class="icon-circle"><i class="icon icon-lessons"></i></span> </div> </p> </div> <div class="g--half g--last"> <p> <div class="code-sample"> <span class="icon-circle"><i class="icon icon-lessons"></i></span> </div> </p> </div> </div> <h4>Icon Circles - Themed</h4> <div class="clear"> <div class="g--half"> <div class="code-sample"> <p class="theme--multi-device-layouts"> <span class="icon-circle themed--background"><i class="icon icon-multi-device-layouts"></i></span> </p> </div> </div> <div class="g--half g--last"> <div class="code-sample"> <p class="theme--user-input"> <span class="icon-circle themed--background"><i class="icon icon-user-input"></i></span> </p> </div> </div> <div class="g--half"> <div class="code-sample"> <p class="theme--introduction-to-media"> <span class="icon-circle themed--background"><i class="icon icon-introduction-to-media"></i></span> </p> </div> </div> <div class="g--half g--last"> <div class="code-sample"> <p class="theme--performance"> <span class="icon-circle themed--background"><i class="icon icon-performance"></i></span> </p> </div> </div> </div> <h4>Icon Circles - Large</h4> <div class="clear"> <div class="g--half"> <div class="code-sample"> <p class="theme--multi-device-layouts"> <span class="icon-circle--large themed--background"><i class="icon icon-multi-device-layouts"></i></span> </p> </div> </div> <div class="g--half g--last"> <div class="code-sample"> <p class="theme--user-input"> <span class="icon-circle--large themed--background"><i class="icon icon-user-input"></i></span> </p> </div> </div> <div class="g--half"> <div class="code-sample"> <p class="theme--introduction-to-media"> <span class="icon-circle--large themed--background"><i class="icon icon-introduction-to-media"></i></span> </p> </div> </div> <div class="g--half g--last"> <div class="code-sample"> <p class="theme--performance"> <span class="icon-circle--large themed--background"><i class="icon icon-performance"></i></span> </p> </div> </div> </div> </section> <!-- Icons End --> <!-- Breadcrumbs Start --> <a name="breadcrumbs"></a> <section class="styleguide__breadcrumb"> <h2 class="subsection-title"><strong class="subsection-number">#06</strong> Breadcrumbs</h2> <div class="code-sample"> <nav class="breadcrumbs"> <p><a href="#ignore-click" class="breadcrumbs__link">Link 1</a> / <a href="#ignore-click" class="breadcrumbs__link">Link 2</a> / <a href="#ignore-click" class="breadcrumbs__link">Link 3</a> / <a href="#ignore-click" class="breadcrumbs__link">Link 4</a> </p> </nav> </div> </section> <!-- Breadcrumbs End --> <!-- Tables Start --> <a name="table"></a> <section class="styleguide__table"> <h2 class="subsection-title"><strong class="subsection-number">#07</strong> Table</h2> <div class="code-sample"> <table class="table-4"> <colgroup> <col span="1"> <col span="1"> <col span="1"> <col span="1"> </colgroup> <thead> <tr> <th>Element</th> <th>Availability</th> <th>Description</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td data-th="element"><code>src</code></td> <td data-th="availability">All browsers</td> <td data-th="description">Gives the address (URL) of the video.</td> <td data-th="description">Gives the address (URL) of the video.</td> </tr> <tr> <td data-th="element"><code>poster</code></td> <td data-th="availability">All browsers</td> <td data-th="description">Gives the address (URL) of an image file that the browser can show as soon as the video element loads, before playback begins.</td> <td data-th="description">Gives the address (URL) of an image file that the browser can show as soon as the video element loads, before playback begins.</td> </tr> </tbody> </table> </div> <div class="code-sample"> <table class="table-3"> <colgroup> <col span="1"> <col span="1"> <col span="1"> </colgroup> <thead> <tr> <th>Element</th> <th>Availability</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td data-th="element"><code>src</code></td> <td data-th="availability">All browsers</td> <td data-th="description">Gives the address (URL) of the video.</td> </tr> <tr> <td data-th="element"><code>poster</code></td> <td data-th="availability">All browsers</td> <td data-th="description">Gives the address (URL) of an image file that the browser can show as soon as the video element loads, before playback begins.</td> </tr> </tbody> </table> </div> <div class="code-sample"> <table class="table-2"> <colgroup> <col span="1"> <col span="1"> </colgroup> <thead> <tr> <th>Element</th> <th>Availability</th> </tr> </thead> <tbody> <tr> <td data-th="element"><code>src</code></td> <td data-th="availability">Rules applied for any browser width over the value defined in the query.</td> </tr> <tr> <td data-th="element"><code>poster</code></td> <td data-th="availability">Rules applied for any browser width over the value defined in the query.</td> </tr> </tbody> </table> </div> <p> <b>Note:</b> <code>markdown</code> isn't recognized in tables, therefore any code blocks should be wrapped in &lt;code&gt; tags. </p> </section> <!-- Tables End --> <!-- Grid Start --> <a name="grid"></a> <section class="styleguide__grid"> <h2 class="subsection-title"><strong class="subsection-number">#08</strong> Grid</h2> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--half g-wide--1"></div> <div class="g-medium--half g-medium--last g-wide--1"></div> <div class="g-medium--half g-wide--1"></div> <div class="g-medium--half g-medium--last g-wide--1 g-wide--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-wide--1 g-medium--half"></div> <div class="g-wide--3 g-wide--last g-medium--half g--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-wide--3 g-medium--half"></div> <div class="g-wide--1 g-wide--last g-medium--half g--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--full g-wide--full"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--2 g-medium--last g-wide--3"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--1 g-medium--last g-wide--2"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--1 g-medium--last g-wide--1"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--1 g-medium--push-2 g-medium--last g-wide--1 g-wide--push-3 g-wide--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--1 g-medium--push-2 g-medium--last g-wide--2 g-wide--push-2 g-wide--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g-medium--2 g-medium--push-1 g-medium--last g-wide--3 g-wide--push-1 g-wide--last"></div> </div> </div> <h4>Consistent grid classes</h4> <div class="clear demo"> <div class="code-sample"> <div class="g--third"></div> <div class="g--third"></div> <div class="g--third g--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g--half"></div> <div class="g--half g--last"></div> </div> </div> <div class="clear demo"> <div class="code-sample"> <div class="g--half g--centered"></div> <div class="g--third g--centered"></div> </div> </div> </section> <!-- Grid End --> <!-- Colors Start --> <a name="colors"></a> <section class="styleguide__colors"> <h2 class="subsection-title"><strong class="subsection-number">#09</strong> Colours</h2> <h3>Blacks</h3> <div class="code-sample"> <ul class="styleguide__color-list list--reset clear"> <li class="color--gray-background g--half">gray-background</li> <li class="color--gray-keyline g--half g--last">gray-keyline</li> <li class="color--gray g--half">gray</li> <li class="color--gray-dark g--half g--last">gray-dark</li> </ul> </div> <h3>Themes</h3> <div class="code-sample"> <ul class="styleguide__color-list list--reset clear"> <li class="color--layouts g--half">layouts</li> <li class="color--layouts-secondary g--half g--last">layouts secondary</li> <li class="color--user g--half">user</li> <li class="color--user-secondary g--half g--last">user secondary</li> <li class="color--media g--half">media</li> <li class="color--media-secondary g--half g--last">media secondary</li> <li class="color--performance g--half">performance</li> <li class="color--performance-secondary g--half g--last">performance secondary</li> </ul> </div> <h3>Google</h3> <div class="code-sample"> <ul class="styleguide__color-list list--reset clear"> <li class="color--blue g--half">blue</li> <li class="color--blue-secondary g--half g--last">blue secondary</li> <li class="color--green g--half">green</li> <li class="color--green-secondary g--half g--last">green secondary</li> <li class="color--red g--half">red</li> <li class="color--red-secondary g--half g--last">red secondary</li> <li class="color--yellow g--half">yellow</li> <li class="color--yellow-secondary g--half g--last">yellow secondary</li> </ul> </div> <h3>Helpers</h3> <div class="code-sample"> <ul class="styleguide__color-list list--reset clear"> <li class="color--text g--half">text</li> <li class="color--highlight g--half g--last">highlight</li> <li class="color--warning g--half">warning</li> <li class="color--danger g--half g--last">danger</li> <li class="color--muted g--half">muted</li> <li class="color--remember g--half g--last">remember</li> <li class="color--learning g--half">learning</li> </ul> </div> </section> <!-- Colors End --> </div> <!-- // closing container --> <!-- Highlights Start --> <div class="container"> <a name="highlights"></a> <h2 class="subsection-title"><strong class="subsection-number">#10</strong> Highlights</h2> </div> <section class="styleguide__highlights"> <div class="code-sample"> <div class="highlight-module highlight-module--right highlight-module--remember"> <div class="highlight-module__container icon-exclamation "> <div class="highlight-module__content g-wide--push-1 g-wide--pull-1 g-medium--pull-1 "> <p class="highlight-module__title"> Remember</p> <p class="highlight-module__text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> </div> </div> </div> </div> <div class="code-sample"> <div class="highlight-module highlight-module--left highlight-module--learning "> <div class="highlight-module__container icon-star "> <div class="highlight-module__content g-wide--push-1 g-wide--pull-1 g-medium--push-1 "> <p class="highlight-module__title"> Key Takeaways</p> <p class="highlight-module__text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> </div> </div> </div> </div> <div class="code-sample"> <div class="highlight-module highlight-module--right highlight-module--remember "> <div class="highlight-module__container icon-exclamation "> <div class="highlight-module__content g-wide--push-1 g-wide--pull-1 g-medium--pull-1 "> <p class="highlight-module__title"> Remember</p> <ul class="highlight-module__list"> <li>Lorem ipsum dolor sit amet</li> <li>Fugit itaque sapiente earum quo expedita</li> <li>labore aliquam cupiditate veritatis nihil</li> </ul> </div> </div> </div> </div> <div class="code-sample"> <div class="highlight-module highlight-module--left highlight-module--remember "> <div class="highlight-module__container icon-exclamation "> <div class="highlight-module__content g-wide--push-1 g-wide--pull-1 g-medium--push-1 "> <p class="highlight-module__title"> Remember</p> <p class="highlight-module__text"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> </div> </div> </div> </div> </section> <div class="container"> <h3>Code Samples</h3> </div> <div class="code-sample"> <div class="highlight-module highlight-module--code highlight-module--right"> <div class="highlight-module__container"> <code class='html'><div class="highlight"><pre> <span class="cp">&lt;!DOCTYPE html&gt;</span> <span class="nt">&lt;html</span> <span class="na">lang=</span><span class="s">&quot;en&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;head&gt;</span> <span class="nt">&lt;title&gt;</span>Article Example: sample example<span class="nt">&lt;/title&gt;</span> <span class="nt">&lt;/head&gt;</span> <span class="nt">&lt;body&gt;</span> <span class="nt">&lt;div</span> <span class="na">role=</span><span class="s">&quot;main&quot;</span><span class="nt">&gt;</span> Hello, world. <span class="nt">&lt;/div&gt;</span> <span class="nt">&lt;/body&gt;</span> <span class="nt">&lt;/html&gt;</span> </pre></div></code> </div> </div> </div> <div class="container"> <div class="code-sample"> <pre><code class='html'>&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;</code></pre> </div> </div> <div class="code-sample"> <div class="highlight-module highlight-module--left highlight-module--learning highlight-module--inline "> <div class="highlight-module__container icon-star "> <div class="highlight-module__content g-wide--pull-1 "> <p class="highlight-module__title"> Key Takeaways</p> <ul class="highlight-module__list"> <li>Lorem ipsum dolor sit amet</li> <li>Fugit itaque sapiente earum quo expedita</li> <li>labore aliquam cupiditate veritatis nihil</li> </ul> </div> </div> </div> </div> <div class="code-sample"> <div class="highlight-module highlight-module--right highlight-module--remember highlight-module--inline "> <div class="highlight-module__container icon-exclamation "> <div class="highlight-module__content g-wide--pull-1 "> <p class="highlight-module__title"> Remember</p> <ul class="highlight-module__list"> <li>Lorem ipsum dolor sit amet</li> <li>Fugit itaque sapiente earum quo expedita</li> <li>labore aliquam cupiditate veritatis nihil</li> </ul> </div> </div> </div> </div> <!-- Highlights End --> <!-- Editorial Header Start--> <div class="container"> <a name="editorial-header"></a> <h2 class="subsection-title"><strong class="subsection-number">#11</strong> Editorial header</h2> </div> <div class="code-sample"> <section class="styleguide__editorial-header"> <div class="editorial-header"> <div class="container"> <nav class="breadcrumbs"> <p> / <a href="#ignore-click" class="breadcrumbs__link">The Essentials</a> / <a href="#ignore-click" class="breadcrumbs__link"> Multi-screen layouts</a></p> </nav> <h1 class="tag editorial-header__title">Layout Basics</h1> <h2 class="editorial-header__subtitle">What is the viewport?</h2> <p class="editorial-header__excerpt g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae varius augue, eu varius dolor. Sed vitae varius augue, eu varius dolor. </p> <p class="g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed vitae varius augue, eu varius dolor. Donec augue diam, scelerisque eget lectus in, posuere aliquet mi. Pellentesque suscipit nisl gravida sem tincidunt, id blandit turpis commodo.</p> <div class="toc"> <p class="toc__title">In this lesson</p> <ol class="toc__list list-anchor" id="toc"> <li><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li class="current"><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> <li><a href="#ignore-click">Lorem ipsum dolor sit amet</a></li> <li><a href="#ignore-click">Dicta optio cumque dolore hic ea facilis</a></li> <li><a href="#ignore-click">Minus, possimus, veniam, incidunt eligendi</a></li> </ol> </div> </div> </div> </section> </div> <div class="container"> <a name="article-section"></a> <h2 class="subsection-title"><strong class="subsection-number">#12</strong> Article section</h2> </div> <div class="code-sample"> <section class="styleguide__articles-section"> <div class="articles-section"> <div class="container"> <p class="articles-count">4 guides</p> <ol class="articles-list"> <li class="articles-list__item"> <h3 class="xlarge"><a href="#ignore-click">Layout basics</a></h3> <p class="g-wide--push-1 g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, distinctio blanditiis quos porro harum nemo.</p> <a href="#ignore-click" class="cta--primary">See all lessons</a> </li> <li class="articles-list__item"> <h3 class="xlarge"><a href="#ignore-click">Basic layouts</a></h3> <p class="g-wide--push-1 g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, distinctio blanditiis quos porro harum nemo.</p> <a href="#ignore-click" class="cta--primary">See all lessons</a> </li> <li class="articles-list__item"> <h3 class="xlarge"><a href="#ignore-click">Layout patterns</a></h3> <p class="g-wide--push-1 g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, distinctio blanditiis quos porro harum nemo.</p> <a href="#ignore-click" class="cta--primary">See all lessons</a> </li> <li class="articles-list__item"> <h3 class="xlarge"><a href="#ignore-click">UI Elements</a></h3> <p class="g-wide--push-1 g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores, distinctio blanditiis quos porro harum nemo.</p> <a href="#ignore-click" class="cta--primary">See all lessons</a> </li> </ol> </div> </div> </section> </div> <div class="container"> <a name="guides-section"></a> <h2 class="subsection-title"><strong class="subsection-number">#13</strong> Guides section</h2> </div> <div class="code-sample"> <section class="styleguide__guides-section"> <div class="guides-section"> <header class="container"> <h2 class="xxlarge">Documentation</h2> <p>Follow these guides and build web content users can access on any device they choose.</p> </header> <ul class="guides-list container-medium"> <li class="guides-list__item g--half theme--multi-device-layouts "> <div class="primary-content"> <h3 class="xlarge"><a href="#ignore-click" title="Go to Multi-Device Layouts" class="themed">Multi-Device Layouts</a></h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloremque, velit, illum iure id in saepe laborum. Doloribus, eaque, assumenda inventore eos iusto tenetur error dolorem suscipit molestiae natus ullam aliquam?</p> </div> <div class="secondary-content"> <span class="icon-circle themed--background"><i class="icon icon-lessons"></i></span> <ol class="list-links list-links--secondary"> <li><a href="#ignore-click" title="Read the lesson Responsive Web Design Fundamentals">Responsive Web Design Fundamentals</a></li> <li><a href="#ignore-click" title="Read the lesson Responsive Web Design Patterns">Responsive Web Design Patterns</a></li> <li><a href="#ignore-click" title="Read the lesson Navigation and Action Patterns">Navigation and Action Patterns</a></li> </ol> </div> </li> <li class="guides-list__item g--half theme--introduction-to-media g--last"> <div class="primary-content"> <h3 class="xlarge"><a href="#ignore-click" title="Go to Images, Audio and Video" class="themed">Images, Audio and Video</a></h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corporis, fugit ea maiores omnis ad iste autem sed reiciendis amet quam deleniti sapiente laboriosam voluptate pariatur veniam quod beatae sunt architecto?</p> </div> <div class="secondary-content"> <span class="icon-circle themed--background"><i class="icon icon-lessons"></i></span> <ol class="list-links list-links--secondary"> <li><a href="#ignore-click" title="Read the lesson Images">Images</a></li> <li><a href="#ignore-click" title="Read the lesson Video">Video</a></li> <li><a href="#ignore-click" title="Read the lesson Audio">Audio</a></li> </ol> </div> </li> <li class="guides-list__item g--half theme--user-input "> <div class="primary-content"> <h3 class="xlarge"><a href="#ignore-click" title="Go to Forms and User Input" class="themed">Forms and User Input</a></h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate, adipisci, aspernatur. Velit, consequatur, temporibus, neque minus obcaecati dolor officia architecto voluptatem et pariatur quo vitae saepe laborum ratione eum. Soluta.</p> </div> <div class="secondary-content"> <span class="icon-circle themed--background"><i class="icon icon-lessons"></i></span> <ol class="list-links list-links--secondary"> <li><a href="#ignore-click" title="Read the lesson Create Amazing Forms">Create Amazing Forms</a></li> <li><a href="#ignore-click" title="Read the lesson Add Touch to Your Site">Add Touch to Your Site</a></li> </ol> </div> </li> <li class="guides-list__item g--half theme--performance g--last"> <div class="primary-content"> <h3 class="xlarge"><a href="#ignore-click" title="Go to Optimizing Performance" class="themed">Optimizing Performance</a></h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. A, ratione officia officiis natus illum quos cumque quis! Optio, dolore, eligendi ea culpa quod esse atque architecto reprehenderit at tempora itaque!</p> </div> <div class="secondary-content"> <span class="icon-circle themed--background"><i class="icon icon-lessons"></i></span> <ol class="list-links list-links--secondary"> <li><a href="#ignore-click" title="Read the lesson Critical Rendering Path">Critical Rendering Path</a></li> <li><a href="#ignore-click" title="Read the lesson Optimizing Content Efficiency">Optimizing Content Efficiency</a></li> </ol> </div> </li> </ul> </div> </section> </div> <div class="container"> <a name="page-header"></a> <h2 class="subsection-title"><strong class="subsection-number">#14</strong> Page header</h2> </div> <div class="code-sample"> <section class="styleguide__page-header"> <div class="page-header"> <div class="container"> <nav class="breadcrumbs"> <p> / <a href="#ignore-click" class="breadcrumbs__link"> The Essentials</a></p> </nav> <h3 class="xxlarge text-divider">Multi-screen layouts</h3> <p class="page-header__excerpt g-wide--push-1 g-wide--pull-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus, optio, ad, voluptates repudiandae at excepturi error delectus explicabo nulla eum provident quibusdam ipsum sapiente culpa sequi quia unde fuga id.</p> </div> </div> </section> </div> <div class="container"> <a name="quote"></a> <h2 class="subsection-title"><strong class="subsection-number">#15</strong> Quote</h2> </div> <div class="code-sample"> <section class="styleguide__quote"> <div class="quote"> <div class="container"> <blockquote class="quote__content g-wide--push-1 g-wide--pull-1 g-medium--push-1">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deleniti, illum, at quis vero nam minus incidunt consequatur reprehenderit aliquid blanditiis fugiat nihil dolor tempora distinctio ipsum quisquam debitis excepturi magni. <p>Name / Details</p> </blockquote> </div> </div> </section> </div> <div class="container"> <a name="guides-intro"></a> <h2 class="subsection-title"><strong class="subsection-number">#16</strong> Featured icons</h2> </div> <div class="code-sample"> <section class="styleguide__centered-list"> <div class="container"> <ul class="list-guides-intro list-centered list--reset clear"> <li class="g-medium--half g-wide--1 theme--multi-device-layouts "> <a href="#ignore-click" class="themed"> <span class="icon-circle--large themed--background"><i class="icon icon-multi-device-layouts"></i></span> <h3 class="large text-divider">Multi-Device Layouts</h3> </a> <p>Create flexible, not fixed, layouts.</p> </li> <li class="g-medium--half g-wide--1 theme--introduction-to-media g-medium--last "> <a href="#ignore-click" class="themed"> <span class="icon-circle--large themed--background"><i class="icon icon-introduction-to-media"></i></span> <h3 class="large text-divider">Images, Audio and Video</h3> </a> <p>Only use media that loads fast and scales.</p> </li> <li class="g-medium--half g-wide--1 theme--user-input "> <a href="#ignore-click" class="themed"> <span class="icon-circle--large themed--background"><i class="icon icon-user-input"></i></span> <h3 class="large text-divider">Forms and User Input</h3> </a> <p>Touch, tap, click, and submit.</p> </li> <li class="g-medium--half g-wide--1 theme--performance g-medium--last g-wide--last "> <a href="#ignore-click" class="themed"> <span class="icon-circle--large themed--background"><i class="icon icon-performance"></i></span> <h3 class="large text-divider">Optimizing Performance</h3> </a> <p>Performance is a feature.</p> </li> </ul> </div> </section> </div> <div class="container"> <a name="featured-spotlight"></a> <h2 class="subsection-title"><strong class="subsection-number">#17</strong> Featured spotlight</h2> </div> <a name="feature-spotlight"></a> <div class="code-sample"> <section class="styleguide__feature-spotlight"> <div class="featured-spotlight"> <div class="container-medium"> <div class="featured-spotlight__container g--pull-half"> <div class="featured-spotlight__img"> <img src="images/icons/placeholder--wide.png" alt="wide image placeholder example"> </div> <div class="container-small"> <h3 class="xxlarge">Featured spotlight</h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sed vitae varius augue, eu varius dolor.</p> <a href="#ignore-click" class="cta--primary">View Google</a> </div> </div> </div> </div> </section> </div> <div class="container"> <a name="featured-list"></a> <h2 class="subsection-title"><strong class="subsection-number">#18</strong> Featured list</h2> </div> <div class="code-sample"> <section class="styleguide__featured-section"> <div class="featured-section"> <div class="container-medium"> <ul class="featured-list"> <li class="featured-list__item clear"> <div class="container-small"> <div class="featured-list__content g--half"> <h3>Case study</h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, incidunt harum aut quae eaque sequi sunt molestiae tenetur vitae.</p> <a href="#ignore-click" class="cta--primary">View Google</a> </div> <div class="featured-list__img-wrapper g--half g--last"> <div class="featured-list__img"> <img src="images/icons/placeholder--small.png" alt="small image placeholder example"> </div> </div> </div> </li> <li class="featured-list__item clear"> <div class="container-small"> <div class="featured-list__content g--half"> <h3>Case study</h3> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, incidunt harum aut quae eaque sequi sunt molestiae tenetur vitae.</p> <a href="#ignore-click" class="cta--primary">View Google</a> </div> <div class="featured-list__img-wrapper g--half g--last"> <div class="featured-list__img"> <img src="images/icons/placeholder--small.png" alt="small image placeholder example"> </div> </div> </div> </li> </ul> </div> </div> </section> </div> <div class="container"> <a name="next-lessons"></a> <h2 class="subsection-title"><strong class="subsection-number">#19</strong> Featured block</h2> </div> <div class="code-sample"> <section class="styleguide__next-lessons"> <div class="next-lessons container-medium" data-current-lesson="03"> <h3><i class="icon icon-lessons"></i> Next Lessons</h3> <ol class="list-lessons list-links"> <li><a href="#ignore-click">Lesson title one</a></li> <li class="current"><a href="#ignore-click">Lesson title two <i class="icon icon-tick"></i></a></li> <li><a href="#ignore-click">Lesson title three</a></li> <li><a href="#ignore-click">Lesson title four</a></li> <li><a href="#ignore-click">Lesson title five</a></li> </ol> </div> </section> </div> <div class="container"> <a name="article-navigation"></a> <h2 class="subsection-title"><strong class="subsection-number">#20</strong> Article navigation</h2> </div> <div class="code-sample"> <section class="styleguide__article-nav"> <div class="container-medium"> <nav class="article-nav"> <a href="#ignore-click" class="article-nav-link article-nav-link--prev"> <p class="article-nav-count">02</p> <p>A need for responsive pages</p> </a> <a href="#ignore-click" class="article-nav-link article-nav-link--next"> <p class="article-nav-count">04</p> <p>Create images for multiple resolutions</p> </a> </nav> </div> </section> </div> <footer id="gc-footer"> <div class="container"> <p><a href="#">Back to top</a></p> </div> </footer> <script> (function () { 'use strict'; var snippetToggle = document.querySelector('#snippet-toggle'); var snippets; snippetToggle.addEventListener('click', function () { if (snippets) { for (var i = 0; i < snippets.length; i++) { snippets[i].classList.toggle('auto-gen-code-visible'); } } }); window.onload = function () { createCodeSamples(); snippets = document.querySelectorAll('.auto-gen-code-snippet'); }; function createCodeSamples() { var codeWrappers = document.querySelectorAll('.code-sample'); for (var i = 0; i < codeWrappers.length; i++) { var codeWrapper = codeWrappers[i]; var clonedNodes = getClonedNonTextNodes(codeWrapper); beautifyNodes(clonedNodes); var preElement = document.createElement('pre'); var codeElement = document.createElement('code'); for (var j = 0; j < clonedNodes.length; j++) { codeElement.appendChild(document.createTextNode(clonedNodes[j].outerHTML)); if (j + 1 < clonedNodes.length) { codeElement.appendChild(document.createTextNode('\n')); } } preElement.appendChild(codeElement); preElement.classList.add('auto-gen-code-snippet'); preElement.classList.add('container'); var clearDiv = document.createElement('div'); clearDiv.classList.add('clear'); var parent = codeWrapper.parentNode; if (codeWrapper.nextSibling) { parent.insertBefore(preElement, codeWrapper.nextSibling); } else { parent.appendChild(preElement); } parent.insertBefore(clearDiv, preElement); } } function getClonedNonTextNodes(element) { var nonTextNodes = []; var childNodes = element.childNodes; for (var i = 0; i < childNodes.length; i++) { var childElement = childNodes[i]; if (childElement.nodeType !== 3) { // Found a valid child element nonTextNodes.push(childElement.cloneNode(true)); } } return nonTextNodes; } function beautifyNodes(elements) { for (var i = 0; i < elements.length; i++) { beautifyNode(elements[i], 0); } } function beautifyNode(element, depth) { var childNodes = element.childNodes; var singleIndent = ' '; var currentDepthSpacing = ''; for (var i = 0; i < depth; i++) { currentDepthSpacing += singleIndent; } var nextDepthSpacing = currentDepthSpacing + singleIndent; for (var j = 0; j < childNodes.length; j++) { var childElement = childNodes[j]; if (childElement.nodeType === 3) { // found a text node if (childElement.nodeValue.indexOf('\n') >= 0) { if (j + 1 < childNodes.length) { childElement.nodeValue = '\n' + nextDepthSpacing; } else { childElement.nodeValue = '\n' + currentDepthSpacing; } } } else { beautifyNode(childElement, depth + 1); } } } })(); </script> </body> </html>
examples/0-simple-page/res/css/styles.css
andamira/webera
body { background: #f0f0f0; } h1, h2 { color: #222; margin: 14px 0; } h1 { font-size: 20px; line-height: 20px; } h2 { font-size: 17px; line-height: 17px; } hr { margin: 20px 5px; border-style: outset; border-width: 2px 0px; border-color: cadetblue; } a { color: cadetblue; } .page-header { padding: 10px; margin: 0 0 20px; border-radius: 3px; background-color: #f7f7f7; box-shadow: inset 0px 1px 2px 2px rgba(34, 34, 34, 0.19); } .page-wrapper { max-width: 900px; margin: 10px auto; padding: 15px; background: #fcfbfa; box-shadow: 0 1px 3px 1px rgba(2,2,2, 0.05) } .example-image { margin: 10px; border: 4px double rgba(0, 0, 0, 0.19); background-color: rgba(0, 0, 0, 0.28); box-shadow: 0 1px 3px 1px rgba(2, 2, 2, 0.31); }
www/templates/playlists.html
rjbernaldo/360Realty.ph
<ion-view view-title="360Realty.ph"> <ion-content> <ion-list> <ion-item class="item-avatar" ng-repeat="property in properties" href="#/app/playlists/{{property.id}}"> <img src={{property.photospheres[0].imageUrl}}> <h2>{{property.name}}</h2> <p>{{property.description}}</p> </ion-item> </ion-list> </ion-content> </ion-view>
tools/Rake/lib/ruby/gems/1.8/doc/rubygems-1.5.2/rdoc/classes/Gem/Package/TarInput.src/M000144.html
michaelsync/Giles
<?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> <head> <title>load_gemspec (Gem::Package::TarInput)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre><span class="ruby-comment cmt"># File lib/rubygems/package/tar_input.rb, line 189</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">load_gemspec</span>(<span class="ruby-identifier">io</span>) <span class="ruby-constant">Gem</span><span class="ruby-operator">::</span><span class="ruby-constant">Specification</span>.<span class="ruby-identifier">from_yaml</span> <span class="ruby-identifier">io</span> <span class="ruby-keyword kw">rescue</span> <span class="ruby-constant">Gem</span><span class="ruby-operator">::</span><span class="ruby-constant">Exception</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">end</span></pre> </body> </html>
raspberry/pygame-1.9.1release/docs/tut/camera/CameraIntro.html
museomix/2013_Quebec_thermoscope
<html><head><!-- TUTORIAL:Camera Module Introduction --> <title>Pygame Tutorials - Camera Module Introduction</title> </head> <body> <h1 align="center"><font size="-1">Pygame Tutorials</font><br> Camera Module Introduction</h1> <h2 align="center">by Nirav Patel<br> <font size="-1">nrp@eclecti.cc</font></h2> <h3 align="center">Revision 1.0, May 25th, 2009</h3> <br><br> Pygame 1.9 comes with support for interfacing cameras, allowing you to capture still images, watch live streams, and do some simple computer vision. This tutorial will cover all of those use cases, providing code samples you can base your app or game on. You can refer to the <a href="../../ref/camera.html"> reference documentation</a> for the full API. <br><br> <i>Note: As of Pygame 1.9, the camera module offers native support for cameras that use v4l2 on Linux. There is support for other platforms via Videocapture or OpenCV, but this guide will focus on the native module. Most of the code will be valid for other platforms, but certain things like controls will not work. The module is also marked as <b>EXPERIMENTAL</b>, meaning the API could change in subsequent versions.</i> <br><br> <h3>Import and Init</h3> <pre> import pygame import pygame.camera from pygame.locals import * pygame.init() pygame.camera.init() </pre> As the camera module is optional, it needs to be imported and initialized manually as shown above. <br><br> <h3>Capturing a Single Image</h3> Now we will go over the simplest case of opening a camera and capturing a frame as a surface. In the below example, we assume that there is a camera at /dev/video0 on the computer, and initialize it with a size of 640 by 480. The surface called image is whatever the camera was seeing when get_image() was called. <pre> cam = pygame.camera.Camera("/dev/video0",(640,480)) cam.start() image = cam.get_image() </pre> <h4>Listing Connected Cameras</h4> You may be wondering, what if we don't know the exact path of the camera? We can ask the module to provide a list of cameras attached to the computer and initialize the first camera in the list. <pre> camlist = pygame.camera.list_cameras() if camlist: cam = pygame.caemra.Camera(camlist[0],(640,480)) </pre> <h4>Using Camera Controls</h4> Most cameras support controls like flipping the image and changing brightness. set_controls() and get_controls() can be used at any point after using start(). <pre> cam.set_controls(hflip = True, vflip = False) print camera.get_controls() </pre> <br> <h3>Capturing a Live Stream</h3> The rest of this tutorial will be based around capturing a live stream of images. For this, we will be using the class below. As described, it will simply blit a constant stream of camera frames to the screen, effectively showing live video. It is basically what you would expect, looping get_image(), blitting to the display surface, and flipping it. For performance reasons, we will be supplying the camera with the same surface to use each time. <pre> class Capture(object): def __init__(self): self.size = (640,480) # create a display surface. standard pygame stuff self.display = pygame.display.set_mode(self.size, 0) # this is the same as what we saw before self.clist = pygame.camera.list_cameras() if not self.clist: raise ValueError("Sorry, no cameras detected.") self.cam = pygame.camera.Camera(self.clist[0], self.size) self.cam.start() # create a surface to capture to. for performance purposes # bit depth is the same as that of the display surface. self.snapshot = pygame.surface.Surface(self.size, 0, self.display) def get_and_flip(self): # if you don't want to tie the framerate to the camera, you can check # if the camera has an image ready. note that while this works # on most cameras, some will never return true. if self.cam.query_image(): self.snapshot = self.cam.get_image(self.snapshot) # blit it to the display surface. simple! self.display.blit(self.snapshot, (0,0)) pygame.display.flip() def main(self): going = True while going: events = pygame.event.get() for e in events: if e.type == QUIT or (e.type == KEYDOWN and e.key == K_ESCAPE): # close the camera safely self.cam.stop() going = False self.get_and_flip() </pre> Since get_image() is a blocking call that could take quite a bit of time on a slow camera, this example uses query_image() to see if the camera is ready. This allows you to separate the framerate of your game from that of your camera. It is also possible to have the camera capturing images in a separate thread, for approximately the same performance gain, if you find that your camera does not support the query_image() function correctly. <br><br> <h3>Basic Computer Vision</h3> By using the camera, transform, and mask modules, pygame can do some basic computer vision. <br> <h4>Colorspaces</h4> When initializing a camera, colorspace is an optional parameter, with 'RGB', 'YUV', and 'HSV' as the possible choices. YUV and HSV are both generally more useful for computer vision than RGB, and allow you to more easily threshold by color, something we will look at later in the tutorial. <pre> self.cam = pygame.camera.Camera(self.clist[0], self.size, "RGB") <img src="rgb.jpg"> self.cam = pygame.camera.Camera(self.clist[0], self.size, "YUV") <img src="yuv.jpg"> self.cam = pygame.camera.Camera(self.clist[0], self.size, "HSV") <img src="hsv.jpg"> </pre> <h4>Thresholding</h4> Using the threshold() function from the transform module, one can do simple green screen like effects, or isolate specifically colored objects in a scene. In the below example, we threshold out just the green tree and make the rest of the image black. Check the reference documentation for details on the <a href="../../ref/transform.html#pygame.transform.threshold">threshold function</a>. <pre> self.thresholded = pygame.surface.Surface(self.size, 0, self.display) self.snapshot = self.cam.get_image(self.snapshot) pygame.transform.threshold(self.thresholded,self.snapshot,(0,255,0),(90,170,170),(0,0,0),2) <img src="thresholded.jpg"> </pre> Of course, this is only useful if you already know the exact color of the object you are looking for. To get around this and make thresholding usable in the real world, we need to add a calibration stage where we identify the color of an object and use it to threshold against. We will be using the average_color() function of the transform module to do this. Below is an example calibration function that you could loop until an event like a key press, and an image of what it would look like. The color inside the box will be the one that is used for the threshold. Note that we are using the HSV colorspace in the below images. <pre> def calibrate(self): # capture the image self.snapshot = self.cam.get_image(self.snapshot) # blit it to the display surface self.display.blit(self.snapshot, (0,0)) # make a rect in the middle of the screen crect = pygame.draw.rect(self.display, (255,0,0), (145,105,30,30), 4) # get the average color of the area inside the rect self.ccolor = pygame.transform.average_color(self.snapshot, crect) # fill the upper left corner with that color self.display.fill(self.ccolor, (0,0,50,50)) pygame.display.flip() <img src="average.jpg"> pygame.transform.threshold(self.thresholded,self.snapshot,self.ccolor,(30,30,30),(0,0,0),2) <img src="thresh.jpg"> </pre> You can use the same idea to do a simple green screen/blue screen, by first getting a background image and then thresholding against it. The below example just has the camera pointed at a blank white wall in HSV colorspace. <pre> def calibrate(self): # capture a bunch of background images bg = [] for i in range(0,5): bg.append(self.cam.get_image(self.background)) # average them down to one to get rid of some noise pygame.transform.average_surfaces(bg,self.background) # blit it to the display surface self.display.blit(self.background, (0,0)) pygame.display.flip() <img src="background.jpg"> pygame.transform.threshold(self.thresholded,self.snapshot,(0,255,0),(30,30,30),(0,0,0),1,self.background) <img src="green.jpg"> </pre> <h4>Using the Mask Module</h4> The stuff above is great if you just want to display images, but with the <a href="../../ref/mask.html">mask module</a>, you can also use a camera as an input device for a game. For example, going back to the example of thresholding out a specific object, we can find the position of that object and use it to control an on screen object. <pre> def get_and_flip(self): self.snapshot = self.cam.get_image(self.snapshot) # threshold against the color we got before mask = pygame.mask.from_threshold(self.snapshot, self.ccolor, (30, 30, 30)) self.display.blit(self.snapshot,(0,0)) # keep only the largest blob of that color connected = mask.connected_component() # make sure the blob is big enough that it isn't just noise if mask.count() > 100: # find the center of the blob coord = mask.centroid() # draw a circle with size variable on the size of the blob pygame.draw.circle(self.display, (0,255,0), coord, max(min(50,mask.count()/400),5)) pygame.display.flip() <img src="mask.jpg"> </pre> This is just the most basic example. You can track multiple different colored blobs, find the outlines of objects, have collision detection between real life and in game objects, get the angle of an object to allow for even finer control, and more. Have fun! </body></html>
src/app/asha-payment-activity/asha-payment-detail.component.html
mnjkumar426/asha_front
<div class=""> <p>Asha Name:{{ashaname}}</p> <h3>Update Asha worker monthly activity details below.</h3> </div> <form class="form-horizontal edit-asha-payment-activity-form" (ngSubmit)="onSubmit()" #addAshaForm="ngForm" method="POST"> <div> <h2 class="asha-payment-activity-head">Maternal Health</h2> <div class="asha-payment-activity-details"> <h3>ANC Checkups</h3> <div class="form-group"> <label for="101" class="col-sm-4 control-label">No. of Registration during the first trimester of pregnancy at</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-101-R">Enter count</span> <input id="101" class="form-control" type="text" aria-describedby="addon-101-R" [(ngModel)]="model.r_101" name="r_101" #r_101="ngModel"> </div> </div> <div class="col-sm-2"> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Registration during the first trimester of pregnancy at Rural and Urban areas">?</button> </div> </div> <div class="form-group"> <label for="102" class="col-sm-4 control-label">No. of 1st check up</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-102-R">Enter count</span> <input id="102" class="form-control" type="" aria-describedby="addon-102-R" [(ngModel)]="model.r_102" name="r_102" #r_102="ngModel"> </div> </div> <div class="col-sm-2"> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="103" class="col-sm-4 control-label">No. of 2 nd check up </label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-103-R">Enter count</span> <input id="103" class="form-control" type="" aria-describedby="addon-103-R" [(ngModel)]="model.r_103" name="r_103" #r_103="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="104" class="col-sm-4 control-label">No. of 3 rd check up</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-104-R">Enter count</span> <input id="104" class="form-control" type="" aria-describedby="addon-104-R" [(ngModel)]="model.r_104" name="r_104" #r_104="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="105" class="col-sm-4 control-label">No. of 4 th check up by M.O</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-105-R">Enter count</span> <input id="105" class="form-control" type="" aria-describedby="addon-105-R" [(ngModel)]="model.r_105" name="r_105" #r_105="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="106" class="col-sm-4 control-label">No. of Deliveres conducted in PHC/Institutons</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-106-R">Enter count</span> <input id="106" class="form-control" type="" aria-describedby="addon-106-R" [(ngModel)]="model.r_106" name="r_106" #r_106="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="107" class="col-sm-4 control-label">No. of Maternal Death reported to Sub Centre</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-107-R">Enter count</span> <input id="107" class="form-control" type="" aria-describedby="addon-107-R" [(ngModel)]="model.r_107" name="r_107" #r_107="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">Child Health</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="108" class="col-sm-4 control-label">Postnatal Visits (HBNC) (6 visits in Institutional Delivery, 7 Visits in Home Delivery)</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-108-R">Enter the number of visits</span> <input id="108" class="form-control" type="" aria-describedby="addon-108-R" [(ngModel)]="model.r_108" name="r_108" #r_108="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="109" class="col-sm-4 control-label">Rreferral & Follow up of SAM Cases to NRC</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-109-R">Enter count</span> <input id="109" class="form-control" type="" aria-describedby="addon-109-R" [(ngModel)]="model.r_109" name="r_109" #r_109="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="110" class="col-sm-4 control-label">Follow up of LBW babies (LBW Low Birth Weight Babies)</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-110-R">Enter the count</span> <input id="110" class="form-control" type="" aria-describedby="addon-110-R" [(ngModel)]="model.r_110" name="r_110" #r_110="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="111" class="col-sm-4 control-label">Follow up of SNCU discharge babies</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-111-R">Enter the count</span> <input id="111" class="form-control" type="" aria-describedby="addon-111-R" [(ngModel)]="model.r_111" name="r_111" #r_111="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="112" class="col-sm-4 control-label">Infant death reporting to Sub-centre and PHC</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-112-R">INR</span> <input id="112" class="form-control" type="" aria-describedby="addon-112-R" [(ngModel)]="model.r_112" name="r_112" #r_112="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="113" class="col-sm-4 control-label">Intesive Diarrhoea Control Programme</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-113-R">Fix 200</span> <input id="113" class="form-control" type="" aria-describedby="addon-113-R" [(ngModel)]="model.r_113" name="r_113" #r_113="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">Immunization</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="114" class="col-sm-4 control-label">Pulse Polio Booth Mobilization</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-114-R">Not Applicable</span> <input id="114" class="form-control" type="" aria-describedby="addon-114-R" [(ngModel)]="model.r_114" name="r_114" #r_114="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <h3>Full Immunization</h3> <div class="form-group"> <label for="115" class="col-sm-4 control-label">Complete Immunization in 1st year of age</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-115-R">Enter count</span> <input id="115" class="form-control" type="" aria-describedby="addon-115-R" [(ngModel)]="model.r_115" name="r_115" #r_115="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="116" class="col-sm-4 control-label">Full Immunization of 2nd year of age</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-116-R">Enter count</span> <input id="116" class="form-control" type="" aria-describedby="addon-116-R" [(ngModel)]="model.r_116" name="r_116" #r_116="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">Family Planning</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="117" class="col-sm-4 control-label">No. of Counseling & Motivation of women for Tubectomy</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-117-R">Enter count</span> <input id="117" class="form-control" type="" aria-describedby="addon-117-R" [(ngModel)]="model.r_117" name="r_117" #r_117="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="118" class="col-sm-4 control-label">No. of Counseling & Motivation for men of Vasectomy</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-118-R">Enter count</span> <input id="118" class="form-control" type="" aria-describedby="addon-118-R" [(ngModel)]="model.r_118" name="r_118" #r_118="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="119" class="col-sm-4 control-label">Accompanying the beneficiary for PPIUCD</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-119-R">Enter count</span> <input id="119" class="form-control" type="" aria-describedby="addon-119-R" [(ngModel)]="model.r_119" name="r_119" #r_119="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">RKSK (only for HPDs)</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="120" class="col-sm-4 control-label">Support to Peer Educator</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-120-R">Yes or No</span> <input id="120" class="form-control" type="" aria-describedby="addon-120-R" [(ngModel)]="model.r_120" name="r_120" #r_120="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="121" class="col-sm-4 control-label">Mobilizing Adolescents for AHD</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-121-R">Yes or No</span> <input id="121" class="form-control" type="" aria-describedby="addon-121-R" [(ngModel)]="model.r_121" name="r_121" #r_121="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">RNTCP</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="122" class="col-sm-4 control-label">New TB case Catg.I TB (42 contacts 6-7 months treatment)</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-122-R">Enter number of cases</span> <input id="122" class="form-control" type="" aria-describedby="addon-122-R" [(ngModel)]="model.r_122" name="r_122" #r_122="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="123" class="col-sm-4 control-label">Previous treated TB case (57 contacts, catg.II TB 8-9 months treatment</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-123-R">Enter number of cases</span> <input id="123" class="form-control" type="" aria-describedby="addon-123-R" [(ngModel)]="model.r_123" name="r_123" #r_123="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="124" class="col-sm-4 control-label">Providing treatment and support to Drug resistant TB patient (MDR)</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-124-R">Enter number of cases</span> <input id="124" class="form-control" type="" aria-describedby="addon-124-R" [(ngModel)]="model.r_124" name="r_124" #r_124="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="125" class="col-sm-4 control-label">Identification & Successful completion of DOTS for TB</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-125-R">Enter the number of patients</span> <input id="125" class="form-control" type="" aria-describedby="addon-125-R" [(ngModel)]="model.r_125" name="r_125" #r_125="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">NLEP</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="126" class="col-sm-4 control-label">PB - Referring for Diagnostics + Complete treatment</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-126-R">Enter number of cases</span> <input id="126" class="form-control" type="" aria-describedby="addon-126-R" [(ngModel)]="model.r_126" name="r_126" #r_126="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="127" class="col-sm-4 control-label">MB - Dsetection + complete treatment</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-127-R">Enter number of cases</span> <input id="127" class="form-control" type="" aria-describedby="addon-127-R" [(ngModel)]="model.r_127" name="r_127" #r_127="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">NVBDC Programme (Srikakulam, Vizianagaram, East Godavari)</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="128" class="col-sm-4 control-label">Preparation of Blood Slide </label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-128-R">Enter count</span> <input id="128" class="form-control" type="" aria-describedby="addon-128-R" [(ngModel)]="model.r_128" name="r_128" #r_128="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="129" class="col-sm-4 control-label">Complete treatment for RDT +ve PF case & complete Radical treatment to +ve PF & PC cases</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-129-R">Enter count</span> <input id="129" class="form-control" type="" aria-describedby="addon-129-R" [(ngModel)]="model.r_129" name="r_129" #r_129="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="130" class="col-sm-4 control-label">Lymphatic Filariasis – for One time Line listing of Lymphoedema and Hydrocele cases in non-endemic dist</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-130-R">Enter count</span> <input id="130" class="form-control" type="" aria-describedby="addon-130-R" [(ngModel)]="model.r_130" name="r_130" #r_130="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="131" class="col-sm-4 control-label">Line listing of Lymphatic Filariasis</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-131-R">Enter count</span> <input id="131" class="form-control" type="" aria-describedby="addon-131-R" [(ngModel)]="model.r_131" name="r_131" #r_131="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="132" class="col-sm-4 control-label">Referral of AES / JE cases to the nearest CHC / DH / Medical College</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-132-R">Enter count</span> <input id="132" class="form-control" type="" aria-describedby="addon-132-R" [(ngModel)]="model.r_132" name="r_132" #r_132="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">Routine & Recurrent activities</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="133" class="col-sm-4 control-label">Mobilizing & attending VHND in the month</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-133-R">Yes or No</span> <input id="133" class="form-control" type="" aria-describedby="addon-133-R" [(ngModel)]="model.r_133" name="r_133" #r_133="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="134" class="col-sm-4 control-label">Attending VHSNC meeting</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-134-R">Yes or No</span> <input id="134" class="form-control" type="" aria-describedby="addon-134-R" [(ngModel)]="model.r_134" name="r_134" #r_134="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="135" class="col-sm-4 control-label">Atttending ASHA Day Meeting</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-135-R">Yes or No</span> <input id="135" class="form-control" type="" aria-describedby="addon-135-R" [(ngModel)]="model.r_135" name="r_135" #r_135="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="136" class="col-sm-4 control-label">Line listing of households done at beginning of the year and updated after six months</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-136-R">Yes or No</span> <input id="136" class="form-control" type="" aria-describedby="addon-136-R" [(ngModel)]="model.r_136" name="r_136" #r_136="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="137" class="col-sm-4 control-label">Maintaining village health register and supporting universal registration of births and deaths</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-137-R">Yes or No</span> <input id="137" class="form-control" type="" aria-describedby="addon-137-R" [(ngModel)]="model.r_137" name="r_137" #r_137="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="138" class="col-sm-4 control-label">Preparation of due list of children to be immunized updated on monthly basis</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-138-R">Yes or No</span> <input id="138" class="form-control" type="" aria-describedby="addon-138-R" [(ngModel)]="model.r_138" name="r_138" #r_138="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="139" class="col-sm-4 control-label">Preparation of list of ANC beneficiaries to be updated on monthly basis</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-139-R">Yes or No</span> <input id="139" class="form-control" type="" aria-describedby="addon-139-R" [(ngModel)]="model.r_139" name="r_139" #r_139="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> <div class="form-group"> <label for="140" class="col-sm-4 control-label">Preparation of list of eligible couples updated on monthly basis</label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-140-R">Yes or No</span> <input id="140" class="form-control" type="" aria-describedby="addon-140-R" [(ngModel)]="model.r_140" name="r_140" #r_140="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> <div> <h2 class="asha-payment-activity-head">104 (by state budget)</h2> <div class="asha-payment-activity-details"> <div class="form-group"> <label for="141" class="col-sm-4 control-label">No.of ASHA attended 104 Fixed day health services in villages </label> <div class="col-sm-2"> <div class="input-group"> <span class="input-group-addon" id="addon-141-R">Yes or No</span> <input id="141" class="form-control" type="" aria-describedby="addon-141-R" [(ngModel)]="model.r_141" name="r_141" #r_141="ngModel"> </div> </div> <div class="col-sm-2"> <button class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Some Text">?</button> </div> </div> </div> </div> </form>
src/plugins/cordova-plugin-device-orientation/sim-host.css
Microsoft/taco-simulate-server
#device-orientation #compass-widget { margin: 0 auto; position: relative; /* Weird percentage is 184/294, which keeps size the same as it used to be */ width: 62.59%; } #device-orientation [data-compass-heading="text"] { margin-right: 5px; margin-left: auto; } #device-orientation .compass-help-info em { font-size: 0.9em; text-align: center; padding: 1.5em 0; margin-left: auto; margin-right: auto; }
demo/simple_dragging/index.html
forwardadvance/ng-draggable-widgets
<!DOCTYPE html> <html ng-app="app"> <head> <title>Widget dragging demo</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js"></script> <script src="../../build/js/ng-draggable-widgets.js"></script> <script src="./demo.js"></script> <link rel="stylesheet" type="text/css" href="./demo.css"> </head> <body ng-controller="dragController"> <div drag-group="widgets"> <div ng-repeat="widget in widgets" draggable-widget="widget" draggable-widget-callback="moveWidget" class="{{widget.class}}"> <div draggable-widget-handle>drag</div> <p>{{widget.title}}</p> </div> </div> </body> </html>
gcc-arm-none-eabi/share/doc/gcc-arm-none-eabi/html/gdb/Frames.html
trfiladelfo/tdk
<html lang="en"> <head> <title>Frames - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.11"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Stack.html#Stack" title="Stack"> <link rel="next" href="Backtrace.html#Backtrace" title="Backtrace"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988-2014 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.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.'' --> <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="Frames"></a> Next:&nbsp;<a rel="next" accesskey="n" href="Backtrace.html#Backtrace">Backtrace</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Stack.html#Stack">Stack</a> <hr> </div> <h3 class="section">8.1 Stack Frames</h3> <p><a name="index-frame_002c-definition-456"></a><a name="index-stack-frame-457"></a>The call stack is divided up into contiguous pieces called <dfn>stack frames</dfn>, or <dfn>frames</dfn> for short; each frame is the data associated with one call to one function. The frame contains the arguments given to the function, the function's local variables, and the address at which the function is executing. <p><a name="index-initial-frame-458"></a><a name="index-outermost-frame-459"></a><a name="index-innermost-frame-460"></a>When your program is started, the stack has only one frame, that of the function <code>main</code>. This is called the <dfn>initial</dfn> frame or the <dfn>outermost</dfn> frame. Each time a function is called, a new frame is made. Each time a function returns, the frame for that function invocation is eliminated. If a function is recursive, there can be many frames for the same function. The frame for the function in which execution is actually occurring is called the <dfn>innermost</dfn> frame. This is the most recently created of all the stack frames that still exist. <p><a name="index-frame-pointer-461"></a>Inside your program, stack frames are identified by their addresses. A stack frame consists of many bytes, each of which has its own address; each kind of computer has a convention for choosing one byte whose address serves as the address of the frame. Usually this address is kept in a register called the <dfn>frame pointer register</dfn> (see <a href="Registers.html#Registers">$fp</a>) while execution is going on in that frame. <p><a name="index-frame-number-462"></a><span class="sc">gdb</span> assigns numbers to all existing stack frames, starting with zero for the innermost frame, one for the frame that called it, and so on upward. These numbers do not really exist in your program; they are assigned by <span class="sc">gdb</span> to give you a way of designating stack frames in <span class="sc">gdb</span> commands. <!-- The -fomit-frame-pointer below perennially causes hbox overflow --> <!-- underflow problems. --> <p><a name="index-frameless-execution-463"></a>Some compilers provide a way to compile functions so that they operate without stack frames. (For example, the <span class="sc">gcc</span> option <pre class="smallexample"> &lsquo;<samp><span class="samp">-fomit-frame-pointer</span></samp>&rsquo; </pre> <p>generates functions without a frame.) This is occasionally done with heavily used library functions to save the frame setup time. <span class="sc">gdb</span> has limited facilities for dealing with these function invocations. If the innermost function invocation has no stack frame, <span class="sc">gdb</span> nevertheless regards it as though it had a separate frame, which is numbered zero as usual, allowing correct tracing of the function call chain. However, <span class="sc">gdb</span> has no provision for frameless functions elsewhere in the stack. <a name="index-frame_0040r_007b_002c-command_007d-464"></a> <a name="index-current-stack-frame-465"></a> <dl><dt><code>frame </code><span class="roman">[</span><var>framespec</var><span class="roman">]</span><dd>The <code>frame</code> command allows you to move from one stack frame to another, and to print the stack frame you select. The <var>framespec</var> may be either the address of the frame or the stack frame number. Without an argument, <code>frame</code> prints the current stack frame. <p><a name="index-select_002dframe-466"></a><a name="index-selecting-frame-silently-467"></a><br><dt><code>select-frame</code><dd>The <code>select-frame</code> command allows you to move from one stack frame to another without printing the frame. This is the silent version of <code>frame</code>. </dl> </body></html>
lib/lwjgl-docs-2.9.1/javadoc/org/lwjgl/opengles/IMGProgramBinary.html
RobbertJongeling/ld29
<!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_17) on Mon Dec 02 20:33:02 CET 2013 --> <title>IMGProgramBinary (LWJGL API)</title> <meta name="date" content="2013-12-02"> <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="IMGProgramBinary (LWJGL 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="class-use/IMGProgramBinary.html">Use</a></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="../../../org/lwjgl/opengles/IMGMultisampledRenderToTexture.html" title="class in org.lwjgl.opengles"><span class="strong">Prev Class</span></a></li> <li><a href="../../../org/lwjgl/opengles/IMGReadFormat.html" title="class in org.lwjgl.opengles"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/lwjgl/opengles/IMGProgramBinary.html" target="_top">Frames</a></li> <li><a href="IMGProgramBinary.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</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">org.lwjgl.opengles</div> <h2 title="Class IMGProgramBinary" class="title">Class IMGProgramBinary</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.lwjgl.opengles.IMGProgramBinary</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public final class <span class="strong">IMGProgramBinary</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">&nbsp;</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 int</code></td> <td class="colLast"><code><strong><a href="../../../org/lwjgl/opengles/IMGProgramBinary.html#GL_SGX_PROGRAM_BINARY_IMG">GL_SGX_PROGRAM_BINARY_IMG</a></strong></code> <div class="block">Accepted by the &lt;binaryFormat&gt; parameter of ProgramBinaryOES:</div> </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&nbsp;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="GL_SGX_PROGRAM_BINARY_IMG"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GL_SGX_PROGRAM_BINARY_IMG</h4> <pre>public static final&nbsp;int GL_SGX_PROGRAM_BINARY_IMG</pre> <div class="block">Accepted by the &lt;binaryFormat&gt; parameter of ProgramBinaryOES:</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.lwjgl.opengles.IMGProgramBinary.GL_SGX_PROGRAM_BINARY_IMG">Constant Field Values</a></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="class-use/IMGProgramBinary.html">Use</a></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="../../../org/lwjgl/opengles/IMGMultisampledRenderToTexture.html" title="class in org.lwjgl.opengles"><span class="strong">Prev Class</span></a></li> <li><a href="../../../org/lwjgl/opengles/IMGReadFormat.html" title="class in org.lwjgl.opengles"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/lwjgl/opengles/IMGProgramBinary.html" target="_top">Frames</a></li> <li><a href="IMGProgramBinary.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_java.lang.Object">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><i>Copyright &#169; 2002-2009 lwjgl.org. All Rights Reserved.</i></small></p> </body> </html>
queuing/css/queuing.css
btelles/simjs-updated
/***************************/ body { font-size: 62.5%; background-image: url('../images/background.gif'); } h1 { color: #1c94c4; margin-bottom: 0px; } p#subtitle { font-size: 1.2em; text-transform: uppercase; color: #1c94c4; } p.info { margin-left: 30px; font-size: 1.2em; } #like_buttons { position:absolute; top:30px; left:900px; padding: 4px; border-bottom: solid 4px #F7B64A; } #banner { /*background: #F7B64A;*/ background-image: url('../images/banner.png'); padding: 1px; padding-left: 30px; border-radius: 10px; width: 830px; } #content { border: 8px solid #bbb; border-radius: 10px; background: #ddd; width: 820px; padding: 10px; } #main_layout { width: 1080px; } #info{ border: 4px solid #ffd478; background: #FAF6AA; width: 200px; margin-bottom: 50px; position: absolute; top: 80px; left: 880px; padding: 5px; font-size: 1.1em; } #googlead { width: 200px; margin-bottom: 50px; position: absolute; top: 400px; left: 880px; /* border: 1px solid; */ } h1 { font-color: red; } #accordion { float: left; width: 200px; height: 400px; margin-right: 10px; } #toolbar { padding: 10px 4px; } #progressbar { width: 400px; float: left; } label { font-size: 1.2em; } input[type=text] { float: right; font-size: 1.2em; height: 1.4em; width: 70px; } #results { background: #ddd; width: 810px; } .stats { display: inline-block; border: 1px solid #FAF6AA; padding: 0.4em; margin: 0.4em; background: #F7D68A; } .stats_table { border: 1px; font-size: 1.2em; border-collapse:collapse; background-color: #FAF6AA; } #server_stats, #sink_stats { display: none; } .settings_form { padding: 10px; background-color: white; width: 220px; -moz-box-shadow: 5px 5px 5px #ccc; -webkit-box-shadow: 5px 5px 5px #ccc; box-shadow: 5px 5px 5px #ccc; /* position: relative; */ } .settings_form_close { position: absolute; top: -20px; right: -200px; width: 20px; height: 20px } .inline { display: inline; } .shift-down { margin-bottom: -5px; } strong { color: #F7B64A; } #sample_models { padding: 5px; } .about_text { display: none; } .navigation { list-style-type: none; padding-left: 0; margin-left: 0; } .navigation a { text-decoration: none; display: block; padding: 2px; border-bottom: dotted 1px black; } .navigation a:hover { background-color: #F7B64A; color: #fff; font-weight: bold; border-left: solid 5px black; } .navigation a:link a:visited { color: #F7B64A; }
examples/index.html
artembaryshev/react-autosize-textarea
<!DOCTYPE html> <html lang="en"> <head> </head> <body> <div id='container'></div> <script src='bundle.js'></script> </body> </html>
libs/jScrollPane/image2.html
anchetaWern/Zenoir-Online-Classroom
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>jScrollPane image demo 2</title> <!-- styles specific to demo site --> <link type="text/css" href="style/demo.css" rel="stylesheet" media="all" /> <!-- styles needed by jScrollPane - include in your own sites --> <link type="text/css" href="style/jquery.jscrollpane.css" rel="stylesheet" media="all" /> <style type="text/css" id="page-css"> /* Styles specific to this particular page */ .scroll-pane { width: 100%; height: 400px; overflow: auto; } img { margin: 1em 0; } img.portrait { width: 480px; height: 640px; } img.landscape { width: 640px; height: 480px; } </style> <!-- latest jQuery direct from google's CDN --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <!-- the mousewheel plugin --> <script type="text/javascript" src="script/jquery.mousewheel.js"></script> <!-- the jScrollPane script --> <script type="text/javascript" src="script/jquery.jscrollpane.min.js"></script> <!-- scripts specific to this demo site --> <script type="text/javascript" src="script/demo.js"></script> <script type="text/javascript" id="sourcecode"> $(function() { $('.scroll-pane').jScrollPane(); }); </script> </head> <body> <div id="top-nav"> <img src="image/logo.png" width="196" height="69" alt="jScrollPane"> <ul> <li><a href="index.html">Home</a></li> <li><a href="index.html#examples">Examples</a></li> <li><a href="index.html#themes">Themes</a></li> <li><a href="index.html#usage">How to use</a></li> <li><a href="faqs.html">FAQs</a></li> <li><a href="known_issues.html">Known issues</a></li> <li><a href="index.html#support">Support</a></li> <li><a href="index.html#download">Download</a></li> </ul> </div> <div id="container"> <h1>jScrollPane - image demo page part 2</h1> <p> This demonstration shows how you can avoid the autoReinitialise overhead (as seen in the <a href="image.html">first image demo</a>) by fixing the width and height of the images inside your scroll pane. </p> <p> As you can see from the sourcecode for this page, you can set the width and height either through CSS or using width and height attributes on the image itself. </p> <div class="scroll-pane"> <img src="http://farm5.static.flickr.com/4068/4502147230_61d4f18460_z.jpg" class="portrait" alt="Touring" /> <img src="http://farm5.static.flickr.com/4065/4501530717_8a7f9c8ce8_z.jpg" class="landscape" alt="Avalauncher" /> <img src="http://farm5.static.flickr.com/4034/4502145190_d7ae16127b_z.jpg" class="landscape" alt="Rockies" /> <img src="http://farm5.static.flickr.com/4003/4409969018_16cc9d8bf1_z.jpg" width="640" height="480" alt="Paper cranes" /> <img src="http://farm5.static.flickr.com/4064/4407630907_1430d32efa_z.jpg" width="480" height="640" alt="Icecream"> </div> <h2>Page javascript</h2> <div id="sourcecode-display"> <p>The contents of this div will be replaced by the javascript added to this page</p> </div> <h2>Page CSS</h2> <div id="css-display"> <p>The contents of this div will be replaced by the CSS added to this page</p> </div> </div> </body> </html>
docs/docsets/ExpandableDatePicker.docset/Contents/Resources/Documents/Extensions/UITableView.html
GargoyleSoft/ExpandableDatePicker
<!DOCTYPE html> <html lang="en"> <head> <title>UITableView Extension Reference</title> <link rel="stylesheet" type="text/css" href="../css/jazzy.css" /> <link rel="stylesheet" type="text/css" href="../css/highlight.css" /> <meta charset='utf-8'> <script src="../js/jquery.min.js" defer></script> <script src="../js/jazzy.js" defer></script> </head> <body> <a name="//apple_ref/swift/Extension/UITableView" class="dashAnchor"></a> <a title="UITableView Extension Reference"></a> <header> <div class="content-wrapper"> <p><a href="../index.html">ExpandableDatePicker Docs</a> (100% documented)</p> <p class="header-right"><a href="https://github.com/GargoyleSoft/ExpandableDatePicker"><img src="../img/gh.png"/>View on GitHub</a></p> </div> </header> <div class="content-wrapper"> <p id="breadcrumbs"> <a href="../index.html">ExpandableDatePicker Reference</a> <img id="carat" src="../img/carat.png" /> UITableView Extension Reference </p> </div> <div class="content-wrapper"> <nav class="sidebar"> <ul class="nav-groups"> <li class="nav-group-name"> <a href="../Classes.html">Classes</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Classes/ExpandableDatePickerCell.html">ExpandableDatePickerCell</a> </li> <li class="nav-group-task"> <a href="../Classes/ExpandableDatePickerSelectionCell.html">ExpandableDatePickerSelectionCell</a> </li> <li class="nav-group-task"> <a href="../Classes/ExpandableDatePickerTimeZoneCell.html">ExpandableDatePickerTimeZoneCell</a> </li> <li class="nav-group-task"> <a href="../Classes/ExpandableDatePickerTimeZoneTableViewController.html">ExpandableDatePickerTimeZoneTableViewController</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Extensions.html">Extensions</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Extensions/UITableView.html">UITableView</a> </li> </ul> </li> <li class="nav-group-name"> <a href="../Protocols.html">Protocols</a> <ul class="nav-group-tasks"> <li class="nav-group-task"> <a href="../Protocols/ExpandableDatePicker.html">ExpandableDatePicker</a> </li> <li class="nav-group-task"> <a href="../Protocols.html#/s:P20ExpandableDatePicker15ShowsDatePicker">ShowsDatePicker</a> </li> </ul> </li> </ul> </nav> <article class="main-content"> <section> <section class="section"> <h1>UITableView</h1> <p>Undocumented</p> </section> <section class="section task-group-section"> <div class="task-group"> <ul> <li class="item"> <div> <code> <a name="/s:FE20ExpandableDatePickerCSo11UITableView28registerExpandableDatePickerFT_T_"></a> <a name="//apple_ref/swift/Method/registerExpandableDatePicker()" class="dashAnchor"></a> <a class="token" href="#/s:FE20ExpandableDatePickerCSo11UITableView28registerExpandableDatePickerFT_T_">registerExpandableDatePicker()</a> </code> </div> <div class="height-container"> <div class="pointer-container"></div> <section class="section"> <div class="pointer"></div> <div class="abstract"> <p>Sets up the <code>UITableView</code> to support the required table cells. You should call this from <code>viewDidLoad</code></p> <div class="aside aside-note"> <p class="aside-title">Note</p> Also sets the <code>estimatedRowHeight</code> to 44 and the <code>rowHeight</code> to <code>UITableViewAutomaticDimension</code> as the date picker needs expandable cells. </div> </div> <div class="declaration"> <h4>Declaration</h4> <div class="language"> <p class="aside-title">Swift</p> <pre class="highlight"><code><span class="kd">public</span> <span class="kd">func</span> <span class="nf">registerExpandableDatePicker</span><span class="p">()</span></code></pre> </div> </div> </section> </div> </li> </ul> </div> </section> </section> <section id="footer"> <p>&copy; 2017 <a class="link" href="https://github.com/GargoyleSoft/ExpandableDatePicker" target="_blank" rel="external">Gargoyle Software</a>. All rights reserved. (Last updated: 2017-01-09)</p> <p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.7.3</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p> </section> </article> </div> </body> </div> </html>
target/doc/libc/consts/os/posix01/constant.PTHREAD_STACK_MIN.html
ssgrn/Rust-Matrix-Computations
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `PTHREAD_STACK_MIN` constant in crate `libc`."> <meta name="keywords" content="rust, rustlang, rust-lang, PTHREAD_STACK_MIN"> <title>libc::consts::os::posix01::PTHREAD_STACK_MIN - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../../../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../../../index.html'>libc</a>::<wbr><a href='../../index.html'>consts</a>::<wbr><a href='../index.html'>os</a>::<wbr><a href='index.html'>posix01</a></p><script>window.sidebarCurrent = {name: 'PTHREAD_STACK_MIN', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../../../index.html'>libc</a>::<wbr><a href='../../index.html'>consts</a>::<wbr><a href='../index.html'>os</a>::<wbr><a href='index.html'>posix01</a>::<wbr><a class='constant' href=''>PTHREAD_STACK_MIN</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-721' class='srclink' href='../../../../src/libc/lib.rs.html#3736' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const PTHREAD_STACK_MIN: <a class='type' href='../../../../libc/types/os/arch/c95/type.size_t.html' title='libc::types::os::arch::c95::size_t'>size_t</a><code> = </code><code>16384</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../../"; window.currentCrate = "libc"; window.playgroundUrl = "https://play.rust-lang.org/"; </script> <script src="../../../../jquery.js"></script> <script src="../../../../main.js"></script> <script src="../../../../playpen.js"></script> <script async src="../../../../search-index.js"></script> </body> </html>
transporte.html
leo-gome/leo-gome.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>Visual Analytics 2017 - 2</title> <!-- Bootstrap core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom fonts for this template --> <link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- Custom styles for this template --> <link href="css/clean-blog.min.css" rel="stylesheet"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> .axis--x path { display: none; } .line { fill: none; stroke: steelblue; stroke-width: 1.5px; } </style> </head> <body> <!-- Navigation --> <nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav"> <div class="container"> <a class="navbar-brand" >Transporte Aero y Terrestre en Colombia</a> </div> </nav> <!-- Page Header --> <header class="masthead" style="background-image: url('img/post-bg.jpg')"> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-10 mx-auto"> <div class="post-heading"> <h1>¿Las aerolineas de bajo costo han tenido un impacto real en el Transporte de pasajeros?</h1> <h2 class="subheading">Analisis de del transporte en Colombia desde 2005 a 2015</h2> <span class="meta">Posted by <a >David Gomez</a> 19 de Septiembre de 2017</span> </div> </div> </div> </div> </header> <!-- Post Content --> <article> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-10 mx-auto"> <h2 class="section-heading">Distribución de medios de Transporte</h2> <p>En el análisis inicial sobre los datos se intentó identificar la distribución de pasajeros entre los dos medios de transporte en los principales municipios de Colombia (aquellos que cuentan con aeropuertos) para determinar el tendencias y participación de los medios de transporte. </p> <svg width="600" height="600" id="stacked_barchart"></svg> <p>Utilizando la visualización podemos ver que el transporte terrestre es domínate, sin embargo, se observa una tendencia de crecimiento del transporte aéreo, el cual ha aumentado la participación del mercado de forma significativa desde el año 2009 lo que vamos a profundizar más Adelante. </p> <h2 class="section-heading">Tendencias en el volumen de pasajeros</h2> <p>Adicional al análisis de distribución de medios de transporte, se pretende determinar si el volumen de pasajeros presenta alguna tendencia durante el año que puedan afectar las comparaciones de información y a la vez determinar los picos de que se puedan presentar durante el año. </p> <svg width="600" height="600" id="lineChartComparativo"></svg> <p>Observando la gráfica podemos ver que las tendencias se mantienen durante los años, en donde se observan picos muy marcados en los meses de diciembre y enero, básicamente por las fiestas de fin de año, y en los meses de junio y julio, por los periodos de vacaciones escolares y temporadas de fiestas regionales del país. </p> <h2 class="section-heading">Análisis de Crecimiento del transporte Aereo</h2> <p>Con el fin de ahondar en el análisis de crecimiento del transporte aéreo y con el fin de determinar si efectivamente hay un impacto real de las aerolíneas de bajo costo en la dinámica del sector se planteó el siguiente análisis: </p> <p>• Se va a realizar un análisis de crecimiento de los medios de transporte en comparativa con el año inmediatamente anterior. </p> <p>• Se incluirá la información de crecimiento demográfico para tener un valor de referencia para comparar los valores de crecimiento de los medios de transporte </p> <svg width="600" height="600" id="lineChartCrecimiento"></svg> <p>Al observar la visualización podemos determinar que le transporte aéreo tuvo una tasa de crecimiento elevada entre los años 2009 y 2013, realizando verificaciones se encontró que Viva Colombia entro en operaciones en el año 2009 lo que pudo impactar en el crecimiento del sector no solo por la cantidad de pasajeros transportados, sino por el efecto que originó en el mercado haciendo que las aerolíneas bajaran sus costos haciendo el viaje aéreo más atractivo frente al viaje terrestre. </p> <h2 class="section-heading">Fuente de Datos</h2> <p>Para el análisis realizado se utilizaron las siguientes fuentes de datos:</p> <p>Transporte Aéreo: https://www.datos.gov.co/Comercio-Industria-y-Turismo/Pasajeros-Aereos-Nacionales/idmw-pexi </p> <p>Transporte Terrestre: https://www.datos.gov.co/Comercio-Industria-y-Turismo/Pasajeros-Terminales-Terrestres/dbaw-dquh </p> </div> </div> </div> </article> <hr> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-10 mx-auto"> <ul class="list-inline text-center"> <li class="list-inline-item"> <a href="https://github.com/leo-gome/transporteColombia"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> </div> </div> </div> </footer> <!-- Bootstrap core JavaScript --> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/popper/popper.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.min.js"></script> <!-- Custom scripts for this template --> <script src="js/clean-blog.min.js"></script> </body> <!-- Codigo para generar Stacked Barchart --> <script> //Selecccion del SVG y definicion de margenes var svg = d3.select("#stacked_barchart"), margin = {top: 120, right: 120, bottom: 30, left: 40}, width = +svg.attr("width") - margin.left - margin.right, height = +svg.attr("height") - margin.top - margin.bottom, g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")"); //Definicion de escalas de la visualizacion var x = d3.scaleBand() .rangeRound([0, width]) .paddingInner(0.05) .align(0.1); var y = d3.scaleLinear() .rangeRound([height, 0]); var z = d3.scaleOrdinal() .range(["orange", "tomato"]); //Cargar Informacion d3.csv("data1.csv", function(d, i, columns) { for (i = 1, t = 0; i < columns.length; ++i) t += d[columns[i]] = +d[columns[i]]; d.total = t; return d; }, function(error, data) { if (error) throw error; var keys = data.columns.slice(1); //Definicion del dominio de las escalas x.domain(data.map(function(d) { return d.Year; })); y.domain([0, d3.max(data, function(d) { return d.total; })]).nice(); z.domain(keys); g.append("g") .selectAll("g") .data(d3.stack().keys(keys)(data)) .enter().append("g") .attr("fill", function(d) { return z(d.key); }) .selectAll("rect") .data(function(d) { return d; }) .enter().append("rect") .attr("x", function(d) { return x(d.data.Year); }) .attr("y", function(d) { return y(d[1]); }) .attr("height", function(d) { return y(d[0]) - y(d[1]); }) .attr("width", x.bandwidth()); //Adicion de los elementos de la visualizacion g.append("g") .attr("class", "axis") .attr("transform", "translate(0," + height + ")") .call(d3.axisBottom(x)); g.append("g") .attr("class", "axis") .call(d3.axisLeft(y).ticks(null, "s")) .append("text") .attr("x", 2) .attr("y", y(y.ticks().pop()) + 0.5) .attr("dy", "0.32em") .attr("fill", "#000") .attr("font-weight", "bold") .attr("text-anchor", "start") .text("Pasajeros"); var legend = g.append("g") .attr("font-family", "sans-serif") .attr("font-size", 10) .attr("text-anchor", "end") .selectAll("g") .data(keys.slice().reverse()) .enter().append("g") .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); legend.append("rect") .attr("x", width + 105) .attr("width", 19) .attr("height", 19) .attr("fill", z); legend.append("text") .attr("x", width + 95) .attr("y", 9.5) .attr("dy", "0.32em") .text(function(d) { return d; }); }); </script> <!-- Codigo para generar Line Chart Comparativo --> <script> //Seleccion del SVG para generar la visualizacion y definicion de margener var svg2 = d3.select("#lineChartComparativo"), margin2 = {top: 20, right: 50, bottom: 30, left: 60}, width2 = svg2.attr("width") - margin2.left - margin2.right, height2 = svg2.attr("height") - margin2.top - margin2.bottom, g2 = svg2.append("g").attr("transform", "translate(" + margin2.left + "," + margin2.top + ")"); // definicion de las escalas para la visualizacion var x2 = d3.scaleBand().range([0, width2]), y2 = d3.scaleLinear().range([height2, 0]), z2 = d3.scaleOrdinal(d3.schemeCategory10); //definicion de la funcion para realizar las lineas entre los diferentes puntos var line2 = d3.line() .curve(d3.curveBasis) .x(function(d) { return x2(d.date); }) .y(function(d) { return y2(d.pasajeros); }); //carga de la informacion d3.csv("data2.csv", function(error2, data2) { if (error2) throw error2; //Seleccion de las diferentes series de datos que se tendran en la visualizacion var years2 = data2.columns.slice(1).map(function(id) { return { id: id, values: data2.map(function(d) { return {date: d.date, pasajeros: d[id]}; }) }; }); //Definicion de los rangos de las escalas x2.domain(data2.map(function(d) { return d.date; })); y2.domain([ 500000, 5000000 ]); z2.domain(years2.map(function(c) { return c.id; })); //inclusion de los elementos de la visualizacion g2.append("g") .attr("class", "axis axis--x") .attr("transform", "translate(0," + height2 + ")") .call(d3.axisBottom(x2)); g2.append("g") .attr("class", "axis axis--y") .call(d3.axisLeft(y2)) .append("text") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", "0.71em") .attr("fill", "#000") .text("Cantidad de Pasajeros"); var year = g2.selectAll(".year") .data(years2) .enter().append("g") .attr("class", "year"); year.append("path") .attr("class", "line") .attr("d", function(d) { return line2(d.values); }) .style("stroke", function(d) { return z2(d.id); }); year.append("text") .datum(function(d) { return {id: d.id, value: d.values[d.values.length - 1]}; }) .attr("transform", function(d) { return "translate(" + x2(d.value.date) + "," + y2(d.value.pasajeros) + ")"; }) .attr("x", 3) .attr("dy", "0.35em") .style("font", "10px sans-serif") .text(function(d) { return d.id; }); }); //Funcion para retornar las diferentes series el grafico function type(d, _, columns) { //d.date = parseTime(d.date); for (var i = 1, n = columns.length, c; i < n; ++i) d[c = columns[i]] = +d[c]; return d; } </script> <!-- Codigo para generar LineChart de Crecimiento--> <script> //Seleccion del SVG para incluir la grafica var svg3 = d3.select("#lineChartCrecimiento"), margin3 = {top: 20, right: 100, bottom: 30, left: 50}, width3 = svg3.attr("width") - margin3.left - margin3.right, height3 = svg3.attr("height") - margin3.top - margin3.bottom, g3 = svg3.append("g").attr("transform", "translate(" + margin3.left + "," + margin3.top + ")"); //Definicion de las escalas a utilizar var x3 = d3.scaleLinear().range([0, width3]), y3 = d3.scaleLinear().range([height3, 0]), z3 = d3.scaleOrdinal(d3.schemeCategory10); //Definicion de la funcion para realizar las lineas entre los puntos var line = d3.line() .curve(d3.curveBasis) .x(function(d) { return x3(d.date); }) .y(function(d) { return y3(d.crecimiento); }); //Cargar la informacion d3.csv("data3.csv", function(error3, data3) { if (error3) throw error3; //Seleccion de las diferentes series de la visualzacion var conceptos = data3.columns.slice(1).map(function(id) { return { id: id, values: data3.map(function(d) { return {date: d.date, crecimiento: d[id]}; }) }; }); //Definicion de los dominios de las escalas x3.domain(d3.extent(data3, function(d) { return d.date; })); y3.domain([ d3.min(conceptos, function(c) { return d3.min(c.values, function(d) { return d.crecimiento; }); }), d3.max(conceptos, function(c) { return d3.max(c.values, function(d) { return d.crecimiento; }); }) ]); z3.domain(conceptos.map(function(c) { return c.id; })); //Inclusion de los elementos del grafico g3.append("g") .attr("class", "axis axis--x") .attr("transform", "translate(0," + height3 + ")") .call(d3.axisBottom(x3)); g3.append("g") .attr("class", "axis axis--y") .call(d3.axisLeft(y3)) .append("text") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", "0.71em") .attr("fill", "#000") .text("Tasa de Crecimiento"); var concepto = g3.selectAll(".concepto") .data(conceptos) .enter().append("g") .attr("class", "concepto"); concepto.append("path") .attr("class", "line") .attr("d", function(d) { return line(d.values); }) .style("stroke", function(d) { return z3(d.id); }); concepto.append("text") .datum(function(d) { return {id: d.id, value: d.values[d.values.length - 1]}; }) .attr("transform", function(d) { return "translate(" + x3(d.value.date) + "," + y3(d.value.crecimiento) + ")"; }) .attr("x", 3) .attr("dy", "0.35em") .style("font", "10px sans-serif") .text(function(d) { return d.id; }); }); //Funcion para retornar las diferentes series el grafico function type(d, _, columns) { for (var i = 1, n = columns.length, c; i < n; ++i) d[c = columns[i]] = +d[c]; return d; } </script> </html>
public/css/main.css
gerzhan/knigopis.com
.navbar .login-btn { color: #fff; font-size: 110%; } .userinfo-container .user-photo { height: 20px; width: 20px; } .userinfo-container .user-nickname { font-weight: bold; } .signin-container { margin-top: 4px; } .navbar-right { margin-right: 0; } .glyphicon-refresh-animate { -animation: spin .7s infinite linear; -ms-animation: spin .7s infinite linear; -webkit-animation: spinw .7s infinite linear; -moz-animation: spinm .7s infinite linear; } @keyframes spin { from { transform: scale(1) rotate(0deg);} to { transform: scale(1) rotate(360deg);} } @-webkit-keyframes spinw { from { -webkit-transform: rotate(0deg);} to { -webkit-transform: rotate(360deg);} } @-moz-keyframes spinm { from { -moz-transform: rotate(0deg);} to { -moz-transform: rotate(360deg);} } [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; } .books-list, .wish-list { padding: 0; } .books-list > li, .wish-list > li{ margin-bottom: 20px; padding-left: 0; list-style: none; } .books-list .notes, .wish-list .notes{ white-space: pre-line; } .books-list .on-title-show-btn, .wish-list .on-title-show-btn { font-size: 80%; visibility: hidden; } .books-list .book-title:hover .on-title-show-btn, .wish-list .book-title:hover .on-title-show-btn { visibility: visible; } .navbar { background: url("/img/random_grey_variations.png") repeat scroll 0 0 rgba(0, 0, 0, 0); } .sidenav-container { position: fixed; } .sidenav-years > li.active > a{ background-color: transparent; border-left: 2px solid #563d7c; color: #563d7c; font-weight: 700; padding-left: 13px; } .sidenav-years > li > a{ padding: 2px 0 2px 15px; font-size: 90%; cursor: pointer; } .main-content { min-height: 100px; } .books-list-container .book-group { margin-bottom: 40px; } .features > div { text-align: center; } .latest-users-container { margin-top: 30px; } .private-text-info { color: #999; } .error-message-container { position: fixed; top: 0; right: 0; z-index: 1050; } .navbar-header .logo-container { padding: 4px 15px 15px 15px; } .main-content .subscribe-btn { font-size: 22px; margin-left: 8px; cursor: pointer; }
tools/Rake/lib/ruby/gems/1.8/doc/rubygems-1.5.2/rdoc/classes/Gem/Dependency.src/M000536.html
michaelsync/Giles
<?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> <head> <title>matches_spec? (Gem::Dependency)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre><span class="ruby-comment cmt"># File lib/rubygems/dependency.rb, line 177</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">matches_spec?</span> <span class="ruby-identifier">spec</span> <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">false</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">name</span> <span class="ruby-operator">===</span> <span class="ruby-identifier">spec</span>.<span class="ruby-identifier">name</span> <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">true</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">requirement</span>.<span class="ruby-identifier">none?</span> <span class="ruby-identifier">requirement</span>.<span class="ruby-identifier">satisfied_by?</span>(<span class="ruby-identifier">spec</span>.<span class="ruby-identifier">version</span>) <span class="ruby-keyword kw">end</span></pre> </body> </html>
_includes/post_pagination.html
halosec/halosec.github.io
<section class="pager"> {% if paginator.previous_page %} {% if paginator.previous_page == 1 %} <li class="previous"><a href="{{site.baseurl}}/" title="{{ site.locales[site.default_locale].Next }}">&larr; {{ site.locales[site.default_locale].Next }}</a></li> {% else %} <li class="previous"><a href="{{site.baseurl}}/page{{ paginator.previous_page }}/" title="{{ site.locales[site.default_locale].Next }}">&larr; {{ site.locales[site.default_locale].Next }}</a></li> {% endif %} {% endif %} {% if paginator.next_page %} <li class="next"><a href="{{site.baseurl}}/page{{ paginator.next_page }}/" title="{{ site.locales[site.default_locale].Previous }}">{{ site.locales[site.default_locale].Previous }} &rarr;</a></li> {% endif %} </section>
app/views/lis/6/care-home.html
nhsbsa/nhslis
{% extends 'templates/nhs_transaction_layout.html' %} {% import 'includes/form_macros.html' as form_macros %} {% block afterHeader %} {% include "includes/service-headers/low-income-new.html" %} {% endblock %} {% block content %} <main id="content" role="main"> <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-large"> Are you living permanently in a care home? </h1> <form action="carehome-handler" method="get" class="form"> <div class="form-item-wrapper"> <fieldset> <div class="inline-form-groups"> <div class="form-group"> <input type="radio" id="yes" name="carehome" value="yes"> <label class="form-control-radio" for="yes"> Yes </label> </div> <div class="form-group"> <input type="radio" id="no" name="carehome" value="no"> <label class="form-control-radio" for="no"> No </label> </div> </div> </fieldset> </div> {{ form_macros.button({ label: 'Next' }) }} </form> </div> </div> </main> {% endblock %}
open_humans/templates/500.html
OpenHumans/open-humans
{% extends 'panel.html' %} {% load utilities %} {% block head_title %} Server error {% endblock %} {% block panel_content %} <p> Sorry, your request resulted in a server error. The error has been logged and we'll investigate it. </p> {% endblock %}
testdata/html/elliptical-shapes.html
dbennett455/DetectHtml
<!DOCTYPE html> <html> <head> <title>Elliptical Shapes</title> <style type="text/css"> p { border: 5px solid #ee3e80; padding: 10px; width: 100px; height: 100px; display: inline-block; margin: 20px;} p.one { border-top-left-radius: 80px 50px; -moz-border-radius-top-left: 80px 50px; -webkit-border-radius-top-left: 80px 50px;} p.two { border-radius: 1em 4em 1em 4em / 2em 1em 2em 1em; -moz-border-radius: 1em 4em 1em 4em / 2em 1em 2em 1em; -webkit-border-radius: 1em 4em 1em 4em / 2em 1em 2em 1em;} p.three { padding: 0px; border-radius: 100px; -moz-border-radius: 100px; -webkit-border-radius: 100px;} </style> </head> <body> <p class="one"></p> <p class="two"></p> <p class="three"></p> </body> </html>
deps/boost_1_77_0/doc/html/boost_asio/reference/basic_socket/basic_socket/overload7.html
davehorton/drachtio-server
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>basic_socket::basic_socket (7 of 10 overloads)</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="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../basic_socket.html" title="basic_socket::basic_socket"> <link rel="prev" href="overload6.html" title="basic_socket::basic_socket (6 of 10 overloads)"> <link rel="next" href="overload8.html" title="basic_socket::basic_socket (8 of 10 overloads)"> </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="overload6.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.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="overload8.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="boost_asio.reference.basic_socket.basic_socket.overload7"></a><a class="link" href="overload7.html" title="basic_socket::basic_socket (7 of 10 overloads)">basic_socket::basic_socket (7 of 10 overloads)</a> </h5></div></div></div> <p> Construct a <a class="link" href="../../basic_socket.html" title="basic_socket"><code class="computeroutput">basic_socket</code></a> on an existing native socket. </p> <pre class="programlisting">basic_socket( const executor_type &amp; ex, const protocol_type &amp; protocol, const native_handle_type &amp; native_socket); </pre> <p> This constructor creates a socket object to hold an existing native socket. </p> <h6> <a name="boost_asio.reference.basic_socket.basic_socket.overload7.h0"></a> <span class="phrase"><a name="boost_asio.reference.basic_socket.basic_socket.overload7.parameters"></a></span><a class="link" href="overload7.html#boost_asio.reference.basic_socket.basic_socket.overload7.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">ex</span></dt> <dd><p> The I/O executor that the socket will use, by default, to dispatch handlers for any asynchronous operations performed on the socket. </p></dd> <dt><span class="term">protocol</span></dt> <dd><p> An object specifying protocol parameters to be used. </p></dd> <dt><span class="term">native_socket</span></dt> <dd><p> A native socket. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.basic_socket.basic_socket.overload7.h1"></a> <span class="phrase"><a name="boost_asio.reference.basic_socket.basic_socket.overload7.exceptions"></a></span><a class="link" href="overload7.html#boost_asio.reference.basic_socket.basic_socket.overload7.exceptions">Exceptions</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">boost::system::system_error</span></dt> <dd><p> Thrown on failure. </p></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-2021 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="overload6.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.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="overload8.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
jetty/jxr/org/mortbay/html/Target.html
napcs/qedserver
<!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_AU" lang="en_AU"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>Target xref</title> <link type="text/css" rel="stylesheet" href="../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../javadoc/org/mortbay/html/Target.html">View Javadoc</a></div><pre> <a name="1" href="#1">1</a> <em class="jxr_comment">// ========================================================================</em> <a name="2" href="#2">2</a> <em class="jxr_comment">// $Id: Target.java,v 1.3 2004/05/09 20:31:28 gregwilkins Exp $</em> <a name="3" href="#3">3</a> <em class="jxr_comment">// Copyright 1996-2004 Mort Bay Consulting Pty. Ltd.</em> <a name="4" href="#4">4</a> <em class="jxr_comment">// ------------------------------------------------------------------------</em> <a name="5" href="#5">5</a> <em class="jxr_comment">// Licensed under the Apache License, Version 2.0 (the "License");</em> <a name="6" href="#6">6</a> <em class="jxr_comment">// you may not use this file except in compliance with the License.</em> <a name="7" href="#7">7</a> <em class="jxr_comment">// You may obtain a copy of the License at </em> <a name="8" href="#8">8</a> <em class="jxr_comment">// http://www.apache.org/licenses/LICENSE-2.0</em> <a name="9" href="#9">9</a> <em class="jxr_comment">// Unless required by applicable law or agreed to in writing, software</em> <a name="10" href="#10">10</a> <em class="jxr_comment">// distributed under the License is distributed on an "AS IS" BASIS,</em> <a name="11" href="#11">11</a> <em class="jxr_comment">// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a name="12" href="#12">12</a> <em class="jxr_comment">// See the License for the specific language governing permissions and</em> <a name="13" href="#13">13</a> <em class="jxr_comment">// limitations under the License.</em> <a name="14" href="#14">14</a> <em class="jxr_comment">// ========================================================================</em> <a name="15" href="#15">15</a> <a name="16" href="#16">16</a> <strong class="jxr_keyword">package</strong> org.mortbay.html; <a name="17" href="#17">17</a> <a name="18" href="#18">18</a> <a name="19" href="#19">19</a> <em class="jxr_comment">/*<em class="jxr_comment"> -------------------------------------------------------------------- */</em></em> <a name="20" href="#20">20</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> HTML Link Target.</em> <a name="21" href="#21">21</a> <em class="jxr_javadoccomment"> * This is a HTML reference (not a CSS Link).</em> <a name="22" href="#22">22</a> <em class="jxr_javadoccomment"> * @see StyleLink</em> <a name="23" href="#23">23</a> <em class="jxr_javadoccomment"> */</em> <a name="24" href="#24">24</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../org/mortbay/html/Target.html">Target</a> <strong class="jxr_keyword">extends</strong> <a href="../../../org/mortbay/html/Block.html">Block</a> <a name="25" href="#25">25</a> { <a name="26" href="#26">26</a> <a name="27" href="#27">27</a> <em class="jxr_comment">/*<em class="jxr_comment"> ----------------------------------------------------------------- */</em></em> <a name="28" href="#28">28</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Construct Link.</em> <a name="29" href="#29">29</a> <em class="jxr_javadoccomment"> * @param target The target name </em> <a name="30" href="#30">30</a> <em class="jxr_javadoccomment"> */</em> <a name="31" href="#31">31</a> <strong class="jxr_keyword">public</strong> <a href="../../../org/mortbay/html/Target.html">Target</a>(String target) <a name="32" href="#32">32</a> { <a name="33" href="#33">33</a> <strong class="jxr_keyword">super</strong>(<span class="jxr_string">"a"</span>); <a name="34" href="#34">34</a> attribute(<span class="jxr_string">"name"</span>,target); <a name="35" href="#35">35</a> } <a name="36" href="#36">36</a> <a name="37" href="#37">37</a> <em class="jxr_comment">/*<em class="jxr_comment"> ----------------------------------------------------------------- */</em></em> <a name="38" href="#38">38</a> <em class="jxr_javadoccomment">/**</em><em class="jxr_javadoccomment"> Construct Link.</em> <a name="39" href="#39">39</a> <em class="jxr_javadoccomment"> * @param target The target name </em> <a name="40" href="#40">40</a> <em class="jxr_javadoccomment"> * @param link Link Element</em> <a name="41" href="#41">41</a> <em class="jxr_javadoccomment"> */</em> <a name="42" href="#42">42</a> <strong class="jxr_keyword">public</strong> <a href="../../../org/mortbay/html/Target.html">Target</a>(String target,Object link) <a name="43" href="#43">43</a> { <a name="44" href="#44">44</a> <strong class="jxr_keyword">this</strong>(target); <a name="45" href="#45">45</a> add(link); <a name="46" href="#46">46</a> } <a name="47" href="#47">47</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
target/doc/libc/constant.MAP_NORESERVE.html
ssgrn/Rust-Matrix-Computations
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `MAP_NORESERVE` constant in crate `libc`."> <meta name="keywords" content="rust, rustlang, rust-lang, MAP_NORESERVE"> <title>libc::MAP_NORESERVE - Rust</title> <link rel="stylesheet" type="text/css" href="../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../libc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='index.html'>libc</a></p><script>window.sidebarCurrent = {name: 'MAP_NORESERVE', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='index.html'>libc</a>::<wbr><a class='constant' href=''>MAP_NORESERVE</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-1608' class='srclink' href='../src/libc/unix/notbsd/linux/notmips/mod.rs.html#48' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const MAP_NORESERVE: <a class='type' href='../libc/type.c_int.html' title='libc::c_int'>c_int</a><code> = </code><code>0x04000</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </aside> <script> window.rootPath = "../"; window.currentCrate = "libc"; window.playgroundUrl = ""; </script> <script src="../jquery.js"></script> <script src="../main.js"></script> <script async src="../search-index.js"></script> </body> </html>
deps/boost_1_77_0/doc/html/boost/random/ranlux64_3_01.html
davehorton/drachtio-server
<!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"> <title>Type definition ranlux64_3_01</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="../../boost_random/reference.html#header.boost.random.ranlux_hpp" title="Header &lt;boost/random/ranlux.hpp&gt;"> <link rel="prev" href="ranlux4_01.html" title="Type definition ranlux4_01"> <link rel="next" href="ranlux64_4_01.html" title="Type definition ranlux64_4_01"> </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="ranlux4_01.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_random/reference.html#header.boost.random.ranlux_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="ranlux64_4_01.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.random.ranlux64_3_01"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Type definition ranlux64_3_01</span></h2> <p>ranlux64_3_01</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: &lt;<a class="link" href="../../boost_random/reference.html#header.boost.random.ranlux_hpp" title="Header &lt;boost/random/ranlux.hpp&gt;">boost/random/ranlux.hpp</a>&gt; </span> <span class="keyword">typedef</span> <a class="link" href="discard_block_engine.html" title="Class template discard_block_engine">discard_block_engine</a><span class="special">&lt;</span> <a class="link" href="../../boost_random/reference.html#boost.random.ranlux64_base_01">ranlux64_base_01</a><span class="special">,</span> <span class="number">223</span><span class="special">,</span> <span class="number">24</span> <span class="special">&gt;</span> <span class="identifier">ranlux64_3_01</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="id-1.3.35.5.6.36.7.4"></a><h2>Description</h2> <p>The ranlux family of generators are described in</p> <p> </p> <div class="blockquote"><blockquote class="blockquote"><p> "A portable high-quality random number generator for lattice field theory calculations", M. Luescher, Computer Physics Communications, 79 (1994) pp 100-110. </p></blockquote></div> <p> </p> <p>The levels are given in</p> <p> </p> <div class="blockquote"><blockquote class="blockquote"><p> "RANLUX: A Fortran implementation of the high-quality pseudorandom number generator of Luescher", F. James, Computer Physics Communications 79 (1994) 111-114 </p></blockquote></div> <p> </p> </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 © 2000-2005 Jens Maurer<br>Copyright © 2009, 2010 Steven Watanabe<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="ranlux4_01.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_random/reference.html#header.boost.random.ranlux_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="ranlux64_4_01.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
UnrealPyEmbed/Development/Python/2015.08.07-Python2710-x64-Source-vs2015/Python27/Source/db-4.7.25.0/docs/api_c/env_dbrename.html
mollstam/UnrealPy
<!--$Id: env_dbrename.html 63573 2008-05-23 21:43:21Z trent.nelson $--> <!--Copyright (c) 1997,2008 Oracle. All rights reserved.--> <!--See the file LICENSE for redistribution information.--> <html> <head> <title>Berkeley DB: DB_ENV-&gt;dbrename</title> <meta name="description" content="Berkeley DB: An embedded database programmatic toolkit."> <meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++"> </head> <body bgcolor=white> <table width="100%"><tr valign=top> <td> <b>DB_ENV-&gt;dbrename</b> </td> <td align=right> <a href="../api_c/api_core.html"><img src="../images/api.gif" alt="API"></a> <a href="../ref/toc.html"><img src="../images/ref.gif" alt="Ref"></a></td> </tr></table> <hr size=1 noshade> <tt> <b><pre> #include &lt;db.h&gt; <p> int DB_ENV-&gt;dbrename(DB_ENV *dbenv, DB_TXN *txnid, const char *file, const char *database, const char *newname, u_int32_t flags); </pre></b> <hr size=1 noshade> <b>Description: DB_ENV-&gt;dbrename</b> <p>The DB_ENV-&gt;dbrename method renames the database specified by the <b>file</b> and <b>database</b> parameters to <b>newname</b>. If no <b>database</b> is specified, the underlying file represented by <b>file</b> is renamed, incidentally renaming all of the databases it contained.</p> <p>Applications should not rename databases that are currently in use. If an underlying file is being renamed and logging is currently enabled in the database environment, no database in the file may be open when the DB_ENV-&gt;dbrename method is called. In particular, some architectures do not permit renaming files with open handles. On these architectures, attempts to rename databases that are currently in use by any thread of control in the system may fail.</p> <p>The DB_ENV-&gt;dbrename method returns a non-zero error value on failure and 0 on success. </p> <b>Parameters</b> <br> <b>database</b><ul compact><li>The <b>database</b> parameter is the database to be renamed.</ul> <b>file</b><ul compact><li>The <b>file</b> parameter is the physical file which contains the database(s) to be renamed.</ul> <p>When using a Unicode build on Windows (the default), the <b>file</b> argument will be interpreted as a UTF-8 string, which is equivalent to ASCII for Latin characters.</p> <b>flags</b><ul compact><li>The <b>flags</b> parameter must be set to 0 or the following value: <br> <b><a name="DB_AUTO_COMMIT">DB_AUTO_COMMIT</a></b><ul compact><li>Enclose the DB_ENV-&gt;dbrename call within a transaction. If the call succeeds, changes made by the operation will be recoverable. If the call fails, the operation will have made no changes.</ul> <br></ul> <b>newname</b><ul compact><li>The <b>newname</b> parameter is the new name of the database or file.</ul> <b>txnid</b><ul compact><li>If the operation is part of an application-specified transaction, the <b>txnid</b> parameter is a transaction handle returned from <a href="../api_c/txn_begin.html">DB_ENV-&gt;txn_begin</a>; if the operation is part of a Berkeley DB Concurrent Data Store group, the <b>txnid</b> parameter is a handle returned from <a href="../api_c/env_cdsgroup_begin.html">DB_ENV-&gt;cdsgroup_begin</a>; otherwise NULL. If no transaction handle is specified, but the DB_AUTO_COMMIT flag is specified, the operation will be implicitly transaction protected. </ul> <br> <br><b>Environment Variables</b> <p>The environment variable <b>DB_HOME</b> may be used as the path of the database environment home.</p> <p>DB_ENV-&gt;dbrename is affected by any database directory specified using the <a href="../api_c/env_set_data_dir.html">DB_ENV-&gt;set_data_dir</a> method, or by setting the "set_data_dir" string in the environment's <a href="../ref/env/db_config.html#DB_CONFIG">DB_CONFIG</a> file.</p> <br><b>Errors</b> <p>The DB_ENV-&gt;dbrename method may fail and return one of the following non-zero errors:</p> <br> <b>DB_LOCK_DEADLOCK</b><ul compact><li>A transactional database environment operation was selected to resolve a deadlock.</ul> <b>DB_LOCK_NOTGRANTED</b><ul compact><li>A Berkeley DB Concurrent Data Store database environment configured for lock timeouts was unable to grant a lock in the allowed time.</ul> <br> <br> <b>EINVAL</b><ul compact><li>If DB_ENV-&gt;dbrename called before <a href="../api_c/env_open.html">DB_ENV-&gt;open</a> was called; or if an invalid flag value or parameter was specified.</ul> <br> <br> <b>ENOENT</b><ul compact><li>The file or directory does not exist.</ul> <br> <hr size=1 noshade> <br><b>Class</b> <a href="../api_c/env_class.html">DB_ENV</a> <br><b>See Also</b> <a href="../api_c/env_list.html">Database Environments and Related Methods</a> </tt> <table width="100%"><tr><td><br></td><td align=right> <a href="../api_c/api_core.html"><img src="../images/api.gif" alt="API"></a><a href="../ref/toc.html"><img src="../images/ref.gif" alt="Ref"></a> </td></tr></table> <p><font size=1>Copyright (c) 1996,2008 Oracle. All rights reserved.</font> </body> </html>
app/assets/components/iron-overlay-behavior/iron-overlay-behavior.html
alchaplinsky/polymer-elements-rails
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <link rel="import" href="../polymer/polymer.html"> <link rel="import" href="../iron-fit-behavior/iron-fit-behavior.html"> <link rel="import" href="../iron-resizable-behavior/iron-resizable-behavior.html"> <link rel="import" href="iron-overlay-manager.html"> <script> (function() { 'use strict'; /** Use `Polymer.IronOverlayBehavior` to implement an element that can be hidden or shown, and displays on top of other content. It includes an optional backdrop, and can be used to implement a variety of UI controls including dialogs and drop downs. Multiple overlays may be displayed at once. ### Closing and canceling A dialog may be hidden by closing or canceling. The difference between close and cancel is user intent. Closing generally implies that the user acknowledged the content on the overlay. By default, it will cancel whenever the user taps outside it or presses the escape key. This behavior is configurable with the `no-cancel-on-esc-key` and the `no-cancel-on-outside-click` properties. `close()` should be called explicitly by the implementer when the user interacts with a control in the overlay element. When the dialog is canceled, the overlay fires an 'iron-overlay-canceled' event. Call `preventDefault` on this event to prevent the overlay from closing. ### Positioning By default the element is sized and positioned to fit and centered inside the window. You can position and size it manually using CSS. See `Polymer.IronFitBehavior`. ### Backdrop Set the `with-backdrop` attribute to display a backdrop behind the overlay. The backdrop is appended to `<body>` and is of type `<iron-overlay-backdrop>`. See its doc page for styling options. ### Limitations The element is styled to appear on top of other content by setting its `z-index` property. You must ensure no element has a stacking context with a higher `z-index` than its parent stacking context. You should place this element as a child of `<body>` whenever possible. @demo demo/index.html @polymerBehavior Polymer.IronOverlayBehavior */ Polymer.IronOverlayBehaviorImpl = { properties: { /** * True if the overlay is currently displayed. */ opened: { observer: '_openedChanged', type: Boolean, value: false, notify: true }, /** * True if the overlay was canceled when it was last closed. */ canceled: { observer: '_canceledChanged', readOnly: true, type: Boolean, value: false }, /** * Set to true to display a backdrop behind the overlay. */ withBackdrop: { observer: '_withBackdropChanged', type: Boolean }, /** * Set to true to disable auto-focusing the overlay or child nodes with * the `autofocus` attribute` when the overlay is opened. */ noAutoFocus: { type: Boolean, value: false }, /** * Set to true to disable canceling the overlay with the ESC key. */ noCancelOnEscKey: { type: Boolean, value: false }, /** * Set to true to disable canceling the overlay by clicking outside it. */ noCancelOnOutsideClick: { type: Boolean, value: false }, /** * Contains the reason(s) this overlay was last closed (see `iron-overlay-closed`). * `IronOverlayBehavior` provides the `canceled` reason; implementers of the * behavior can provide other reasons in addition to `canceled`. */ closingReason: { // was a getter before, but needs to be a property so other // behaviors can override this. type: Object }, /** * Set to true to enable restoring of focus when overlay is closed. */ restoreFocusOnClose: { type: Boolean, value: false }, /** * Set to true to keep overlay always on top. */ alwaysOnTop: { type: Boolean }, /** * Shortcut to access to the overlay manager. * @private * @type {Polymer.IronOverlayManagerClass} */ _manager: { type: Object, value: Polymer.IronOverlayManager }, /** * The node being focused. * @type {?Node} */ _focusedChild: { type: Object } }, listeners: { 'iron-resize': '_onIronResize' }, /** * The backdrop element. * @type {Element} */ get backdropElement() { return this._manager.backdropElement; }, /** * Returns the node to give focus to. * @type {Node} */ get _focusNode() { return this._focusedChild || Polymer.dom(this).querySelector('[autofocus]') || this; }, /** * Array of nodes that can receive focus (overlay included), ordered by `tabindex`. * This is used to retrieve which is the first and last focusable nodes in order * to wrap the focus for overlays `with-backdrop`. * * If you know what is your content (specifically the first and last focusable children), * you can override this method to return only `[firstFocusable, lastFocusable];` * @type {Array<Node>} * @protected */ get _focusableNodes() { // Elements that can be focused even if they have [disabled] attribute. var FOCUSABLE_WITH_DISABLED = [ 'a[href]', 'area[href]', 'iframe', '[tabindex]', '[contentEditable=true]' ]; // Elements that cannot be focused if they have [disabled] attribute. var FOCUSABLE_WITHOUT_DISABLED = [ 'input', 'select', 'textarea', 'button' ]; // Discard elements with tabindex=-1 (makes them not focusable). var selector = FOCUSABLE_WITH_DISABLED.join(':not([tabindex="-1"]),') + ':not([tabindex="-1"]),' + FOCUSABLE_WITHOUT_DISABLED.join(':not([disabled]):not([tabindex="-1"]),') + ':not([disabled]):not([tabindex="-1"])'; var focusables = Polymer.dom(this).querySelectorAll(selector); if (this.tabIndex >= 0) { // Insert at the beginning because we might have all elements with tabIndex = 0, // and the overlay should be the first of the list. focusables.splice(0, 0, this); } // Sort by tabindex. return focusables.sort(function (a, b) { if (a.tabIndex === b.tabIndex) { return 0; } if (a.tabIndex === 0 || a.tabIndex > b.tabIndex) { return 1; } return -1; }); }, ready: function() { // Used to skip calls to notifyResize and refit while the overlay is animating. this.__isAnimating = false; // with-backdrop needs tabindex to be set in order to trap the focus. // If it is not set, IronOverlayBehavior will set it, and remove it if with-backdrop = false. this.__shouldRemoveTabIndex = false; // Used for wrapping the focus on TAB / Shift+TAB. this.__firstFocusableNode = this.__lastFocusableNode = null; // Used for requestAnimationFrame when opened changes. this.__openChangedAsync = null; // Used for requestAnimationFrame when iron-resize is fired. this.__onIronResizeAsync = null; this._ensureSetup(); }, attached: function() { // Call _openedChanged here so that position can be computed correctly. if (this.opened) { this._openedChanged(); } this._observer = Polymer.dom(this).observeNodes(this._onNodesChange); }, detached: function() { Polymer.dom(this).unobserveNodes(this._observer); this._observer = null; this.opened = false; }, /** * Toggle the opened state of the overlay. */ toggle: function() { this._setCanceled(false); this.opened = !this.opened; }, /** * Open the overlay. */ open: function() { this._setCanceled(false); this.opened = true; }, /** * Close the overlay. */ close: function() { this._setCanceled(false); this.opened = false; }, /** * Cancels the overlay. * @param {Event=} event The original event */ cancel: function(event) { var cancelEvent = this.fire('iron-overlay-canceled', event, {cancelable: true}); if (cancelEvent.defaultPrevented) { return; } this._setCanceled(true); this.opened = false; }, _ensureSetup: function() { if (this._overlaySetup) { return; } this._overlaySetup = true; this.style.outline = 'none'; this.style.display = 'none'; }, _openedChanged: function() { if (this.opened) { this.removeAttribute('aria-hidden'); } else { this.setAttribute('aria-hidden', 'true'); } // wait to call after ready only if we're initially open if (!this._overlaySetup) { return; } this._manager.addOrRemoveOverlay(this); if (this.__openChangedAsync) { window.cancelAnimationFrame(this.__openChangedAsync); } // Defer any animation-related code on attached // (_openedChanged gets called again on attached). if (!this.isAttached) { return; } this.__isAnimating = true; // requestAnimationFrame for non-blocking rendering this.__openChangedAsync = window.requestAnimationFrame(function() { this.__openChangedAsync = null; if (this.opened) { this._prepareRenderOpened(); this._renderOpened(); } else { this._renderClosed(); } }.bind(this)); }, _canceledChanged: function() { this.closingReason = this.closingReason || {}; this.closingReason.canceled = this.canceled; }, _withBackdropChanged: function() { // If tabindex is already set, no need to override it. if (this.withBackdrop && !this.hasAttribute('tabindex')) { this.setAttribute('tabindex', '-1'); this.__shouldRemoveTabIndex = true; } else if (this.__shouldRemoveTabIndex) { this.removeAttribute('tabindex'); this.__shouldRemoveTabIndex = false; } if (this.opened) { this._manager.trackBackdrop(); } }, /** * tasks which must occur before opening; e.g. making the element visible. * @protected */ _prepareRenderOpened: function() { // Needed to calculate the size of the overlay so that transitions on its size // will have the correct starting points. this._preparePositioning(); this.refit(); this._finishPositioning(); // Safari will apply the focus to the autofocus element when displayed for the first time, // so we blur it. Later, _applyFocus will set the focus if necessary. if (this.noAutoFocus && document.activeElement === this._focusNode) { this._focusNode.blur(); } }, /** * Tasks which cause the overlay to actually open; typically play an animation. * @protected */ _renderOpened: function() { this._finishRenderOpened(); }, /** * Tasks which cause the overlay to actually close; typically play an animation. * @protected */ _renderClosed: function() { this._finishRenderClosed(); }, /** * Tasks to be performed at the end of open action. Will fire `iron-overlay-opened`. * @protected */ _finishRenderOpened: function() { // Focus the child node with [autofocus] this._applyFocus(); this.notifyResize(); this.__isAnimating = false; // Store it so we don't query too much. var focusableNodes = this._focusableNodes; this.__firstFocusableNode = focusableNodes[0]; this.__lastFocusableNode = focusableNodes[focusableNodes.length - 1]; this.fire('iron-overlay-opened'); }, /** * Tasks to be performed at the end of close action. Will fire `iron-overlay-closed`. * @protected */ _finishRenderClosed: function() { // Hide the overlay and remove the backdrop. this.style.display = 'none'; // Reset z-index only at the end of the animation. this.style.zIndex = ''; this._applyFocus(); this.notifyResize(); this.__isAnimating = false; this.fire('iron-overlay-closed', this.closingReason); }, _preparePositioning: function() { this.style.transition = this.style.webkitTransition = 'none'; this.style.transform = this.style.webkitTransform = 'none'; this.style.display = ''; }, _finishPositioning: function() { // First, make it invisible & reactivate animations. this.style.display = 'none'; // Force reflow before re-enabling animations so that they don't start. // Set scrollTop to itself so that Closure Compiler doesn't remove this. this.scrollTop = this.scrollTop; this.style.transition = this.style.webkitTransition = ''; this.style.transform = this.style.webkitTransform = ''; // Now that animations are enabled, make it visible again this.style.display = ''; // Force reflow, so that following animations are properly started. // Set scrollTop to itself so that Closure Compiler doesn't remove this. this.scrollTop = this.scrollTop; }, /** * Applies focus according to the opened state. * @protected */ _applyFocus: function() { if (this.opened) { if (!this.noAutoFocus) { this._focusNode.focus(); } } else { this._focusNode.blur(); this._focusedChild = null; this._manager.focusOverlay(); } }, /** * Cancels (closes) the overlay. Call when click happens outside the overlay. * @param {!Event} event * @protected */ _onCaptureClick: function(event) { if (!this.noCancelOnOutsideClick) { this.cancel(event); } }, /** * Keeps track of the focused child. If withBackdrop, traps focus within overlay. * @param {!Event} event * @protected */ _onCaptureFocus: function (event) { if (!this.withBackdrop) { return; } var path = Polymer.dom(event).path; if (path.indexOf(this) === -1) { event.stopPropagation(); this._applyFocus(); } else { this._focusedChild = path[0]; } }, /** * Handles the ESC key event and cancels (closes) the overlay. * @param {!Event} event * @protected */ _onCaptureEsc: function(event) { if (!this.noCancelOnEscKey) { this.cancel(event); } }, /** * Handles TAB key events to track focus changes. * Will wrap focus for overlays withBackdrop. * @param {!Event} event * @protected */ _onCaptureTab: function(event) { if (!this.withBackdrop) { return; } // TAB wraps from last to first focusable. // Shift + TAB wraps from first to last focusable. var shift = event.shiftKey; var nodeToCheck = shift ? this.__firstFocusableNode : this.__lastFocusableNode; var nodeToSet = shift ? this.__lastFocusableNode : this.__firstFocusableNode; var shouldWrap = false; if (nodeToCheck === nodeToSet) { // If nodeToCheck is the same as nodeToSet, it means we have an overlay // with 0 or 1 focusables; in either case we still need to trap the // focus within the overlay. shouldWrap = true; } else { // In dom=shadow, the manager will receive focus changes on the main // root but not the ones within other shadow roots, so we can't rely on // _focusedChild, but we should check the deepest active element. var focusedNode = this._manager.deepActiveElement; // If the active element is not the nodeToCheck but the overlay itself, // it means the focus is about to go outside the overlay, hence we // should prevent that (e.g. user opens the overlay and hit Shift+TAB). shouldWrap = (focusedNode === nodeToCheck || focusedNode === this); } if (shouldWrap) { // When the overlay contains the last focusable element of the document // and it's already focused, pressing TAB would move the focus outside // the document (e.g. to the browser search bar). Similarly, when the // overlay contains the first focusable element of the document and it's // already focused, pressing Shift+TAB would move the focus outside the // document (e.g. to the browser search bar). // In both cases, we would not receive a focus event, but only a blur. // In order to achieve focus wrapping, we prevent this TAB event and // force the focus. This will also prevent the focus to temporarily move // outside the overlay, which might cause scrolling. event.preventDefault(); this._focusedChild = nodeToSet; this._applyFocus(); } }, /** * Refits if the overlay is opened and not animating. * @protected */ _onIronResize: function() { if (this.__onIronResizeAsync) { window.cancelAnimationFrame(this.__onIronResizeAsync); this.__onIronResizeAsync = null; } if (this.opened && !this.__isAnimating) { this.__onIronResizeAsync = window.requestAnimationFrame(function() { this.__onIronResizeAsync = null; this.refit(); }.bind(this)); } }, /** * Will call notifyResize if overlay is opened. * Can be overridden in order to avoid multiple observers on the same node. * @protected */ _onNodesChange: function() { if (this.opened && !this.__isAnimating) { this.notifyResize(); } } }; /** @polymerBehavior */ Polymer.IronOverlayBehavior = [Polymer.IronFitBehavior, Polymer.IronResizableBehavior, Polymer.IronOverlayBehaviorImpl]; /** * Fired after the overlay opens. * @event iron-overlay-opened */ /** * Fired when the overlay is canceled, but before it is closed. * @event iron-overlay-canceled * @param {Event} event The closing of the overlay can be prevented * by calling `event.preventDefault()`. The `event.detail` is the original event that * originated the canceling (e.g. ESC keyboard event or click event outside the overlay). */ /** * Fired after the overlay closes. * @event iron-overlay-closed * @param {Event} event The `event.detail` is the `closingReason` property * (contains `canceled`, whether the overlay was canceled). */ })(); </script>
Specification/API_Reference/iOS_SDK/d9/d4e/protocol_on_status_change_listener_01-p.html
DeviceConnect/DeviceConnect-Docs
<!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>Device Connect SDK for iOS: &lt;OnStatusChangeListener &gt; プロトコル</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">Device Connect SDK for iOS &#160;<span id="projectnumber">1.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- 構築: Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "../../search",false,'検索'); </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','検索'); $(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-methods">実体メソッド</a> &#124; <a href="../../d9/d0b/protocol_on_status_change_listener_01-p-members.html">全メンバ一覧</a> </div> <div class="headertitle"> <div class="title">&lt;OnStatusChangeListener &gt; プロトコル</div> </div> </div><!--header--> <div class="contents"> <p>DConnectServiceの状態変更通知を受信するリスナー。 <a href="../../d9/d4e/protocol_on_status_change_listener_01-p.html#details">[詳解]</a></p> <p><code>#import &lt;<a class="el" href="../../d0/d64/_d_connect_service_8h_source.html">DConnectService.h</a>&gt;</code></p> <div class="dynheader"> &lt;OnStatusChangeListener &gt; の継承関係図</div> <div class="dyncontent"> <div class="center"> <img src="../../d9/d4e/protocol_on_status_change_listener_01-p.png" usemap="#_3COnStatusChangeListener_20_3E_map" alt=""/> <map id="_3COnStatusChangeListener_20_3E_map" name="_3COnStatusChangeListener_20_3E_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> 実体メソッド</h2></td></tr> <tr class="memitem:a8213284ec22b0677dc2134407c49015b"><td class="memItemLeft" align="right" valign="top">(void)&#160;</td><td class="memItemRight" valign="bottom">- <a class="el" href="../../d9/d4e/protocol_on_status_change_listener_01-p.html#a8213284ec22b0677dc2134407c49015b">didStatusChange:</a></td></tr> <tr class="memdesc:a8213284ec22b0677dc2134407c49015b"><td class="mdescLeft">&#160;</td><td class="mdescRight">DConnectServiceの状態が変更された時に呼び出される。 <a href="#a8213284ec22b0677dc2134407c49015b">[詳解]</a><br /></td></tr> <tr class="separator:a8213284ec22b0677dc2134407c49015b"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">詳解</h2> <div class="textblock"><p>DConnectServiceの状態変更通知を受信するリスナー。 </p> </div><h2 class="groupheader">メソッド詳解</h2> <a id="a8213284ec22b0677dc2134407c49015b"></a> <h2 class="memtitle"><span class="permalink"><a href="#a8213284ec22b0677dc2134407c49015b">&#9670;&nbsp;</a></span>didStatusChange:()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (void OnStatusChangeListener) didStatusChange: </td> <td></td> <td class="paramtype">(<a class="el" href="../../de/df0/interface_d_connect_service.html">DConnectService</a> *)&#160;</td> <td class="paramname"><em>service</em></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>DConnectServiceの状態が変更された時に呼び出される。 </p> <dl class="params"><dt>引数</dt><dd> <table class="params"> <tr><td class="paramdir">[in]</td><td class="paramname">状態の変更されたDConnectServiceのインスタンス。</td><td></td></tr> </table> </dd> </dl> </div> </div> <hr/>このプロトコル詳解は次のファイルから抽出されました:<ul> <li>DConnectSDK/DConnectSDK/<a class="el" href="../../d0/d64/_d_connect_service_8h_source.html">DConnectService.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> 2020年07月06日(月) 12時59分49秒作成 - Device Connect SDK for iOS / 構成: &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> </html>
QtEsrc/qt-everywhere-opensource-src-4.8.5/doc/html/tutorials-addressbook-part3-main-cpp.html
stephaneAG/PengPod700
<?xml version="1.0" encoding="UTF-8"?> <!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" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: main.cpp Example File (tutorials/addressbook/part3/main.cpp)</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/superfish.js" type="text/javascript"></script> <script src="scripts/narrow.js" type="text/javascript"></script> </head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="narrowsearch"></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li> <li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="supported-platforms.html">Supported Platforms</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search" id="sidebarsearch"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> <div id="resultdialog"> <a href="#" id="resultclose">Close</a> <p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p> <p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span>&nbsp;results:</p> <ul id="resultlist" class="all"> </ul> </div> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">main.cpp Example File</h1> <span class="small-subtitle">tutorials/addressbook/part3/main.cpp</span> <!-- $$$tutorials/addressbook/part3/main.cpp-description --> <div class="descr"> <a name="details"></a> <pre class="cpp"> <span class="comment">/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names ** of its contributors may be used to endorse or promote products derived ** from this software without specific prior written permission. ** ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot; ** ** $QT_END_LICENSE$ ** ****************************************************************************/</span> <span class="preprocessor">#include &lt;QtGui&gt;</span> <span class="preprocessor">#include &quot;addressbook.h&quot;</span> <span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>) { <span class="type"><a href="qapplication.html">QApplication</a></span> app(argc<span class="operator">,</span> argv); AddressBook addressBook; addressBook<span class="operator">.</span>show(); <span class="keyword">return</span> app<span class="operator">.</span>exec(); }</pre> </div> <!-- @@@tutorials/addressbook/part3/main.cpp --> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2013 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.</p> <br /> <p> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> <p> Documentation sources may be obtained from <a href="http://www.qt-project.org"> www.qt-project.org</a>.</p> <br /> <p> Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
tools/Rake/lib/ruby/gems/1.8/doc/albacore-0.2.7/rdoc/classes/NCover/SummaryReport.src/M000377.html
michaelsync/Giles
<?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> <head> <title>new (NCover::SummaryReport)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre><span class="ruby-comment cmt"># File lib/albacore/ncoverreports/summaryreport.rb, line 5</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span> <span class="ruby-ivar">@report_format</span> = <span class="ruby-identifier">:Xml</span> <span class="ruby-keyword kw">super</span>() <span class="ruby-keyword kw">end</span></pre> </body> </html>
blog.html
WhiskyDev/whiskydev.github.io
--- layout: index --- <ul class="posts"> {% for post in site.posts %} {% if post.redirect == null %} <li> <small class="datetime muted" data-time="{{ post.date }}">{{ post.date | date_to_string }} </small> <a href="{{ post.url }}">{{ post.title }}</a> </li> {% endif %} {% endfor %} </ul>
examples/webgl_geometry_terrain_fog.html
QingchaoHu/three.js
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - geometry - terrain + fog</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <link type="text/css" rel="stylesheet" href="main.css"> <style> body { background-color: #efd1b5; color: #61443e; } a { color: #a06851; } </style> </head> <body> <div id="container"></div> <div id="info"><a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl terrain + fog demo <br />(left click: forward, right click: backward)</div> <script type="module"> import * as THREE from '../build/three.module.js'; import Stats from './jsm/libs/stats.module.js'; import { FirstPersonControls } from './jsm/controls/FirstPersonControls.js'; import { ImprovedNoise } from './jsm/math/ImprovedNoise.js'; var container, stats; var camera, controls, scene, renderer; var mesh, texture; var worldWidth = 256, worldDepth = 256; var worldHalfWidth = worldWidth / 2; var worldHalfDepth = worldDepth / 2; var clock = new THREE.Clock(); init(); animate(); function init() { container = document.getElementById( 'container' ); camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 10000 ); scene = new THREE.Scene(); scene.background = new THREE.Color( 0xefd1b5 ); scene.fog = new THREE.FogExp2( 0xefd1b5, 0.0025 ); var data = generateHeight( worldWidth, worldDepth ); camera.position.y = data[ worldHalfWidth + worldHalfDepth * worldWidth ] * 10 + 500; var geometry = new THREE.PlaneBufferGeometry( 7500, 7500, worldWidth - 1, worldDepth - 1 ); geometry.rotateX( - Math.PI / 2 ); var vertices = geometry.attributes.position.array; for ( var i = 0, j = 0, l = vertices.length; i < l; i ++, j += 3 ) { vertices[ j + 1 ] = data[ i ] * 10; } texture = new THREE.CanvasTexture( generateTexture( data, worldWidth, worldDepth ) ); texture.wrapS = THREE.ClampToEdgeWrapping; texture.wrapT = THREE.ClampToEdgeWrapping; mesh = new THREE.Mesh( geometry, new THREE.MeshBasicMaterial( { map: texture } ) ); scene.add( mesh ); renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); controls = new FirstPersonControls( camera, renderer.domElement ); controls.movementSpeed = 150; controls.lookSpeed = 0.1; stats = new Stats(); container.appendChild( stats.dom ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); controls.handleResize(); } function generateHeight( width, height ) { var size = width * height, data = new Uint8Array( size ), perlin = new ImprovedNoise(), quality = 1, z = Math.random() * 100; for ( var j = 0; j < 4; j ++ ) { for ( var i = 0; i < size; i ++ ) { var x = i % width, y = ~ ~ ( i / width ); data[ i ] += Math.abs( perlin.noise( x / quality, y / quality, z ) * quality * 1.75 ); } quality *= 5; } return data; } function generateTexture( data, width, height ) { var canvas, canvasScaled, context, image, imageData, vector3, sun, shade; vector3 = new THREE.Vector3( 0, 0, 0 ); sun = new THREE.Vector3( 1, 1, 1 ); sun.normalize(); canvas = document.createElement( 'canvas' ); canvas.width = width; canvas.height = height; context = canvas.getContext( '2d' ); context.fillStyle = '#000'; context.fillRect( 0, 0, width, height ); image = context.getImageData( 0, 0, canvas.width, canvas.height ); imageData = image.data; for ( var i = 0, j = 0, l = imageData.length; i < l; i += 4, j ++ ) { vector3.x = data[ j - 2 ] - data[ j + 2 ]; vector3.y = 2; vector3.z = data[ j - width * 2 ] - data[ j + width * 2 ]; vector3.normalize(); shade = vector3.dot( sun ); imageData[ i ] = ( 96 + shade * 128 ) * ( 0.5 + data[ j ] * 0.007 ); imageData[ i + 1 ] = ( 32 + shade * 96 ) * ( 0.5 + data[ j ] * 0.007 ); imageData[ i + 2 ] = ( shade * 96 ) * ( 0.5 + data[ j ] * 0.007 ); } context.putImageData( image, 0, 0 ); // Scaled 4x canvasScaled = document.createElement( 'canvas' ); canvasScaled.width = width * 4; canvasScaled.height = height * 4; context = canvasScaled.getContext( '2d' ); context.scale( 4, 4 ); context.drawImage( canvas, 0, 0 ); image = context.getImageData( 0, 0, canvasScaled.width, canvasScaled.height ); imageData = image.data; for ( var i = 0, l = imageData.length; i < l; i += 4 ) { var v = ~ ~ ( Math.random() * 5 ); imageData[ i ] += v; imageData[ i + 1 ] += v; imageData[ i + 2 ] += v; } context.putImageData( image, 0, 0 ); return canvasScaled; } // function animate() { requestAnimationFrame( animate ); render(); stats.update(); } function render() { controls.update( clock.getDelta() ); renderer.render( scene, camera ); } </script> </body> </html>
summary/summary170410.html
fastfan/fastfan.github.com
<!DOCTYPE html> <html> <head> <title>总结</title> <meta charset="utf-8"> <style type="text/css"> body{ width: 1000px; margin: 0px auto; background-image: url(images/12.jpg); } h1{ color: tomato; } h2,h3{ color: blue; } p{ color: green; text-indent: 30px; } ol{ counter-reset: li; /* 创建一个计数器 */ list-style: none; /* 清除列表默认的编码*/ *list-style: decimal; /* 让IE6/7具有默认的编码 */ font: 15px 'trebuchet MS', 'lucida sans','微软雅黑',sans-serif; padding: 10px 0px 10px 10px; margin-bottom: 4em; text-shadow: 0 1px 0 rgba(255,255,255,.5); } ol ol{ margin: 0 0 0 2em; /* 给二级列表增加一定的左边距*/ counter-reset: list; } ol ol ol{ margin: 0 0 0 2em; /* 给三级列表增加一定的左边距*/ counter-reset: listt; } .rectangle-list a{ position: relative; display: block; padding: .4em .4em .4em .8em; *padding: .4em; margin: .5em 0 .5em 2.5em; background: #ddd; color: #444; text-decoration: none; transition: all .3s ease-out; } .rectangle-list a:hover{ background: #eee; } .rectangle-list a:before{ content: counter(li); counter-increment: li; position: absolute; left: -2.5em; top: 50%; margin-top: -1em; background: #fa8072; height: 2em; width: 2em; line-height: 2em; text-align: center; font-weight: bold; } .rectangle-list a:after{ position: absolute; content: ''; border: .5em solid transparent; left: -1em; top: 50%; margin-top: -.5em; transition: all .3s ease-out; } .rectangle-list a:hover:after{ left: -.5em; border-left-color: #fa8072; } .rounded-list a{ position: relative; display: block; padding: .4em .4em .4em 2em; *padding: .4em; margin: .5em 0; background: #ddd; color: #444; text-decoration: none; border-radius: .3em; transition: all .3s ease-out; } .rounded-list a:hover{ background: #eee; } .rounded-list a:hover:before{ transform: rotate(360deg); } .rounded-list a:before{ content: counter(li)"."counter(list); counter-increment: list; position: absolute; left: -1.3em; top: 50%; margin-top: -1.3em; background: #87ceeb; height: 2em; width: 2em; line-height: 2em; border: .3em solid #fff; text-align: center; font-weight: bold; border-radius: 2em; transition: all .3s ease-out; } .rounded-list1 a:hover:after{ left: -1.5em; border-left-color: #fff; } .rounded-list a:hover:after{ left: -1.5em; border-left-color: #fff; } .rounded-list1 a:before{ content: counter(li)"."counter(list)"."counter(listt); counter-increment: listt; position: absolute; left: -1.3em; top: 50%; margin-top: -1.3em; background: #87ceeb; height: 2.5em; width: 2.5em; line-height: 2.5em; border: .3em solid #fff; text-align: center; font-weight: bold; border-radius: 2em; transition: all .3s ease-out; font-size: 12px; } </style> </head> <body> <div id="demon"> <h2>BOM浏览器对象模型</h2> <ol class="rectangle-list"> <li><a href="">BOM简介</a></li> <ol class="rounded-list"> <li><a href="">BOM是Browser Object Model的缩写,简称浏览器对象模型</a></li> <li><a href="">由于BOM主要用于管理窗口与窗口之间的通讯,因此其核心对象是window</a></li> <li><a href="">BOM由一系列相关的对象构成,并且每个对象都提供了很多方法与属性</a></li> <li><a href="">BOM缺乏标准,JavaScript语法的标准化组织是ECMA,DOM的标准化组织是W3C</a></li> </ol> <li><a href="">windows对象(主要edit)</a></li> <ol class="rounded-list"> <li><a href="">六大属性,属性本身又是对象 document frames history location navigator screen</a></li> <li><a href="">windwow对象是最顶层的对象 document对象 下面还有5个属性,也是对象</a></li> <li><a href="">window对象的常用方法</a></li> <ol class="rounded-list1"> <li><a href="">open()——打开(弹出)一个新的窗体</a></li> <li><a href="">close()——关闭窗体</a></li> <li><a href="">setTimeout()—— 暂停指定的毫秒数后执行指定的代码 //// clearTimeout()——取消指定的setTimeout函数将要执行的代码</a></li> <li><a href="">setInterval()——间隔指定的毫秒数不停地执行指定的代码 // clearInterval()——取消指定的setInterval函数将要执行的代码</a></li> </ol> </ol> <li><a href="">Window 尺寸</a></li> <ol class="rounded-list"> <li><a href="">有三种方法能够确定浏览器窗口的尺寸(浏览器的视口,不包括工具栏和滚动条)。</a></li> <li><a href="">对于Internet Explorer、Chrome、Firefox、Opera 以及 Safari:<br/> window.innerHeight - 浏览器窗口的内部高度 <br/> window.innerWidth - 浏览器窗口的内部宽度 </a></li> <li><a href="">对于 Internet Explorer 8、7、6、5:<br/> document.documentElement.clientHeight <br/> document.documentElement.clientWidth <br/> 或者<br/> document.body.clientHeight <br/> document.body.clientWidth </a></li> </ol> </ol> </div> </body> </html>
node_modules/ink-docstrap/themes/cyborg/modules.list.html
egeste/pg-structure
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>DocStrap Modules</title> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css"> <link type="text/css" rel="stylesheet" href="styles/site.cyborg.css"> </head> <body> <div class="navbar navbar-default navbar-fixed-top navbar-inverse"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="index.html">DocStrap</a> </div> <div class="navbar-collapse"> <ul class="nav navbar-nav"> <li class="dropdown"> <a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b class="caret"></b></a> <ul class="dropdown-menu "> <li><a href="module-base.html">base</a></li><li><a href="module-base_chains.html">base/chains</a></li><li><a href="module-documents_binder.html">documents/binder</a></li><li><a href="module-documents_model.html">documents/model</a></li><li><a href="module-documents_probe.html">documents/probe</a></li><li><a href="module-documents_schema.html">documents/schema</a></li><li><a href="module-ink_collector.html">ink/collector</a></li><li><a href="module-mixins_bussable.html">mixins/bussable</a></li><li><a href="module-mixins_signalable.html">mixins/signalable</a></li><li><a href="module-strings_format.html">strings/format</a></li><li><a href="module-utils_logger.html">utils/logger</a></li> </ul> </li> <li class="dropdown"> <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a> <ul class="dropdown-menu "> <li><a href="base.html">base</a></li><li><a href="base_chains.html">base/chains</a></li><li><a href="documents_model.html">documents/model</a></li><li><a href="module-documents_probe.This%252520is%252520not%252520actually%252520a%252520class,%252520but%252520an%252520artifact%252520of%252520the%252520documentation%252520system.html">documents/probe.This is not actually a class, but an artifact of the documentation system</a></li><li><a href="module-ink_collector-ACollector.html">ink/collector~ACollector</a></li><li><a href="module-ink_collector-CollectorBase.html">ink/collector~CollectorBase</a></li><li><a href="module-ink_collector-OCollector.html">ink/collector~OCollector</a></li><li><a href="module-mixins_signalable-Signal.html">mixins/signalable~Signal</a></li><li><a href="utils_logger.Logger.html">utils/logger.Logger</a></li> </ul> </li> <li class="dropdown"> <a href="mixins.list.html" class="dropdown-toggle" data-toggle="dropdown">Mixins<b class="caret"></b></a> <ul class="dropdown-menu "> <li><a href="documents_schema.html">documents/schema</a></li><li><a href="mixins_bussable.html">mixins/bussable</a></li><li><a href="mixins_signalable.html">mixins/signalable</a></li> </ul> </li> <li class="dropdown"> <a href="tutorials.list.html" class="dropdown-toggle" data-toggle="dropdown">Tutorials<b class="caret"></b></a> <ul class="dropdown-menu "> <li><a href="tutorial-Brush Teeth.html">Brush Teeth</a></li><li><a href="tutorial-Drive Car.html">Drive Car</a></li><li><a href="tutorial-Fence Test.html">Fence Test</a></li> </ul> </li> </ul> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-md-8"> <div id="main"> <h1 class="page-title">Modules</h1> <h1 class="page-title">Modules</h1> <section> <header> <h2> </h2> </header> <article> <div class="container-overview"> <dl class="details"> </dl> </div> <h3 class="subsection-title">Classes</h3> <dl> <dt><a href="base.html">base</a></dt> <dd></dd> <dt><a href="base_chains.html">base/chains</a></dt> <dd></dd> <dt><a href="documents_model.html">documents/model</a></dt> <dd></dd> <dt><a href="module-documents_probe.This%252520is%252520not%252520actually%252520a%252520class,%252520but%252520an%252520artifact%252520of%252520the%252520documentation%252520system.html"> but an artifact of the documentation system</a></dt> <dd></dd> <dt><a href="module-documents_probe.This%252520is%252520not%252520actually%252520a%252520class,%252520but%252520an%252520artifact%252520of%252520the%252520documentation%252520system.html"> but an artifact of the documentation system</a></dt> <dd></dd> <dt><a href="module-ink_collector-ACollector.html">ACollector</a></dt> <dd></dd> <dt><a href="module-ink_collector-CollectorBase.html">CollectorBase</a></dt> <dd></dd> <dt><a href="module-ink_collector-OCollector.html">OCollector</a></dt> <dd></dd> <dt><a href="module-mixins_signalable-Signal.html">Signal</a></dt> <dd></dd> <dt><a href="utils_logger.Logger.html">Logger</a></dt> <dd></dd> </dl> <h3 class="subsection-title">Mixins</h3> <dl> <dt><a href="documents_schema.html">documents/schema</a></dt> <dd></dd> <dt><a href="mixins_bussable.html">mixins/bussable</a></dt> <dd></dd> <dt><a href="mixins_signalable.html">mixins/signalable</a></dt> <dd></dd> </dl> </article> </section> </div> </div> <div class="clearfix"></div> <div class="col-md-3"> <div id="toc" class="col-md-3"></div> </div> </div> </div> <footer> <span class="copyright"> DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects. </span> <br /> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-beta1</a> on Thu Feb 5th 2015 using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>. </span> </footer> <!--<script src="scripts/sunlight.js"></script>--> <script src="scripts/docstrap.lib.js"></script> <script src="scripts/bootstrap-dropdown.js"></script> <script src="scripts/toc.js"></script> <script> $( function () { $( "[id*='$']" ).each( function () { var $this = $( this ); $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) ); } ); $( "#toc" ).toc( { anchorName : function ( i, heading, prefix ) { return $( heading ).attr( "id" ) || ( prefix + i ); }, selectors : "h1,h2,h3,h4", showAndHide : false, scrollTo : "100px" } ); $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" ); $( "#main span[id^='toc']" ).addClass( "toc-shim" ); $( '.dropdown-toggle' ).dropdown(); // $( ".tutorial-section pre, .readme-section pre" ).addClass( "sunlight-highlight-javascript" ).addClass( "linenums" ); $( ".tutorial-section pre, .readme-section pre" ).each( function () { var $this = $( this ); var example = $this.find( "code" ); exampleText = example.html(); var lang = /{@lang (.*?)}/.exec( exampleText ); if ( lang && lang[1] ) { exampleText = exampleText.replace( lang[0], "" ); example.html( exampleText ); lang = lang[1]; } else { lang = "javascript"; } if ( lang ) { $this .addClass( "sunlight-highlight-" + lang ) .addClass( "linenums" ) .html( example.html() ); } } ); Sunlight.highlightAll( { lineNumbers : true, showMenu : true, enableDoclinks : true } ); } ); </script> <!--Navigation and Symbol Display--> <!--Google Analytics--> </body> </html>
vendor/magento/module-ui/view/frontend/web/templates/form/element/checkbox.html
j-froehlich/magento2_wk
<!-- /** * Copyright © 2013-2017 Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ --> <div class="choice field"> <input type="checkbox" class="checkbox" data-bind="checked: value, attr: { id: uid, disabled: disabled, name: inputName }, hasFocus: focused"> <label class="label" data-bind="checked: value, attr: { for: uid }"> <span data-bind="text: description || label"></span> </label> <!-- ko if: notice --> <div class="field-note" data-bind="attr: {id: noticeId}"><span data-bind="text: notice"></span></div> <!-- /ko --> </div>
public/unicorn/managedocs/static/managementproject-modifyflags.html
atarun/web
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="author" content="UNICORN"> <title id="title">UNICORN Framework Manager - pagename -</title> <link rel="shortcut icon" href="https://dl.dropboxusercontent.com/u/22810487/UNICORN/image/favicon.ico" /> <!-- bootstrap --> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/css/reset.css" /> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/bootstrap/css/bootstrap.min.css" /> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/css/style.css?body=1" media="all"> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/font-awesome/css/font-awesome.min.css" /> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/css/local.css" /> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="./assets/themes/darkadmin/bootstrap/css/bs-sticky-footer.css" /> <script class="fwmassetsjs" type="text/javascript" src="./assets/themes/darkadmin/js/jquery-2.1.3.min.js"></script> <script class="fwmassetsjs" type="text/javascript" src="./assets/themes/darkadmin/bootstrap/js/bootstrap.min.js"></script> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="//www.shieldui.com/shared/components/latest/css/shieldui-all.min.css" /> <link class="fwmassetscss" rel="stylesheet" type="text/css" href="//www.shieldui.com/shared/components/latest/css/light-bootstrap/all.min.css" /> <link class="fwmassetscss" id="gridcss" rel="stylesheet" type="text/css" href="//www.shieldui.com/shared/components/latest/css/dark-bootstrap/all.min.css" /> <script class="fwmassetsjs" type="text/javascript" src="//www.shieldui.com/shared/components/latest/js/shieldui-all.min.js"></script> <script class="fwmassetsjs" type="text/javascript" src="//www.prepbootstrap.com/Content/js/gridData.js"></script> <script class="fwmassetsjs" type="text/javascript" src="./assets/themes/darkadmin/bootstrap/js/bootstrap-datepicker.js"></script> <script class="fwmassetsjs" type="text/javascript" src="./assets/themes/darkadmin/bootstrap/js/locales/bootstrap-datepicker.ja.js"></script> <link class="fwmassetscss" rel="stylesheet" href="./assets/themes/darkadmin/bootstrap/css/bootstrap-datepicker.css" /> <link id="syntaxhighlighter" type="text/css" rel="stylesheet" href="./assets/vendor/css/syntaxhighlighter/shCoreRDark.css"/> <script id="syntaxhighlighter-core-js" type="text/javascript" src="./assets/vendor/js/syntaxhighlighter/shCore.js"></script> <script id="syntaxhighlighter-js" type="text/javascript" src="./assets/vendor/js/syntaxhighlighter/shBrushPhp.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> <link class="fwmassetscss" rel="stylesheet" href="./assets/fwm/css/la+.css" /> <link class="fwmassetscss" rel="stylesheet" href="./assets/fwm/css/la+wake.css" /> <link class="fwmassetscss" rel="stylesheet" href="./assets/fwm/css/sp.css" /> <script class="fwmassetsjs" src="./assets/fwm/js/main.js"></script> </head> <body> <div id="wrapper"> <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="index.html"><img style="float: left; margin-right: 10px;" src="https://dl.dropboxusercontent.com/u/22810487/UNICORN/image/favicon.ico" width="20" />RUNNING LA+</a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul id="active" class="nav navbar-nav side-nav"> <li id="menu-generatenewproject"><a href="./generatenewproject.html"><i class="fa fa-sitemap"></i> GENERATE NEW PROJECT</a></li> <li id="menu-projectlist" class="plojectlist-block"> <i class="fa fa-cubes"></i> PROJECT LIST <ul id="projectlist"> <li class="project fa fa-cube"><a href="./managementproject.html?target_project=_project_"> project name</a></li> </ul> </li> <li id="menu-tablelist" class="tablelist-block" style="display:none;"></li> <li><a href="./bootstrap-elements.html"><i class="fa fa-list-ul"></i> Bootstrap Elements</a></li> <li><a href="./bootstrap-form.html"><i class="fa fa-list-ol"></i> Bootstrap Form</a></li> <li><a href="./bootstrap-grid.html"><i class="fa fa-table"></i> Bootstrap Grid</a></li> <li><a href="./bootstrap-typography.html"><i class="fa fa-font"></i> Bootstrap Typography</a></li> </ul> <ul class="nav navbar-nav navbar-right navbar-user"> <li class="dropdown user-dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-user"></i> <strong id="username" class="operator-name">Operator Name</strong><b class="caret"></b></a> <ul class="dropdown-menu"> <!-- <li><a href="#"><i class="fa fa-gear"></i> Settings</a></li> <li class="divider"></li> --> <li><a href="http://unicorn-project.github.io" target="_blank"><i class="fa fa-gear"></i> Help</a></li> <li class="divider"></li> <li><a href="logout.html"><i class="fa fa-power-off"></i> Log Out</a></li> </ul> </li> </ul> </div> </nav> <div id="page-wrapper"> <var selector="title#title" value="array(HtmlViewAssignor::PART_REPLACE_NODE_KEY => array('pagename' => 'Management ' . Flow::$params['get']['target_project'] . ' Flags'))" /> <div class="maincontents"> <h2 frowparamsection="target_project">_flow_target_project_の環境フラグ設定を変更出来ます。</h2> <br/> <div flowpostformsectionerror="managementproject-modifyconfigure" id="modified-message" class="red errormsg"></div> <br/> <form id="modifyflags-form" flowpostformsection="managementproject-modifyflags"> <table> <tr> <td> <div> <input id="useAutoGenerate" type="checkbox" name="autogenerate-enabled" value="1"/><label for="useAutoGenerate" class="strong">自動パッケージキャッシュ - <span class="strong dispflag">OFF</span></label> <br/> <label for="useAutoGenerate"> フレームワークが行う実行ファイル自動捜索処の結果を保存し、次回移行は捜索処理がスキップされるようになります。 <br/> <strong>また、ONする事で処理速度の高速化及び負荷軽減が期待出来ます。</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useAutoMigration" type="checkbox" name="automigration-enabled" value="1"/><label for="useAutoMigration" class="strong">自動マイグレーション - <span class="strong dispflag">OFF</span></label> <br/> <label for="useAutoMigration"> ORMapper「PsychoFrame」を利用したテーブルアクセス時に、自動的にマイグレーションファイルの生成と最新のマイグレーションの適用処理を行うようになります。 <br/> <strong class="red">※この機能を利用するにはMySQLデータベースを利用する必要があります!また、MySQLで無い場合にONに設定されているとエラーが生じます!</strong> <br/> <strong class="red">※この機能を利用すると処理速度が低下します!また、分散環境での動作を保証しません!本番サーバーの場合はOFFにする等して下さい!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useAutoStageCheck" type="checkbox" name="autostagecheck-enabled" value="1"/><label for="useAutoStageCheck" class="strong">自動環境判別 - <span class="strong dispflag">OFF</span></label> <br/> <label for="useAutoStageCheck"> ドメインを参照して、ローカル環境・開発環境・テスト環境・ステージング環境を判別するようになります。 <br/> <strong class="red">※この機能を利用すると、以下の「ローカル環境」・「テスト環境」・「開発環境」・「ステージング環境」用のそれぞれのフラグ設定は無視されます!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useLocal" type="checkbox" name="local-enabled" value="1"/><label for="useLocal" class="strong">ローカル環境 - <span class="strong dispflag">OFF</span></label> <br/> <label for="useLocal"> ローカル環境として動作します。 <br/> <strong class="red">※自動環境判別がONの場合、このフラグ設定は無視されます!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useTest" type="checkbox" name="test-enabled" value="1"/><label for="useTest" class="strong">テスト環境 - <span class="strong dispflag">OFF</span></label> <br/> <label for="useTest"> テスト環境として動作します。 <br/> <strong class="red">※自動環境判別がONの場合、このフラグ設定は無視されます!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useDev" type="checkbox" name="dev-enabled" value="1"/><label for="useDev" class="strong">開発環境 - <span class="strong dispflag">OFF</span></label> <br/> <label for="useDev"> 開発環境として動作します。 <br/> <strong class="red">※自動環境判別がONの場合、このフラグ設定は無視されます!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useStaging" type="checkbox" name="staging-enabled" value="1"/><label for="useStaging" class="strong">ステージング環境 - <span class="strong dispflag">OFF</span></label> <br/> <label for="useStaging"> ステージング環境として動作します。 <br/> <strong class="red">※自動環境判別がONの場合、このフラグ設定は無視されます!</strong> </label> </div> <br/> </td> </tr> <tr> <td> <div> <input id="useDebug" type="checkbox" name="debug-enabled" value="1"/><label for="useDebug" class="strong">デバッグモード - <span class="strong dispflag">OFF</span></label> <br/> <label for="useDebug"> デバッグモードをONにすると、debugログが吐出されるようになります。 <br/> なお、ローカル環境・テスト環境・開発環境・ステージング環境の場合は強制的にONになります。 </label> </div> <br/> </td> </tr> <tr> <td> <div class="buttonarea"><input type="submit" name="submit" class="btn btn-success" value="設定"/></div> <br/> </td> </tr> </table> <input type="hidden" name="modify" value="1"/> </form> </div> </div> </div> <div id="footer"> <p> &copy; 2015 <a href="http://unicorn-project.github.io" target="_blank">Powered by UNICORN </a> <small> <br> with <a href="http://jekyllbootstrap.com" target="_blank">Jekyll bootstrap</a> and <a href="http://www.prepbootstrap.com/bootstrap-theme/dark-admin" target="_blank">PreBootstrap DarkAdmin</a> </small> </p> </div> <!-- 背景を body タグで指定する代わりに、この div タグに指定する --> <div class="background"></div> </body> </html>
src/Stitch.Test/Master/ExportTest01.html
jherink/Stitch
<?xml version="1.0" encoding="utf-8"?> <html lang="en"> <head> <title></title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <style type="text/css"> html{ box-sizing:border-box; } *,*:before,*:after{ box-sizing:inherit; } html{ -ms-text-size-adjust:100%;-webkit-text-size-adjust:100%; } body{ margin:0; } svg:not(:root){ overflow:hidden; } hr{ box-sizing:content-box;height:0;overflow:visible; } html,body{ font-family:Verdana,sans-serif;font-size:15px;line-height:1.5; } html{ overflow-x:hidden; } h1,h2,h3,h4,h5,h6,.w3-slim,.w3-wide{ font-family:'Segoe UI',Arial,sans-serif; } h3{ font-size:24px; } h1,h2,h3,h4,h5,h6{ font-weight:400;margin:10px 0; } hr{ border:0;border-top:1px solid #EEE;margin:20px 0; } .w3-table,.w3-table-all{ border-collapse:collapse;border-spacing:0;width:100%;display:table; } .w3-table-all{ border:1px solid #CCC; } .w3-bordered tr,.w3-table-all tr{ border-bottom:1px solid #DDD; } .w3-striped tbody tr:nth-child(even){ background-color:#F1F1F1; } .w3-table-all tr:nth-child(odd){ background-color:#FFF; } .w3-table-all tr:nth-child(even){ background-color:#F1F1F1; } .w3-table td,.w3-table th,.w3-table-all td,.w3-table-all th{ padding:8px 8px;display:table-cell;text-align:left;vertical-align:top; } .w3-table th:first-child,.w3-table td:first-child,.w3-table-all th:first-child,.w3-table-all td:first-child{ padding-left:16px; } .w3-btn,.w3-btn-floating,.w3-dropnav a,.w3-btn-floating-large,.w3-btn-block,.w3-navbar a,.w3-sidenav a,.w3-pagination li a,.w3-hoverable tbody tr,.w3-hoverable li,.w3-accordion-content a,.w3-dropdown-content a,.w3-dropdown-click:hover,.w3-dropdown-hover:hover,.w3-opennav,.w3-closenav,.w3-closebtn,*[class*="w3-hover-"]{ -webkit-transition:background-color 0.25s,color 0.15s,box-shadow 0.25s,opacity 0.25s,filter 0.25s,border 0.15s;transition:background-color 0.25s,color 0.15s,box-shadow 0.15s,opacity 0.25s,filter 0.25s,border 0.15s; } </style> <style type="text/css"></style> <style type="text/css"> .ansi-a{ width:8.5in; } </style> <style type="text/css"> .stitch-theme{ color:#FFF;background-color:#36C !important;fill:#36C; } .stitch-chart-theme-1{ fill:#36C;stroke:#36C; } .stitch-chart-theme-2{ fill:#DC3912;stroke:#DC3912; } .stitch-chart-theme-3{ fill:#F90;stroke:#F90; } .stitch-chart-theme-4{ fill:#109618;stroke:#109618; } .stitch-chart-theme-5{ fill:#909;stroke:#909; } .stitch-chart-theme-6{ fill:#0099C6;stroke:#0099C6; } .stitch-chart-theme-7{ fill:#D47;stroke:#D47; } .stitch-chart-theme-8{ fill:#6A0;stroke:#6A0; } .stitch-chart-theme-9{ fill:#B82E2E;stroke:#B82E2E; } .stitch-chart-theme-10{ fill:#316395;stroke:#316395; } .stitch-chart-theme-11{ fill:#949;stroke:#949; } .stitch-chart-theme-12{ fill:#2A9;stroke:#2A9; } .stitch-chart-text-theme-1,.stitch-chart-text-theme-2,.stitch-chart-text-theme-3,.stitch-chart-text-theme-4,.stitch-chart-text-theme-5,.stitch-chart-text-theme-6,.stitch-chart-text-theme-7,.stitch-chart-text-theme-8,.stitch-chart-text-theme-9,.stitch-chart-text-theme-10,.stitch-chart-text-theme-11,.stitch-chart-text-theme-12,.stitch-chart-text-theme-13,.stitch-chart-text-theme-14,.stitch-chart-text-theme-15,.stitch-chart-text-theme-16,.stitch-chart-text-theme-17,.stitch-chart-text-theme-18,.stitch-chart-text-theme-19,.stitch-chart-text-theme-20,.stitch-chart-text-theme-21,.stitch-chart-text-theme-22{ fill:#000; } </style> <style type="text/css"></style> </head> <body> <div id="pages"> <div id="a" class="ansi-a" style="margin:0.5in 0.5in 0.5in 0.5in;" page-number="1"> <h3>Total Beverage Amounts</h3> <hr /> <svg style="overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;" height="400" width="800"> <g> <text x="0" y="0" style="font-weight:bold;"></text> </g> <g> <g> <circle cx="486.1865234375" cy="23.642578125" r="7" class="stitch-chart-theme-1" style="stroke:none;" /> <text x="500.1865234375" y="28.642578125">Chai</text> </g> <g> <circle cx="486.1865234375" cy="47.28515625" r="7" class="stitch-chart-theme-2" style="stroke:none;" /> <text x="500.1865234375" y="52.28515625">Chang</text> </g> <g> <circle cx="486.1865234375" cy="70.927734375" r="7" class="stitch-chart-theme-3" style="stroke:none;" /> <text x="500.1865234375" y="75.927734375">Chartreuse verte</text> </g> <g> <circle cx="486.1865234375" cy="94.5703125" r="7" class="stitch-chart-theme-4" style="stroke:none;" /> <text x="500.1865234375" y="99.5703125">Côte de Blaye</text> </g> <g> <circle cx="486.1865234375" cy="118.212890625" r="7" class="stitch-chart-theme-5" style="stroke:none;" /> <text x="500.1865234375" y="123.212890625">Guaraná Fantástica</text> </g> <g> <circle cx="486.1865234375" cy="141.85546875" r="7" class="stitch-chart-theme-6" style="stroke:none;" /> <text x="500.1865234375" y="146.85546875">Ipoh Coffee</text> </g> <g> <circle cx="486.1865234375" cy="165.498046875" r="7" class="stitch-chart-theme-7" style="stroke:none;" /> <text x="500.1865234375" y="170.498046875">Lakkalikööri</text> </g> <g> <circle cx="486.1865234375" cy="189.140625" r="7" class="stitch-chart-theme-8" style="stroke:none;" /> <text x="500.1865234375" y="194.140625">Laughing Lumberjack Lager</text> </g> <g> <circle cx="486.1865234375" cy="212.783203125" r="7" class="stitch-chart-theme-9" style="stroke:none;" /> <text x="500.1865234375" y="217.783203125">Outback Lager</text> </g> <g> <circle cx="486.1865234375" cy="236.42578125" r="7" class="stitch-chart-theme-10" style="stroke:none;" /> <text x="500.1865234375" y="241.42578125">Rhönbräu Klosterbier</text> </g> <g> <circle cx="486.1865234375" cy="260.068359375" r="7" class="stitch-chart-theme-11" style="stroke:none;" /> <text x="500.1865234375" y="265.068359375">Sasquatch Ale</text> </g> <g> <circle cx="486.1865234375" cy="283.7109375" r="7" class="stitch-chart-theme-12" style="stroke:none;" /> <text x="500.1865234375" y="288.7109375">Steeleye Stout</text> </g> </g> <g></g> <g> <path d="M180 180 L180 0 A180 180 0 0 1 240.188670442834 10.3611956233954 Z" class="stitch-chart-theme-1" style="stroke:#fff;stroke-width:1;" /> <text x="207.416004501892" y="25.9090744650407" class="stitch-chart-text-theme-1" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">5.4%</text> </g> <g> <path d="M180 180 L240.188670442834 10.3611956233954 A180 180 0 0 1 293.47085850221 40.2703887117283 Z" class="stitch-chart-theme-2" style="stroke:#fff;stroke-width:1;" /> <text x="259.103209696308" y="43.6549156761344" class="stitch-chart-text-theme-2" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">5.4%</text> </g> <g> <path d="M180 180 L293.47085850221 40.2703887117283 A180 180 0 0 1 322.420239245766 69.9251370512832 Z" class="stitch-chart-theme-3" style="stroke:#fff;stroke-width:1;" /> <text x="295.637859792051" y="70.7772504811799" class="stitch-chart-text-theme-3" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">3.7%</text> </g> <g> <path d="M180 180 L322.420239245766 69.9251370512832 A180 180 0 0 1 251.068708573917 345.376052261612 A180 180 0 0 1 2.12382855110238 207.569324088239 Z" class="stitch-chart-theme-4" style="stroke:#fff;stroke-width:1;" /> <text x="240.981411101466" y="323.654295397172" class="stitch-chart-text-theme-4" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">58.0%</text> </g> <g> <path d="M180 180 L2.12382855110238 207.569324088239 A180 180 0 0 1 0.0717746968435335 185.08269015941 Z" class="stitch-chart-theme-5" style="stroke:#fff;stroke-width:1;" /> <text x="19.0653303694458" y="194.209602911168" class="stitch-chart-text-theme-5" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;display:none;">2.0%</text> </g> <g> <path d="M180 180 L0.0717746968435335 185.08269015941 A180 180 0 0 1 12.7947675749027 113.348591540244 Z" class="stitch-chart-theme-6" style="stroke:#fff;stroke-width:1;" /> <text x="20.880003515469" y="152.694104517706" class="stitch-chart-text-theme-6" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">6.5%</text> </g> <g> <path d="M180 180 L12.7947675749027 113.348591540244 A180 180 0 0 1 44.9575126611596 60.9893844510536 Z" class="stitch-chart-theme-7" style="stroke:#fff;stroke-width:1;" /> <text x="42.3007284448458" y="98.1611129224755" class="stitch-chart-text-theme-7" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">5.5%</text> </g> <g> <path d="M180 180 L44.9575126611596 60.9893844510536 A180 180 0 0 1 54.6740059100774 50.7970774116442 Z" class="stitch-chart-theme-8" style="stroke:#fff;stroke-width:1;" /> <text x="63.0315097255514" y="72.1117958691747" class="stitch-chart-text-theme-8" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;display:none;">1.2%</text> </g> <g> <path d="M180 180 L54.6740059100774 50.7970774116442 A180 180 0 0 1 80.4065174888381 30.0628857110459 Z" class="stitch-chart-theme-9" style="stroke:#fff;stroke-width:1;" /> <text x="78.6059256810777" y="58.2481226684198" class="stitch-chart-text-theme-9" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">2.9%</text> </g> <g> <path d="M180 180 L80.4065174888381 30.0628857110459 A180 180 0 0 1 105.561180709077 16.1132641652372 Z" class="stitch-chart-theme-10" style="stroke:#fff;stroke-width:1;" /> <text x="101.626629816767" y="43.2609277702598" class="stitch-chart-text-theme-10" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;display:none;">2.5%</text> </g> <g> <path d="M180 180 L105.561180709077 16.1132641652372 A180 180 0 0 1 135.321175449375 5.63313779053524 Z" class="stitch-chart-theme-11" style="stroke:#fff;stroke-width:1;" /> <text x="126.321734768619" y="32.5201025743135" class="stitch-chart-text-theme-11" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">2.8%</text> </g> <g> <path d="M180 180 L135.321175449375 5.63313779053524 A180 180 0 0 1 180 0 Z" class="stitch-chart-theme-12" style="stroke:#fff;stroke-width:1;" /> <text x="159.784968924915" y="24.8707109881554" class="stitch-chart-text-theme-12" style="text-anchor:middle;overflow:visible;font-size:15px;margin-top:30px;margin-bottom:30px;">4.0%</text> </g> </svg> <table class="w3-table w3-table-all"> <caption></caption> <thead> <tr class="stitch-theme"> <th>Product Name</th> <th>Total Purchase</th> </tr> </thead> <tbody></tbody> <tbody> <tr> <td>Chai</td> <td>6296.00</td> </tr> <tr> <td>Chang</td> <td>6299.00</td> </tr> <tr> <td>Chartreuse verte</td> <td>4261.00</td> </tr> <tr> <td>Côte de Blaye</td> <td>67324.00</td> </tr> <tr> <td>Guaraná Fantástica</td> <td>2318.00</td> </tr> <tr> <td>Ipoh Coffee</td> <td>7526.00</td> </tr> <tr> <td>Lakkalikööri</td> <td>6335.00</td> </tr> <tr> <td>Laughing Lumberjack Lager</td> <td>1445.00</td> </tr> <tr> <td>Outback Lager</td> <td>3395.00</td> </tr> <tr> <td>Rhönbräu Klosterbier</td> <td>2954.00</td> </tr> <tr> <td>Sasquatch Ale</td> <td>3241.00</td> </tr> <tr> <td>Steeleye Stout</td> <td>4632.00</td> </tr> </tbody> <tfoot></tfoot> </table> </div> </div> </body> </html>
apache-cassandra-2.1.2/javadoc/org/apache/cassandra/net/class-use/MessagingService.Verb.html
vangav/vos_backend
<!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_72) on Wed Nov 05 20:55:55 EST 2014 --> <title>Uses of Class org.apache.cassandra.net.MessagingService.Verb (apache-cassandra API)</title> <meta name="date" content="2014-11-05"> <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.cassandra.net.MessagingService.Verb (apache-cassandra 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/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-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</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/net/class-use/MessagingService.Verb.html" target="_top">Frames</a></li> <li><a href="MessagingService.Verb.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.cassandra.net.MessagingService.Verb" class="title">Uses of Class<br>org.apache.cassandra.net.MessagingService.Verb</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.config">org.apache.cassandra.config</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.cassandra.db">org.apache.cassandra.db</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.cassandra.metrics">org.apache.cassandra.metrics</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.cassandra.net">org.apache.cassandra.net</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.cassandra.config"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a> in <a href="../../../../../org/apache/cassandra/config/package-summary.html">org.apache.cassandra.config</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/config/package-summary.html">org.apache.cassandra.config</a> with parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static long</code></td> <td class="colLast"><span class="strong">DatabaseDescriptor.</span><code><strong><a href="../../../../../org/apache/cassandra/config/DatabaseDescriptor.html#getTimeout(org.apache.cassandra.net.MessagingService.Verb)">getTimeout</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.cassandra.db"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a> in <a href="../../../../../org/apache/cassandra/db/package-summary.html">org.apache.cassandra.db</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/db/package-summary.html">org.apache.cassandra.db</a> with parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/net/MessageOut.html" title="class in org.apache.cassandra.net">MessageOut</a>&lt;<a href="../../../../../org/apache/cassandra/db/Mutation.html" title="class in org.apache.cassandra.db">Mutation</a>&gt;</code></td> <td class="colLast"><span class="strong">Mutation.</span><code><strong><a href="../../../../../org/apache/cassandra/db/Mutation.html#createMessage(org.apache.cassandra.net.MessagingService.Verb)">createMessage</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.cassandra.metrics"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a> in <a href="../../../../../org/apache/cassandra/metrics/package-summary.html">org.apache.cassandra.metrics</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../org/apache/cassandra/metrics/package-summary.html">org.apache.cassandra.metrics</a> with parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/metrics/DroppedMessageMetrics.html#DroppedMessageMetrics(org.apache.cassandra.net.MessagingService.Verb)">DroppedMessageMetrics</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.cassandra.net"> <!-- --> </a> <h3>Uses of <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a> in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a> declared as <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></code></td> <td class="colLast"><span class="strong">MessageIn.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessageIn.html#verb">verb</a></strong></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></code></td> <td class="colLast"><span class="strong">MessageOut.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessageOut.html#verb">verb</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a> with type parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static java.util.EnumMap&lt;<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>,<a href="../../../../../org/apache/cassandra/io/IVersionedSerializer.html" title="interface in org.apache.cassandra.io">IVersionedSerializer</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#callbackDeserializers">callbackDeserializers</a></strong></code> <div class="block">A Map of what kind of serializer to wire up to a REQUEST_RESPONSE callback, based on outbound Verb.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.util.EnumSet&lt;<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&gt;</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#DROPPABLE_VERBS">DROPPABLE_VERBS</a></strong></code> <div class="block">Verbs it's okay to drop if the request has been queued longer than the request timeout.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.util.EnumMap&lt;<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>,<a href="../../../../../org/apache/cassandra/io/IVersionedSerializer.html" title="interface in org.apache.cassandra.io">IVersionedSerializer</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#verbSerializers">verbSerializers</a></strong></code> <div class="block">Messages we receive in IncomingTcpConnection have a Verb that tells us what kind of message it is.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static java.util.EnumMap&lt;<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>,<a href="../../../../../org/apache/cassandra/concurrent/Stage.html" title="enum in org.apache.cassandra.concurrent">Stage</a>&gt;</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#verbStages">verbStages</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a> that return <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></code></td> <td class="colLast"><span class="strong">MessagingService.Verb.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>[]</code></td> <td class="colLast"><span class="strong">MessagingService.Verb.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a> with parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../../../org/apache/cassandra/net/MessageIn.html" title="class in org.apache.cassandra.net">MessageIn</a>&lt;T&gt;</code></td> <td class="colLast"><span class="strong">MessageIn.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessageIn.html#create(java.net.InetAddress,%20T,%20java.util.Map,%20org.apache.cassandra.net.MessagingService.Verb,%20int)">create</a></strong>(java.net.InetAddress&nbsp;from, T&nbsp;payload, java.util.Map&lt;java.lang.String,byte[]&gt;&nbsp;parameters, <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb, int&nbsp;version)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a></code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#getVerbHandler(org.apache.cassandra.net.MessagingService.Verb)">getVerbHandler</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;type)</code> <div class="block">This method returns the verb handler associated with the registered verb.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#incrementDroppedMessages(org.apache.cassandra.net.MessagingService.Verb)">incrementDroppedMessages</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">MessagingService.</span><code><strong><a href="../../../../../org/apache/cassandra/net/MessagingService.html#registerVerbHandlers(org.apache.cassandra.net.MessagingService.Verb,%20org.apache.cassandra.net.IVerbHandler)">registerVerbHandlers</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb, <a href="../../../../../org/apache/cassandra/net/IVerbHandler.html" title="interface in org.apache.cassandra.net">IVerbHandler</a>&nbsp;verbHandler)</code> <div class="block">Register a verb and the corresponding verb handler with the Messaging Service.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../org/apache/cassandra/net/package-summary.html">org.apache.cassandra.net</a> with parameters of type <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/net/MessageOut.html#MessageOut(java.net.InetAddress,%20org.apache.cassandra.net.MessagingService.Verb,%20T,%20org.apache.cassandra.io.IVersionedSerializer,%20java.util.Map)">MessageOut</a></strong>(java.net.InetAddress&nbsp;from, <a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb, <a href="../../../../../org/apache/cassandra/net/MessageOut.html" title="type parameter in MessageOut">T</a>&nbsp;payload, <a href="../../../../../org/apache/cassandra/io/IVersionedSerializer.html" title="interface in org.apache.cassandra.io">IVersionedSerializer</a>&lt;<a href="../../../../../org/apache/cassandra/net/MessageOut.html" title="type parameter in MessageOut">T</a>&gt;&nbsp;serializer, java.util.Map&lt;java.lang.String,byte[]&gt;&nbsp;parameters)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/net/MessageOut.html#MessageOut(org.apache.cassandra.net.MessagingService.Verb)">MessageOut</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../org/apache/cassandra/net/MessageOut.html#MessageOut(org.apache.cassandra.net.MessagingService.Verb,%20T,%20org.apache.cassandra.io.IVersionedSerializer)">MessageOut</a></strong>(<a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">MessagingService.Verb</a>&nbsp;verb, <a href="../../../../../org/apache/cassandra/net/MessageOut.html" title="type parameter in MessageOut">T</a>&nbsp;payload, <a href="../../../../../org/apache/cassandra/io/IVersionedSerializer.html" title="interface in org.apache.cassandra.io">IVersionedSerializer</a>&lt;<a href="../../../../../org/apache/cassandra/net/MessageOut.html" title="type parameter in MessageOut">T</a>&gt;&nbsp;serializer)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </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><a href="../../../../../org/apache/cassandra/net/MessagingService.Verb.html" title="enum in org.apache.cassandra.net">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-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</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/cassandra/net/class-use/MessagingService.Verb.html" target="_top">Frames</a></li> <li><a href="MessagingService.Verb.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>Copyright &copy; 2014 The Apache Software Foundation</small></p> </body> </html>
target/explorer/index.html
imqsl/ethereum-blockchain-explorer
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags--> <meta name="description" content="以太坊区块链浏览器"> <meta name="author" content="imqsl"> <meta name="keywords" content="以太坊, 浏览器, 区块链, etherchain, 加密货币, 比特币"> <meta name="theme-color" content="#18bc9c"> <link rel="icon" href="//etherchain.org/images/glyphicons-51-link.png"> <title>主页 - 以太坊区块链浏览器</title> <!-- Bootstrap core CSS--> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="//cdn.datatables.net/r/bs/dt-1.10.9/datatables.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.1.0/styles/default.min.css"> <style> body { padding-top: 50px; padding-bottom: 20px; }</style> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bignumber.js/2.0.7/bignumber.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/1.4.5/numeral.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js"></script> </head> <body> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar" class="navbar-toggle collapsed"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="" title="SCU嵌入式实验室" class="navbar-brand"> <span class="glyphicon glyphicon-link"></span>川大嵌入式实验室</a></div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li class="dropdown"><a href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><span class="glyphicon glyphicon-eye-open"></span> 区块链<span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="blocks.html"><span class="glyphicon glyphicon-book"></span> 区块</a></li> <li><a href="txs.html?"><span class="glyphicon glyphicon-transfer"></span> 交易</a></li> </ul> </li> <li class="dropdown"><a href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"><span class="glyphicon glyphicon-list-alt"></span> 账户<span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="acounts.html">账户</a></li> </ul> </li> <li class="dropdown"><a href="#" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" class="dropdown-toggle"> <div class="span glyphicon glyphicon-wrench"></div> 工具<span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="https://ens.etherchain.org/" target="_blank"><span class="glyphicon glyphicon-globe"></span> Ethereum Name Service</a></li> <li><a href="https://www.ethernodes.org/" target="_blank">Nodes Explorer</a></li> <li><a href="https://github.com/gobitfly/etherchain-light" target="_blank">Etherchain Light</a> </li> <li><a href="https://github.com/gobitfly/erc20-explorer" target="_blank">ERC20 Token explorer</a></li> <li><a href="https://www.etherchain.org/documentation/api/">API</a></li> </ul> </li> </ul> <form action="search" method="POST" class="navbar-form navbar-right"> <div class="form-group"><input type="text" placeholder="Tx Hash, Address or Block number" id="search" name="search" class="form-control input-sm"></div> <button type="submit" style="margin-left: 2px" class="btn btn-success"> <span class="glyphicon glyphicon-search"></span></button> </form> </div> </div> </nav> <div id="home" class="container"> <div class="row"> <div class="col-md-12"><h2 class="text-center">以太坊 网络 状态</h2></div> </div> <div class="row"> <div class="col-md-1 text-center glyphicon glyphicon-option-horizontal"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-primary"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block0"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-right"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-info"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block1"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-right"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-success"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block2"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-right"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-warning"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block3"></h4></div> </div> </div> </div> <div class="row"> <div class="col-md-2 col-md-offset-10 text-center glyphicon glyphicon-arrow-down"></div> </div> <div class="row"> <div class="col-md-offset-1 col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-success"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block7"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-left"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-info"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block6"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-left"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-primary"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block5"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-left"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-danger"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block4"></h4></div> </div> </div> </div> <div class="row"> <div class="col-md-2 col-md-offset-1 text-center glyphicon glyphicon-arrow-down"></div> </div> <div class="row"> <div class="col-md-2 col-md-offset-1 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-warning"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block8"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-arrow-right"></div> <div class="col-md-2 text-center"> <div data-toggle="tooltip" data-placement="top" class="panel panel-danger"> <div class="panel-heading"><h3 class="panel-title">区块号:</h3></div> <div class="panel-body"><h4 id="block9"></h4></div> </div> </div> <div class="col-md-1 text-center glyphicon glyphicon-option-horizontal"></div> </div> <div class="row"> <div class="col-md-4"><h2 class="text-center">最新区块</h2> <div class="table-responsive"> <table class="table table-condensed table-striped table-hover border-right"> <thead> <tr> <th>区块号</th> <th>挖出方</th> <th>时间</th> </tr> </thead> <tbody id="recentblocks"> </tbody> </table> </div> <a href="blocks.html" role="button" class="btn btn-default">查看更多区块</a></div> <div class="col-md-8"><h2 class="text-center">最新交易</h2> <div class="table-responsive"> <table class="table table-striped table-hover table-condensed"> <thead> <tr> <th>哈希值</th> <th>区块号</th> <th>以太币从</th> <th>交易到</th> <th>金额</th> <th>时间</th> </tr> </thead> <tbody id="recentTxs"> </tbody> </table> </div> <a href="txs.html?" role="button" class="btn btn-default">查看更多交易</a></div> </div> </div> <hr> <div class="container"> <footer><p>© 四川大学嵌入式实验室 | 以太坊区块链浏览器 | 联系我们 | 数据来源: <a href="https://www.etherchain.org">www.etherchain.org</a> | Powered by Parity v1.7.8</p> </footer> </div> </body> <script src="dateformat.js"></script> <script type="text/javascript"> var priceurl = "https://etherchain.org/api/statistics/price"; var baseurl = "https://etherchain.org/api/basic_stats"; var txurl; $.getJSON(priceurl, function (result) { var result = eval(result); usd = result.data[result.data.length - 1].usd; $("#price").append("$" + usd); }) $.getJSON(baseurl, function (result) { var result = eval(result); var difficulty = result.data.difficulty.difficulty; var blockTime = result.data.difficulty.blockTime; var number = result.data.difficulty.number; var name = result.data.difficulty.name; txurl = "https://etherchain.org/api/block/" + number + ":id/tx"; $.getJSON(txurl, function (resultdata) { var resultdata = eval(resultdata); var length; if (resultdata.data.length >= 10) { length = 10; } else { length = resultdata.data.length; } for (i = 0; i < length; i++) { var hash = resultdata.data[i].hash.substring(0, 9) + "..."; var block_id = resultdata.data[i].block_id; var sender = resultdata.data[i].sender.substring(0, 9) + "..."; var recipient = resultdata.data[i].recipient.substring(0, 9) + "..."; var amount = (resultdata.data[i].amount / 1000000000000000000).toFixed(3) + " Ether"; var time = formatDuring(new Date().getTime() - new Date(resultdata.data[i].time).getTime()); $("#recentTxs").append("<tr><td>" + hash + "</td><td><a href='block.html?number="+block_id+"'>" + block_id + "</a> </td>" + "<td>" + sender + "</td><td>" + recipient + "</td><td>" + amount + "</td><td>" + time + "</td>" + "</tr>"); } if (length < 10) { number = number - 1; console.log(number); txurl = "https://etherchain.org/api/block/" + number + ":id/tx"; var coinbaseurl = "https://etherchain.org/api/block/" + number + ":id"; var coinbase; $.getJSON(coinbaseurl, function (resultdata) { coinbase = resultdata.data[0].coinbase; var nameurl = "https://etherchain.org/api/account/multiple/" + coinbase + ":ids"; $.getJSON(coinbaseurl, function (resultdata) { name = resultdata.data[0].name; $.getJSON(txurl, function (resultdata) { for (i = 0; i < 10 - length; i++) { var hash = resultdata.data[i].hash.substring(0, 9) + "..."; var block_id = resultdata.data[i].block_id; var sender = resultdata.data[i].sender.substring(0, 9) + "..."; var recipient = resultdata.data[i].recipient.substring(0, 9) + "..."; var amount = (resultdata.data[i].amount / 1000000000000000000).toFixed(3) + " Ether"; var time = (new Date().getTime() - new Date(resultdata.data[i].time).getTime()); $("#recentTxs").append("<tr><td>" + hash + "</td><td><a href='block.html?number="+block_id+"'>" + block_id + "</a> </td>" + "<td>" + sender + "</td><td>" + recipient + "</td><td>" + amount + "</td><td>" + time + "</td>" + "</tr>"); } }) }) }) } }) $("#difficulty").append((difficulty / 1000000000000).toFixed(3) + " T"); $("#blockTime").append(blockTime + "s"); for (i = 0; i < 10; i++) { var number = result.data.blocks[i].number; var name = result.data.blocks[i].name; /*var time=new Date(result.data.blocks[i].time).getTime();*/ var time = formatDuring(new Date().getTime() - new Date(result.data.blocks[i].time).getTime()); /*var time=formatDuring(new Date().getUTCMilliseconds()-new Date(result.data.blocks[i].time).getUTCMilliseconds());*/ var coinbase = result.data.blocks[i].coinbase; var subname; if (name.length > 10) { subname = name.substring(0, 10) + "..."; } else { subname = name; } $("#block"+i).append(number); $("#recentblocks").append("<tr><td><a href='block.html?number="+ number+"'>" + "" + number + "</a></td>" + "<td><a href='acount.html?coinbase=" + coinbase + "'>" + subname + "</td>" + "<td>" + time + "</td>" + "</tr>"); } }) $.getJSON(txurl, function (result) { var result = eval(result); lastnumber = result.data[result.data.length - 1].usd; }) </script> </html>
plugins/fed_2html/test/htmls/test.html
17173/FED
hahaha~~ asdfasdf <h1>adfa</h1> hello world@1358490485765
packages/theme-default/src/switch.css
paygle/elem-ui-ext
@charset "UTF-8"; @import "./common/var.css"; @component-namespace el { @b switch { display: inline-block; position: relative; font-size: var(--switch-font-size); line-height: var(--switch-height); height: var(--switch-height); vertical-align: middle; @when disabled { & .el-switch__core, & .el-switch__label { cursor: not-allowed; } } @e label { transition: .2s; position: absolute; size: var(--switch-width) var(--switch-height); left: 0; top: 0; display: inline-block; font-size: var(--switch-font-size); cursor: pointer; z-index: 2; @m left { i { left: 6px; } } @m right { i { right: 6px; } } & * { line-height: 1; top: 4px; position: absolute; font-size: var(--switch-font-size); display: inline-block; color: var(--color-white); } } @e input { display: none; &.allow-focus { z-index: 0; display: initial; position: absolute; left: 0; top: 0; outline: none; opacity: 0; &:focus { + .el-switch__core { box-shadow: 0 0 2px var(--switch-focus-border); } } } } @e core { margin: 0; display: inline-block; position: relative; size: var(--switch-width) var(--switch-height); border: 1px solid var(--switch-off-color); outline: none; border-radius: var(--switch-core-border-radius); box-sizing: border-box; background: var(--switch-off-color); cursor: pointer; transition: border-color .3s, background-color .3s; z-index: 1; & .el-switch__button { position: absolute 0 * * 0; border-radius: var(--border-radius-circle); transition: transform .3s; size: var(--switch-button-size); background-color: var(--color-white); } } @when checked { .el-switch__core { border-color: var(--switch-on-color); background-color: var(--switch-on-color); } } @when disabled { .el-switch__core { border-color: var(--switch-disabled-color) !important; background: var(--switch-disabled-color) !important; & span { background-color: var(--switch-disabled-text-color) !important; } & ~ .el-switch__label * { color: var(--switch-disabled-text-color) !important; } } } @modifier wide { .el-switch__label { &.el-switch__label--left { span { left: 10px; } } &.el-switch__label--right { span { right: 10px; } } } } & .label-fade-enter, & .label-fade-leave-active { opacity: 0; } } }
docs/namespaces/Moneybird.Mapper.html
youngguns-nl/moneybird_php_api
<!DOCTYPE html><html xmlns:date="http://exslt.org/dates-and-times" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>phpDocumentor » Moneybird\Mapper</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="../css/template.css" rel="stylesheet" media="all"> <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico"> <link rel="apple-touch-icon" href="../img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">phpDocumentor</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"> <li><a>Namespaces</a></li> <li><a href="../namespaces/Moneybird.html"><i class="icon-th"></i> Moneybird</a></li> <li><a href="../namespaces/global.html"><i class="icon-th"></i> global</a></li> </ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">622</span></a></li> <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <ul><li>todo  <span class="label label-info">1</span> </li></ul></a></li> <li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">0</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"> <div class="span4"> <div class="btn-group view pull-right" data-toggle="buttons-radio"> <button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button> </div> <ul class="side-nav nav nav-list"> <li class="nav-header"> <i class="icon-map-marker"></i> Namespaces</li> <li> <a href="../namespaces/Moneybird.Mapper.html" title="Mapper"><i class="icon-th"></i>Mapper</a><ul class="nav nav-list nav-namespaces"></ul> </li> </ul> </div> <div class="span8 namespace-contents"> <ul class="breadcrumb"> <li> <a href="../index.html"><i class="icon-th"></i></a><span class="divider">\</span> </li> <li><a href="../namespaces/Moneybird.html">Moneybird</a></li> <span class="divider">\</span><li class="active"><a href="../namespaces/Moneybird.Mapper.html">Mapper</a></li> </ul> <div class="namespace-indent"> <h3> <i class="icon-custom icon-class"></i> Classes and interfaces</h3> <a name="Mapable" id="Mapable"></a><div class="element ajax clickable interface" href="../classes/Moneybird.Mapper.Mapable.html"> <h1>Mapable<a href="../classes/Moneybird.Mapper.Mapable.html">¶</a> </h1> <p class="short_description">Mapables can be mapped</p> <div class="details collapse"></div> <a href="../classes/Moneybird.Mapper.Mapable.html" class="more">« More »</a> </div> <a name="Exception" id="Exception"></a><div class="element ajax clickable class" href="../classes/Moneybird.Mapper.Exception.html"> <h1>Exception<a href="../classes/Moneybird.Mapper.Exception.html">¶</a> </h1> <p class="short_description">General exception</p> <div class="details collapse"></div> <a href="../classes/Moneybird.Mapper.Exception.html" class="more">« More »</a> </div> </div> </div> </div> <div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a8</a> and<br> generated on 2013-07-12T22:19:08+02:00.<br></footer></div> </div> </body> </html>
vendor/mapbox/mapbox.js-2.4.0/docs/_posts/examples/v1.0.0/0100-01-01-geolocation.html
jackhummah/bootles
--- layout: example categories: example/v1.0.0 version: v1.0.0 title: Geolocation description: Finding the user's position tags: - ui --- <style> .ui-button { background:#3887BE; color:#FFF; display:block; position:absolute; top:50%;left:50%; width:160px; margin:-20px 0 0 -80px; z-index:100; text-align:center; padding:10px; border:1px solid rgba(0,0,0,0.4); border-radius:3px; } .ui-button:hover { background:#3074a4; color:#fff; } </style> <div id='map'></div> <a href='#' id='geolocate' class='ui-button'>Find me</a> <script> var geolocate = document.getElementById('geolocate'); var map = L.mapbox.map('map', 'mapbox.streets'); var myLayer = L.mapbox.featureLayer().addTo(map); // This uses the HTML5 geolocation API, which is available on // most mobile browsers and modern browsers, but not in Internet Explorer // // See this chart of compatibility for details: // http://caniuse.com/#feat=geolocation if (!navigator.geolocation) { geolocate.innerHTML = 'Geolocation is not available'; } else { geolocate.onclick = function (e) { e.preventDefault(); e.stopPropagation(); map.locate(); }; } // Once we've got a position, zoom and center the map // on it, and add a single marker. map.on('locationfound', function(e) { map.fitBounds(e.bounds); myLayer.setGeoJSON({ type: 'Feature', geometry: { type: 'Point', coordinates: [e.latlng.lng, e.latlng.lat] }, properties: { 'title': 'Here I am!', 'marker-color': '#ff8888', 'marker-symbol': 'star' } }); // And hide the geolocation button geolocate.parentNode.removeChild(geolocate); }); // If the user chooses not to allow their location // to be shared, display an error message. map.on('locationerror', function() { geolocate.innerHTML = 'Position could not be found'; }); </script>
docs/guide/versionplan.css
Morning-UI/morning-ui
.ver-canary { background: #f5ab27 !important; border-color: #f5ab27 !important; }
database/info/main/Y2O3.html
polyanskiy/refractiveindex.info-database
<!-- this file is part of refractiveindex.info database refractiveindex.info database is in the public domain copyright and related rights waived via CC0 1.0 --> <h1>Yttrium sesquioxide, Y<sub>2</sub>O<sub>3</sub></h1> <h2>Other names</h2> <ul> <liYttria</li> <li>Yttrium(III) oxide</li> <li>Diyttrium trioxide</li> <li>Yttrium oxide</li> </ul> <h2>External links</h2> <ul> <li><a href="https://en.wikipedia.org/wiki/Yttrium(III)_oxide">Yttrium(III) oxide - Wikipedia</a></li> <li><a href="https://www.webelements.com/compounds/yttrium/diyttrium_trioxide.html">Diyttrium trioxide - WebElements</a></li> </ul>
resources/public/css/date-picker.css
marklazz/notes-db
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */ /** * 1. Set default font family to sans-serif. * 2. Prevent iOS text size adjust after orientation change, without disabling * user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */ [hidden], template { display: none; } /* Links ========================================================================== */ /** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* Embedded content ========================================================================== */ /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 1em 40px; } /** * Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct `color` not being inherited in IE 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } .u-flex { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .u-flex-flow-row, .u-flex-row, .date-picker .dp-footer { flex-direction: row; -webkit-flex-flow: row; -moz-flex-flow: row; -ms-flex-flow: row; -o-flex-flow: row; flex-flow: row; flex-flow: row; box-orient: horizontal; flex-direction: row; box-orient: horizontal; } .u-flex-flow-column, .u-flex-column, .date-picker .dp-inner { flex-direction: column; -webkit-flex-flow: column; -moz-flex-flow: column; -ms-flex-flow: column; -o-flex-flow: column; flex-flow: column; flex-flow: column; box-orient: vertical; box-orient: vertical; } .u-flex-row, .date-picker .dp-footer { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .u-flex-column, .date-picker .dp-inner { display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; } .u-flex-centered { box-align: center; box-pack: center; align-items: center; } .u-inflexible, .u-flex-0 { -webkit-box-flex: 0; -moz-box-flex: 0; -ms-box-flex: 0; -ms-flex: 0; -webkit-flex: 0; flex: 0; flex-shrink: 1; flex-basis: 1; } .u-flex-1 { -webkit-box-flex: 1; -moz-box-flex: 1; -ms-box-flex: 1; -ms-flex: 1; -webkit-flex: 1; flex: 1; flex-shrink: 1; flex-basis: 1; } .u-flex-2 { -webkit-box-flex: 2; -moz-box-flex: 2; -ms-box-flex: 2; -ms-flex: 2; -webkit-flex: 2; flex: 2; flex-shrink: 1; flex-basis: 1; } .u-flex-3 { -webkit-box-flex: 3; -moz-box-flex: 3; -ms-box-flex: 3; -ms-flex: 3; -webkit-flex: 3; flex: 3; flex-shrink: 1; flex-basis: 1; } .u-flex-4 { -webkit-box-flex: 4; -moz-box-flex: 4; -ms-box-flex: 4; -ms-flex: 4; -webkit-flex: 4; flex: 4; flex-shrink: 1; flex-basis: 1; } .u-flex-5 { -webkit-box-flex: 5; -moz-box-flex: 5; -ms-box-flex: 5; -ms-flex: 5; -webkit-flex: 5; flex: 5; flex-shrink: 1; flex-basis: 1; } .u-flex-6 { -webkit-box-flex: 6; -moz-box-flex: 6; -ms-box-flex: 6; -ms-flex: 6; -webkit-flex: 6; flex: 6; flex-shrink: 1; flex-basis: 1; } .u-flex-7 { -webkit-box-flex: 7; -moz-box-flex: 7; -ms-box-flex: 7; -ms-flex: 7; -webkit-flex: 7; flex: 7; flex-shrink: 1; flex-basis: 1; } .u-flex-8 { -webkit-box-flex: 8; -moz-box-flex: 8; -ms-box-flex: 8; -ms-flex: 8; -webkit-flex: 8; flex: 8; flex-shrink: 1; flex-basis: 1; } .u-flex-9 { -webkit-box-flex: 9; -moz-box-flex: 9; -ms-box-flex: 9; -ms-flex: 9; -webkit-flex: 9; flex: 9; flex-shrink: 1; flex-basis: 1; } .u-flex-10 { -webkit-box-flex: 10; -moz-box-flex: 10; -ms-box-flex: 10; -ms-flex: 10; -webkit-flex: 10; flex: 10; flex-shrink: 1; flex-basis: 1; } .u-bold { font-weight: bold; } .u-nowrap { white-space: nowrap; } .u-nonav, .u-unselectable, .date-picker .dp-nav-view, .date-picker .dp-nav-cell, .date-picker .dp-week-day-name, .date-picker .dp-decade-view, .date-picker .dp-year-view, .date-picker .dp-month-view { touch-callout: none; } .u-unselectable, .date-picker .dp-nav-view, .date-picker .dp-nav-cell, .date-picker .dp-week-day-name, .date-picker .dp-decade-view, .date-picker .dp-year-view, .date-picker .dp-month-view { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .u-height-auto { height: auto; } .u-width-auto { width: auto; } .u-height-fill, .u-fill, html.u-app, html.u-app body { height: 100%; } .u-width-fill, .u-fill, html.u-app, html.u-app body { width: 100%; } .u-margin-auto { margin: auto; } .u-border-box { box-sizing: border-box; } .u-border-box * { box-sizing: border-box; } .u-ellipsis, .date-picker .dp-cell.dp-month, .date-picker .dp-nav-view, .date-picker .dp-nav-cell, .date-picker .dp-week-day-name { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .u-absolute { position: absolute; } .u-relative { position: relative; } html.u-app, html.u-app body { overflow: hidden; box-sizing: border-box; } html.u-app *, html.u-app body * { box-sizing: border-box; } .date-picker .dp-inner { width: 100%; height: 100%; -webkit-flex-flow: column; } .date-picker .dp-footer { -webkit-flex-flow: row; } .date-picker .dp-body { -webkit-box-flex: 1; -moz-box-flex: 1; -ms-box-flex: 1; -ms-flex: 1; -webkit-flex: 1; flex: 1; position: relative; } .date-picker .dp-body .dp-table { width: 100%; height: 100%; } .date-picker .dp-body .dp-month-view { position: absolute; transform: translate3d(0%, 0px, 0px); } .date-picker .dp-body .dp-month-view.dp-prev { left: -100%; } .date-picker .dp-body .dp-month-view.dp-next { left: 100%; } .date-picker .dp-body .dp-month-view .dp-week { display: table-row; list-style: none; } .date-picker .dp-nav-table, .date-picker .dp-body .dp-table { table-layout: fixed; } .date-picker .dp-nav-table { width: 100%; } .date-picker .dp-anim-target { transform: translate3d(0px, 0px, 0px); position: absolute; width: 100%; height: 100%; } .date-picker .dp-anim-target.dp-transition-prev { animation-name: prev-month-nav; } .date-picker .dp-anim-target.dp-transition-next { animation-name: next-month-nav; } .date-picker { overflow: hidden; font-size: 14px; background: #fff; width: 300px; height: 300px; } .date-picker, .date-picker * { box-sizing: border-box; } .date-picker .dp-cell { text-align: center; color: inherit; background: inherit; border: 1px solid #a8a8a8; cursor: pointer; } .date-picker .dp-cell.dp-prev, .date-picker .dp-cell.dp-next { color: #5c5c5c; background: inherit; } .date-picker .dp-cell.dp-in-range { background: #e2f0ff; } .date-picker .dp-cell.dp-disabled { cursor: default; opacity: 0.3; color: #5c5c5c; background: inherit; } .date-picker .dp-cell:hover { color: inherit; font-weight: inherit; background: #eee; } .date-picker .dp-cell.dp-value { color: #000; font-weight: bold; background: #eee; } .date-picker .dp-cell.dp-current { color: #2e99eb; background: inherit; } .date-picker .dp-cell.dp-in-range.dp-current, .date-picker .dp-cell.dp-in-range.dp-value { background: #e2f0ff; } .date-picker .dp-inner { border: 1px solid #a8a8a8; } .date-picker .dp-footer { padding: 3px; justify-content: center; -webkit-justify-content: center; flex-pack: center; -ms-flex-pack: center; border-top-width: 0px; } .date-picker .dp-footer .dp-footer-selected, .date-picker .dp-footer .dp-footer-today { padding: 5px 15px; border-width: 1px; cursor: pointer; } .date-picker .dp-body { overflow: hidden; } .date-picker .dp-anim-target { animation-duration: 200ms; } .date-picker .dp-body .dp-cell:first-child, .date-picker .dp-nav-table .dp-cell:first-child, .date-picker .dp-body .dp-cell:last-child, .date-picker .dp-nav-table .dp-cell:last-child { border-left-width: 0px; border-right-width: 0px; } .date-picker .dp-nav-table .dp-row:first-child, .date-picker .dp-body .dp-row:first-child { height: 30px; font-weight: bold; } .date-picker .dp-week-day-name { cursor: default; } .date-picker .dp-nav-view, .date-picker .dp-nav-cell { cursor: pointer; } .date-picker .dp-nav-cell { background: inherit; } .date-picker .dp-nav-cell:hover { background: #eee; } .date-picker .dp-nav-view { background: inherit; } .date-picker .dp-nav-view:hover { background: #eee; } .date-picker .dp-nav-table .dp-cell { border-top-width: 0px; border-bottom-width: 0px; } @-moz-keyframes prev-month-nav { to { transform: translate3d(100%, 0px, 0px); } } @-webkit-keyframes prev-month-nav { to { transform: translate3d(100%, 0px, 0px); } } @-o-keyframes prev-month-nav { to { transform: translate3d(100%, 0px, 0px); } } @keyframes prev-month-nav { to { transform: translate3d(100%, 0px, 0px); } } @-moz-keyframes next-month-nav { to { transform: translate3d(-100%, 0px, 0px); } } @-webkit-keyframes next-month-nav { to { transform: translate3d(-100%, 0px, 0px); } } @-o-keyframes next-month-nav { to { transform: translate3d(-100%, 0px, 0px); } } @keyframes next-month-nav { to { transform: translate3d(-100%, 0px, 0px); } }
code/languages/com.mbeddr.mpsutil/solutions/com.mbeddr.mpsutil.workflow/lib/smack/javadoc/org/jivesoftware/smackx/receipts/ReceiptReceivedListener.html
janosch715/mbeddr.core
<!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_45) on Sun Feb 09 14:11:58 CET 2014 --> <title>ReceiptReceivedListener (Smack 3.4.1-0cec571 Documentation)</title> <meta name="date" content="2014-02-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="ReceiptReceivedListener (Smack 3.4.1-0cec571 Documentation)"; } //--> </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 class="aboutLanguage"><em><b>Smack</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/jivesoftware/smackx/receipts/DeliveryReceiptRequest.Provider.html" title="class in org.jivesoftware.smackx.receipts"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/jivesoftware/smackx/receipts/ReceiptReceivedListener.html" target="_top">Frames</a></li> <li><a href="ReceiptReceivedListener.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</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">org.jivesoftware.smackx.receipts</div> <h2 title="Interface ReceiptReceivedListener" class="title">Interface ReceiptReceivedListener</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public interface <span class="strong">ReceiptReceivedListener</span></pre> <div class="block">Interface for received receipt notifications. Implement this and add a listener to get notified.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== 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">&nbsp;</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>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/jivesoftware/smackx/receipts/ReceiptReceivedListener.html#onReceiptReceived(java.lang.String, java.lang.String, java.lang.String)">onReceiptReceived</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fromJid, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toJid, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;receiptId)</code>&nbsp;</td> </tr> </table> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="onReceiptReceived(java.lang.String, java.lang.String, java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>onReceiptReceived</h4> <pre>void&nbsp;onReceiptReceived(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;fromJid, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toJid, <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;receiptId)</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 class="aboutLanguage"><em><b>Smack</b></em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/jivesoftware/smackx/receipts/DeliveryReceiptRequest.Provider.html" title="class in org.jivesoftware.smackx.receipts"><span class="strong">Prev Class</span></a></li> <li>Next Class</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/jivesoftware/smackx/receipts/ReceiptReceivedListener.html" target="_top">Frames</a></li> <li><a href="ReceiptReceivedListener.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><i>Copyright &copy; 2003-2007 Jive Software. </i></small></p> </body> </html>
data/html/rules/blondesandbrunettes.html
TrevorLowing/PyGames
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <title>PySol - Rules for Blondes and Brunettes</title> <meta name="license" content="Distributed under the terms of the GNU General Public License"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> </head> <body text="#000000" bgcolor="#F7F3FF" link="#0000FF" vlink="#660099" alink="#FF0000"> <img src="../images/pysollogo03.gif" alt=""> <br> <h1>Blondes and Brunettes</h1> <p> Terrace type. 2 decks. No redeal. <h3>Object</h3> <p> Move all cards to the foundations. <h3>Rules</h3> <p> <i>[To be written]</i> <p> <br> <a href="../glossary.html">Glossary</a> <br> <a href="../general_rules.html">General rules</a> <p> <a href="../index.html">Back to the index</a> </body> </html>
doc/call_trees_of_the_source_code/html/d3/d26/iterate__time__undoatt_8_f90.html
komatits/specfem3d_globe
<!-- custom-made header --> <!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.10"/> <title>SPECFEM3D_GLOBE: SPECFEM3D_GLOBE/src/specfem3D/iterate_time_undoatt.F90 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="../../navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../resize.js"></script> <script type="text/javascript" src="../../navtreedata.js"></script> <script type="text/javascript" src="../../navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </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> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="../../defaultstyle.css" rel="stylesheet" type="text/css" /> <link href="../../mystyle.css" rel="stylesheet" type="text/css"/> <!-- Loading Lato Font --> <link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic' 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;"> <!-- <td style="padding-left: 0.5em;"> --> <div id="projectname">SPECFEM3D_GLOBE </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <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&#160;Page</span></a></li> <li><a href="../../namespaces.html"><span>Modules</span></a></li> <li><a href="../../annotated.html"><span>Data&#160;Types&#160;List</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&#160;List</span></a></li> <li><a href="../../globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('d3/d26/iterate__time__undoatt_8_f90.html','../../');}); </script> <div id="doc-content"> <!-- 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 class="header"> <div class="summary"> <a href="#func-members">Functions/Subroutines</a> </div> <div class="headertitle"> <div class="title">iterate_time_undoatt.F90 File Reference</div> </div> </div><!--header--> <div class="contents"> <p><a href="../../d3/d26/iterate__time__undoatt_8_f90_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions/Subroutines</h2></td></tr> <tr class="memitem:ac69f6bf2bfb2c82a2d50a79925c40be8"><td class="memItemLeft" align="right" valign="top">subroutine&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90.html#ac69f6bf2bfb2c82a2d50a79925c40be8">iterate_time_undoatt</a> ()</td></tr> <tr class="separator:ac69f6bf2bfb2c82a2d50a79925c40be8"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a006047a0a17cbb8fcd5cebf19d595755"><td class="memItemLeft" align="right" valign="top">subroutine&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90.html#a006047a0a17cbb8fcd5cebf19d595755">it_compute_strain_att</a> ()</td></tr> <tr class="separator:a006047a0a17cbb8fcd5cebf19d595755"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aac4c797466da3a9107cf4dd21a5691d0"><td class="memItemLeft" align="right" valign="top">subroutine&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90.html#aac4c797466da3a9107cf4dd21a5691d0">it_compute_strain_att_backward</a> ()</td></tr> <tr class="separator:aac4c797466da3a9107cf4dd21a5691d0"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Function/Subroutine Documentation</h2> <a class="anchor" id="a006047a0a17cbb8fcd5cebf19d595755"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">subroutine it_compute_strain_att </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html#l00488">488</a> of file <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html">iterate_time_undoatt.F90</a>.</p> <p><div class="dynheader"> Here is the call graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_cgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_cgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_cgraph" id="d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_cgraph"> <area shape="rect" id="node2" href="../../df/d7e/compute__element__strain_8_f90.html#aab694b45ebabda5ea14671d1b1eb371f" title="compute_element_strain\l_att_dev" alt="" coords="203,5,371,47"/> <area shape="rect" id="node3" href="../../df/d7e/compute__element__strain_8_f90.html#a94d702d7beebb59fc1f1284062fbe3b0" title="compute_element_strain\l_att_nodev" alt="" coords="203,71,371,112"/> </map> </div> </p> <p><div class="dynheader"> Here is the caller graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_icgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_icgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_icgraph" id="d3/d26/iterate__time__undoatt_8_f90_a006047a0a17cbb8fcd5cebf19d595755_icgraph"> <area shape="rect" id="node2" href="../../d3/d26/iterate__time__undoatt_8_f90.html#ac69f6bf2bfb2c82a2d50a79925c40be8" title="iterate_time_undoatt" alt="" coords="203,5,347,32"/> </map> </div> </p> </div> </div> <a class="anchor" id="aac4c797466da3a9107cf4dd21a5691d0"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">subroutine it_compute_strain_att_backward </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html#l00585">585</a> of file <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html">iterate_time_undoatt.F90</a>.</p> <p><div class="dynheader"> Here is the call graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_cgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_cgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_cgraph" id="d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_cgraph"> <area shape="rect" id="node2" href="../../df/d7e/compute__element__strain_8_f90.html#aab694b45ebabda5ea14671d1b1eb371f" title="compute_element_strain\l_att_dev" alt="" coords="203,5,371,47"/> <area shape="rect" id="node3" href="../../df/d7e/compute__element__strain_8_f90.html#a94d702d7beebb59fc1f1284062fbe3b0" title="compute_element_strain\l_att_nodev" alt="" coords="203,71,371,112"/> </map> </div> </p> <p><div class="dynheader"> Here is the caller graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_icgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_icgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_icgraph" id="d3/d26/iterate__time__undoatt_8_f90_aac4c797466da3a9107cf4dd21a5691d0_icgraph"> <area shape="rect" id="node2" href="../../d3/d26/iterate__time__undoatt_8_f90.html#ac69f6bf2bfb2c82a2d50a79925c40be8" title="iterate_time_undoatt" alt="" coords="203,13,347,39"/> </map> </div> </p> </div> </div> <a class="anchor" id="ac69f6bf2bfb2c82a2d50a79925c40be8"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">subroutine iterate_time_undoatt </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html#l00031">31</a> of file <a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90_source.html">iterate_time_undoatt.F90</a>.</p> <p><div class="dynheader"> Here is the call graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_cgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_cgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_cgraph" id="d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_cgraph"> <area shape="rect" id="node2" href="../../d2/da2/iterate__time_8_f90.html#ad275f165c58f2b2a3ff0cf39de950f84" title="setup_exact_undoing\l_to_disk" alt="" coords="219,5,368,47"/> <area shape="rect" id="node3" href="../../d0/d1f/save__forward__arrays_8f90.html#aed1df211d59a4c595be58f0137a6aea4" title="save_forward_arrays\l_undoatt" alt="" coords="220,71,367,112"/> <area shape="rect" id="node4" href="../../d6/d4b/read__forward__arrays_8f90.html#aa0980d8f10836d463ddfb3ad25174d63" title="read_forward_arrays\l_undoatt" alt="" coords="221,136,366,177"/> <area shape="rect" id="node5" href="../../d3/d26/iterate__time__undoatt_8_f90.html#aac4c797466da3a9107cf4dd21a5691d0" title="it_compute_strain_att\l_backward" alt="" coords="219,201,368,243"/> <area shape="rect" id="node6" href="../../dc/dd8/check__stability_8f90.html#a386abed6c306e9d3afa5c1e40f9bf9ce" title="check_stability" alt="" coords="239,267,348,294"/> <area shape="rect" id="node7" href="../../d5/d0d/update__displacement___l_d_d_r_k_8f90.html#a002eab167021388245edb4e8154fd5fc" title="update_displ_lddrk" alt="" coords="227,318,360,345"/> <area shape="rect" id="node8" href="../../d2/dbc/update__displacement___newmark_8f90.html#a3b4dddd8f4c66156ced5e75d190811c2" title="update_displ_newmark" alt="" coords="214,369,373,395"/> <area shape="rect" id="node9" href="../../dd/de2/compute__forces__acoustic__calling__routine_8_f90.html#af3b3afdb3e02376437f47edb5f29c5d4" title="compute_forces_acoustic" alt="" coords="207,419,380,446"/> <area shape="rect" id="node10" href="../../d5/d71/compute__forces__viscoelastic__calling__routine_8_f90.html#ad861052a974f995b94bb0cab9ec41cca" title="compute_forces_viscoelastic" alt="" coords="197,470,389,497"/> <area shape="rect" id="node11" href="../../dd/dde/write__seismograms_8f90.html#a6ea5fef742d190f97b078fcfb1912d40" title="write_seismograms" alt="" coords="225,521,362,547"/> <area shape="rect" id="node12" href="../../de/d06/write__movie__output_8f90.html#af639f3e4c5c6672e58765b7b37088733" title="write_movie_output" alt="" coords="225,571,362,598"/> <area shape="rect" id="node13" href="../../d1/d52/noise__tomography_8f90.html#aeea6e75a2e4f9840ec675917ad726cfd" title="noise_save_surface\l_movie" alt="" coords="223,623,363,664"/> <area shape="rect" id="node14" href="../../d2/da2/iterate__time_8_f90.html#a6c652abfbc2868338173db8fd4409b02" title="it_update_vtkwindow" alt="" coords="221,689,366,715"/> <area shape="rect" id="node15" href="../../dc/dd8/check__stability_8f90.html#a0f0e7bd99e6ecb75d65335b4040d0eb1" title="check_stability_backward" alt="" coords="207,739,380,766"/> <area shape="rect" id="node16" href="../../d5/d0d/update__displacement___l_d_d_r_k_8f90.html#ae5df8b3b33f51742c8a8f07d0f1d6a4f" title="update_displ_lddrk\l_backward" alt="" coords="227,791,360,832"/> <area shape="rect" id="node17" href="../../d2/dbc/update__displacement___newmark_8f90.html#ad325484d61acc2b95777452c86be741c" title="update_displ_newmark\l_backward" alt="" coords="214,856,373,897"/> <area shape="rect" id="node18" href="../../dd/de2/compute__forces__acoustic__calling__routine_8_f90.html#aa19037d09ed18b0f2b28664dcb76b494" title="compute_forces_acoustic\l_backward" alt="" coords="207,921,380,963"/> <area shape="rect" id="node19" href="../../d5/d71/compute__forces__viscoelastic__calling__routine_8_f90.html#a128d40298a0bcc0f380b4b3fc322c32e" title="compute_forces_viscoelastic\l_backward" alt="" coords="197,987,389,1028"/> <area shape="rect" id="node20" href="../../d3/d26/iterate__time__undoatt_8_f90.html#a006047a0a17cbb8fcd5cebf19d595755" title="it_compute_strain_att" alt="" coords="219,1053,368,1079"/> <area shape="rect" id="node21" href="../../de/d77/compute__kernels_8_f90.html#a073ed135ad7506e0386fa8fa1ef6d9cf" title="compute_kernels" alt="" coords="231,1103,355,1130"/> <area shape="rect" id="node22" href="../../d2/da2/iterate__time_8_f90.html#a9e7686d128236c107f1e6bc6499173e5" title="finish_exact_undoing\l_to_disk" alt="" coords="220,1155,367,1196"/> <area shape="rect" id="node23" href="../../dc/dd8/check__stability_8f90.html#aaf954df1279374d250bff0cf22e3644d" title="print_elapsed_time" alt="" coords="226,1221,361,1247"/> <area shape="rect" id="node24" href="../../d2/da2/iterate__time_8_f90.html#ad37ae9acc9699798a9d6b5092c6151ec" title="it_transfer_from_gpu" alt="" coords="221,1271,366,1298"/> </map> </div> </p> <p><div class="dynheader"> Here is the caller graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="../../d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_icgraph.png" border="0" usemap="#d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_icgraph" alt=""/></div> <map name="d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_icgraph" id="d3/d26/iterate__time__undoatt_8_f90_ac69f6bf2bfb2c82a2d50a79925c40be8_icgraph"> <area shape="rect" id="node2" href="../../d3/d51/specfem3_d_8_f90.html#a0ec47524013a3bfc28246c397b9d5f1a" title="xspecfem3d" alt="" coords="197,5,291,32"/> </map> </div> </p> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- custom-made footer --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="../../dir_76fc807e71a78804243adb7d05973764.html">SPECFEM3D_GLOBE</a></li><li class="navelem"><a class="el" href="../../dir_3e3821fc19411950b1ac0b3a66489b15.html">src</a></li><li class="navelem"><a class="el" href="../../dir_9805279421f62dc2455161eac32743a8.html">specfem3D</a></li><li class="navelem"><a class="el" href="../../d3/d26/iterate__time__undoatt_8_f90.html">iterate_time_undoatt.F90</a></li> <li class="footer"> <!-- Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.8.10 --> doxygen for <a href="https://github.com/geodynamics/specfem3d_globe">SPECFEM3D_GLOBE</a> </li> </ul> </div> </body> </html>
boost_1_49_0/doc/html/boost/proto/context/callable_context.html
phra/802_21
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template callable_context</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="../../../proto/reference.html#header.boost.proto.context.callable_hpp" title="Header &lt;boost/proto/context/callable.hpp&gt;"> <link rel="prev" href="callable_eval.html" title="Struct template callable_eval"> <link rel="next" href="callable_context/eval.html" title="Struct template eval"> </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="callable_eval.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html#header.boost.proto.context.callable_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="callable_context/eval.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.proto.context.callable_context"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template callable_context</span></h2> <p>boost::proto::context::callable_context &#8212; An evaluation context adaptor that makes authoring a context a simple matter of writing function overloads, rather then writing template specializations.</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: &lt;<a class="link" href="../../../proto/reference.html#header.boost.proto.context.callable_hpp" title="Header &lt;boost/proto/context/callable.hpp&gt;">boost/proto/context/callable.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Context<span class="special">,</span> <span class="keyword">typename</span> DefaultCtx <span class="special">=</span> <a class="link" href="default_context.html" title="Struct default_context">proto::context::default_context</a><span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="callable_context.html" title="Struct template callable_context">callable_context</a> <span class="special">{</span> <span class="comment">// member classes/structs/unions</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <a class="link" href="../../../Expr.html" title="Concept Expr">Expr</a><span class="special">,</span> <span class="keyword">typename</span> ThisContext <span class="special">=</span> <span class="identifier">Context</span><span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="callable_context/eval.html" title="Struct template eval">eval</a> <span class="special">:</span> <span class="keyword"></span> <em class="replaceable"><code>see-below</code></em> <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="id2888903"></a><h2>Description</h2> <p> <code class="computeroutput">proto::callable_context&lt;&gt;</code> is a base class that implements the context protocol by passing fanned-out expression nodes to the derived context, making it easy to customize the handling of expression types by writing function overloads. Only those expression types needing special handling require explicit handling. All others are dispatched to a user-specified default context, <code class="computeroutput">DefaultCtx</code>. </p> <p> <code class="computeroutput">proto::callable_context&lt;&gt;</code> is defined simply as: </p> <p> </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Context</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">DefaultCtx</span> <span class="special">=</span> <span class="identifier">default_context</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">callable_context</span> <span class="special">{</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Expr</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">ThisContext</span> <span class="special">=</span> <span class="identifier">Context</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">eval</span> <span class="special">:</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">if_</span><span class="special">&lt;</span> <span class="identifier">is_expr_handled_</span><span class="special">&lt;</span><span class="identifier">Expr</span><span class="special">,</span> <span class="identifier">Context</span><span class="special">&gt;</span><span class="special">,</span> <span class="comment">// For exposition</span> <a class="link" href="callable_eval.html" title="Struct template callable_eval">proto::context::callable_eval</a><span class="special">&lt;</span><span class="identifier">Expr</span><span class="special">,</span> <span class="identifier">ThisContext</span><span class="special">&gt;</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">DefaultCtx</span><span class="special">::</span><span class="keyword">template</span> <span class="identifier">eval</span><span class="special">&lt;</span><span class="identifier">Expr</span><span class="special">,</span> <span class="identifier">Context</span><span class="special">&gt;</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <span class="special">{</span><span class="special">}</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre> <p> </p> <p> The Boolean metafunction <code class="computeroutput">is_expr_handled_&lt;&gt;</code> uses metaprogramming tricks to determine whether <code class="computeroutput">Context</code> has an overloaded function call operator that accepts the fanned-out constituents of an expression of type <code class="computeroutput">Expr</code>. If so, the handling of the expression is dispatched to <code class="computeroutput"><a class="link" href="callable_eval.html" title="Struct template callable_eval">proto::context::callable_eval&lt;&gt;</a></code>. If not, it is dispatched to the user-specified <code class="computeroutput">DefaultCtx</code>. </p> <p> <span class="bold"><strong>Example:</strong></span> </p> <p> </p> <pre class="programlisting"><span class="comment">// An evaluation context that increments all</span> <span class="comment">// integer terminals in-place.</span> <span class="keyword">struct</span> <span class="identifier">increment_ints</span> <span class="special">:</span> <a class="link" href="callable_context.html" title="Struct template callable_context">proto::context::callable_context</a><span class="special">&lt;</span> <span class="identifier">increment_ints</span> <span class="keyword">const</span> <span class="comment">// derived context</span> <a class="link" href="null_context.html" title="Struct null_context">proto::context::null_context</a> <span class="keyword">const</span> <span class="comment">// fall-back context</span> <span class="special">&gt;</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="keyword">void</span> <span class="identifier">result_type</span><span class="special">;</span> <span class="comment">// Handle int terminals here:</span> <span class="keyword">void</span> <span class="keyword">operator</span><span class="special">(</span><span class="special">)</span><span class="special">(</span><span class="identifier">proto</span><span class="special">::</span><span class="identifier">tag</span><span class="special">::</span><span class="identifier">terminal</span><span class="special">,</span> <span class="keyword">int</span> <span class="special">&amp;</span><span class="identifier">i</span><span class="special">)</span> <span class="keyword">const</span> <span class="special">{</span> <span class="special">++</span><span class="identifier">i</span><span class="special">;</span> <span class="special">}</span> <span class="special">}</span><span class="special">;</span></pre> <p> </p> <p> With <code class="computeroutput">increment_ints</code>, we can do the following: </p> <p> </p> <pre class="programlisting"><a class="link" href="../literal.html" title="Struct template literal">proto::literal</a><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;</span> <span class="identifier">i</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="identifier">j</span> <span class="special">=</span> <span class="number">10</span><span class="special">;</span> <span class="identifier">proto</span><span class="special">::</span><span class="identifier">eval</span><span class="special">(</span> <span class="identifier">i</span> <span class="special">-</span> <span class="identifier">j</span> <span class="special">*</span> <span class="number">3</span><span class="special">.</span><span class="number">14</span><span class="special">,</span> <span class="identifier">increment_ints</span><span class="special">(</span><span class="special">)</span> <span class="special">)</span><span class="special">;</span> <span class="identifier">assert</span><span class="special">(</span> <span class="identifier">i</span><span class="special">.</span><span class="identifier">get</span><span class="special">(</span><span class="special">)</span> <span class="special">==</span> <span class="number">1</span> <span class="special">&amp;&amp;</span> <span class="identifier">j</span><span class="special">.</span><span class="identifier">get</span><span class="special">(</span><span class="special">)</span> <span class="special">==</span> <span class="number">11</span> <span class="special">)</span><span class="special">;</span></pre> <p> </p> </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 &#169; 2008 Eric Niebler<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="callable_eval.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../proto/reference.html#header.boost.proto.context.callable_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="callable_context/eval.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
wp-content/plugins/iphorm-form-builder/js/uniform/themes/default/default.css
sabdev1/ljcdevsab
/* Uniform Theme: Uniform Default Version: 1.8 By: Josh Pyles License: MIT License --- For use with the Uniform plugin: http://uniformjs.com/ */ /* General settings */ .iphorm-uniform-theme-default div.selector, .iphorm-uniform-theme-default div.selector span, .iphorm-uniform-theme-default div.checker span, .iphorm-uniform-theme-default div.radio span, .iphorm-uniform-theme-default div.uploader, .iphorm-uniform-theme-default div.uploader span.action, .iphorm-uniform-theme-default div.button, .iphorm-uniform-theme-default div.button span { background-image: url("images/sprite.png"); background-repeat: no-repeat; -webkit-font-smoothing: antialiased; } .iphorm-uniform-theme-default div.selector, .iphorm-uniform-theme-default div.checker, .iphorm-uniform-theme-default div.button, .iphorm-uniform-theme-default div.radio, .iphorm-uniform-theme-default div.uploader { display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; vertical-align: middle; /* Keeping this as :focus to remove browser styles */ } .iphorm-uniform-theme-default div.selector:focus, .iphorm-uniform-theme-default div.checker:focus, .iphorm-uniform-theme-default div.button:focus, .iphorm-uniform-theme-default div.radio:focus, .iphorm-uniform-theme-default div.uploader:focus { outline: 0; } .iphorm-uniform-theme-default div.selector, .iphorm-uniform-theme-default div.selector *, .iphorm-uniform-theme-default div.radio, .iphorm-uniform-theme-default div.radio *, .iphorm-uniform-theme-default div.checker, .iphorm-uniform-theme-default div.checker *, .iphorm-uniform-theme-default div.uploader, .iphorm-uniform-theme-default div.uploader *, .iphorm-uniform-theme-default div.button, .iphorm-uniform-theme-default div.button * { margin: 0; padding: 0; } .iphorm-uniform-theme-default .highContrastDetect { background: url("images/bg-input.png") repeat-x 0 0; width: 0px; height: 0px; } /* Input & Textarea */ .iphorm-uniform-theme-default input.uniform-input, .iphorm-uniform-theme-default select.uniform-multiselect, .iphorm-uniform-theme-default textarea.uniform { padding: 3px; background: url("images/bg-input.png") repeat-x 0 0; outline: 0; } .iphorm-uniform-theme-default input.uniform-input.active, .iphorm-uniform-theme-default select.uniform-multiselect.active, .iphorm-uniform-theme-default textarea.uniform.active { background: url("images/bg-input-focus.png") repeat-x 0 0; } /* Remove default webkit and possible mozilla .search styles. * Keeping this as :active to remove browser styles */ .iphorm-uniform-theme-default div.checker input, .iphorm-uniform-theme-default input[type="search"], .iphorm-uniform-theme-default input[type="search"]:active { -moz-appearance: none; -webkit-appearance: none; } /* Select */ .iphorm-uniform-theme-default div.selector { background-position: 0 -130px; line-height: 26px; height: 26px; padding: 0 0 0 10px; position: relative; overflow: hidden; } .iphorm-uniform-theme-default div.selector span { text-overflow: ellipsis; display: block; overflow: hidden; white-space: nowrap; background-position: right 0; height: 26px; line-height: 26px; padding-right: 25px; cursor: pointer; width: 100%; display: block; } .iphorm-uniform-theme-default div.selector.fixedWidth { width: 190px; } .iphorm-uniform-theme-default div.selector.fixedWidth span { width: 155px; } .iphorm-uniform-theme-default div.selector select { opacity: 0; filter: alpha(opacity=0); -moz-opacity: 0; border: none; background: none; position: absolute; height: 22px; top: 2px; left: 0px; width: 100%; } .iphorm-uniform-theme-default div.selector.active { background-position: 0 -156px; } .iphorm-uniform-theme-default div.selector.active span { background-position: right -26px; } .iphorm-uniform-theme-default div.selector.hover, .iphorm-uniform-theme-default div.selector.focus { background-position: 0 -182px; } .iphorm-uniform-theme-default div.selector.hover span, .iphorm-uniform-theme-default div.selector.focus span { background-position: right -52px; } .iphorm-uniform-theme-default div.selector.hover.active, .iphorm-uniform-theme-default div.selector.focus.active { background-position: 0 -208px; } .iphorm-uniform-theme-default div.selector.hover.active span, .iphorm-uniform-theme-default div.selector.focus.active span { background-position: right -78px; } .iphorm-uniform-theme-default div.selector.disabled, .iphorm-uniform-theme-default div.selector.disabled.active { background-position: 0 -234px; } .iphorm-uniform-theme-default div.selector.disabled span, .iphorm-uniform-theme-default div.selector.disabled.active span { background-position: right -104px; } /* Checkbox */ .iphorm-uniform-theme-default div.checker { position: relative; } .iphorm-uniform-theme-default div.checker, .iphorm-uniform-theme-default div.checker span, .iphorm-uniform-theme-default div.checker input { width: 19px; height: 19px; } .iphorm-uniform-theme-default div.checker span { display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; text-align: center; background-position: 0 -260px; } .iphorm-uniform-theme-default div.checker span.checked { background-position: -76px -260px; } .iphorm-uniform-theme-default div.checker input { opacity: 0; filter: alpha(opacity=0); -moz-opacity: 0; border: none; background: none; display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; } .iphorm-uniform-theme-default div.checker.active span { background-position: -19px -260px; } .iphorm-uniform-theme-default div.checker.active span.checked { background-position: -95px -260px; } .iphorm-uniform-theme-default div.checker.hover span, .iphorm-uniform-theme-default div.checker.focus span { background-position: -38px -260px; } .iphorm-uniform-theme-default div.checker.hover span.checked, .iphorm-uniform-theme-default div.checker.focus span.checked { background-position: -114px -260px; } .iphorm-uniform-theme-default div.checker.hover.active span, .iphorm-uniform-theme-default div.checker.focus.active span { background-position: -57px -260px; } .iphorm-uniform-theme-default div.checker.hover.active span.checked, .iphorm-uniform-theme-default div.checker.focus.active span.checked { background-position: -133px -260px; } .iphorm-uniform-theme-default div.checker.disabled, .iphorm-uniform-theme-default div.checker.disabled.active { background-position: -152px -260px; } .iphorm-uniform-theme-default div.checker.disabled span.checked, .iphorm-uniform-theme-default div.checker.disabled.active span.checked { background-position: -171px -260px; } /* Radio */ .iphorm-uniform-theme-default div.radio { position: relative; } .iphorm-uniform-theme-default div.radio, .iphorm-uniform-theme-default div.radio span, .iphorm-uniform-theme-default div.radio input { width: 18px; height: 18px; } .iphorm-uniform-theme-default div.radio span { display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; text-align: center; background-position: 0 -279px; } .iphorm-uniform-theme-default div.radio span.checked { background-position: -72px -279px; } .iphorm-uniform-theme-default div.radio input { opacity: 0; filter: alpha(opacity=0); -moz-opacity: 0; border: none; background: none; display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; text-align: center; } .iphorm-uniform-theme-default div.radio.active span { background-position: -18px -18px -279px; } .iphorm-uniform-theme-default div.radio.active span.checked { background-position: -90px -279px; } .iphorm-uniform-theme-default div.radio.hover span, .iphorm-uniform-theme-default div.radio.focus span { background-position: -36px -36px -279px; } .iphorm-uniform-theme-default div.radio.hover span.checked, .iphorm-uniform-theme-default div.radio.focus span.checked { background-position: -108px -279px; } .iphorm-uniform-theme-default div.radio.hover.active span, .iphorm-uniform-theme-default div.radio.focus.active span { background-position: -54px -279px; } .iphorm-uniform-theme-default div.radio.hover.active span.checked, .iphorm-uniform-theme-default div.radio.focus.active span.checked { background-position: -126px -279px; } .iphorm-uniform-theme-default div.radio.disabled span, .iphorm-uniform-theme-default div.radio.disabled.active span { background-position: -144px -279px; } .iphorm-uniform-theme-default div.radio.disabled span.checked, .iphorm-uniform-theme-default div.radio.disabled.active span.checked { background-position: -162px -279px; } /* Uploader */ .iphorm-uniform-theme-default div.uploader { background-position: 0 -297px; height: 28px; width: 190px; cursor: pointer; position: relative; overflow: hidden; } .iphorm-uniform-theme-default div.uploader span.action { background-position: right -409px; height: 28px; line-height: 28px; width: 82px; text-align: center; float: left; display: inline; overflow: hidden; cursor: pointer; } .iphorm-uniform-theme-default div.uploader span.filename { text-overflow: ellipsis; display: block; overflow: hidden; white-space: nowrap; float: left; cursor: default; height: 24px; margin: 2px 0 2px 2px; line-height: 24px; width: 85px; padding: 0 10px; } .iphorm-uniform-theme-default div.uploader input { opacity: 0; filter: alpha(opacity=0); -moz-opacity: 0; border: none; background: none; position: absolute; top: 0; right: 0; float: right; cursor: default; width: 100%; height: 100%; } .iphorm-uniform-theme-default div.uploader.active span.action { background-position: right -465px; } .iphorm-uniform-theme-default div.uploader.hover, .iphorm-uniform-theme-default div.uploader.focus { background-position: 0 -353px; } .iphorm-uniform-theme-default div.uploader.hover span.action, .iphorm-uniform-theme-default div.uploader.focus span.action { background-position: right -437px; } .iphorm-uniform-theme-default div.uploader.hover.active span.action, .iphorm-uniform-theme-default div.uploader.focus.active span.action { background-position: right -493px; } .iphorm-uniform-theme-default div.uploader.disabled, .iphorm-uniform-theme-default div.uploader.disabled.active { background-position: 0 -325px; } .iphorm-uniform-theme-default div.uploader.disabled span.action, .iphorm-uniform-theme-default div.uploader.disabled.active span.action { background-position: right -381px; } /* Buttons */ .iphorm-uniform-theme-default div.button { background-position: 0 -641px; height: 30px; cursor: pointer; position: relative; /* Keep buttons barely visible so they can get focus */ } .iphorm-uniform-theme-default div.button a, .iphorm-uniform-theme-default div.button button, .iphorm-uniform-theme-default div.button input { opacity: 0.01; filter: alpha(opacity=1); -moz-opacity: 0.01; display: block; top: 0; left: 0; right: 0; bottom: 0; position: absolute; } .iphorm-uniform-theme-default div.button span { display: -moz-inline-box; display: inline-block; *display: inline; zoom: 1; line-height: 22px; text-align: center; background-position: right -521px; height: 22px; margin-left: 13px; padding: 8px 15px 0 2px; } .iphorm-uniform-theme-default div.button.active { background-position: 0 -671px; } .iphorm-uniform-theme-default div.button.active span { background-position: right -551px; cursor: default; } .iphorm-uniform-theme-default div.button.hover, .iphorm-uniform-theme-default div.button.focus { background-position: 0 -701px; } .iphorm-uniform-theme-default div.button.hover span, .iphorm-uniform-theme-default div.button.focus span { background-position: right -581px; } .iphorm-uniform-theme-default div.button.disabled, .iphorm-uniform-theme-default div.button.disabled.active { background-position: 0 -731px; } .iphorm-uniform-theme-default div.button.disabled span, .iphorm-uniform-theme-default div.button.disabled.active span { background-position: right -611px; cursor: default; } /* INPUT & TEXTAREA */ .iphorm-uniform-theme-default input.uniform-input, .iphorm-uniform-theme-default select.uniform-multiselect, .iphorm-uniform-theme-default textarea.uniform { font-size: 12px; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-weight: normal; color: #777; border-top: solid 1px #aaaaaa; border-left: solid 1px #aaaaaa; border-bottom: solid 1px #cccccc; border-right: solid 1px #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .iphorm-uniform-theme-default input.uniform-input.hover, .iphorm-uniform-theme-default input.uniform-input.focus, .iphorm-uniform-theme-default select.uniform-multiselect.hover, .iphorm-uniform-theme-default select.uniform-multiselect.focus, .iphorm-uniform-theme-default textarea.uniform.hover, .iphorm-uniform-theme-default textarea.uniform.focus { -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); border-color: #999; } /* PRESENTATION */ /* Buttons */ .iphorm-uniform-theme-default div.button span { font-weight: bold; font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; } .iphorm-uniform-theme-default div.button.hover span, .iphorm-uniform-theme-default div.button.focus span { color: #555; } .iphorm-uniform-theme-default div.button.disabled span, .iphorm-uniform-theme-default div.button.disabled.active span { color: #bbb; } /* Select */ .iphorm-uniform-theme-default div.selector { font-size: 12px; } .iphorm-uniform-theme-default div.selector span { color: #666; text-shadow: 0 1px 0 white; } .iphorm-uniform-theme-default div.selector select { font-family: "Helvetica Neue", Arial, Helvetica, sans-serif; font-size: 12px; } .iphorm-uniform-theme-default div.selector.disabled span, .iphorm-uniform-theme-default div.selector.disabled.active span { color: #bbb; } /* Checker */ .iphorm-uniform-theme-default div.checker { margin-right: 5px; } /* Radio */ .iphorm-uniform-theme-default div.radio { margin-right: 3px; } /* Uploader */ .iphorm-uniform-theme-default div.uploader span.action { text-shadow: white 0px 1px 0px; background-color: #fff; font-size: 11px; font-weight: bold; } .iphorm-uniform-theme-default div.uploader span.filename { color: #777; border-right: solid 1px #bbbbbb; font-size: 11px; } .iphorm-uniform-theme-default div.uploader.disabled span.action, .iphorm-uniform-theme-default div.uploader.disabled.active span.action { color: #aaa; } .iphorm-uniform-theme-default div.uploader.disabled span.filename, .iphorm-uniform-theme-default div.uploader.disabled.active span.filename { border-color: #ddd; color: #aaa; } .iphorm-uniform-theme-default input.uniform-input, .iphorm-uniform-theme-default input.uniform-input:focus { background-color: #fff; }
tags/ArrayList/index.html
tsinux/tsinux.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="听风行" /> <title>标签: ArrayList | 听风行</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="keywords" content="听风行,听风行博客,IT技术分享,TingBrowser,TensorFlow,树莓派,Linux,RaspberryPi" /> <meta name="description" content="虽千万人吾往矣"> <script src="//cdn.jsdelivr.net/npm/leancloud-storage@3.11.1/dist/av-min.js" async></script> <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script> <script src="//unpkg.com/valine/dist/Valine.min.js" async></script> <script> // theme-ad's config script // it can be used in every script window.AD_CONFIG = { leancloud: {"appid":"JUB4uWwzKVKwbNzwRvkxgw9F-gzGzoHsz","appkey":"tLtzj0dg7LQTGu9dEY57RYef","comment":true,"count":true}, welcome: {"enable":true,"interval":30}, start_time: "2015-07-01", passwords: [], is_post: false, lock: false, author: "听风行", share: {"twitter":true,"facebook":true,"weibo":true,"qq":true,"wechat":true}, mathjax: true, page_type: "", root: "/" }; </script> <script src="/vendor/sha256.min.js"></script> <script src="/js/auth.js"></script> <script src="/js/index.js"></script> <script src="/vendor/qrcode.min.js"></script> <link rel="icon" href="/images/favicon.ico"> <link rel="apple-touch-icon" href="/images/favicon.ico"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" href="/css/index.css"> <link rel="stylesheet" href="/styles/components/highlight/highlight.css"> <meta name="generator" content="Hexo 5.2.0"></head> <body> <header class="site-header"> <div class="site-header-brand"> <span class="site-header-brand-title"> <a href="/">听风行</a> </span> <span class="site-header-brand-motto"> | 虽千万人吾往矣</span> </div> <div class="site-header-right"> <nav class="site-header-navigation"> <a href="/" target="_self">首页</a> <a href="/archives/" target="_self">归档</a> <a href="/tags/" target="_self">标签</a> <a href="/categories/" target="_self">分类</a> <a href="/friends/" target="_self">友链</a> <a href="/about/" target="_self">关于</a> </nav> <div class="site-header-btn"> <a href="https://github.com/yuolvv/" target="_blank" id="site-github"> <i class="fa fa-github-alt"></i> </a> <a href="javascript:void(0);" id="site-search"> <i class="fa fa-search"></i> </a> <a href="javascript:void(0);" id="site-nav-btn"> <i class="fa fa-ellipsis-v"></i> </a> </div> </div> </header> <nav class="table-content" id="site-nav"> <div class="table-content-title"> <span>导航</span> </div> <div class="table-content-main"> <ol class="toc"> <li class="toc-item"> <a href="/" target="_self"> 首页 </a> </li> <li class="toc-item"> <a href="/archives/" target="_self"> 归档 </a> </li> <li class="toc-item"> <a href="/tags/" target="_self"> 标签 </a> </li> <li class="toc-item"> <a href="/categories/" target="_self"> 分类 </a> </li> <li class="toc-item"> <a href="/friends/" target="_self"> 友链 </a> </li> <li class="toc-item"> <a href="/about/" target="_self"> 关于 </a> </li> </ol> </div> </nav> <div id="site-process"></div> <main> <div class="timeline"> <h2 class="timeline-title">标签: ArrayList</h2> <h3 class="timeline-subtitle">2019</h3> <div class="timeline-item"> <time>2019-01-01</time> <a target="_self" href="/posts/2019-01-01-ArrayList/">ArrayList 源码分析</a> </div> </div> </main> <div class="site-footer-wrapper"> <footer class="site-footer"> <div class="site-footer-col"> <h5 class="site-footer-title">友链推荐</h5> <span class="site-footer-item"> <a href="https://www.iyu.pub" target="_blank">听风行官网</a> </span> <span class="site-footer-item"> <a href="https://browser.iyu.pub" target="_blank">TingBrowser</a> </span> <span class="site-footer-item"> <a href="https://www.zhyui.com" target="_blank">Timogal</a> </span> <span class="site-footer-item"> <a href="http://www.sqliu.cn" target="_blank">桥帮主</a> </span> </div> <div class="site-footer-col"> <h5 class="site-footer-title">服务器推荐</h5> <span class="site-footer-item"> <a href="https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=5e3lfzbh" target="_blank">阿里云服务器</a> </span> <span class="site-footer-item"> <a href="https://cloud.tencent.com/redirect.php?redirect=1001&cps_key=4a5ddee5a29f458f6de46e4f27bc904e&from=console" target="_blank">腾讯云服务器</a> </span> <span class="site-footer-item"> <a href="https://cloud.baidu.com/campaign/partner/index.html?teamCode=GC6E98UL" target="_blank">百度云服务器</a> </span> </div> <div class="site-footer-col"> <h5 class="site-footer-title">社交の平台</h5> <span class="site-footer-item"> <a href="https://twitter.com/tingfengxing" target="_blank">Twitter</a> </span> <span class="site-footer-item"> <a href="https://www.facebook.com/tingfengxing" target="_blank">Facebook</a> </span> </div> <div class="site-footer-info"> <i class="fa fa-clock-o"></i> 本站已稳定运行<span id="site-time"></span> </div> <div class="site-footer-info"> <i class="fa fa-paw"></i> 您是本站第 <span id="site-count"></span> 位访客 </div> <div class="site-footer-info"> <i class="fa fa-at"></i> <a href="mailto:Email: 0@iyu.pub">Email: 0@iyu.pub </div> <div class="site-footer-info"> <i class="fa fa-copyright"></i> 2015~2020 <a href="https://blog.iyu.pub" target="_blank">https://blog.iyu.pub</a>. Created by <a href="https://177.im/" target="_blank">听风行</a>. All rights reserved. </div> </footer> </div> <div id="site-layer" style="display:none;"> <div class="site-layer-content"> <div class="site-layer-header"> <span class="site-layer-header-title" id="site-layer-title"></span> <i class="fa fa-close" id="site-layer-close"></i> </div> <div class="site-layer-body" id="site-layer-container"> <div class="site-layer-input" id="site-layer-search" style="display: none;"> <div class="site-layer-input-choose"> <a href="javascript:void(0);" title="Change Search Engine">Google</a> </div> <input type="text"> <i class="fa fa-search"></i> </div> <div class="site-layer-reward" id="site-layer-reward" style="display: none;"> <div> <img src="/images/wechat.png" alt="WeChat"> <p>WeChat</p> </div> <div> <img src="/images/alipay.png" alt="AliPay"> <p>AliPay</p> </div> </div> <div id="site-layer-welcome" style="display:none;"></div> </div> </div> </div> <div class="bottom-bar"> <div class="bottom-bar-left"> <a href="javascript:void(0);" data-enable="false"> <i class="fa fa-arrow-left"></i> </a> <a href="javascript:void(0);" data-enable="false"> <i class="fa fa-arrow-right"></i> </a> </div> <div class="bottom-bar-right"> <a href="javascript:void(0);" data-enable="false" id="site-toc-show-btn"> <i class="fa fa-bars"></i> </a> <a href="javascript:void(0);" data-enable="false"> <i class="fa fa-commenting"></i> </a> <a href="javascript:void(0);" id="site-toggle-share-btn"> <i class="fa fa-share-alt"></i> </a> <a href="javascript:void(0);" id="site-reward"> <i class="fa fa-thumbs-up"></i> </a> <a href="javascript:void(0);" id="back-top-btn"> <i class="fa fa-chevron-up"></i> </a> </div> </div> <div id="share-btn"> <a id="share-btn-twitter" href="javascript:void(0);" target="_blank"> <i class="fa fa-twitter"></i> </a> <a id="share-btn-facebook" href="javascript:void(0);" target="_blank"> <i class="fa fa-facebook"></i> </a> <a id="share-btn-weibo" href="javascript:void(0);" target="_blank"> <i class="fa fa-weibo"></i> </a> <a id="share-btn-qq" href="javascript:void(0);" target="_blank"> <i class="fa fa-qq"></i> </a> <a id="share-btn-wechat" href="javascript:void(0);" target="_blank"> <i class="fa fa-wechat"></i> </a> </div> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-88629664-2"></script> <script async> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-88629664-2'); </script> <script async> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> <script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "2133ab6ff866479db3e4979524888b83"}'></script> </body> </html>
libraries/soundmanager/demo/page-player/basic.html
castillo8811/informe24
<!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" lang="en" xml:lang="en"> <head> <title>SoundManager 2 Demo: Play MP3 links on a page, "page as playlist" style</title> <style type="text/css"> /* ------------------------------------------------------------- In-page demo CSS - see external CSS for actual relevant stuff. -------------------------------------------------------------- */ #soundmanager-debug { /* SM2 debug container (optional, makes debug more useable) */ position:absolute;position:fixed;*position:absolute;bottom:10px;right:10px;width:50em;height:18em;overflow:auto;background:#fff;margin:1em;padding:1em;border:1px solid #999;font-family:"lucida console",verdana,tahoma,"sans serif";font-size:x-small;line-height:1.5em;opacity:0.9;filter:alpha(opacity=90);z-index:99; } body { font:75% normal verdana,arial,tahoma,"sans serif"; } </style> <link rel="stylesheet" type="text/css" href="css/page-player.css" /> <!-- soundManager.useFlashBlock: related CSS --> <link rel="stylesheet" type="text/css" href="../flashblock/flashblock.css" /> <script type="text/javascript" src="../../script/soundmanager2.js"></script> <script type="text/javascript" src="script/page-player.js"></script> <script type="text/javascript"> soundManager.setup({ url: '../../swf/', html5PollingInterval: 50 }); // demo only.. function setTheme(sTheme) { var o = document.getElementsByTagName('ul')[0]; o.className = 'playlist'+(sTheme?' '+sTheme:''); return false; } </script> </head> <body> <div> <h1><a href="http://www.schillmania.com/projects/soundmanager2/" title="Play a page of mp3s with javascript via SoundManager 2">SoundManager 2</a> / page as a playlist, basic template</h1> <div id="sm2-container"> <!-- SM2 flash movie goes here --> </div> <ul class="playlist"> <li><a href="../_mp3/rain.mp3">Rain</a></li> <li><a href="../_mp3/going_outside.mp3">Going Outside</a></li> <li><a href="../_mp3/office_lobby.mp3">Office Lobby</a></li> <li><a href="../_mp3/walking.mp3">Walking</a></li> <li><a href="http://freshly-ground.com/data/audio/mpc/20060812%20-%20Groove.mp3" title="Dr. John Groove">Schill - Dr. John Groove</a></li> <!-- files from the web (note that ID3 and waveformData information will *not* load from remote domains without permission, due to Flash security restrictions) --> <li><a href="http://www.freshly-ground.com/misc/music/carl-3-barlp.mp3">Barrlping with Carl (featureblend.com)</a></li> <li><a href="http://www.freshly-ground.com/data/audio/binaural/Mak.mp3">Angry cow sound?</a></li> <li><a href="http://www.freshly-ground.com/data/audio/binaural/Things that open, close and roll.mp3">Things that open, close and roll</a></li> <li><a href="http://www.freshly-ground.com/data/audio/binaural/A%20Trip%20to%20the%20Basement%20Garage.mp3">A Trip To The Basement Garage</a></li> </ul> <p>For alternate themes, add the class to the playlist UL - eg. <a href="#" onclick="return setTheme('dark')">&lt;ul class="playlist dark"&gt;</a> or <a href="#" onclick="return setTheme('bubblegum')">&lt;ul class="playlist bubblegum"&gt;</a>; the base default is <a href="#" onclick="return setTheme()">&lt;ul class="playlist"&gt;</a>.</p> <p>A reminder that if loading from the local filesystem, Flash will deny access to remote (network/internet) URLs by default unless whitelisted via the <a href="http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html">Flash Player Global Security Settings Page</a>. Some URLs in this example are remote to demonstrate this.</p> <p>Note that by default, the Flash 8 version is used and therefore Flash 9-only features such as the VU meter, waveform etc. are not available. Refer to the main "page player" demo for configuration examples, or view the source of page-player.js for the configuration object (similar to that used in SoundManager 2 itself.)</p> <p><a href="http://www.schillmania.com/projects/soundmanager2/" title="Javascript MP3 sound player API">SoundManager 2 project</a></p> </body> </html>
wp-content/plugins/envira-gallery-lite/assets/css/editor.css
sstetsurin/wp-school
.envira-gallery-choose-gallery,.envira-albums-choose-album{padding-left:.4em}.envira-gallery-choose-gallery span.envira-media-icon,.envira-albums-choose-album span.envira-media-icon{background:url(images/menu-icon.png) transparent no-repeat scroll 0 0;width:16px;height:16px;display:inline-block;vertical-align:text-top}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx){#envira-media-modal-button .envira-media-icon[style]{background-image:url(images/menu-icon@2x.png) !important;background-size:16px 16px !important}}
MediaBrowser.WebDashboard/dashboard-ui/songs.html
hamstercat/Emby
<!DOCTYPE html> <html> <head> <title>${TitleMediaBrowser}</title> </head> <body> <div id="songsPage" data-role="page" class="page libraryPage"> <div class="libraryViewNav scopedLibraryViewNav"> <a href="musicrecommended.html">${TabSuggested}</a> <a href="#" class="ui-btn-active">${TabSongs}</a> <a href="musicalbums.html">${TabAlbums}</a> <a href="musicalbumartists.html">${TabAlbumArtists}</a> <a href="musicartists.html">${TabArtists}</a> <a href="musicgenres.html">${TabGenres}</a> <a href="musicvideos.html">${TabMusicVideos}</a> </div> <div data-role="content"> <div class="viewSettings"> <div class="listTopPaging"> </div> </div> <div id="items" class="itemsContainer" style="max-width:1100px;margin: 0 auto;"></div> </div> <div data-role="panel" class="viewPanel" data-theme="a" data-position="right" data-display="overlay" data-position-fixed="true"> <form> <div data-role="controlgroup" data-type="horizontal" data-mini="true" class="viewPanelTabs"> <a href="#" data-role="button" class="viewTabButton" data-tab="tabView">${TabView}</a> <a href="#" data-role="button" class="viewTabButton" data-tab="tabSort">${TabSort}</a> <a href="#" data-role="button" class="viewTabButton" data-tab="tabFilter">${TabFilter}</a> </div> <div class="tabView viewTab"> <div> <label for="selectPageSize">${LabelPageSize}</label> <select id="selectPageSize"></select> </div> </div> <div class="tabFilter viewTab"> <fieldset data-role="controlgroup"> <legend>${HeaderFilters}</legend> <input class="chkStandardFilter" type="checkbox" name="chkPlayed" id="chkPlayed" data-filter="IsPlayed" data-mini="true"> <label for="chkPlayed">${OptionPlayed}</label> <input class="chkStandardFilter" type="checkbox" name="chkUnplayed" id="chkUnplayed" data-filter="IsUnPlayed" data-mini="true"> <label for="chkUnplayed">${OptionUnplayed}</label> <input class="chkStandardFilter" type="checkbox" name="chkIsFavorite" id="chkIsFavorite" data-filter="IsFavorite" data-mini="true"> <label for="chkIsFavorite">${OptionFavorite}</label> <input class="chkStandardFilter" type="checkbox" name="chkLikes" id="chkLikes" data-filter="Likes" data-mini="true"> <label for="chkLikes">${OptionLikes}</label> <input class="chkStandardFilter" type="checkbox" name="chkDislikes" id="chkDislikes" data-filter="Dislikes" data-mini="true"> <label for="chkDislikes">${OptionDislikes}</label> </fieldset> <br /> <div data-role="collapsible" data-collapsed="true" data-mini="true" class="genreFilters"> <h2>${HeaderGenres}</h2> <div class="filterOptions"> </div> </div> <div data-role="collapsible" data-collapsed="true" data-mini="true" class="officialRatingFilters"> <h2>${HeaderParentalRatings}</h2> <div class="filterOptions"> </div> </div> <div data-role="collapsible" data-collapsed="true" data-mini="true" class="tagFilters"> <h2>${HeaderTags}</h2> <div class="filterOptions"> </div> </div> <div data-role="collapsible" data-collapsed="true" data-mini="true" class="yearFilters"> <h2>${HeaderYears}</h2> <div class="filterOptions"> </div> </div> </div> <div class="tabSort viewTab"> <fieldset data-role="controlgroup"> <legend> ${HeaderSortBy} </legend> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioName" value="on" checked="checked" data-sortby="Name" data-mini="true"> <label for="radioName">${OptionTrackName}</label> <input class="radioSortBy defaultSort" type="radio" name="radioSortBy" id="radioAlbum" value="on" checked="checked" data-sortby="Album,SortName" data-mini="true"> <label for="radioAlbum">${OptionAlbum}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioAlbumArtist" value="on" data-sortby="AlbumArtist,Album,SortName" data-mini="true"> <label for="radioAlbumArtist">${OptionAlbumArtist}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioArtist" value="on" data-sortby="Artist,Album,SortName" data-mini="true"> <label for="radioArtist">${OptionArtist}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioDateCreated" value="off" data-sortby="DateCreated,AlbumArtist,Album,SortName" data-mini="true"> <label for="radioDateCreated">${OptionDateAdded}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioDatePlayed" value="off" data-sortby="DatePlayed,AlbumArtist,Album,SortName" data-mini="true"> <label for="radioDatePlayed">${OptionDatePlayed}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioPlayCount" value="off" data-sortby="PlayCount,AlbumArtist,Album,SortName" data-mini="true"> <label for="radioPlayCount">${OptionPlayCount}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioPremiereDate" value="off" data-sortby="PremiereDate,AlbumArtist,Album,SortName" data-mini="true"> <label for="radioPremiereDate">${OptionReleaseDate}</label> <input class="radioSortBy" type="radio" name="radioSortBy" id="radioRuntime" value="off" data-sortby="Runtime,AlbumArtist,Album,SortName" data-mini="true"> <label for="radioRuntime">${OptionRuntime}</label> </fieldset> <fieldset data-role="controlgroup"> <legend> ${HeaderSortOrder} </legend> <input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioAscending" value="on" checked="checked" data-sortorder="Ascending" data-mini="true"> <label for="radioAscending">${OptionAscending}</label> <input class="radioSortOrder" type="radio" name="radioSortOrder" id="radioDescending" value="off" data-sortorder="Descending" data-mini="true"> <label for="radioDescending">${OptionDescending}</label> </fieldset> </div> </form> </div> </div> </body> </html>
sites/all/libraries/extjs/3.1.0/docs/source/CompositeElement.html
alibama/rapid-prototyping-ecommerce-drupal
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> </head> <body onload="prettyPrint();"> <pre class="prettyprint lang-js"><div id="cls-Ext.CompositeElement"></div>/** * @class Ext.CompositeElement * @extends Ext.CompositeElementLite * <p>This class encapsulates a <i>collection</i> of DOM elements, providing methods to filter * members, or to perform collective actions upon the whole set.</p> * <p>Although they are not listed, this class supports all of the methods of {@link Ext.Element} and * {@link Ext.Fx}. The methods from these classes will be performed on all the elements in this collection.</p> * <p>All methods return <i>this</i> and can be chained.</p> * Usage: <pre><code> var els = Ext.select("#some-el div.some-class", true); // or select directly from an existing element var el = Ext.get('some-el'); el.select('div.some-class', true); els.setWidth(100); // all elements become 100 width els.hide(true); // all elements fade out and hide // or els.setWidth(100).hide(true); </code></pre> */ Ext.CompositeElement = function(els, root){ this.elements = []; this.add(els, root); }; Ext.extend(Ext.CompositeElement, Ext.CompositeElementLite, { // private getElement : function(el){ // In this case just return it, since we already have a reference to it return el; }, // private transformElement : function(el){ return Ext.get(el); } /** * Adds elements to this composite. * @param {String/Array} els A string CSS selector, an array of elements or an element * @return {CompositeElement} this */ /** * Returns the Element object at the specified index * @param {Number} index * @return {Ext.Element} */ <div id="method-Ext.CompositeElement-"></div>/** * Iterates each <code>element</code> in this <code>composite</code> * calling the supplied function using {@link Ext#each}. * @param {Function} fn The function to be called with each * <code>element</code>. If the supplied function returns <tt>false</tt>, * iteration stops. This function is called with the following arguments: * <div class="mdetail-params"><ul> * <li><code>element</code> : <i>Ext.Element</i><div class="sub-desc">The element at the current <code>index</code> * in the <code>composite</code></div></li> * <li><code>composite</code> : <i>Object</i> <div class="sub-desc">This composite.</div></li> * <li><code>index</code> : <i>Number</i> <div class="sub-desc">The current index within the <code>composite</code> </div></li> * </ul></div> * @param {Object} scope (optional) The scope (<code><this</code> reference) in which the specified function is executed. * Defaults to the <code>element</code> at the current <code>index</code> * within the composite. * @return {CompositeElement} this */ }); /** * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or * {@link Ext.CompositeElementLite CompositeElementLite} object. * @param {String/Array} selector The CSS selector or an array of elements * @param {Boolean} unique (optional) true to create a unique Ext.Element for each element (defaults to a shared flyweight object) * @param {HTMLElement/String} root (optional) The root element of the query or id of the root * @return {CompositeElementLite/CompositeElement} * @member Ext.Element * @method select */ Ext.Element.select = function(selector, unique, root){ var els; if(typeof selector == "string"){ els = Ext.Element.selectorFunction(selector, root); }else if(selector.length !== undefined){ els = selector; }else{ throw "Invalid selector"; } return (unique === true) ? new Ext.CompositeElement(els) : new Ext.CompositeElementLite(els); }; <div id="method-Ext.Element-select"></div>/** * Selects elements based on the passed CSS selector to enable {@link Ext.Element Element} methods * to be applied to many related elements in one statement through the returned {@link Ext.CompositeElement CompositeElement} or * {@link Ext.CompositeElementLite CompositeElementLite} object. * @param {String/Array} selector The CSS selector or an array of elements * @param {Boolean} unique (optional) true to create a unique Ext.Element for each element (defaults to a shared flyweight object) * @param {HTMLElement/String} root (optional) The root element of the query or id of the root * @return {CompositeElementLite/CompositeElement} * @member Ext.Element * @method select */ Ext.select = Ext.Element.select;</pre> </body> </html>
sites/all/themes/adaptivetheme/at_subtheme/css/conservationreel.style.css
cjborkowski/chrisborkowski-net
/*custom css for nodes & views */ /*views */ /* Libray views */ /*Header */ #views-library-sort-options ul li { display: inline; list-style-type: none; }
template-networkscan/templateFindings.html
Shellntel/vcr
<!DOCTYPE HTML> <!-- Halcyonic by HTML5 UP html5up.net | @n33co Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) --> <html> <head> <title>SynerComm Vulnerability Report</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <script src="../js/jquery.js"></script> <script src="../js/skel.min.js"></script> <script src="../js/skel-layers.min.js"></script> <script src="../js/init.js"></script> <script src="../js/jquery-ui.min.js"></script> <script src="../js/sc.js"></script> <link rel="stylesheet" href="../css/skel.css" /> <link rel="stylesheet" href="../css/style.css" /> <link rel="stylesheet" href="../css/style-desktop.css" /> <!--[if lte IE 9]><link rel="stylesheet" href="../css/ie9.css" /><![endif]--> <!--[if lte IE 8]><script src="../js/html5shiv.js"></script><![endif]--> <link rel="stylesheet" href="../css/jquery-ui.structure.css" /> <link rel="stylesheet" href="../css/jquery-ui.theme.css" /> <link rel="stylesheet" href="../css/sc.css" /> </head> <body class="subpage body-finding"> <!-- Header --> <div id="header-wrapper"> <header id="header" class="container"> <div class="row"> <div class="12u"> <!-- Logo --> <div style="margin-top: 40px;" id="divlogo"> <a href="http://www.synercomm.com"><img id="logo" src="../images/companylogo.png" alt="logo" /></a> <h2 style="color: white;">Vulnerability Report Findings for Host: |HOST|</h2> </div> <nav id="nav"> <a href="../index.html">Dashboard</a> <a href="../reportsbyvuln/allvulns.html">Vulnerability Report</a> </nav> </div> </div> </header> </div> <!-- Content --> <div id="content-wrapper"> <div id="content"> <div class="container"> <div id="loading" class="row" style="display: none;"> <div class="12u ui-state-highlight-blue" style="padding:0; margin-left: 20px; height: 35px;"> <p style="text-align: center;">Loading (takes a moment)...</p> </div> </div> <div class="row"> <div class="3u"> <section> <header> <h2>Summary</h2> </header> <ul class="link-list"> <li>Total Findings: <span style="color: #C25952;">|TOTALFINDINGS|</span></li> <li>Critical: <span style="color: #C25952;">|TOTALCRITICAL|</span></li> <li>High: <span style="color: #C25952;">|TOTALHIGH|</span></li> <li>Medium: <span style="color: #C25952;">|TOTALMEDIUM|</span></li> <li>Low: <span style="color: #C25952;">|TOTALLOW|</span></li> <li>Informational: <span style="color: #C25952;">|TOTALINFORMATIONAL|</span></li> </ul> </section> <!-- Sidebar --> <section> <header> <h2>Organize</h2> </header> <ul class="link-list"> <li><input class="cb" type="checkbox" id="cbCrit" onchange="checkboxChange(this, 'critical');">Show Critical</li> <li><input class="cb" type="checkbox" id="cbHigh" onchange="checkboxChange(this, 'high');">Show High</a></li> <li><input class="cb" type="checkbox" id="cbMed" onchange="checkboxChange(this, 'medium');">Show Medium</a></li> <li><input class="cb" type="checkbox" id="cbLow" onchange="checkboxChange(this, 'low');">Show Low</a></li> <li><input class="cb" type="checkbox" id="cbInfo" onchange="checkboxChange(this, 'info');">Show Info</a></li> <li><a id="showeverything" href="#">Show Everything</a></li> <!-- <li><label for="selectcategory">Show by Category...</label> <select style="width: 200px;" name="selectcategory" id="selectcategory"> </select> </li> --> </ul> </section> </div> <div class="9u important(collapse)"> <!-- Main Content --> <section> <header> <h2>Vulnerabilities</h2> <h3>Click each section below to reveal details about that vulnerability. Use the left panel to filter the results.</h3> </header> <div id="accordion"> |REPORTINFO| </div> </section> </div> </div> </div> </div> </div> <!-- Footer --> <div id="footer-wrapper"> <footer id="footer" class="container"> <div class="row"> <div class="2u"> <!-- Links --> <section> <h2>Important Links</h2> <ul class="link-list last-child"> <li><a href="http://www.synercomm.com/services/audit-assessment/">SynerComm AssureIT</a></li> <li><a href="https://www.sans.org/critical-security-controls/">SANS Top 20 Security Controls</a></li> <li><a href="https://benchmarks.cisecurity.org/downloads/multiform/">CIS Benchmarks</a></li> <li><a href="https://www.owasp.org/index.php/OWASP_Top_Ten_Project">OWASP Top 10</a></li> </ul> </section> </div> <div class="4u" style="margin-top: 50px;"> <section> <ul class="link-list last-child"> <li><a href="http://www.microsoft.com/en-us/download/details.aspx?displayLang=en&id=16776">Microsoft Security Compliance Manager (Recommended!)</a></li> <li><a href="http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=12273">Microsoft Security Assessment Tool</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/cc750076.aspx">Microsoft Enterprise Security Best Practices</a></li> </ul> </section> </div> <div class="3u"> <!-- Blurb --> <section> <h2>Thank you!</h2> <p> We hope you've found this report useful. If have have any suggestions for improvement, please <a href="mailto:assureit@synercomm.com">drop us a note</a>! SynerComm's goal is to be a Trusted Advisor and Preferred IT Solutions Provider by assisting our clients to achieve a goal, solve a problem, or satisfy a need. </p> </section> </div> <div class="2u" style="margin-left: 75px;"> <section> <img height="135px" width="190px" src="../images/vcrimage.png" /> </section> </div> </div> </footer> </div> <!-- Copyright --> <div id="copyright"> SynerComm 2015. All rights reserved. | Design: <a href="http://html5up.net">HTML5 UP</a> </div> </body> </html>
output/build/libglib2-2.30.3/docs/reference/gio/html/GDBusObjectManagerClient.html
twobob/buildroot-kindle
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GDBusObjectManagerClient</title> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="index.html" title="GIO Reference Manual"> <link rel="up" href="gdbus-convenience.html" title="Highlevel D-Bus Support"> <link rel="prev" href="GDBusObjectManagerServer.html" title="GDBusObjectManagerServer"> <link rel="next" href="settings.html" title="Settings"> <meta name="generator" content="GTK-Doc V1.18 (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="GDBusObjectManagerServer.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td> <td><a accesskey="u" href="gdbus-convenience.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></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">GIO Reference Manual</th> <td><a accesskey="n" href="settings.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td> </tr> <tr><td colspan="5" class="shortcuts"> <a href="#GDBusObjectManagerClient.synopsis" class="shortcut">Top</a>  |  <a href="#GDBusObjectManagerClient.description" class="shortcut">Description</a>  |  <a href="#GDBusObjectManagerClient.object-hierarchy" class="shortcut">Object Hierarchy</a>  |  <a href="#GDBusObjectManagerClient.implemented-interfaces" class="shortcut">Implemented Interfaces</a>  |  <a href="#GDBusObjectManagerClient.properties" class="shortcut">Properties</a>  |  <a href="#GDBusObjectManagerClient.signals" class="shortcut">Signals</a> </td></tr> </table> <div class="refentry"> <a name="GDBusObjectManagerClient"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> <h2><span class="refentrytitle"><a name="GDBusObjectManagerClient.top_of_page"></a>GDBusObjectManagerClient</span></h2> <p>GDBusObjectManagerClient — Client-side object manager</p> </td> <td valign="top" align="right"></td> </tr></table></div> <div class="refsynopsisdiv"> <a name="GDBusObjectManagerClient.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis"> #include &lt;gio/gio.h&gt; <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-struct" title="GDBusObjectManagerClient">GDBusObjectManagerClient</a>; struct <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientClass" title="struct GDBusObjectManagerClientClass">GDBusObjectManagerClientClass</a>; enum <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags">GDBusObjectManagerClientFlags</a>; <a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a> (<a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()">*GDBusProxyTypeFunc</a>) (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *interface_name</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>); <span class="returnvalue">void</span> <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new" title="g_dbus_object_manager_client_new ()">g_dbus_object_manager_client_new</a> (<em class="parameter"><code><a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> *connection</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>); <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-finish" title="g_dbus_object_manager_client_new_finish ()">g_dbus_object_manager_client_new_finish</a> (<em class="parameter"><code><a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> *res</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>); <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-sync" title="g_dbus_object_manager_client_new_sync ()">g_dbus_object_manager_client_new_sync</a> (<em class="parameter"><code><a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> *connection</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>); <span class="returnvalue">void</span> <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus" title="g_dbus_object_manager_client_new_for_bus ()">g_dbus_object_manager_client_new_for_bus</a> (<em class="parameter"><code><a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> bus_type</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>); <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus-finish" title="g_dbus_object_manager_client_new_for_bus_finish ()">g_dbus_object_manager_client_new_for_bus_finish</a> (<em class="parameter"><code><a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> *res</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>); <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus-sync" title="g_dbus_object_manager_client_new_for_bus_sync ()">g_dbus_object_manager_client_new_for_bus_sync</a> (<em class="parameter"><code><a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> bus_type</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>); <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="returnvalue">GDBusConnection</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-get-connection" title="g_dbus_object_manager_client_get_connection ()">g_dbus_object_manager_client_get_connection</a> (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>); <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="returnvalue">GDBusObjectManagerClientFlags</span></a> <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-get-flags" title="g_dbus_object_manager_client_get_flags ()">g_dbus_object_manager_client_get_flags</a> (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>); const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-get-name" title="g_dbus_object_manager_client_get_name ()">g_dbus_object_manager_client_get_name</a> (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>); <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-get-name-owner" title="g_dbus_object_manager_client_get_name_owner ()">g_dbus_object_manager_client_get_name_owner</a> (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>); </pre> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a> +----GDBusObjectManagerClient </pre> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.implemented-interfaces"></a><h2>Implemented Interfaces</h2> <p> GDBusObjectManagerClient implements <a class="link" href="GInitable.html" title="GInitable">GInitable</a>, <a class="link" href="GAsyncInitable.html" title="GAsyncInitable">GAsyncInitable</a> and <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager">GDBusObjectManager</a>.</p> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.properties"></a><h2>Properties</h2> <pre class="synopsis"> "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--bus-type" title='The "bus-type" property'>bus-type</a>" <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> : Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--connection" title='The "connection" property'>connection</a>" <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>* : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--flags" title='The "flags" property'>flags</a>" <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--get-proxy-type-destroy-notify" title='The "get-proxy-type-destroy-notify" property'>get-proxy-type-destroy-notify</a>" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--get-proxy-type-func" title='The "get-proxy-type-func" property'>get-proxy-type-func</a>" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--get-proxy-type-user-data" title='The "get-proxy-type-user-data" property'>get-proxy-type-user-data</a>" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name" title='The "name" property'>name</a>" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'>name-owner</a>" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--object-path" title='The "object-path" property'>object-path</a>" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only </pre> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.signals"></a><h2>Signals</h2> <pre class="synopsis"> "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-properties-changed" title='The "interface-proxy-properties-changed" signal'>interface-proxy-properties-changed</a>" : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a> "<a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-signal" title='The "interface-proxy-signal" signal'>interface-proxy-signal</a>" : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a> </pre> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.description"></a><h2>Description</h2> <p> <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> is used to create, monitor and delete object proxies for remote objects exported by a <a class="link" href="GDBusObjectManagerServer.html" title="GDBusObjectManagerServer"><span class="type">GDBusObjectManagerServer</span></a> (or any code implementing the <a class="ulink" href="http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-objectmanager" target="_top">org.freedesktop.DBus.ObjectManager</a> interface). </p> <p> Once an instance of this type has been created, you can connect to the <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-object-added" title='The "object-added" signal'><span class="type">"object-added"</span></a> and <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-object-removed" title='The "object-removed" signal'><span class="type">"object-removed"</span></a> signals and inspect the <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> objects returned by <a class="link" href="GDBusObjectManager.html#g-dbus-object-manager-get-objects" title="g_dbus_object_manager_get_objects ()"><code class="function">g_dbus_object_manager_get_objects()</code></a>. </p> <p> If the name for a <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> is not owned by anyone at object construction time, the default behavior is to request the message bus to launch an owner for the name. This behavior can be disabled using the <a class="link" href="GDBusObjectManagerClient.html#G-DBUS-OBJECT-MANAGER-CLIENT-FLAGS-DO-NOT-AUTO-START:CAPS"><code class="literal">G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START</code></a> flag. It's also worth noting that this only works if the name of interest is activatable in the first place. E.g. in some cases it is not possible to launch an owner for the requested name. In this case, <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object construction still succeeds but there will be no object proxies (e.g. <a class="link" href="GDBusObjectManager.html#g-dbus-object-manager-get-objects" title="g_dbus_object_manager_get_objects ()"><code class="function">g_dbus_object_manager_get_objects()</code></a> returns the empty list) and the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> property is <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p> <p> The owner of the requested name can come and go (for example consider a system service being restarted) – <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> handles this case too; simply connect to the <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject-notify"><span class="type">"notify"</span></a> signal to watch for changes on the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> property. When the name owner vanishes, the behavior is that <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> is set to <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> (this includes emission of the <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject-notify"><span class="type">"notify"</span></a> signal) and then <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-object-removed" title='The "object-removed" signal'><span class="type">"object-removed"</span></a> signals are synthesized for all currently existing object proxies. Since <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> is <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when this happens, you can use this information to disambiguate a synthesized signal from a genuine signal caused by object removal on the remote <a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="type">GDBusObjectManager</span></a>. Similarly, when a new name owner appears, <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-object-added" title='The "object-added" signal'><span class="type">"object-added"</span></a> signals are synthesized while <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> is still <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Only when all object proxies have been added, the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> is set to the new name owner (this includes emission of the <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject-notify"><span class="type">"notify"</span></a> signal). Furthermore, you are guaranteed that <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> will alternate between a name owner (e.g. <code class="literal">:1.42</code>) and <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> even in the case where the name of interest is atomically replaced </p> <p> Ultimately, <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> is used to obtain <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> instances. All signals (including the <code class="literal">org.freedesktop.DBus.Properties::PropertiesChanged</code> signal) delivered to <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> instances are guaranteed to originate from the name owner. This guarantee along with the behavior described above, means that certain race conditions including the <span class="emphasis"><em><span class="quote">“<span class="quote">half the proxy is from the old owner and the other half is from the new owner</span>”</span></em></span> problem cannot happen. </p> <p> To avoid having the application connect to signals on the returned <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> and <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> objects, the <a class="link" href="GDBusObject.html#GDBusObject-interface-added" title='The "interface-added" signal'><span class="type">"interface-added"</span></a>, <a class="link" href="GDBusObject.html#GDBusObject-interface-removed" title='The "interface-removed" signal'><span class="type">"interface-removed"</span></a>, <a class="link" href="GDBusProxy.html#GDBusProxy-g-properties-changed" title='The "g-properties-changed" signal'><span class="type">"g-properties-changed"</span></a> and <a class="link" href="GDBusProxy.html#GDBusProxy-g-signal" title='The "g-signal" signal'><span class="type">"g-signal"</span></a> signals are also emitted on the <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> instance managing these objects. The signals emitted are <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-interface-added" title='The "interface-added" signal'><span class="type">"interface-added"</span></a>, <a class="link" href="GDBusObjectManager.html#GDBusObjectManager-interface-removed" title='The "interface-removed" signal'><span class="type">"interface-removed"</span></a>, <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-properties-changed" title='The "interface-proxy-properties-changed" signal'><span class="type">"interface-proxy-properties-changed"</span></a> and <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-signal" title='The "interface-proxy-signal" signal'><span class="type">"interface-proxy-signal"</span></a>. </p> <p> Note that all callbacks and signals are emitted in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> that the <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object was constructed in. Additionally, the <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> and <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> objects originating from the <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object will be created in the same context and, consequently, will deliver signals in the same main loop. </p> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.details"></a><h2>Details</h2> <div class="refsect2"> <a name="GDBusObjectManagerClient-struct"></a><h3>GDBusObjectManagerClient</h3> <pre class="programlisting">typedef struct _GDBusObjectManagerClient GDBusObjectManagerClient;</pre> <p> The <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> structure contains private data and should only be accessed using the provided API. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClientClass"></a><h3>struct GDBusObjectManagerClientClass</h3> <pre class="programlisting">struct GDBusObjectManagerClientClass { GObjectClass parent_class; /* signals */ void (*interface_proxy_signal) (GDBusObjectManagerClient *manager, GDBusObjectProxy *object_proxy, GDBusProxy *interface_proxy, const gchar *sender_name, const gchar *signal_name, GVariant *parameters); void (*interface_proxy_properties_changed) (GDBusObjectManagerClient *manager, GDBusObjectProxy *object_proxy, GDBusProxy *interface_proxy, GVariant *changed_properties, const gchar* const *invalidated_properties); }; </pre> <p> Class structure for <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObjectClass"><span class="type">GObjectClass</span></a> <em class="structfield"><code><a name="GDBusObjectManagerClientClass.parent-class"></a>parent_class</code></em>;</span></p></td> <td>The parent class.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectManagerClientClass.interface-proxy-signal"></a>interface_proxy_signal</code></em> ()</span></p></td> <td>Signal class handler for the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-signal" title='The "interface-proxy-signal" signal'><span class="type">"interface-proxy-signal"</span></a> signal.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectManagerClientClass.interface-proxy-properties-changed"></a>interface_proxy_properties_changed</code></em> ()</span></p></td> <td>Signal class handler for the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient-interface-proxy-properties-changed" title='The "interface-proxy-properties-changed" signal'><span class="type">"interface-proxy-properties-changed"</span></a> signal.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClientFlags"></a><h3>enum GDBusObjectManagerClientFlags</h3> <pre class="programlisting">typedef enum { G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE = 0, G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START = (1&lt;&lt;0) } GDBusObjectManagerClientFlags; </pre> <p> Flags used when constructing a <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><a name="G-DBUS-OBJECT-MANAGER-CLIENT-FLAGS-NONE:CAPS"></a><span class="term"><code class="literal">G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE</code></span></p></td> <td>No flags set. </td> </tr> <tr> <td><p><a name="G-DBUS-OBJECT-MANAGER-CLIENT-FLAGS-DO-NOT-AUTO-START:CAPS"></a><span class="term"><code class="literal">G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START</code></span></p></td> <td>If not set and the manager is for a well-known name, then request the bus to launch an owner for the name if no-one owns the name. This flag can only be used in managers for well-known names. </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusProxyTypeFunc"></a><h3>GDBusProxyTypeFunc ()</h3> <pre class="programlisting"><a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="returnvalue">GType</span></a> (*GDBusProxyTypeFunc) (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *interface_name</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre> <p> Function signature for a function used to determine the <a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> to use for an interface proxy (if <em class="parameter"><code>interface_name</code></em> is not <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>) or object proxy (if <em class="parameter"><code>interface_name</code></em> is <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>). </p> <p> This function is called in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> that <em class="parameter"><code>manager</code></em> was constructed in. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_path</code></em> :</span></p></td> <td>The object path of the remote object.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface_name</code></em> :</span></p></td> <td>The interface name of the remote object or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if a <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> <a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> is requested. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>User data.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> to use for the remote object. The returned type must be a <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a>- or <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a>-derived type.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new"></a><h3>g_dbus_object_manager_client_new ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> g_dbus_object_manager_client_new (<em class="parameter"><code><a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> *connection</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre> <p> Asynchronously creates a new <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object. </p> <p> This is an asynchronous failable constructor. When the result is ready, <em class="parameter"><code>callback</code></em> will be invoked in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> of the thread you are calling this method from. You can then call <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-finish" title="g_dbus_object_manager_client_new_finish ()"><code class="function">g_dbus_object_manager_client_new_finish()</code></a> to get the result. See <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-sync" title="g_dbus_object_manager_client_new_sync ()"><code class="function">g_dbus_object_manager_client_new_sync()</code></a> for the synchronous version. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>connection</code></em> :</span></p></td> <td>A <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td> <td>Zero or more flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td> <td>The owner of the control object (unique or well-known name).</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_path</code></em> :</span></p></td> <td>The object path of the control object.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_func</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> function or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to always construct <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> proxies.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_user_data</code></em> :</span></p></td> <td>User data to pass to <em class="parameter"><code>get_proxy_type_func</code></em>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_destroy_notify</code></em> :</span></p></td> <td>Free function for <em class="parameter"><code>get_proxy_type_user_data</code></em> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td> <td>A <a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td> <td>A <a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> to call when the request is satisfied.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>The data to pass to <em class="parameter"><code>callback</code></em>.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new-finish"></a><h3>g_dbus_object_manager_client_new_finish ()</h3> <pre class="programlisting"><a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * g_dbus_object_manager_client_new_finish (<em class="parameter"><code><a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> *res</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> <p> Finishes an operation started with <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new" title="g_dbus_object_manager_client_new ()"><code class="function">g_dbus_object_manager_client_new()</code></a>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>res</code></em> :</span></p></td> <td>A <a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> obtained from the <a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> passed to <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new" title="g_dbus_object_manager_client_new ()"><code class="function">g_dbus_object_manager_client_new()</code></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td> <td>Return location for error or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>error</code></em> is set. Free with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> GDBusObjectManagerClient]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new-sync"></a><h3>g_dbus_object_manager_client_new_sync ()</h3> <pre class="programlisting"><a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * g_dbus_object_manager_client_new_sync (<em class="parameter"><code><a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> *connection</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> <p> Creates a new <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object. </p> <p> This is a synchronous failable constructor - the calling thread is blocked until a reply is received. See <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new" title="g_dbus_object_manager_client_new ()"><code class="function">g_dbus_object_manager_client_new()</code></a> for the asynchronous version. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>connection</code></em> :</span></p></td> <td>A <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td> <td>Zero or more flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td> <td>The owner of the control object (unique or well-known name).</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_path</code></em> :</span></p></td> <td>The object path of the control object.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_func</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> function or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to always construct <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> proxies.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_user_data</code></em> :</span></p></td> <td>User data to pass to <em class="parameter"><code>get_proxy_type_func</code></em>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_destroy_notify</code></em> :</span></p></td> <td>Free function for <em class="parameter"><code>get_proxy_type_user_data</code></em> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td> <td>A <a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td> <td>Return location for error or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>error</code></em> is set. Free with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> GDBusObjectManagerClient]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new-for-bus"></a><h3>g_dbus_object_manager_client_new_for_bus ()</h3> <pre class="programlisting"><span class="returnvalue">void</span> g_dbus_object_manager_client_new_for_bus (<em class="parameter"><code><a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> bus_type</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> callback</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre> <p> Like <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new" title="g_dbus_object_manager_client_new ()"><code class="function">g_dbus_object_manager_client_new()</code></a> but takes a <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> instead of a <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>. </p> <p> This is an asynchronous failable constructor. When the result is ready, <em class="parameter"><code>callback</code></em> will be invoked in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> of the thread you are calling this method from. You can then call <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus-finish" title="g_dbus_object_manager_client_new_for_bus_finish ()"><code class="function">g_dbus_object_manager_client_new_for_bus_finish()</code></a> to get the result. See <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus-sync" title="g_dbus_object_manager_client_new_for_bus_sync ()"><code class="function">g_dbus_object_manager_client_new_for_bus_sync()</code></a> for the synchronous version. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>bus_type</code></em> :</span></p></td> <td>A <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td> <td>Zero or more flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td> <td>The owner of the control object (unique or well-known name).</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_path</code></em> :</span></p></td> <td>The object path of the control object.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_func</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> function or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to always construct <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> proxies.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_user_data</code></em> :</span></p></td> <td>User data to pass to <em class="parameter"><code>get_proxy_type_func</code></em>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_destroy_notify</code></em> :</span></p></td> <td>Free function for <em class="parameter"><code>get_proxy_type_user_data</code></em> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td> <td>A <a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>callback</code></em> :</span></p></td> <td>A <a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> to call when the request is satisfied.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>The data to pass to <em class="parameter"><code>callback</code></em>.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new-for-bus-finish"></a><h3>g_dbus_object_manager_client_new_for_bus_finish ()</h3> <pre class="programlisting"><a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * g_dbus_object_manager_client_new_for_bus_finish (<em class="parameter"><code><a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> *res</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> <p> Finishes an operation started with <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus" title="g_dbus_object_manager_client_new_for_bus ()"><code class="function">g_dbus_object_manager_client_new_for_bus()</code></a>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>res</code></em> :</span></p></td> <td>A <a class="link" href="GAsyncResult.html" title="GAsyncResult"><span class="type">GAsyncResult</span></a> obtained from the <a class="link" href="GAsyncResult.html#GAsyncReadyCallback" title="GAsyncReadyCallback ()"><span class="type">GAsyncReadyCallback</span></a> passed to <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus" title="g_dbus_object_manager_client_new_for_bus ()"><code class="function">g_dbus_object_manager_client_new_for_bus()</code></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td> <td>Return location for error or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>error</code></em> is set. Free with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> GDBusObjectManagerClient]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-new-for-bus-sync"></a><h3>g_dbus_object_manager_client_new_for_bus_sync ()</h3> <pre class="programlisting"><a class="link" href="GDBusObjectManager.html" title="GDBusObjectManager"><span class="returnvalue">GDBusObjectManager</span></a> * g_dbus_object_manager_client_new_for_bus_sync (<em class="parameter"><code><a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> bus_type</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> flags</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *object_path</code></em>, <em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> get_proxy_type_func</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> get_proxy_type_user_data</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> get_proxy_type_destroy_notify</code></em>, <em class="parameter"><code><a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> *cancellable</code></em>, <em class="parameter"><code><a href="./../glib/glib/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre> <p> Like <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-sync" title="g_dbus_object_manager_client_new_sync ()"><code class="function">g_dbus_object_manager_client_new_sync()</code></a> but takes a <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> instead of a <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>. </p> <p> This is a synchronous failable constructor - the calling thread is blocked until a reply is received. See <a class="link" href="GDBusObjectManagerClient.html#g-dbus-object-manager-client-new-for-bus" title="g_dbus_object_manager_client_new_for_bus ()"><code class="function">g_dbus_object_manager_client_new_for_bus()</code></a> for the asynchronous version. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>bus_type</code></em> :</span></p></td> <td>A <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td> <td>Zero or more flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td> <td>The owner of the control object (unique or well-known name).</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_path</code></em> :</span></p></td> <td>The object path of the control object.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_func</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> function or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to always construct <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> proxies.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_user_data</code></em> :</span></p></td> <td>User data to pass to <em class="parameter"><code>get_proxy_type_func</code></em>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>get_proxy_type_destroy_notify</code></em> :</span></p></td> <td>Free function for <em class="parameter"><code>get_proxy_type_user_data</code></em> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>cancellable</code></em> :</span></p></td> <td>A <a class="link" href="GCancellable.html" title="GCancellable"><span class="type">GCancellable</span></a> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> </td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td> <td>Return location for error or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> object or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>error</code></em> is set. Free with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> GDBusObjectManagerClient]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-get-connection"></a><h3>g_dbus_object_manager_client_get_connection ()</h3> <pre class="programlisting"><a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="returnvalue">GDBusConnection</span></a> * g_dbus_object_manager_client_get_connection (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>);</pre> <p> Gets the <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> used by <em class="parameter"><code>manager</code></em>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> </td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> object. Do not free, the object belongs to <em class="parameter"><code>manager</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-get-flags"></a><h3>g_dbus_object_manager_client_get_flags ()</h3> <pre class="programlisting"><a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="returnvalue">GDBusObjectManagerClientFlags</span></a> g_dbus_object_manager_client_get_flags (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>);</pre> <p> Gets the flags that <em class="parameter"><code>manager</code></em> was constructed with. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> </td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>Zero of more flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-get-name"></a><h3>g_dbus_object_manager_client_get_name ()</h3> <pre class="programlisting">const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * g_dbus_object_manager_client_get_name (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>);</pre> <p> Gets the name that <em class="parameter"><code>manager</code></em> is for. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> </td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A unique or well-known name. Do not free, the string belongs to <em class="parameter"><code>manager</code></em>.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-manager-client-get-name-owner"></a><h3>g_dbus_object_manager_client_get_name_owner ()</h3> <pre class="programlisting"><a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * g_dbus_object_manager_client_get_name_owner (<em class="parameter"><code><a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager</code></em>);</pre> <p> The unique name that owns the name that <em class="parameter"><code>manager</code></em> is for or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no-one currently owns that name. You can connect to the <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject-notify"><span class="type">"notify"</span></a> signal to track changes to the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name-owner" title='The "name-owner" property'><span class="type">"name-owner"</span></a> property. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>The name owner or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no name owner exists. Free with <a href="./../glib/glib/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.property-details"></a><h2>Property Details</h2> <div class="refsect2"> <a name="GDBusObjectManagerClient--bus-type"></a><h3>The <code class="literal">"bus-type"</code> property</h3> <pre class="programlisting"> "bus-type" <a class="link" href="GDBusConnection.html#GBusType" title="enum GBusType"><span class="type">GBusType</span></a> : Write / Construct Only</pre> <p> If this property is not <a class="link" href="GDBusConnection.html#G-BUS-TYPE-NONE:CAPS"><code class="literal">G_BUS_TYPE_NONE</code></a>, then <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--connection" title='The "connection" property'><span class="type">"connection"</span></a> must be <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and will be set to the <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> obtained by calling <a class="link" href="GDBusConnection.html#g-bus-get" title="g_bus_get ()"><code class="function">g_bus_get()</code></a> with the value of this property. </p> <p>Default value: G_BUS_TYPE_NONE</p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--connection"></a><h3>The <code class="literal">"connection"</code> property</h3> <pre class="programlisting"> "connection" <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a>* : Read / Write / Construct Only</pre> <p> The <a class="link" href="GDBusConnection.html" title="GDBusConnection"><span class="type">GDBusConnection</span></a> to use. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--flags"></a><h3>The <code class="literal">"flags"</code> property</h3> <pre class="programlisting"> "flags" <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> : Read / Write / Construct Only</pre> <p> Flags from the <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClientFlags" title="enum GDBusObjectManagerClientFlags"><span class="type">GDBusObjectManagerClientFlags</span></a> enumeration. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--get-proxy-type-destroy-notify"></a><h3>The <code class="literal">"get-proxy-type-destroy-notify"</code> property</h3> <pre class="programlisting"> "get-proxy-type-destroy-notify" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only</pre> <p> A <a href="./../glib/glib/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> for the <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data in <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--get-proxy-type-user-data" title='The "get-proxy-type-user-data" property'><span class="type">"get-proxy-type-user-data"</span></a>. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--get-proxy-type-func"></a><h3>The <code class="literal">"get-proxy-type-func"</code> property</h3> <pre class="programlisting"> "get-proxy-type-func" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only</pre> <p> The <a class="link" href="GDBusObjectManagerClient.html#GDBusProxyTypeFunc" title="GDBusProxyTypeFunc ()"><span class="type">GDBusProxyTypeFunc</span></a> to use when determining what <a href="./../gobject/gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> to use for interface proxies or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--get-proxy-type-user-data"></a><h3>The <code class="literal">"get-proxy-type-user-data"</code> property</h3> <pre class="programlisting"> "get-proxy-type-user-data" <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write / Construct Only</pre> <p> The <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data to pass to <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--get-proxy-type-func" title='The "get-proxy-type-func" property'><span class="type">"get-proxy-type-func"</span></a>. </p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--name"></a><h3>The <code class="literal">"name"</code> property</h3> <pre class="programlisting"> "name" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre> <p> The well-known name or unique name that the manager is for. </p> <p>Default value: NULL</p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--name-owner"></a><h3>The <code class="literal">"name-owner"</code> property</h3> <pre class="programlisting"> "name-owner" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read</pre> <p> The unique name that owns <a class="link" href="GDBusObjectManagerClient.html#GDBusObjectManagerClient--name" title='The "name" property'><span class="type">"name"</span></a> or <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no-one is currently owning the name. Connect to the <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject-notify"><span class="type">"notify"</span></a> signal to track changes to this property. </p> <p>Default value: NULL</p> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient--object-path"></a><h3>The <code class="literal">"object-path"</code> property</h3> <pre class="programlisting"> "object-path" <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre> <p> The object path the manager is for. </p> <p>Default value: NULL</p> <p class="since">Since 2.30</p> </div> </div> <div class="refsect1"> <a name="GDBusObjectManagerClient.signal-details"></a><h2>Signal Details</h2> <div class="refsect2"> <a name="GDBusObjectManagerClient-interface-proxy-properties-changed"></a><h3>The <code class="literal">"interface-proxy-properties-changed"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager, <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> *object_proxy, <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> *interface_proxy, <a href="./../glib/glib/glib-GVariant.html#GVariant"><span class="type">GVariant</span></a> *changed_properties, <a href="./../gobject/gobject/gobject-Boxed-Types.html#GStrv"><span class="type">GStrv</span></a> invalidated_properties, <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre> <p> Emitted when one or more D-Bus properties on proxy changes. The local cache has already been updated when this signal fires. Note that both <em class="parameter"><code>changed_properties</code></em> and <em class="parameter"><code>invalidated_properties</code></em> are guaranteed to never be <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> (either may be empty though). </p> <p> This signal exists purely as a convenience to avoid having to connect signals to all interface proxies managed by <em class="parameter"><code>manager</code></em>. </p> <p> This signal is emitted in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> that <em class="parameter"><code>manager</code></em> was constructed in. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> emitting the signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_proxy</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> on which an interface has properties that are changing.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface_proxy</code></em> :</span></p></td> <td>The <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> that has properties that are changing.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>changed_properties</code></em> :</span></p></td> <td>A <a href="./../glib/glib/glib-GVariant.html#GVariant"><span class="type">GVariant</span></a> containing the properties that changed.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>invalidated_properties</code></em> :</span></p></td> <td>A <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array of properties that was invalidated.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>user data set when the signal handler was connected.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectManagerClient-interface-proxy-signal"></a><h3>The <code class="literal">"interface-proxy-signal"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> *manager, <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> *object_proxy, <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> *interface_proxy, <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *sender_name, <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *signal_name, <a href="./../glib/glib/glib-GVariant.html#GVariant"><span class="type">GVariant</span></a> *parameters, <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre> <p> Emitted when a D-Bus signal is received on <em class="parameter"><code>interface_proxy</code></em>. </p> <p> This signal exists purely as a convenience to avoid having to connect signals to all interface proxies managed by <em class="parameter"><code>manager</code></em>. </p> <p> This signal is emitted in the <a href="./../glib/glib/glib-The-Main-Event-Loop.html#g-main-context-push-thread-default">thread-default main loop</a> that <em class="parameter"><code>manager</code></em> was constructed in. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>manager</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObjectManagerClient.html" title="GDBusObjectManagerClient"><span class="type">GDBusObjectManagerClient</span></a> emitting the signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>object_proxy</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a> on which an interface is emitting a D-Bus signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface_proxy</code></em> :</span></p></td> <td>The <a class="link" href="GDBusProxy.html" title="GDBusProxy"><span class="type">GDBusProxy</span></a> that is emitting a D-Bus signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>sender_name</code></em> :</span></p></td> <td>The sender of the signal or NULL if the connection is not a bus connection.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>signal_name</code></em> :</span></p></td> <td>The signal name.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>parameters</code></em> :</span></p></td> <td>A <a href="./../glib/glib/glib-GVariant.html#GVariant"><span class="type">GVariant</span></a> tuple with parameters for the signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>user data set when the signal handler was connected.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> </div> </div> <div class="footer"> <hr> Generated by GTK-Doc V1.18</div> </body> </html>
styles/pbwow3/template/event/viewtopic_body_footer_before.html
Galixte/QuickReply
<!-- IF S_QUICK_REPLY --> <!-- INCLUDEJS @boardtools_quickreply/quickreply_pbwow.js?assets_version={T_ASSETS_VERSION} --> <style> /* Remove styling specific for standard quick reply. */ #qr_postform > .panel { max-width: none; margin: -3px 0 10px; background-size: 100% auto; } #qr_postform > .panel > .inner { max-width: none; margin: 0; } #qr_postform #message-box { width: 80%; } body.section-viewtopic .postbody h3, #qr_postform .fields1 > dl { display: block; } .profile-context a.icon-refer, .profile-context a.icon-pm { background: #292A2A; padding: 0; } .profile-context a.icon-refer:before, .profile-context a.icon-pm:before { display: inline-block; font-family: FontAwesome; color: #888; text-shadow: 0 0 5px #000; font-style: normal; font-weight: normal; font-size: 1.5em; line-height: inherit; text-decoration: none; padding: 0 10px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .profile-context a.icon-refer:before { content: "\f1fa"; } .profile-context a.icon-pm:before { content: "\f075"; } </style> <!-- ENDIF --> <!-- INCLUDE @boardtools_quickreply/quickreply_init.html -->
wp-content/themes/sublime-press/css/demo.css
Dominic--/CCPT
/* CSS reset */ body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; } html,body { margin:0; padding:0; height: 100%; } table { border-collapse:collapse; border-spacing:0; } fieldset,img { border:0; } address,caption,cite,code,dfn,th,var { font-style:normal; font-weight:normal; } ol,ul { list-style:none; } caption,th { text-align:left; } h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; } q:before,q:after { content:''; } abbr,acronym { border:0; } section, header{ display: block; } /* General Demo Style */ body{ font-family: Cambria, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif; background: #f8fafe url(../images/bg.jpg) repeat top left; font-weight: 400; font-size: 15px; color: #3a2127; overflow-y: scroll; } a{ color: #333; text-decoration: none; } .container{ width: 100%; height: 100%; position: relative; text-align: center; } .clr{ clear: both; } .container > header{ padding: 20px 30px 20px 30px; margin: 0px 20px 10px 20px; position: relative; display: block; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); text-align: center; } .container > header h1{ position: relative; color: #498ea5; font-weight: 700; font-style: normal; font-size: 30px; padding: 0px 0px 5px 0px; text-shadow: 0px 1px 1px rgba(255,255,255,0.8); } .container > header h1 span{ font-family: 'Alegreya SC', Georgia, serif; font-size: 20px; line-height: 20px; display: block; font-weight: 400; font-style: italic; color: #719dab; text-shadow: 1px 1px 1px rgba(0,0,0,0.1); } .container > header h2{ font-size: 16px; font-style: italic; color: #2d6277; text-shadow: 0px 1px 1px rgba(255,255,255,0.8); } /* Header Style */ .codrops-top{ line-height: 24px; font-size: 11px; background: rgba(255,255,255,0.4); text-transform: uppercase; z-index: 9999; position: relative; box-shadow: 1px 0px 2px rgba(0,0,0,0.2); } .codrops-top a{ padding: 0px 10px; letter-spacing: 1px; color: #333; text-shadow: 0px 1px 1px #fff; display: block; float: left; } .codrops-top a:hover{ background: #fff; } .codrops-top span.right{ float: right; } .codrops-top span.right a{ float: left; display: block; } .codrops-demos{ text-align:center; display: block; line-height: 30px; padding: 20px 0px; } .codrops-demos a{ display: inline-block; margin: 0px 4px; padding: 0px 4px; color: #85b9cb; text-shadow: none; line-height: 20px; font-style: italic; font-size: 13px; border-radius: 3px; background: rgba(255,255,255,0.5); box-shadow: 0px 1px 2px rgba(0,0,0,0.1); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } .codrops-demos a:hover{ color: #699daf; background: rgba(255,255,255,0.9); } .codrops-demos a.current, .codrops-demos a.current:hover{ background: #bdd4dc; color: #fff; }
client/Application2/src/conference-accesslevel.html
sky-big/Ejabberd
<HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META HTTP-EQUIV="MSThemeCompatible" CONTENT="Yes"> <STYLE type="text/css"> BODY { cursor: default; margin: 0px; padding: 0px; } TD { font-family: Arial; font-size: 11px; color: windowtext; } FIELDSET { cursor: default; border-left-width: 0; border-right-width: 0; border-bottom-width: 0; margin-bottom: 16px; } #title { width: 100%; margin-top: 14px; } #subtitle { width: 100%; } .role-title, .affiliation-title { font-weight: bold; } LABEL { display: block; } </STYLE> <SCRIPT language=JScript src="main/XMPPAddress.js"></SCRIPT> <SCRIPT language=JScript> function init () { external.globals( 'Translator' ).TranslateWindow( 'conference-accesslevel', document ); document.onselectstart = document.ondragstart = function(){return event.srcElement.tagName=='TEXTAREA'||event.srcElement.tagName=='INPUT'}; document.oncontextmenu = function(){return !(event.srcElement.tagName=='INPUT'&&event.srcElement.type!='text')}; Refresh(); document.getElementById( 'txt-role' ).parentNode.focus(); external.wnd.hide( false ); external.wnd.focus(); } function Refresh () { var Occupant = external.wnd.params[1]; document.getElementById( 'name' ).innerText = Occupant.Name; document.getElementById( 'room' ).innerText = Occupant.Tracker.Address.ShortAddress(); if ( Occupant.Avatar.length ) document.getElementById( 'avatar' ).src = external.globals( 'usersdir' ) + 'Avatars\\' + Occupant.Avatar; else document.getElementById( 'avatar' ).src = '..\\images\\clients\\unknown-soldier.gif'; var LocalOccupant = Occupant.Tracker.Occupants( Occupant.Tracker.Address.Resource ); var LocalOwner = LocalOccupant && LocalOccupant.Affiliation == 'owner'; var LocalAdmin = LocalOccupant && ( LocalOccupant.Affiliation == 'admin' || LocalOwner ); var LocalModerator = LocalOccupant && LocalOccupant.Role == 'moderator'; var LocalParticipant = LocalOccupant && ( LocalOccupant.Role == 'participant' || LocalModerator ); var RemoteOccupant = Occupant; var RemoteOwner = RemoteOccupant.Affiliation == 'owner'; var RemoteAdmin = RemoteOccupant.Affiliation == 'admin' || RemoteOwner; var RemoteModerator = RemoteOccupant.Role == 'moderator'; var RemoteParticipant = RemoteOccupant.Role == 'participant' || RemoteModerator; document.getElementById( 'role-visitor' ).checked = true; document.getElementById( 'role-participant' ).checked = RemoteParticipant; document.getElementById( 'role-moderator' ).checked = RemoteModerator; document.getElementById( 'affiliation-none' ).checked = true; document.getElementById( 'affiliation-admin' ).checked = RemoteAdmin; document.getElementById( 'affiliation-owner' ).checked = RemoteOwner; document.getElementById( 'role-visitor' ).parentNode.disabled = ! ( LocalModerator || LocalAdmin ); document.getElementById( 'role-participant' ).parentNode.disabled = ! ( LocalModerator || LocalAdmin ); document.getElementById( 'role-moderator' ).parentNode.disabled = ! LocalAdmin; document.getElementById( 'affiliation-none' ).parentNode.disabled = ! LocalOwner; document.getElementById( 'affiliation-admin' ).parentNode.disabled = ! LocalOwner; document.getElementById( 'affiliation-owner' ).parentNode.disabled = ! LocalOwner; document.getElementById( 'btn-default' ).style.display = ( LocalModerator || LocalAdmin || LocalOwner ) ? 'inline' : 'none'; document.getElementById( 'btn-ok' ).style.display = ( LocalModerator || LocalAdmin || LocalOwner ) ? 'inline' : 'none'; document.getElementById( 'btn-ok' ).disabled = ! ( LocalModerator || LocalAdmin || LocalOwner ); document.getElementById( 'btn-cancel' ).style.display = ( LocalModerator || LocalAdmin || LocalOwner ) ? 'inline' : 'none'; document.getElementById( 'btn-close' ).style.display = ( LocalModerator || LocalAdmin || LocalOwner ) ? 'none' : 'inline'; } function SetMode () { var RemoteOccupant = external.wnd.params[1]; var dom = new ActiveXObject( 'Msxml2.DOMDocument' ); dom.loadXML( '<iq type="set"><query xmlns="http://jabber.org/protocol/muc#admin"><item/></query></iq>' ); dom.documentElement.setAttribute( 'id', 'sd' + ( ++external.globals( 'uniqueid' ) ) ); dom.documentElement.setAttribute( 'to', RemoteOccupant.Tracker.Address.ShortAddress() ); var OccupantItem = dom.documentElement.firstChild.firstChild; OccupantItem.setAttribute( 'nick', RemoteOccupant.Name ); if ( RemoteOccupant.Address.length ) OccupantItem.setAttribute( 'jid', ( new XMPPAddress( RemoteOccupant.Address ) ).ShortAddress() ); var ChangeFlag = 0; if ( document.getElementById( 'role-visitor' ).checked && RemoteOccupant.Role != 'visitor' ) OccupantItem.setAttribute( 'role', 'visitor' ); else if ( document.getElementById( 'role-participant' ).checked && RemoteOccupant.Role != 'participant' ) OccupantItem.setAttribute( 'role', 'participant' ); else if ( document.getElementById( 'role-moderator' ).checked && RemoteOccupant.Role != 'moderator' ) OccupantItem.setAttribute( 'role', 'moderator' ); else ++ChangeFlag; if ( document.getElementById( 'affiliation-none' ).checked && ( RemoteOccupant.Affiliation != 'none' && RemoteOccupant.Affiliation != 'member' ) ) OccupantItem.setAttribute( 'affiliation', 'member' ); else if ( document.getElementById( 'affiliation-admin' ).checked && RemoteOccupant.Affiliation != 'admin' ) OccupantItem.setAttribute( 'affiliation', 'admin' ); else if ( document.getElementById( 'affiliation-owner' ).checked && RemoteOccupant.Affiliation != 'owner' ) OccupantItem.setAttribute( 'affiliation', 'owner' ); else ++ChangeFlag; if ( ChangeFlag < 2 ) { external.wnd.params[0].warn( 'SENT: ' + dom.xml ); external.XMPP.SendXML( dom ); } external.wnd.close(); } </SCRIPT> </HEAD> <BODY scroll=no bgcolor=buttonface onload="init()" onkeydown="if(event.keyCode==27)external.wnd.close()"> <FORM onsubmit="return false"> <TABLE width="100%" height="100%" border=0 cellspacing=0 cellpadding=0 style="position: absolute; left: 0px; top: 0px; margin: 0px;"> <TR valign=top height=60 bgcolor=window> <TD colspan=2 style="color: windowtext; border-bottom: 2px groove;"> <IMG id=avatar align=left style="width: 32px; height: 32px; margin: 12px 20px 0 12px;"> <NOBR id=title><SPAN id=txt-name style="width: 60px;"></SPAN><SPAN id=name style="font-weight: bold;"></SPAN></NOBR> <NOBR id=subtitle><SPAN id=txt-room style="width: 60px;"></SPAN><SPAN id=room></SPAN></NOBR> </TD> </TR> <TR valign=top> <TD colspan=2 style="padding: 16px;"> <FIELDSET> <LEGEND id=txt-role></LEGEND> <LABEL for=role-visitor> <INPUT id=role-visitor type=radio name=role> <SPAN class=role-title id=txt-visitor></SPAN>&nbsp;-&nbsp;<SPAN id=txt-visitor-desc></SPAN> </LABEL> <LABEL for=role-participant> <INPUT id=role-participant type=radio name=role> <SPAN class=role-title id=txt-participant></SPAN>&nbsp;-&nbsp;<SPAN id=txt-participant-desc></SPAN> </LABEL> <LABEL for=role-moderator> <INPUT id=role-moderator type=radio name=role> <SPAN class=role-title id=txt-moderator></SPAN>&nbsp;-&nbsp;<SPAN id=txt-moderator-desc></SPAN> </LABEL> </FIELDSET> <FIELDSET> <LEGEND id=txt-affiliation></LEGEND> <LABEL for=affiliation-none> <INPUT id=affiliation-none type=radio name=affiliation> <SPAN class=affiliation-title id=txt-none></SPAN>&nbsp;-&nbsp;<SPAN id=txt-none-desc></SPAN> </LABEL> <LABEL for=affiliation-admin> <INPUT id=affiliation-admin type=radio name=affiliation> <SPAN class=affiliation-title id=txt-admin></SPAN>&nbsp;-&nbsp;<SPAN id=txt-admin-desc></SPAN> </LABEL> <LABEL for=affiliation-owner> <INPUT id=affiliation-owner type=radio name=affiliation> <SPAN class=affiliation-title id=txt-owner></SPAN>&nbsp;-&nbsp;<SPAN id=txt-owner-desc></SPAN> </LABEL> </FIELDSET> </TD> </TR> <TR valign=top height=45> <TD style="padding: 10px; border-top: 2px groove;"> <INPUT type=button style="height: 24px; width: 110px; font-size: 11px;" id=btn-default onclick="Refresh()"> </TD> <TD align=right style="padding: 10px; border-top: 2px groove;"> <INPUT type=submit style="height: 24px; width: 90px; font-size: 11px;" id=btn-ok onclick="SetMode()"> <INPUT type=button style="height: 24px; width: 90px; font-size: 11px;" id=btn-cancel onclick="external.wnd.close()"> <INPUT type=submit style="height: 24px; width: 90px; font-size: 11px;" id=btn-close onclick="external.wnd.close()"> </TD> </TR> </TABLE> </FORM> </BODY> </HTML>
templates/tpl_modified_bs4/boxes/box_specials.html
dsiekiera/modified-bs4
{config_load file="$language/lang_$language.conf" section="boxes"} {config_load file="$language/lang_$language.conf" section="specials"} {config_load file="lang_`$language`.custom"} {if isset($box_content) && count($box_content) > 0} <div class="box2"> <div class="box_header"> <span class="show_title">{#heading_specials#}</span> <a class="show_all" href="{$SPECIALS_LINK}">{#show_all#} <span class="arrow">&raquo;</span></a> <br class="clearfix" /> </div> <div class="box_line"></div> <div class="box_title"><a href="{$box_content.PRODUCTS_LINK}"><strong>{$box_content.PRODUCTS_NAME}</strong></a></div> {if $box_content.PRODUCTS_IMAGE!=''}<div class="box_image"><a href="{$box_content.PRODUCTS_LINK}"><img src="{$box_content.PRODUCTS_IMAGE}" alt="{$box_content.PRODUCTS_NAME|onlytext}" /></a></div>{/if} <div class="box_price"> {foreach name=inner item=price_data from=$box_content.PRODUCTS_PRICE_ARRAY} {include file="module/includes/price_box.html"} {/foreach} </div> {if $box_content.PRODUCTS_PRICE_ARRAY.0.PRODUCTS_PRICE_FLAG != 'NotAllowed'} {if $box_content.PRODUCTS_VPE}<div class="box_vpe">{$box_content.PRODUCTS_VPE}</div>{/if} <div class="box_tax">{$box_content.PRODUCTS_TAX_INFO}{$box_content.PRODUCTS_SHIPPING_LINK}</div> {if $box_content.PRODUCTS_EXPIRES!=0}{#text_expires_date#} {$box_content.PRODUCTS_EXPIRES|date_format:"%x"}{/if} {/if} </div> {/if}
docs/html/org.doxygen.Project.docset/Contents/Resources/Documents/_point3_d_8h_source.html
robmxn/qsculpt
<!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>QSculpt: engine/include/Point3D.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">QSculpt &#160;<span id="projectnumber">0.0.1a</span> </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.5.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&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</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&#160;List</span></a></li> </ul> </div> <div class="header"> <div class="headertitle"> <div class="title">engine/include/Point3D.h</div> </div> </div> <div class="contents"> <div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/***************************************************************************</span> <a name="l00002"></a>00002 <span class="comment"> * Copyright (C) 2006 by Juan Roberto Cabral Flores *</span> <a name="l00003"></a>00003 <span class="comment"> * roberto.cabral@gmail.com *</span> <a name="l00004"></a>00004 <span class="comment"> * *</span> <a name="l00005"></a>00005 <span class="comment"> * This program is free software; you can redistribute it and/or modify *</span> <a name="l00006"></a>00006 <span class="comment"> * it under the terms of the GNU General Public License as published by *</span> <a name="l00007"></a>00007 <span class="comment"> * the Free Software Foundation; either version 2 of the License, or *</span> <a name="l00008"></a>00008 <span class="comment"> * (at your option) any later version. *</span> <a name="l00009"></a>00009 <span class="comment"> * *</span> <a name="l00010"></a>00010 <span class="comment"> * This program is distributed in the hope that it will be useful, *</span> <a name="l00011"></a>00011 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of *</span> <a name="l00012"></a>00012 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *</span> <a name="l00013"></a>00013 <span class="comment"> * GNU General Public License for more details. *</span> <a name="l00014"></a>00014 <span class="comment"> * *</span> <a name="l00015"></a>00015 <span class="comment"> * You should have received a copy of the GNU General Public License *</span> <a name="l00016"></a>00016 <span class="comment"> * along with this program; if not, write to the *</span> <a name="l00017"></a>00017 <span class="comment"> * Free Software Foundation, Inc., *</span> <a name="l00018"></a>00018 <span class="comment"> * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *</span> <a name="l00019"></a>00019 <span class="comment"> ***************************************************************************/</span> <a name="l00020"></a>00020 <span class="preprocessor">#ifndef POINT3D_H</span> <a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#define POINT3D_H</span> <a name="l00022"></a>00022 <span class="preprocessor"></span> <a name="l00023"></a>00023 <span class="preprocessor">#include &lt;QMetaType&gt;</span> <a name="l00024"></a>00024 <span class="preprocessor">#include &lt;QString&gt;</span> <a name="l00025"></a>00025 <span class="preprocessor">#include &lt;QVector&gt;</span> <a name="l00026"></a>00026 <a name="l00027"></a>00027 <span class="keyword">typedef</span> Eigen::Vector3f Point3; <a name="l00028"></a>00028 <span class="keyword">typedef</span> Eigen::Vector3f Vector3; <a name="l00029"></a>00029 <span class="keyword">typedef</span> Eigen::Vector4f Point4; <a name="l00030"></a>00030 <span class="keyword">typedef</span> Eigen::Vector4f Vector4; <a name="l00031"></a>00031 <a name="l00032"></a>00032 <span class="keyword">typedef</span> QVector&lt;int&gt; PointIndexList; <a name="l00033"></a>00033 <a name="l00034"></a>00034 Q_DECLARE_METATYPE(Point3) <a name="l00035"></a>00035 <a name="l00036"></a>00036 inline QString toString(const Vector3&amp; v) <a name="l00037"></a>00037 { <a name="l00038"></a>00038 QString str; <a name="l00039"></a>00039 str += <span class="stringliteral">&quot;(&quot;</span> + QString::number(v[0]) + <span class="stringliteral">&quot;,&quot;</span> + <a name="l00040"></a>00040 QString::number(v[1]) + <span class="stringliteral">&quot;,&quot;</span> + <a name="l00041"></a>00041 QString::number(v[2]) + <span class="stringliteral">&quot;)&quot;</span>; <a name="l00042"></a>00042 <span class="keywordflow">return</span> str; <a name="l00043"></a>00043 } <a name="l00044"></a>00044 <a name="l00045"></a>00045 <span class="preprocessor">#endif</span> <a name="l00046"></a>00046 <span class="preprocessor"></span> </pre></div></div> </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">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Enumerations</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Enumerator</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 Aug 27 2011 15:38:52 for QSculpt by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.5.1 </small></address> </body> </html>
hitboard-gui/src/main/resources/styles/dark_style.css
GRM-Group/HitBoard
.root { -fx-base: #323232; -fx-background: #323232; -fx-control-inner-background: #323232 } .tab { -fx-background-color: linear-gradient(to top, -fx-base, derive(-fx-base, 30%)) } .button { -fx-background-color: transparent; -fx-padding: 5 22 5 22; -fx-border-color: #e2e2e2; -fx-border-width: 2; -fx-background-radius: 0; -fx-background-color: #1d1d1d; -fx-font-family: "Segoe UI", Helvetica, Arial, sans-serif; -fx-font-size: 11pt; -fx-text-fill: #d8d8d8; -fx-background-insets: 0 0 0 0, 0, 1, 2 } .button:hover { -fx-background-color: -fx-shadow-highlight-color, -fx-outer-border, -fx-inner-border, -fx-body-color; -fx-color: -fx-hover-base; -fx-background-color: #3a3a3a } .button:pressed, .button:default:hover:pressed { -fx-background-color: #fff; -fx-text-fill: #1d1d1d } .button:focused { -fx-border-color: #fff, #fff; -fx-border-width: 1, 1; -fx-border-style: solid, segments(1, 1); -fx-border-radius: 0, 0; -fx-border-insets: 1 1 1 1, 0 } .button:disabled, .button:default:disabled { -fx-opacity: .4; -fx-background-color: #1d1d1d; -fx-text-fill: #fff } .button:default { -fx-background-color: -fx-focus-color; -fx-text-fill: #fff } .button:default:hover { -fx-background-color: derive(-fx-focus-color, 30%) } .table-view { -fx-table-cell-border-color: derive(-fx-base, +10%); -fx-table-header-border-color: derive(-fx-base, +20%); -fx-base: #1d1d1d; -fx-control-inner-background: #1d1d1d; -fx-background-color: #1d1d1d; -fx-table-cell-border-color: transparent; -fx-table-header-border-color: transparent; -fx-padding: 5 } .split-pane:horizontal>*>.split-pane-divider { -fx-border-color: transparent -fx-base transparent -fx-base; -fx-background-color: transparent, derive(-fx-base, 20%); -fx-background-insets: 0, 0 1 0 1 } .my-gridpane { -fx-background-color: radial-gradient(radius 100%, derive(-fx-base, 20%), derive(-fx-base, -20%)) } .separator-label { -fx-text-fill: orange } .background { -fx-background-color: #1d1d1d } .label { -fx-font-size: 11pt; -fx-font-family: "Segoe UI Semibold"; -fx-text-fill: #fff; -fx-opacity: .6 } .label-bright { -fx-font-size: 11pt; -fx-font-family: "Segoe UI Semibold"; -fx-text-fill: #fff; -fx-opacity: 1 } .label-header { -fx-font-size: 32pt; -fx-font-family: "Segoe UI Light"; -fx-text-fill: #fff; -fx-opacity: 1 } .table-view .column-header-background { -fx-background-color: transparent } .table-view .column-header, .table-view .filler { -fx-size: 35; -fx-border-width: 0 0 1 0; -fx-background-color: transparent; -fx-border-color: transparent transparent derive(-fx-base, 80%) transparent; -fx-border-insets: 0 10 1 0 } .table-view .column-header .label { -fx-font-size: 20pt; -fx-font-family: "Segoe UI Light"; -fx-text-fill: #fff; -fx-alignment: center-left; -fx-opacity: 1 } .table-view:focused .table-row-cell:filled:focused:selected { -fx-background-color: -fx-focus-color } .split-pane:horizontal>.split-pane-divider { -fx-border-color: transparent #1d1d1d transparent #1d1d1d; -fx-background-color: transparent, derive(#1d1d1d, 20%) } .split-pane { -fx-padding: 1 0 0 0 } .context-menu { -fx-background-color: derive(#1d1d1d, 50%) } .menu-bar { -fx-background-color: linear-gradient(to bottom, -fx-base, derive(-fx-base, 30%)); -fx-background-color: derive(#1d1d1d, 20%) } .menu-bar .label { -fx-font-size: 14pt; -fx-font-family: "Segoe UI Light"; -fx-text-fill: #fff; -fx-opacity: .9 } .tool-bar:horizontal { -fx-background-color: linear-gradient(to bottom, derive(-fx-base, +50%), derive(-fx-base, -40%), derive(-fx-base, -20%)) } .menu .left-container { -fx-background-color: #000 } .text-field { -fx-font-size: 12pt; -fx-font-family: "Segoe UI Semibold" } #splash { -fx-background-radius: 15px; /*-fx-background-color: transparent;*/ } #progresPane { -fx-background-color: #303030; }
gnudip/client/UNIX/gdipc/CLIENT.html
saeedrohani/Modifed-GnuDIP-web-access
<!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=iso-8859-1"> <title> GnuDIP Release 2.3.5 - Linux/UNIX Client Script </title> <base target="_blank"> </head> <body bgcolor=white> <table><tr valign=middle><td> <img align=middle src="gnudip.jpg" alt="GnuDIP Logo" border=0 height=60 width=113> </td><td> <h1>GnuDIP Release 2.3.5 - Linux/UNIX Client Script</h1> </table> <hr> <p> With this client you can have your IP address updated automatically at several GnuDIP sites simultaneously. This client will only send an update to the GnuDIP servers if the IP address at the time of the last update is no longer valid, or enough time has expired. The validity of the old address is determined without generating any network traffic. <p> The <code>gdipc.pl</code> script serves as the GnuDIP client. This and the related <code>encpass.pl</code> script are in the <a href="bin/"><code>bin</code></a> directory. <p> The client's features include: <ul> <li> The client maintains the information for several GnuDIP domains in the same configuration file. Using "<code>gdipc.pl -c</code>" will replace any existing entry. To list the entries or delete an entry the user must use a text editor. There is one line per GnuDIP domain. <p> The script <code>encpass.pl</code> takes its plain text password argument and prints the encrypted version. This script faciliates manual modification of the configuration file. <p> <li> The format of the lines in the configuration file is demonstrated by this sample configuration file: <pre> tester;gnudip;localhost;f5d1278e8109edd94e1e4197e04873b9;/root/.GnuDIP2.cache.tester.gnudip;0;60 tester2;gnudip;localhost;179ad45c6ce2cb97cf1029e212046e81;/root/.GnuDIP2.cache.tester2.gnudip;0;2073600 </pre> <p> <li> The client tries not to abuse a GnuDIP server, and maintains a cache file for each GnuDIP domain towards this end. This is reflected in the user interface, of which this is a sample: <pre> # gdipc.pl -c Using Update Configuration Mode Configuration file name: /root/.GnuDIP2 Username: tester2 Domain: gnudip Connect by direct TCP (d) or web server (w) [d]: GnuDIP Server - host[:port]: localhost Password: testpass Cache File [/root/.GnuDIP2.cache.tester2.gnudip]: Minimum Seconds Between Updates [0]: Maximum Seconds Between Updates [2073600]: </pre> This is a sample update run: <pre> # gdipc.pl ==== gdipc.pl running: Sun May 27 21:32:17 2001 ==== Configuration file name: /root/.GnuDIP2 Cache file name: /root/.GnuDIP2.cache.tester.gnudip No update done for tester.gnudip - 127.0.0.1 still valid Cache file name: /root/.GnuDIP2.cache.tester2.gnudip Invalid login attempt for tester2.gnudip </pre> The IP address for <code>tester.gnudip</code> was not updated because the IP address at the time of the last update is still valid, and because "Maximum Seconds Between Updates" had not yet expired. <p> This is the contents of <code>/root/.GnuDIP2.cache.tester.gnudip</code>: <pre> 127.0.0.1;990991068 </pre> The status of a GnuDIP domain may be reset by deleting its cache file. <p> If "Minimum Seconds Between Updates" is specified, then an update will not be sent to the server more often than this interval, even if the IP address at the time of the last update is no longer valid. <p> <li> The "help" printed by the script is as follows: <pre> # gdipc.pl -h usage: gdipc.pl \ usage: { -h | -v | -i [ -r] | [ -f configfile ] [ -c | -r | \ usage: [ -o outfile | -a appendfile | -l logfile ] \ usage: [ -g sendport:recvport ] [ -d repeatseconds] \ usage: [ -w waitseconds] [ -q "addressquerycommand" ] ] \ usage: [ -x "addresschangedcommand" ] } usage: With no arguments, update server if address changed or time usage: expired. usage: -h: Print this usage message. usage: -v: Show version information. usage: -i: Prompt and read standard input rather than a configuration usage: file. usage: -f: Specify a particular configuration file. usage: This will otherwise be .GnuDIP2 in the directory usage: specified by the HOME environment variable, or gdipc.conf usage: in the directory of the binary if HOME is not set. usage: -c: Specify contents to write to configuration file. usage: -r: Send an offline request to the server to remove your DNS hostname. usage: -d: Run as a daemon. Perform client action immediately and then every usage: "repeatseconds" seconds. usage: -o: Specify log file to overwrite on each run with output from script. usage: -a: Specify log file to append on each run with all output from script. usage: -l: Specify log file for daemon mode. Overwrite on first run, then usage: append. usage: -w: Timeout in seconds when waiting for address validation packet. usage: Defaults to 1 second. Decimal point and fraction (e.g. "0.5") is usage: allowed. usage: -g: Client is behind a gateway. Request GnuDIP server to register usage: address it sees connection from, and pass it back in response. usage: Specify port to send address validation packet to and port gateway usage: will forward it to. usage: -q: Command to invoke to determine IP address to report to GnuDIP usage: server. Command must write address to standard output. When used usage: with -g, address is sent to server. usage: -x: Command to invoke if address changed. This command can be used to usage: to take any actions required when the address changes. All usage: validated addresses are passed as arguments. </pre> <p><li> You would want to run <code>gdipc.pl</code> at system startup and/or in exit scripts provided by daemons that dynamically configure interfaces. <p> Note that if one of these exit scripts runs very early during system startup, BIND (or whatever name server you use) may not yet be running, so <code>gdipc.pl</code> could not be run at that time. <p> Some examples of such daemons are: <p>&nbsp; <dl> <dt> <b><code>dhcpcd</code></b>: <dd> This is an excerpt from "<code>man dhcpcd</code>": <pre> /etc/dhcpc/dhcpcd-&lt;interface&gt;.exe file which dhcpcd will try to execute whenever it detects a change in IP address. </pre> <p><dt> <b><code>dhclient</code></b>: <dd> This is an excerpt from "<code>man dhclient-script</code>": <pre> After all processing has completed, /etc/dhclient-script checks for the presence of an executable /etc/dhclient- exit-hooks script, which if present is invoked using the '.' command. The exit status is passed in the exit_sta- tus shell variable, and will always be zero if the script succeeded at the task for which it was invoked. </pre> <p><dt> <b><code>pppd</code></b>: <dd> This is an excerpt from "<code>man pppd</code>": <pre> /etc/ppp/ip-up A program or script which is executed when the link is available for sending and receiving IP packets (that is, IPCP has come up). It is executed with the parameters interface-name tty-device speed local-IP-address remote-IP-address ipparam </pre> </dl> <p><li> It would also be possible, if less desirable, to run it at regular intervals, either using the <code>crontab</code> command to schedule it, or using the <code>-d</code> option and starting it at system start up. <p> In order to capture the messages from <code>gdipc.pl</code> for the system log you could do something like: <pre> /usr/local/gnudip/bin/gdipc.pl | /usr/bin/logger -t gdipc.pl </pre> from <code>dhclient-script</code> or: <pre> /usr/local/gnudip/bin/gdipc.pl -d 30 -l /var/log/gdipc.log </pre> when run at system start up. <p><li> If you have an internal network with a <b>Network Address Transalation/IP Masquerading gateway</b> providing access to and from the public Internet, and you want to register the external IP address of the NAT box with the GnuDIP server, you may want to run the client on an internal machine. If the gateway is a closed proprietary device, you will have to run the client on an internal machine. <p> The client normally sends the address it detects at its end of the connection to the server in the update request to the server, and the server registers this address. It also remembers this address, and tests whether it is valid by sending a UDP packet to a randomly selected port at this address. The client then waits a short interval to receive this packet. If it is not received the IP address is assumed to have changed, and an update is sent to the GnuDIP server. <p> To run behind an NAT box, the client needs to know the external address of the NAT box and must be able to check whether that address has changed. <p> You must configure the NAT box to redirect some external UDP port to a UDP port on the internal machine running the client. You provide these port numbers to the client using the <code>-g</code> option. This option will also cause the client to request the GnuDIP server to send the external address of the NAT device (which the server sees as the other end of the client connection) back in the reply to the update request. You must ensure that the GnuDIP servers you use are at release 2.3.2 or later in order for this request to succeed. </ul> <p><hr> </body> </html>
wp-content/themes/senna/library/css/fonts/entypo2/fontello-555dda7f/css/entypo-ie7-codes.css
samanthavandapuye/lostfit
.icon-e-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); } .icon-e-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); } .icon-e-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); } .icon-e-left-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); } .icon-e-up-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); } .icon-e-right-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); } .icon-e-down-thin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); } .icon-e-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); } .icon-e-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); } .icon-e-switch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); } .icon-e-infinity { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); } .icon-e-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); } .icon-e-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); } .icon-e-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); } .icon-e-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); } .icon-e-erase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); } .icon-e-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); } .icon-e-fast-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); } .icon-e-fast-backward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); } .icon-e-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); } .icon-e-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); } .icon-e-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); } .icon-e-stop-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); } .icon-e-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); } .icon-e-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); } .icon-e-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); } .icon-e-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); } .icon-e-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); } .icon-e-adjust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); } .icon-e-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); } .icon-e-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); } .icon-e-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); } .icon-e-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); } .icon-e-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); } .icon-e-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); } .icon-e-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); } .icon-e-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); } .icon-e-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); } .icon-e-note-beamed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); } .icon-e-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); } .icon-e-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); } .icon-e-tools { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); } .icon-e-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); } .icon-e-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); } .icon-e-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); } .icon-e-record { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); } .icon-e-cloud-thunder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); } .icon-e-tape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); } .icon-e-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); } .icon-e-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); } .icon-e-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); } .icon-e-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); } .icon-e-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); } .icon-e-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); } .icon-e-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); } .icon-e-cancel-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); } .icon-e-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); } .icon-e-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); } .icon-e-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); } .icon-e-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); } .icon-e-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); } .icon-e-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); } .icon-e-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); } .icon-e-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); } .icon-e-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); } .icon-e-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); } .icon-e-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); } .icon-e-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); } .icon-e-list-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); } .icon-e-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); } .icon-e-left-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); } .icon-e-right-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); } .icon-e-up-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); } .icon-e-down-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); } .icon-e-user-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); } .icon-e-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); } .icon-e-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); } .icon-e-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); } .icon-e-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); } .icon-e-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); } .icon-e-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); } .icon-e-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); } .icon-e-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); } .icon-e-export { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); } .icon-e-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); } .icon-e-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); } .icon-e-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); } .icon-e-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); } .icon-e-vcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); } .icon-e-address { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); } .icon-e-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); } .icon-e-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); } .icon-e-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); } .icon-e-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); } .icon-e-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); } .icon-e-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); } .icon-e-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); } .icon-e-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); } .icon-e-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); } .icon-e-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); } .icon-e-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); } .icon-e-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); } .icon-e-shareable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); } .icon-e-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); } .icon-e-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); } .icon-e-volume { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); } .icon-e-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); } .icon-e-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); } .icon-e-popup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); } .icon-e-publish { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); } .icon-e-window { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); } .icon-e-arrow-combo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); } .icon-e-chart-pie { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); } .icon-e-language { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); } .icon-e-air { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); } .icon-e-database { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); } .icon-e-drive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); } .icon-e-bucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); } .icon-e-thermometer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); } .icon-e-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); } .icon-e-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); } .icon-e-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); } .icon-e-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); } .icon-e-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); } .icon-e-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); } .icon-e-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); } .icon-e-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); } .icon-e-down-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); } .icon-e-left-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); } .icon-e-right-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); } .icon-e-up-open-mini { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); } .icon-e-down-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); } .icon-e-left-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); } .icon-e-right-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); } .icon-e-up-open-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); } .icon-e-progress-0 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); } .icon-e-progress-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); } .icon-e-progress-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); } .icon-e-progress-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); } .icon-e-back-in-time { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); } .icon-e-network { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); } .icon-e-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); } .icon-e-install { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); } .icon-e-lifebuoy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); } .icon-e-mouse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); } .icon-e-dot { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); } .icon-e-dot-2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); } .icon-e-dot-3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); } .icon-e-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); } .icon-e-flow-cascade { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); } .icon-e-flow-branch { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); } .icon-e-flow-tree { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); } .icon-e-flow-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); } .icon-e-flow-parallel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); } .icon-e-brush { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); } .icon-e-paper-plane { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); } .icon-e-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); } .icon-e-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); } .icon-e-traffic-cone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); } .icon-e-cc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); } .icon-e-cc-by { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); } .icon-e-cc-nc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); } .icon-e-cc-nc-eu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); } .icon-e-cc-nc-jp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); } .icon-e-cc-sa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); } .icon-e-cc-nd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); } .icon-e-cc-pd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); } .icon-e-cc-zero { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); } .icon-e-cc-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); } .icon-e-cc-remix { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); } .icon-e-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); } .icon-e-github-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); } .icon-e-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); } .icon-e-flickr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); } .icon-e-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); } .icon-e-vimeo-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); } .icon-e-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); } .icon-e-twitter-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); } .icon-e-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); } .icon-e-facebook-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); } .icon-e-facebook-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); } .icon-e-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); } .icon-e-gplus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); } .icon-e-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); } .icon-e-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); } .icon-e-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); } .icon-e-tumblr-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); } .icon-e-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); } .icon-e-linkedin-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); } .icon-e-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); } .icon-e-dribbble-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); } .icon-e-stumbleupon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); } .icon-e-stumbleupon-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); } .icon-e-lastfm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); } .icon-e-lastfm-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); } .icon-e-rdio { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); } .icon-e-rdio-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); } .icon-e-spotify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); } .icon-e-spotify-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); } .icon-e-qq { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); } .icon-e-instagram { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); } .icon-e-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); } .icon-e-evernote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); } .icon-e-flattr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); } .icon-e-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); } .icon-e-skype-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); } .icon-e-renren { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); } .icon-e-sina-weibo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe910;&nbsp;'); } .icon-e-paypal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe911;&nbsp;'); } .icon-e-picasa { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); } .icon-e-soundcloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe913;&nbsp;'); } .icon-e-mixi { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe914;&nbsp;'); } .icon-e-behance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe915;&nbsp;'); } .icon-e-google-circles { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe916;&nbsp;'); } .icon-e-vkontakte { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); } .icon-e-smashing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe918;&nbsp;'); } .icon-e-db-shape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); } .icon-e-sweden { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe919;&nbsp;'); } .icon-e-logo-db { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); } .icon-e-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); } .icon-e-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); } .icon-e-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); } .icon-e-graduation-cap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); } .icon-e-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); } .icon-e-palette { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); } .icon-e-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); } .icon-e-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); } .icon-e-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); } .icon-e-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); } .icon-e-trophy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); } .icon-e-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); } .icon-e-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); } .icon-e-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); } .icon-e-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); } .icon-e-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); } .icon-e-lamp { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); } .icon-e-alert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); } .icon-e-water { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); } .icon-e-droplet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); } .icon-e-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); } .icon-e-monitor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); } .icon-e-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); } .icon-e-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); } .icon-e-cd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); } .icon-e-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); } .icon-e-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); } .icon-e-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); } .icon-e-chart-line { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); } .icon-e-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); } .icon-e-clipboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); } .icon-e-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); } .icon-e-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); } .icon-e-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); } .icon-e-book-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); } .icon-e-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); } .icon-e-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); } .icon-e-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); } .icon-e-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); } .icon-e-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); } .icon-e-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); } .icon-e-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); } .icon-e-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); } .icon-e-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); } .icon-e-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); } .icon-e-loop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); } .icon-e-arrows-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); } .icon-e-light-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); } .icon-e-light-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); } .icon-e-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); } .icon-e-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); } .icon-e-battery { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); } .icon-e-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); } .icon-e-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); } .icon-e-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); } .icon-e-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); } .icon-e-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); } .icon-e-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); } .icon-e-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); } .icon-e-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); } .icon-e-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); } .icon-e-chart-area { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); } .icon-e-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); } .icon-e-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); } .icon-e-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
Users/application/views/layouts/onix-business-portfolio-template/12-skins-v1/onix-html-color-vbrown/about.html
alvarotarela/php_users
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ONIX Responsive Business &amp; Portfolio Template</title> <!-- Mobile Specific Metas --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- CSS files begin--> <link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700|Open+Sans+Condensed:700,300,300italic|Open+Sans:400,300italic,400italic,600,600italic,700,700italic,800,800italic|PT+Sans:400,400italic,700,700italic' rel='stylesheet' type='text/css'> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> <link href="assets/js/google-code-prettify/prettify.css" rel="stylesheet"> <link href="assets/css/responsiveslides.css" rel="stylesheet"> <link rel="stylesheet" href="assets/css/prettyPhoto.css" type='text/css'> <link rel="stylesheet" href="assets/build/mediaelementplayer.min.css" /> <link rel="stylesheet" type="text/css" media="screen" href="assets/css/slide-in.css" /> <!--[if lt IE 9]><link rel="stylesheet" type="text/css" media="screen" href="assets/css/slide-in.ie.css" /><![endif]--> <link href="assets/css/style.css" rel="stylesheet"> <!-- Color Style Setting CSS file--> <link href="assets/css/color-theme/color-vbrown.css" rel="stylesheet"> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- fav and touch icons --> <link rel="shortcut icon" href="assets/ico/favicon.ico"> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png"> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png"> <link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png"> </head> <body> <!-- Head ================================================== --> <div class="top-bar"> <div class="container"> <div class="row"> <div class="span6"> <!-- text widget begin here --> <ul class="info-text pull-left"> <li> <a href="#">Lorem ipsum dolor sit amet, consectetuer adipiscing elit Aenean commodo ligula eget.</a> </li> <li> <a href="#"> This informational text widget - Buy this theme now ! </a> </li> <li> <a href="#"> Lorem ipsum dolor sit </a> amet, consectetuer adipiscing elit. Aenean commodo ligula eget. </li> </ul> </div> <div class="span6"> <!-- social begin here --> <ul class="socicon right top-w"> <li> <a href="#" class="share-icon"> </a> </li> <li> <a href="#" class="google"> </a> </li> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="flickr"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> <form class="navbar-search pull-right" action=""> <input class="search-query" type="text"> </form> </div> </div> </div> </div> <!-- Logo / Menu ================================================== --> <header class="header"> <div class="container"> <div class="row"> <div class="span4"> <a href="index.html" class="logo"> <img src="assets/img/logo.png" alt=""> </a> </div> <div class="span8"> <nav> <ul class="right"> <li> <a href="index.html"> home </a> <ul> <li> <a href="index_2.html"> home two </a> </li> </ul> </li> <li class="current"> <a href="about.html"> about </a> </li> <li> <a href="features.html"> features </a> </li> <li> <a href="portfolio.html"> portfolio </a> <ul> <li> <a href="portfolio-two.html"> portfolio two </a> </li> <li> <a href="portfolio-three.html"> portfolio three </a> </li> <li> <a href="portfolio-single.html"> single portfolio </a> </li> <li> <a href="portfolio-single-2.html"> single portfolio slider </a> </li> <li> <a href="portfolio-single-3.html"> single portfolio video </a> </li> </ul> </li> <li> <a href="blog.html"> blog </a> <ul> <li> <a href="blog_rs.html"> blog right sidebar </a> </li> <li> <a href="single-post.html"> single post </a> <ul> <li> <a href="#"> example level </a> </li> <li> <a href="#"> example level </a> </li> </ul> </li> </ul> </li> <li> <a href="contact.html"> contact </a> </li> </ul> </nav> </div> </div> </div> </header> <div class="slider-cont"> <div class="container"> <header id="pagehead"> <h1>About Us <small>&nbsp; &frasl; &nbsp;&nbsp;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </small></h1> </header> </div> </div> <div class="container"> <!-- Content ================================================== --> <section> <div class="row"> <div class="span8"> <div class="row"> <div class="span8" style="margin-bottom:20px;"> <div class="divider-strip block-title"><h4>Our Team</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em></p> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.</p> </div> <!-- Team ================================================== --> <div class="span2 item-block"> <img src="assets/img/user.jpg" alt="example-item"> <div class="desc clearfix center"> <h2>John Smith</h2> <p>Web Designer & Developer</p> <ul class="socicon"> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> </div> </div> <div class="span2 item-block"> <img src="assets/img/user.jpg" alt="example-item"> <div class="desc clearfix center"> <h2>John Smith</h2> <p>Web Designer & Developer</p> <ul class="socicon"> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> </div> </div> <div class="span2 item-block"> <img src="assets/img/user.jpg" alt="example-item"> <div class="desc clearfix center"> <h2>John Smith</h2> <p>Web Designer & Developer</p> <ul class="socicon"> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> </div> </div> <div class="span2 item-block"> <img src="assets/img/user.jpg" alt="example-item"> <div class="desc clearfix center"> <h2>John Smith</h2> <p>Web Designer & Developer</p> <ul class="socicon"> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> </div> </div> <div class="span4"> <div class="divider-strip block-title"><h4>Our Philosophy</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em></p> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. </p> </div> <div class="span4"> <div class="divider-strip block-title"><h4>Our Mission</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</em></p> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.</p> </div> <!-- Our Services ================================================== --> <div class="span8"> <div class="divider-strip block-title"><h4>Our Services</h4><span class="strip-block"></span></div> <div class="row"> <div class="span4 block-info pull-left"> <img class="pull-left" src="assets/img/create-icon.png" alt=""> <h3><a href="#">web design</a></h3> <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p> </div> <div class="span4 block-info pull-left"> <img class="pull-left" src="assets/img/develop-icon.png" alt=""> <h3><a href="#">development</a></h3> <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p> </div> <div class="span4 block-info pull-left"> <img class="pull-left" src="assets/img/usability-icon.png" alt=""> <h3><a href="#">usability</a></h3> <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p> </div> <div class="span4 block-info pull-left"> <img class="pull-left" src="assets/img/responsive.png" alt=""> <h3><a href="#">responsive</a></h3> <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore.</p> </div> </div> </div> <div class="span8"> <div class="divider-strip block-title"><h4>Testimonials</h4><span class="strip-block"></span></div> <div class="testimonialswrap" data-autorotate="3000"> <ul class="testimonials-slider" id="testimonials"> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> </ul> <div class="testimonials-controls"> <a href="#testimonials" class="next-l">1</a> <a href="#testimonials" class="prev-l">2</a> </div> </div> </div> </div> </div> <!-- Sidebar ================================================== --> <div class="span4"> <div class="divider-strip block-title"><h4>Testimonials</h4><span class="strip-block"></span></div> <div class="testimonialswrap" data-autorotate="3000"> <ul class="testimonials-slider" id="testimonials"> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> <li class="testimonials-slide"> <blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</p> <small>John Doe</small></blockquote> </li> </ul> <div class="testimonials-controls"> <a href="#testimonials" class="next-l">1</a> <a href="#testimonials" class="prev-l">2</a> </div> </div> </div> <div class="span4"> <div class="divider-strip block-title"><h4>Our Skills</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </em></p> <h6>Web design</h6> <div class="progress progress-warning progress-striped active" style="margin-bottom: 9px;"> <div class="bar" style="width: 50%"></div> </div> <h6>Web design</h6> <div class="progress progress-success progress-striped active" style="margin-bottom: 9px;"> <div class="bar" style="width: 70%"></div> </div> <h6>Web design</h6> <div class="progress progress-striped active" style="margin-bottom: 9px;"> <div class="bar" style="width: 80%"></div> </div> <h6>Web design</h6> <div class="progress progress-danger progress-striped active" style="margin-bottom: 9px;"> <div class="bar" style="width: 90%"></div> </div> <h6>Web design</h6> <div class="progress progress-info progress-striped active" style="margin-bottom: 9px;"> <div class="bar" style="width: 100%"></div> </div> <div class="divider-strip block-title"><h4>Example tabs</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </em></p> <ul id="myTab" class="nav nav-tabs"> <li class="active"><a href="#home" data-toggle="tab">Home</a></li> <li><a href="#profile" data-toggle="tab">Profile</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#dropdown1" data-toggle="tab">@fat</a></li> <li><a href="#dropdown2" data-toggle="tab">@mdo</a></li> </ul> </li> </ul> <div id="myTabContent" class="tab-content"> <div class="tab-pane fade in active" id="home"> <p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p> </div> <div class="tab-pane fade" id="profile"> <p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown.</p> </div> <div class="tab-pane fade" id="dropdown1"> <p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork. Williamsburg banh mi whatever gluten-free, carles pitchfork biodiesel fixie etsy retro mlkshk vice blog. Scenester cred you probably haven't heard of them, vinyl craft beer blog stumptown. Pitchfork sustainable tofu synth chambray yr.</p> </div> <div class="tab-pane fade" id="dropdown2"> <p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater. Lomo wolf viral, mustache readymade thundercats keffiyeh craft beer marfa ethical. Wolf salvia freegan, sartorial keffiyeh echo park vegan.</p> </div> </div> <div class="divider-strip block-title"><h4>Gallery Widget</h4><span class="strip-block"></span></div> <p><em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. </em></p> <div class="carousel" id="Carousel"> <div class="carousel-inner"> <div class="active item"><img src="assets/img/blog-examples/blog-home-c.jpg" alt="" width="370"></div> <div class="item"><img src="assets/img/blog-examples/blog-home-c2.jpg" alt="" width="370"></div> <div class="item"><img src="assets/img/blog-examples/blog-home-c3.jpg" alt="" width="370"></div> </div> <!-- Carousel nav --> <a class="carousel-control left" href="#Carousel" data-slide="prev">&lsaquo;</a> <a class="carousel-control right" href="#Carousel" data-slide="next">&rsaquo;</a> </div> </div> </div><!--/row--> </section> <div class="divider"></div> </div><!-- /container --> <!-- Footer ================================================== --> <footer> <div class="container"> <div class="row"> <div class="span4"> <h3>About</h3> <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p> <h3>Connect With Us</h3> <!-- social begin here --> <ul class="socicon left"> <li> <a href="#" class="share-icon"> </a> </li> <li> <a href="#" class="google"> </a> </li> <li> <a href="#" class="facebook"> </a> </li> <li> <a href="#" class="twitter"> </a> </li> <li> <a href="#" class="flickr"> </a> </li> <li> <a href="#" class="dribbble"> </a> </li> <li> <a href="#" class="linkedin"> </a> </li> <li class="last"> <a href="#" class="vimeo"> </a> </li> </ul> </div> <!-- tweets begin here --> <div class="span4"> <h3>Latest Tweets</h3> <div class="tweets"> <p> Loading Tweets... </p> <ul id="tweet-list"> </ul> </div> </div> <div class="span4"> <!-- flickr begin here --> <h3>From Flickr</h3> <script type="text/javascript" src="http://www.flickr.com/badge_code_v2.gne?count=8&amp;source=user&amp;user=52617155@N08&amp;layout=x&amp;display=random&amp;size=s"></script> </div> <div class="span12 copy"> &copy; 2012 NLINE. All Rights Reserved. </div> </div> </div> </footer> <!-- JavaScript files begin--> <!-- Placed at the end of the document so the pages load faster --> <script src="assets/js/jquery.js"></script> <script src="http://maps.google.com/maps/api/js?sensor=false"></script> <script src="assets/js/jquery.form.js"></script> <script src="assets/js/jquery.ufvalidator-1.0.5.js"></script> <script src="assets/js/jquery.easing.1.3.js"></script> <script src="assets/js/jquery.cycle.all.js"></script> <script src="assets/js/jquery.prettyPhoto.js"></script> <script src="assets/js/google-code-prettify/prettify.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/application.js"></script> <script src="assets/js/responsiveslides.min.js"></script> <script src="assets/build/mediaelement-and-player.min.js"></script> <script src="assets/js/gmap3.min.js"></script> <script src="assets/js/carusel.js"></script> <script src="assets/js/custom.js"></script> <script src="assets/js/jquery.ui.totop.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { $().UItoTop({ easingType: 'easeOutQuart' }); }); </script> <script type="text/javascript" src="assets/js/sslider-min.js"></script> <script type="text/javascript"> /mobile/i.test(navigator.userAgent) && !location.hash && setTimeout(function () { if (!pageYOffset) window.scrollTo(0, 1); }, 1000); $(document).ready(function(){ var options = { nextButton: true, prevButton: true, pauseButton: true, animateStartingFrameIn: true, transitionThreshold: 250, afterLoaded: function(){ $("#nav").fadeIn(100); $("#nav li:nth-child("+(sequence.settings.startingFrameID)+") img").addClass("active"); }, beforeNextFrameAnimatesIn: function(){ $("#nav li:not(:nth-child("+(sequence.nextFrameID)+")) img").removeClass("active"); $("#nav li:nth-child("+(sequence.nextFrameID)+") img").addClass("active"); } }; var sequence = $("#sequence").sequence(options).data("sequence"); $("#nav li").click(function(){ if(!sequence.active){ $(this).children("img").removeClass("active").children("img").addClass("active"); sequence.nextFrameID = $(this).index()+1; sequence.goTo(sequence.nextFrameID); } }); }); </script> </body> </html>
vendor/imangazaliev/didom/tests/fixtures/posts.html
tdtgit/tdt-lazyload
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Posts</title> </head> <body> <h1 class="title">Posts</h1> <div class="posts"> <div class="post"> <h2 class="title">Lorem ipsum dolor sit amet.</h2> <p class="body">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore autem, in accusamus doloremque temporibus dolorem.</p> </div> <div class="post"> <h2 class="title">Distinctio nisi ab in facere.</h2> <p class="body">Possimus adipisci atque voluptate non, voluptatum quam, saepe architecto repellat eum quaerat sed nam, quos.</p> </div> <div class="post"> <h2 class="title">Consequatur eligendi praesentium voluptatem incidunt.</h2> <p class="body">Ad magnam optio maxime cupiditate eos eum. Perferendis voluptatum atque et nobis, facilis iusto! Ipsam.</p> </div> </div> </body> </html>
leJOS_NXJ_0.9.1beta-3/docs/nxt/javax/microedition/lcdui/Display.html
gusDuarte/enchanting-usb3
<!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.5.0_22) on Tue May 29 00:11:47 CEST 2012 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> Display (leJOS NXJ API documentation) </TITLE> <META NAME="keywords" CONTENT="javax.microedition.lcdui.Display class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Display (leJOS NXJ API documentation)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= 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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../javax/microedition/lcdui/CommandListener.html" title="interface in javax.microedition.lcdui"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../javax/microedition/lcdui/Displayable.html" title="class in javax.microedition.lcdui"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?javax/microedition/lcdui/Display.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Display.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<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"> javax.microedition.lcdui</FONT> <BR> Class Display</H2> <PRE> <A HREF="../../../java/lang/Object.html" title="class in java.lang">java.lang.Object</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>javax.microedition.lcdui.Display</B> </PRE> <HR> <DL> <DT><PRE>public class <B>Display</B><DT>extends <A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A></DL> </PRE> <P> <DL> <DT><B>Author:</B></DT> <DD>Andre Nijholt</DD> </DL> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_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>Field Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#CHAR_HEIGHT">CHAR_HEIGHT</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#CHAR_WIDTH">CHAR_WIDTH</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../javax/microedition/lcdui/Graphics.html" title="class in javax.microedition.lcdui">Graphics</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#graphics">graphics</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#SCREEN_CHAR_DEPTH">SCREEN_CHAR_DEPTH</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#SCREEN_CHAR_WIDTH">SCREEN_CHAR_WIDTH</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#SCREEN_HEIGHT">SCREEN_HEIGHT</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#SCREEN_WIDTH">SCREEN_WIDTH</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== 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>&nbsp;<A HREF="../../../javax/microedition/lcdui/Displayable.html" title="class in javax.microedition.lcdui">Displayable</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#getCurrent()">getCurrent</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../javax/microedition/lcdui/Display.html" title="class in javax.microedition.lcdui">Display</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#getDisplay()">getDisplay</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#quit()">quit</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#setCurrent(javax.microedition.lcdui.Alert, javax.microedition.lcdui.Screen)">setCurrent</A></B>(<A HREF="../../../javax/microedition/lcdui/Alert.html" title="class in javax.microedition.lcdui">Alert</A>&nbsp;alert, <A HREF="../../../javax/microedition/lcdui/Screen.html" title="class in javax.microedition.lcdui">Screen</A>&nbsp;nextDisplayable)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#setCurrent(javax.microedition.lcdui.Screen)">setCurrent</A></B>(<A HREF="../../../javax/microedition/lcdui/Screen.html" title="class in javax.microedition.lcdui">Screen</A>&nbsp;nextDisplayable)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../javax/microedition/lcdui/Display.html#show(boolean)">show</A></B>(boolean&nbsp;polling)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Start displaying the installed menus</TD> </TR> </TABLE> &nbsp;<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.<A HREF="../../../java/lang/Object.html" title="class in java.lang">Object</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../java/lang/Object.html#clone()">clone</A>, <A HREF="../../../java/lang/Object.html#equals(java.lang.Object)">equals</A>, <A HREF="../../../java/lang/Object.html#finalize()">finalize</A>, <A HREF="../../../java/lang/Object.html#getClass()">getClass</A>, <A HREF="../../../java/lang/Object.html#hashCode()">hashCode</A>, <A HREF="../../../java/lang/Object.html#notify()">notify</A>, <A HREF="../../../java/lang/Object.html#notifyAll()">notifyAll</A>, <A HREF="../../../java/lang/Object.html#toString()">toString</A>, <A HREF="../../../java/lang/Object.html#wait()">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long)">wait</A>, <A HREF="../../../java/lang/Object.html#wait(long, int)">wait</A></CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_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>Field Detail</B></FONT></TH> </TR> </TABLE> <A NAME="SCREEN_WIDTH"><!-- --></A><H3> SCREEN_WIDTH</H3> <PRE> public static final int <B>SCREEN_WIDTH</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.SCREEN_WIDTH">Constant Field Values</A></DL> </DL> <HR> <A NAME="SCREEN_HEIGHT"><!-- --></A><H3> SCREEN_HEIGHT</H3> <PRE> public static final int <B>SCREEN_HEIGHT</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.SCREEN_HEIGHT">Constant Field Values</A></DL> </DL> <HR> <A NAME="CHAR_WIDTH"><!-- --></A><H3> CHAR_WIDTH</H3> <PRE> public static final int <B>CHAR_WIDTH</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.CHAR_WIDTH">Constant Field Values</A></DL> </DL> <HR> <A NAME="CHAR_HEIGHT"><!-- --></A><H3> CHAR_HEIGHT</H3> <PRE> public static final int <B>CHAR_HEIGHT</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.CHAR_HEIGHT">Constant Field Values</A></DL> </DL> <HR> <A NAME="SCREEN_CHAR_WIDTH"><!-- --></A><H3> SCREEN_CHAR_WIDTH</H3> <PRE> public static final int <B>SCREEN_CHAR_WIDTH</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.SCREEN_CHAR_WIDTH">Constant Field Values</A></DL> </DL> <HR> <A NAME="SCREEN_CHAR_DEPTH"><!-- --></A><H3> SCREEN_CHAR_DEPTH</H3> <PRE> public static final int <B>SCREEN_CHAR_DEPTH</B></PRE> <DL> <DL> <DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#javax.microedition.lcdui.Display.SCREEN_CHAR_DEPTH">Constant Field Values</A></DL> </DL> <HR> <A NAME="graphics"><!-- --></A><H3> graphics</H3> <PRE> protected <A HREF="../../../javax/microedition/lcdui/Graphics.html" title="class in javax.microedition.lcdui">Graphics</A> <B>graphics</B></PRE> <DL> <DL> </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="getDisplay()"><!-- --></A><H3> getDisplay</H3> <PRE> public static <A HREF="../../../javax/microedition/lcdui/Display.html" title="class in javax.microedition.lcdui">Display</A> <B>getDisplay</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setCurrent(javax.microedition.lcdui.Screen)"><!-- --></A><H3> setCurrent</H3> <PRE> public void <B>setCurrent</B>(<A HREF="../../../javax/microedition/lcdui/Screen.html" title="class in javax.microedition.lcdui">Screen</A>&nbsp;nextDisplayable)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setCurrent(javax.microedition.lcdui.Alert, javax.microedition.lcdui.Screen)"><!-- --></A><H3> setCurrent</H3> <PRE> public void <B>setCurrent</B>(<A HREF="../../../javax/microedition/lcdui/Alert.html" title="class in javax.microedition.lcdui">Alert</A>&nbsp;alert, <A HREF="../../../javax/microedition/lcdui/Screen.html" title="class in javax.microedition.lcdui">Screen</A>&nbsp;nextDisplayable)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getCurrent()"><!-- --></A><H3> getCurrent</H3> <PRE> public <A HREF="../../../javax/microedition/lcdui/Displayable.html" title="class in javax.microedition.lcdui">Displayable</A> <B>getCurrent</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="show(boolean)"><!-- --></A><H3> show</H3> <PRE> public void <B>show</B>(boolean&nbsp;polling)</PRE> <DL> <DD>Start displaying the installed menus <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>polling</CODE> - true to poll for button updates (recommended)</DL> </DD> </DL> <HR> <A NAME="quit()"><!-- --></A><H3> quit</H3> <PRE> public void <B>quit</B>()</PRE> <DL> <DD><DL> </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../javax/microedition/lcdui/CommandListener.html" title="interface in javax.microedition.lcdui"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../javax/microedition/lcdui/Displayable.html" title="class in javax.microedition.lcdui"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?javax/microedition/lcdui/Display.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Display.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
documentation/doxy/output/is4c-nf/html/class_m_c_c___kicker.html
GeorgeStreetCoop/CORE-POS
<!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>CORE POS - IS4C: MCC_Kicker Class 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() { if ($('.searchresults').length > 0) { searchBox.DOMSearchField().focus(); } }); </script> <link rel="search" href="search-opensearch.php?v=opensearch.xml" type="application/opensearchdescription+xml" title="CORE POS - IS4C"/> <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">CORE POS - IS4C </div> <div id="projectbrief">The CORE POS front end</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.4 --> <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&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</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> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <div class="left"> <form id="FSearchBox" action="search.php" method="get"> <img id="MSearchSelect" src="search/mag.png" alt=""/> <input type="text" id="MSearchField" name="query" value="Search" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"/> </form> </div><div class="right"></div> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="class_m_c_c___kicker-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">MCC_Kicker Class Reference</div> </div> </div><!--header--> <div class="contents"> <div class="dynheader"> Inheritance diagram for MCC_Kicker:</div> <div class="dyncontent"> <div class="center"> <img src="class_m_c_c___kicker.png" usemap="#MCC_Kicker_map" alt=""/> <map id="MCC_Kicker_map" name="MCC_Kicker_map"> <area href="class_kicker.html" alt="Kicker" shape="rect" coords="0,0,84,24"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a8e4c5ca74b5e26fb06420617cf09e105"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_m_c_c___kicker.html#a8e4c5ca74b5e26fb06420617cf09e105">doKick</a> ($trans_num)</td></tr> <tr class="separator:a8e4c5ca74b5e26fb06420617cf09e105"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a36195a5ad7a79f699f218d2781b1b3c3"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_m_c_c___kicker.html#a36195a5ad7a79f699f218d2781b1b3c3">kickOnSignIn</a> ()</td></tr> <tr class="separator:a36195a5ad7a79f699f218d2781b1b3c3"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6cbde9f771e3344ac3780d43c0c20532"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_m_c_c___kicker.html#a6cbde9f771e3344ac3780d43c0c20532">kickOnSignOut</a> ()</td></tr> <tr class="separator:a6cbde9f771e3344ac3780d43c0c20532"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_class_kicker"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_kicker')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_kicker.html">Kicker</a></td></tr> <tr class="memitem:a29c30411aded20e17b0dff3c9c86984a inherit pub_methods_class_kicker"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kicker.html#a29c30411aded20e17b0dff3c9c86984a">doKick</a> ($trans_num)</td></tr> <tr class="separator:a29c30411aded20e17b0dff3c9c86984a inherit pub_methods_class_kicker"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a10825401b32e080a3534886b42f484ea inherit pub_methods_class_kicker"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kicker.html#a10825401b32e080a3534886b42f484ea">kickOnSignIn</a> ()</td></tr> <tr class="separator:a10825401b32e080a3534886b42f484ea inherit pub_methods_class_kicker"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a60fb82b43e395765beac99230e5c1526 inherit pub_methods_class_kicker"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_kicker.html#a60fb82b43e395765beac99230e5c1526">kickOnSignOut</a> ()</td></tr> <tr class="separator:a60fb82b43e395765beac99230e5c1526 inherit pub_methods_class_kicker"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pro_methods_class_kicker"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_kicker')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_kicker.html">Kicker</a></td></tr> <tr class="memitem:ac77c2665be9f358cbc14359ba57248f2 inherit pro_methods_class_kicker"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac77c2665be9f358cbc14359ba57248f2"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>refToWhere</b> ($ref)</td></tr> <tr class="separator:ac77c2665be9f358cbc14359ba57248f2 inherit pro_methods_class_kicker"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a8e4c5ca74b5e26fb06420617cf09e105"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">MCC_Kicker::doKick </td> <td>(</td> <td class="paramtype">&#160;</td> <td class="paramname"><em>$trans_num</em>)</td><td></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Determine whether to open the drawer </p> <dl class="section return"><dt>Returns</dt><dd>boolean </dd></dl> </div> </div> <a class="anchor" id="a36195a5ad7a79f699f218d2781b1b3c3"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">MCC_Kicker::kickOnSignIn </td> <td>(</td> <td class="paramname">)</td><td></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Determine whether to open the drawer when a cashier signs in </p> <dl class="section return"><dt>Returns</dt><dd>boolean </dd></dl> </div> </div> <a class="anchor" id="a6cbde9f771e3344ac3780d43c0c20532"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">MCC_Kicker::kickOnSignOut </td> <td>(</td> <td class="paramname">)</td><td></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Determine whether to open the drawer when a cashier signs out </p> <dl class="section return"><dt>Returns</dt><dd>boolean </dd></dl> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>pos/is4c-nf/lib/Kickers/MCC_Kicker.php</li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Thu Apr 2 2015 12:27:46 for CORE POS - IS4C by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.4 </small></address> </body> </html>
components/com_community/assets/_source/html/inputbox/photo.html
Xervmon/b2b
<div style="position:relative"> <div class="joms-postbox-input joms-inputbox"> <div class="inputbox"> <div style="position:relative"> <span class="input"></span> <textarea class="input input-photo-desc" placeholder="<%= data && data.placeholder || '' %>" style="min-height:1.4em"></textarea> </div> </div> </div> <div class="charcount joms-postbox-charcount"></div> </div>
_attachments/2012-04-25-device-2012-04-25-125424.html
oussemos/oussemos.github.io
--- layout: attachment title: device-2012-04-25-125424 categories: [] tags: [] status: inherit type: attachment published: false meta: {} ---
CodeIgniter_1.3.1/CodeIgniter_1.3.1/user_guide/index.html
Calico90/codeigniter-version-scanner
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Code Igniter User Guide</title> <style type='text/css' media='all'>@import url('userguide.css');</style> <link rel='stylesheet' type='text/css' media='all' href='userguide.css' /> <script type="text/javascript" src="scripts/nav.js"></script> <script type="text/javascript" src="scripts/prototype.lite.js"></script> <script type="text/javascript" src="scripts/moo.fx.js"></script> <script type="text/javascript"> window.onload = function() { myHeight = new fx.Height('nav', {duration: 400}); myHeight.hide(); } </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv='expires' content='-1' /> <meta http-equiv= 'pragma' content='no-cache' /> <meta name='robots' content='all' /> <meta name='author' content='Rick Ellis' /> <meta name='description' content='Code Igniter User Guide' /> </head> <body> <!-- START NAVIGATION --> <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('null');</script></div></div> <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="images/nav_toggle.jpg" width="153" height="44" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div> <div id="masthead"> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td><h1>Code Igniter User Guide Version 1.3.1</h1></td> <td id="breadcrumb_right"><a href="toc.html">Full Table of Contents</a></td> </tr> </table> </div> <!-- END NAVIGATION --> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td id="breadcrumb"> <a href="http://www.codeigniter.com/">Code Igniter Home</a> &nbsp;&#8250;&nbsp; Code Igniter User Guide </td> <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="www.codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td> </tr> </table> <br clear="all" /> <div class="center"><img src="images/ci_logo.jpg" width="200" height="106" border="0" /></div> <!-- START CONTENT --> <div id="content"> <h2>Welcome to Code Igniter</h2> <p>Code Igniter is an Application Development Framework - a toolkit - for people who build web sites using PHP. Its goal is to enable you to develop projects must faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. Code Igniter lets you creatively focus on your project by minimizing the amount of code needed for a given task.</p> <p>Please read the Introduction section of the User Guide to learn the broad concepts behind Code Igniter, then read the <a href="general/index.html">Getting Started</a> page.</p> <h2>Who is Code Igniter For?</h2> <p>Code Igniter is right for you if:</p> <ul> <li>You want a framework with a small footprint.</li> <li>You are not interested in large-scale, monolithic libraries, like PEAR.</li> <li>You need broad compatibility with standard hosting accounts that run a variety of PHP versions and configurations.</li> <li>You want a framework that requires nearly zero configuration.</li> <li>You want a framework that does not require you to use the command line.</li> <li>You do not want to be forced to learn a templating language.</li> <li>You need exceptional performance.</li> <li>You eschew complexity, favoring simple solutions.</li> <li>You need clear, thorough documentation.</li> </ul> </div> <!-- END CONTENT --> <div id="footer"> <p><a href="#top">Top of Page</a><p> <p><a href="http://www.codeigniter.com">Code Igniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 &nbsp;&middot;&nbsp; <a href="http://www.pmachine.com">pMachine, Inc.</a></p> </div> </body> </html>
wp-content/themes/hqtheme/inc/acf-pro/css/input.css
Metrashev/HotelBudapes
/*--------------------------------------------------------------------------------------------- * * Basic Field Styles * *---------------------------------------------------------------------------------------------*/ .acf-field input[type="text"], .acf-field input[type="password"], .acf-field input[type="number"], .acf-field input[type="search"], .acf-field input[type="email"], .acf-field input[type="url"], .acf-field textarea, .acf-field select { width: 100%; padding: 3px 5px; resize: none; margin: 0; box-sizing: border-box; font-size: 14px; line-height: 15px; } .acf-field textarea { resize: vertical; line-height: 1.4em; } /*--------------------------------------------------------------------------------------------- * * Text * *---------------------------------------------------------------------------------------------*/ .acf-input-prepend, .acf-input-append { font-size: 13px; line-height: 19px; height: 20px; padding: 3px 7px; background: #F4F4F4; border: #DFDFDF solid 1px; } .acf-input-prepend { float: left; border-right: 0; border-radius: 3px 0 0 3px; } .acf-input-append { float: right; border-left: 0; border-radius: 0 3px 3px 0; } .acf-input-wrap { position: relative; overflow: hidden; } .acf-input-wrap input { height: 28px; margin: 0; } input.acf-is-prepended { border-radius: 0 3px 3px 0 !important; } input.acf-is-appended { border-radius: 3px 0 0 3px !important; } input.acf-is-prepended.acf-is-appended { border-radius: 0 !important; } /*--------------------------------------------------------------------------------------------- * * Url * *---------------------------------------------------------------------------------------------*/ .acf-url { } .acf-url i { position: absolute; top: 7px; left: 7px; opacity: 0.5; } .acf-url.valid i { opacity: 1; } .acf-url input[type="url"] { padding-left: 25px; } /*--------------------------------------------------------------------------------------------- * * Select * *---------------------------------------------------------------------------------------------*/ .acf-field select { padding: 2px; } .acf-field select optgroup { padding: 5px; background: #fff; } .acf-field select option { padding: 3px; } .acf-field select optgroup option { padding-left: 5px; } .acf-field select optgroup:nth-child(2n) { background: #F9F9F9; } .acf-field .select2-input { max-width: 200px; } /*--------------------------------------------------------------------------------------------- * * Radio * *---------------------------------------------------------------------------------------------*/ ul.acf-radio-list, ul.acf-checkbox-list { background: transparent !important; position: relative; padding: 1px; margin: 0; } ul.acf-radio-list li, ul.acf-checkbox-list li { font-size: 13px; line-height: 22px; margin: 0; position: relative; word-wrap: break-word; } ul.acf-hl.acf-radio-list li, ul.acf-hl.acf-checkbox-list li { margin-right: 20px; clear: none; } ul.acf-radio-list li input, ul.acf-checkbox-list li input { margin: -1px 4px 0 0; width: auto !important; vertical-align: middle; } ul.acf-radio-list li label, ul.acf-checkbox-list li label { display: inline; margin: 2px 0; } /*-------------------------------------------------------------------------- * * Google Map * *-------------------------------------------------------------------------*/ .acf-google-map { position: relative; border: #DFDFDF solid 1px; background: #fff; } .acf-google-map .title { position: relative; border-bottom: #DFDFDF solid 1px; padding: 5px 10px; } .acf-google-map .has-value { display: none; } .acf-google-map .no-value { display: block; } .acf-google-map.active .has-value { display: block; } .acf-google-map.active .no-value { display: none; } .acf-google-map .title h4, .acf-google-map .title input[type="text"] { margin: 0; font-size: 14px; line-height: 30px; height: 30px; padding: 0; border: 0 none; box-shadow: none; border-radius: 0; font-family: inherit; cursor: text; } .acf-google-map .title .acf-icon { right: 7px; top: 6px; position: absolute; } .acf-google-map .canvas { height: 400px; } .pac-container { margin-left: -1px; margin-top: -1px; padding: 5px 0; border-color: #DFDFDF; } .pac-container:after { display: none; } .pac-container .pac-item { padding: 5px; margin: 0 5px; } /*-------------------------------------------------------------------------- * * Relationship * *-------------------------------------------------------------------------*/ .acf-relationship { } .acf-relationship .filters { border: #DFDFDF solid 1px; background: #fff; } .acf-relationship .filters li { } .acf-relationship .filters li input, .acf-relationship .filters li select { height: 28px; line-height: 28px; padding: 2px; } .acf-relationship .filters li input { border-color: transparent; box-shadow: none; } .acf-relationship .filters li .inner { padding: 7px 7px 7px 0; margin: 0; } .acf-relationship .filters li:first-child .inner { padding-left: 5px; } .acf-relationship .filters .filter { margin: 0; float: none; } .acf-relationship .filters .filter:focus, .acf-relationship .filters .filter:active { outline: none; box-shadow: none; } .acf-relationship .selection { border: #DFDFDF solid 1px; position: relative; margin-top: -1px; } .acf-relationship .values, .acf-relationship .choices { width: 50%; background: #fff; float: left } .acf-relationship .choices { background: #F9F9F9; } .acf-relationship .choices .list { border-right: #DFDFDF solid 1px; } .acf-relationship .list { margin: 0; padding: 5px; height: 160px; overflow: auto; } .acf-relationship .list .acf-rel-label, .acf-relationship .list .acf-rel-item, .acf-relationship .list p { padding: 5px 7px; margin: 0; display: block; position: relative; min-height: 18px; } .acf-relationship .list ul { padding-bottom: 5px; } .acf-relationship .list ul .acf-rel-item{ padding-left: 20px; } .acf-relationship .list .acf-rel-label { font-weight: bold; } .acf-relationship .list .acf-rel-item { color: #333; cursor: pointer; } .acf-relationship .values .list .acf-rel-item { cursor: move; } .acf-relationship .acf-rel-item b { text-decoration: underline; font-weight: normal; } .acf-relationship .values .acf-rel-item b { text-decoration: none; } .acf-relationship .acf-rel-item .thumbnail { background: #DFDFDF; width: 17px; height: 17px; float: left; margin: 0 5px 0 0; } .acf-relationship .acf-rel-item .thumbnail img { width: 17px; height: 17px; } .acf-relationship .acf-rel-item:hover { background: #3875D7; color: #fff; } .acf-relationship .values .acf-icon { position: absolute; top: 4px; right: 7px; display: none; } .acf-relationship .values .acf-rel-item:hover .acf-icon { display: block; } /* disabled */ .acf-relationship .acf-rel-item.disabled { opacity: 0.5; } .acf-relationship .acf-rel-item.disabled:hover { opacity: 0.5; background: transparent; color: #333; cursor: default; } /*-------------------------------------------------------------------------- * * WYSIWYG * *-------------------------------------------------------------------------*/ .acf-wysiwyg-wrap { } .acf-wysiwyg-wrap iframe{ min-height: 200px; } .acf-wysiwyg-wrap .wp-editor-container{ border: 1px solid #E5E5E5; box-shadow: none; } #mce_fullscreen_container { z-index: 150005 !important; } /*--------------------------------------------------------------------------------------------- * * Tab * *---------------------------------------------------------------------------------------------*/ .acf-field.field_type-tab { display: none !important; } .acf-tab-group { background: transparent; border-bottom: #CCCCCC solid 1px; margin: 0 0 10px; padding: 10px 2px 0 0; } .acf-tab-group li { font-family: "Open Sans",sans-serif; font-size: 23px; line-height: 29px; margin: 0 8px 0 0; } .acf-tab-group li a { padding: 6px 10px; display: block; color: #555555; font-size: 15px; font-weight: 700; line-height: 24px; border: #CCCCCC solid 1px; border-bottom: 0 none; text-decoration: none; background: #E4E4E4; } .acf-tab-group li a:hover, .acf-tab-group li.active a { background: #FFFFFF; outline: none; } .acf-tab-group li.active a { background: #F1F1F1; color: #000; border-color: #CCCCCC; border-bottom-color: #F7F7F7; padding-bottom: 7px; margin-bottom: -1px; } .hidden-by-tab { display: none !important; } .acf-postbox .acf-tab-wrap:first-child .acf-tab-group { border-top: 0 none; } .compat-item .acf-tab-wrap td { display: block; } /* * Box */ .acf-postbox.default .acf-tab-group { padding-left: 10px; background: #F9F9F9; border-top: #E8E8E8 solid 1px; border-bottom: #E8E8E8 solid 1px; margin-bottom: -1px; } .acf-postbox.default .acf-tab-group li a { background: #F1F1F1; } .acf-postbox.default .acf-tab-group li.active a { background: #FFFFFF; } /* * Box (label left) */ .acf-table tr.acf-tab-wrap td { padding: 0; background: #F9F9F9; border-top: none; border-bottom: none; } .acf-table tr.acf-tab-wrap td .acf-tab-group { margin-bottom: -1px; padding-left: 24%; } /* media popup & gallery field fix */ .acf-table .form-table tr.acf-tab-wrap td .acf-tab-group { margin-bottom: 10px; padding-left: 0; } /*-------------------------------------------------------------------------------------------- * * oembed * *--------------------------------------------------------------------------------------------*/ .acf-oembed { position: relative; border: #DFDFDF solid 1px; background: #fff; } .acf-oembed .title { position: relative; border-bottom: #DFDFDF solid 1px; padding: 5px 10px; } .acf-oembed .title h4, .acf-oembed .title input[type="text"] { margin: 0; font-size: 14px; line-height: 30px; height: 30px; padding: 0; border: 0 none; box-shadow: none; border-radius: 0; font-family: inherit; cursor: text; } .acf-oembed .title .search { height: auto; border: 0 none; } .acf-oembed .title .acf-icon { right: 7px; top: 6px; position: absolute; } .acf-oembed .canvas { position: relative; min-height: 250px; background: #F9F9F9; } .acf-oembed.has-value .canvas { min-height: 0; } .acf-oembed .canvas-media { position: relative; z-index: 1; } .acf-oembed .canvas iframe { display: block; margin: 0; padding: 0; width: 100%; } .acf-oembed .canvas .acf-sprite-media { position: absolute; top: 50%; left: 50%; margin: -18px 0 0 -18px; z-index: 0; } .acf-oembed .canvas-loading { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; background: rgba(255,255,255,0.9); display: none; z-index: 2; } .acf-oembed .canvas-loading .acf-loading { position: absolute; top: 50%; left: 50%; margin: -10px 0 0 -10px; } .acf-oembed .canvas-error { position: absolute; top: 50%; left: 0%; right: 0%; margin: -9px 0 0 0; text-align: center; display: none; } .acf-oembed .canvas-error p { padding: 8px; margin: 0; display: inline; } /* states */ .acf-oembed .title-value { display: none; } .acf-oembed .title-search { display: block; } .acf-oembed.has-value .title-value { display: block; } .acf-oembed.has-value .title-search { display: none; } .acf-oembed.has-value .canvas .acf-sprite-media { display: none; } .acf-oembed.is-editing .title-value { display: none; } .acf-oembed.is-editing .title-search { display: block; } .acf-oembed.is-loading .canvas-loading { display: block; } .acf-oembed.is-loading .title .acf-icon { display: none; } .acf-oembed.has-error .canvas-error { display: block; } .acf-oembed.has-error .canvas .acf-sprite-media { display: none; } /*-------------------------------------------------------------------------------------------- * * Image * *--------------------------------------------------------------------------------------------*/ .acf-image-uploader { position: relative; } .acf-image-uploader .view { float: left; position: relative; max-width: 100%; } .acf-image-uploader img { width: 100%; height: auto; display: block; min-width: 30px; min-height: 30px; background: #f1f1f1; margin: 0; padding: 0; } .acf-image-uploader input.button { width: auto; } @media screen and (-webkit-min-device-pixel-ratio:0) { .acf-image-uploader img { width: auto; max-width: 100%; } } /* * Hover */ .acf-image-uploader .acf-soh-target { position: absolute; top: 5px; right: 5px; } .acf-image-uploader .acf-soh-target li { margin: 0 0 0 4px; } /*-------------------------------------------------------------------------------------------- * * File * *--------------------------------------------------------------------------------------------*/ .acf-file-uploader { position: relative; } .acf-file-uploader .file-wrap { border: #DFDFDF solid 1px; min-height: 84px; position: relative; background: #fff; } .acf-file-uploader .file-icon { position: absolute; top: 0; left: 0; bottom: 0; padding: 10px; background: #F1F1F1; border-right: #E5E5E5 solid 1px; } .acf-file-uploader .file-icon img { display: block; padding: 0; margin: 0; } .acf-file-uploader .file-info { padding: 10px; margin-left: 69px; } .acf-file-uploader .file-info p { margin: 0 0 2px; font-size: 13px; line-height: 1.4em; word-break: break-all; } .acf-file-uploader .file-info a { text-decoration: none; } /* * Hover */ .acf-file-uploader .acf-soh-target { position: absolute; top: 5px; right: 5px; } .acf-file-uploader .acf-soh-target li { margin: 0 0 0 4px; } /*--------------------------------------------------------------------------------------------- * * Date Picker * *---------------------------------------------------------------------------------------------*/ .acf-ui-datepicker .ui-datepicker { z-index: 999999999 !important; } /*--------------------------------------------------------------------------------------------- * * Taxonomy * *---------------------------------------------------------------------------------------------*/ .acf-taxonomy-field { } .acf-taxonomy-field ul { } .acf-taxonomy-field ul li { } .acf-taxonomy-field .categorychecklist-holder { border: #DFDFDF solid 1px; border-radius: 3px; max-height: 200px; overflow: auto; } .acf-taxonomy-field .acf-checkbox-list { margin: 0; padding: 10px; } .acf-taxonomy-field ul.children { padding-left: 18px; } /*--------------------------------------------------------------------------------------------- * * Media Model * *---------------------------------------------------------------------------------------------*/ .media-modal { } /* WP sets tables to act as divs. ACF uses tables, so these muct be reset */ .media-modal .compat-attachment-fields td.acf-input table { display: table; } .media-modal .compat-attachment-fields td.acf-input table tbody { display: table-row-group; } .media-modal .compat-attachment-fields td.acf-input table tr { display: table-row; } .media-modal .compat-attachment-fields td.acf-input table td, .media-modal .compat-attachment-fields td.acf-input table th { display: table-cell; } .compat-item table.widefat { border: #DFDFDF solid 1px; } /* Expand / Collapse button */ .media-modal .acf-expand-details { float: right; padding: 1px 10px; margin-right: 6px; height: 18px; line-height: 18px; color: #AAAAAA; font-size: 12px; } .media-modal .acf-expand-details:hover { color: #999; } .media-modal .acf-expand-details:focus, .media-modal .acf-expand-details:active { outline: 0 none; } .media-modal .acf-expand-details span { display: block; float: left; } .media-modal .acf-expand-details .acf-icon { margin: 0 4px 0 0; } .media-modal .acf-expand-details:hover .acf-icon { border-color: #AAAAAA; } .media-modal .acf-expand-details .is-open { display: none; } .media-modal .acf-expand-details .is-closed { display: block; } .media-modal.acf-expanded .acf-expand-details .is-open { display: block; } .media-modal.acf-expanded .acf-expand-details .is-closed { display: none; } /* Expand / Collapse views */ .media-modal .media-toolbar, .media-modal .attachments, .media-modal .media-sidebar { -webkit-transition: all 0.25s ease-out; /* Safari 3.2+, Chrome */ -moz-transition: all 0.25s ease-out; /* Firefox 4-15 */ -o-transition: all 0.25s ease-out; /* Opera 10.5–12.00 */ transition: all 0.25s ease-out; /* Firefox 16+, Opera 12.50+ */ } .media-modal.acf-expanded .attachments-browser .media-toolbar { right: 700px; } .media-modal.acf-expanded .attachments { right: 700px; } .media-modal.acf-expanded .media-sidebar { width: 667px; } /* Sidebar: Collapse */ .media-modal .compat-item .label { margin: 0; } .media-modal .media-sidebar .setting span, .media-modal .compat-item label span, .media-modal .media-sidebar .setting input, .media-modal .media-sidebar .setting textarea, .media-modal .compat-item .field { min-height: 0; margin: 5px 0 0; } .media-modal .media-sidebar .setting span, .media-modal .compat-item label span { padding-top: 7px; } .media-modal .attachment-display-settings .setting span { margin-top: 0; margin-right: 3%; } /* Sidebar: Expand */ .media-modal.acf-expanded .attachment-info .thumbnail { width: 20%; max-width: none; max-height: 150px; margin-right: 3%; overflow: hidden; } .media-modal.acf-expanded .media-sidebar .setting span, .media-modal.acf-expanded .compat-item .label, .media-modal.acf-expanded .compat-item .acf-label { min-width: 20%; } .media-modal.acf-expanded .media-sidebar .setting input, .media-modal.acf-expanded .media-sidebar .setting textarea, .media-modal.acf-expanded .compat-item .field, .media-modal.acf-expanded .compat-item .acf-input { width: 77%; } /* Create gallery fix */ .media-modal .media-sidebar .collection-settings .setting span { padding-top: 8px; margin: 0 10px 0 0; } .media-modal .acf-uploadedTo { line-height: 28px; display: inline-block; position: relative; bottom: -6px; margin: 0 10px 0 0; } /*--------------------------------------------------------------------------------------------- * * Media Model (Edit Mode) * *---------------------------------------------------------------------------------------------*/ .media-modal.acf-media-modal { left: 15%; right: 15%; top: 100px; bottom: 100px; } /* Expand / Collapse views */ .media-modal.acf-media-modal .media-toolbar, .media-modal.acf-media-modal .attachments, .media-modal.acf-media-modal .media-sidebar { -webkit-transition: none; /* Safari 3.2+, Chrome */ -moz-transition: none; /* Firefox 4-15 */ -o-transition: none; /* Opera 10.5–12.00 */ transition: none; /* Firefox 16+, Opera 12.50+ */ } .media-modal.acf-media-modal .media-frame-router, .media-modal.acf-media-modal .attachments, .media-modal.acf-media-modal .media-frame-content .media-toolbar { display: none; } .media-modal.acf-media-modal .media-frame-content { top: 56px; } .media-modal.acf-media-modal .media-frame-title { border-bottom: 1px solid #DFDFDF; box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1); } .media-modal.acf-media-modal .media-frame-content .media-sidebar { width: auto; left: 0px; } .media-modal.acf-media-modal .media-toolbar { right: 0; } @media (max-width: 960px) { .media-modal.acf-media-modal { left: 10%; right: 10%; } } @media (max-width: 760px) { .media-modal.acf-expanded .media-sidebar .setting span, .media-modal.acf-expanded .compat-item .label, .media-modal.acf-expanded .compat-item .acf-label { min-width: 100%; text-align: left; min-height: 0; padding: 0; } .media-modal.acf-expanded .compat-item .label br { display: none; } .media-modal.acf-expanded .media-sidebar .setting input, .media-modal.acf-expanded .media-sidebar .setting textarea, .media-modal.acf-expanded .compat-item .field, .media-modal.acf-expanded .compat-item .acf-input { width: 100%; } } .acf-media-modal .media-sidebar { overflow: auto; padding-right: 20px; } .acf-media-modal .attachment-details { overflow: visible; } .acf-media-modal .attachment-details > h3 { display: none; } .acf-media-modal .attachment-info { padding: 14px 16px; margin-left: -17px; margin-right: -20px; background: #fff; } .acf-media-modal .attachment-info .thumbnail { max-height: 110px; } .acf-media-modal .attachment-info img { max-height: 100%; max-width: 100%; float: right; } /* compat-item */ .compat-field-acf-form-data, .compat-field-acf-blank { display: none !important; } .compat-item .acf-field { margin: 0; } .compat-item .acf-label { min-width: 30%; margin: 0; padding: 0; float: left; text-align: right; display: block; float: left; } .compat-item .acf-label label { padding-top: 7px; margin: 5px 0 0; color: #666666; font-weight: 400; line-height: 16px; } .compat-item .acf-input { width: 66%; margin: 5px 0 0; padding: 0; float: right; display: block; } /* WP4 */ body.acf-wp-4 .media-modal.acf-media-modal .media-frame-content { top: 50px; } /* Fix for cancel edit image (hide-menu class is removed from media modal)*/ .media-modal.acf-media-modal .media-frame-menu { left: -200px; } .media-modal.acf-media-modal .media-frame-title, .media-modal.acf-media-modal .media-frame-router, .media-modal.acf-media-modal .media-frame-toolbar, .media-modal.acf-media-modal .media-frame-content { left: 0; } /*-------------------------------------------------------------------------- * * Conditional Logic * *-------------------------------------------------------------------------*/ /* Hide */ .hidden-by-conditional-logic { display: none !important; } /* Hide (appear empty) */ .hidden-by-conditional-logic.appear-empty { display: table-cell !important; } .hidden-by-conditional-logic.appear-empty .acf-input { display: none !important; } /*-------------------------------------------------------------------------- * * 3rd Party * *-------------------------------------------------------------------------*/ /* Tabify shows hidden postboxes */ .acf-postbox.acf-hidden { display: none !important; }
wp-content/themes/gorod/css/style-c.css
TimurMG/mg-redV2
.b-carousel { width: 100%; /* øèðèíà âñåãî áëîêà */ margin: auto; } .h-carousel-wrapper { /*width: 888px; øèðèíà îáëàñòè êàðóñåëè */ position: relative; overflow: hidden; /* ñêðûâàåì ñîäåðæèìîå, âûõîäÿùåå çà ðàìêè îñíîâíîé îáëàñòè */ margin: 0 auto; /* âûðàâíèâàåì ïî öåíòðó îòíîñèòåëüíî ðîäèòåëüñêîãî áëîêà */ } .h-carousel-items { width: 10000px; /* óñòàíàâëèâàåì áîëüøóþ øèðèíó äëÿ íàáîðà ýëåìåíòîâ êàðóñåëè, ÷òîáû â íå¸ âñ¸ ïîìåñòèëîñü */ position: relative; /* ïîçèöèîíèðóåì áëîê îòíîñèòåëüíî îñíîâíîé îáëàñòè êàðóñåëè */ } .b-carousel-block { float: left; /* âûñòðàèâàåì âñå ýëåìåíòû êàðóñåëè â ðÿä */ width: 210px; /* çàäà¸ì øèðèíó êàæäîãî ýëåìåíòà */ padding: 5px 6px; /* äåëàåì îñòóïû, ÷òîáû ýëåìåíòû íå ñëèâàëèñü */ } .a-carousel-image-link { /* òóò ÷èñòî îôîðìëåíèå ñîäåðæèìîãî */ display: block; width: 206px; height: 150px; overflow: hidden; border: 2px solid #fff; } .a-carousel-image-link img{ max-width:270px; max-height:170px;} .b-carousel-button-left, .b-carousel-button-right { width: 28px; /* çàäàåì øèðèíó êíîïîê */ height: 30px; /* çàäàåì âûñîòó êíîïîê */ position: relative; top: 65px; /* ïîçèöèîíèðóåì êíîïêè */ cursor: pointer; /* äåëàåì êíîïêàì êóðñîð â âèäå "ïàëüöà" */ } .b-carousel-button-left { float: left; /* âûðàâíèâàåì ëåâóþ êíîïêó ïî ëåâîìó êðàþ */ background: url(../images/ar-left.png); /* êàðòèíêà ñ ëåâîé êíîïêîé */ } .b-carousel-button-right { float: right; /* âûðàâíèâàåì ïðàâóþ êíîïêó ïî ïðàâîìó êðàþ */ background: url(../images/ar-right.png); /* êàðòèíêà ñ ïðàâîé êíîïêîé */ }
tgdb/tg.css
tgstation/tgstation13.org
@import url("//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700"); @import url("//fonts.googleapis.com/css?family=Tauri:400italic,700italic,400,700"); /*! * Bootswatch v3.1.1+1 * Homepage: http://bootswatch.com * Copyright 2012-2014 Thomas Park * Licensed under MIT * Based on Bootstrap */ /*! normalize.css v3.0.0 | MIT License | git.io/normalize */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } @media print { * { text-shadow: none !important; color: #000 !important; background: transparent !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } select { background: #fff !important; } .navbar { display: none; } .table td, .table th { background-color: #fff !important; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #666666; background-color: #F3F3F3; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #3399f3; text-decoration: none; } a:hover, a:focus { color: #3399f3; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { padding: 4px; line-height: 1.42857143; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eeeeee; } .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 500; line-height: 1.1; color: #2d2d2d; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #999999; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 200; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } cite { font-style: normal; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-muted { color: #999999; } .text-primary { color: #446e9b; } a.text-primary:hover { color: #345578; } .text-success { color: #468847; } a.text-success:hover { color: #356635; } .text-info { color: #3a87ad; } a.text-info:hover { color: #2d6987; } .text-warning { color: #c09853; } a.text-warning:hover { color: #a47e3c; } .text-danger { color: #b94a48; } a.text-danger:hover { color: #953b39; } .bg-primary { color: #fff; background-color: #446e9b; } a.bg-primary:hover { background-color: #345578; } .bg-success { background-color: #dff0d8; } a.bg-success:hover { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eeeeee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #999999; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eeeeee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #999999; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; text-align: right; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } blockquote:before, blockquote:after { content: ""; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; white-space: nowrap; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #ffffff; background-color: #333333; border-radius: 3px; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; word-break: break-all; word-wrap: break-word; color: #333333; background-color: #f5f5f5; border: 1px solid #cccccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } .row { margin-left: -15px; margin-right: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: 0%; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: 0%; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 768px) { .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 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: 0%; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: 0%; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .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 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: 0%; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: 0%; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .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 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: 0%; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: 0%; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0%; } } table { max-width: 100%; background-color: transparent; } th { text-align: left; } .table { width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #dddddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #dddddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #dddddd; } .table .table { background-color: #ffffff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th { background-color: #f9f9f9; } .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th { background-color: #f5f5f5; } table col[class*="col-"] { position: static; float: none; display: table-column; } table td[class*="col-"], table th[class*="col-"] { position: static; float: none; display: table-cell; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } @media (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; overflow-x: scroll; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #dddddd; -webkit-overflow-scrolling: touch; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #666666; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; /* IE8-9 */ line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 9px; font-size: 14px; line-height: 1.42857143; color: #666666; } .form-control { display: block; width: 100%; height: 38px; padding: 8px 12px; font-size: 14px; line-height: 1.42857143; color: #666666; background-color: #ffffff; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); } .form-control::-moz-placeholder { color: #999999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999999; } .form-control::-webkit-input-placeholder { color: #999999; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { cursor: not-allowed; background-color: #eeeeee; opacity: 1; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } input[type="date"] { line-height: 38px; } .form-group { margin-bottom: 15px; } .radio, .checkbox { display: block; min-height: 20px; margin-top: 10px; margin-bottom: 10px; padding-left: 20px; } .radio label, .checkbox label { display: inline; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { float: left; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], .radio[disabled], .radio-inline[disabled], .checkbox[disabled], .checkbox-inline[disabled], fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"], fieldset[disabled] .radio, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .input-lg { height: 54px; padding: 14px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } select.input-lg { height: 54px; line-height: 54px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 47.5px; } .has-feedback .form-control-feedback { position: absolute; top: 25px; right: 0; display: block; width: 38px; height: 38px; line-height: 38px; text-align: center; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { color: #468847; } .has-success .form-control { border-color: #468847; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-success .form-control:focus { border-color: #356635; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; } .has-success .input-group-addon { color: #468847; border-color: #468847; background-color: #dff0d8; } .has-success .form-control-feedback { color: #468847; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { color: #c09853; } .has-warning .form-control { border-color: #c09853; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-warning .form-control:focus { border-color: #a47e3c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; } .has-warning .input-group-addon { color: #c09853; border-color: #c09853; background-color: #fcf8e3; } .has-warning .form-control-feedback { color: #c09853; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { color: #b94a48; } .has-error .form-control { border-color: #b94a48; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-error .form-control:focus { border-color: #953b39; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; } .has-error .input-group-addon { color: #b94a48; border-color: #b94a48; background-color: #f2dede; } .has-error .form-control-feedback { color: #b94a48; } .form-control-static { margin-bottom: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #a6a6a6; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; padding-left: 0; vertical-align: middle; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { float: none; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .control-label, .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 9px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 29px; } .form-horizontal .form-group { margin-left: -15px; margin-right: -15px; } .form-horizontal .form-control-static { padding-top: 9px; } @media (min-width: 768px) { .form-horizontal .control-label { text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { top: 0; right: 15px; } .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 8px 12px; font-size: 14px; line-height: 1.42857143; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn:focus, .btn:active:focus, .btn.active:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus { color: #ffffff; text-decoration: none; } .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; pointer-events: none; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; } .btn-default { color: #ffffff; background-color: #474949; border-color: #474949; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { color: #ffffff; background-color: #333434; border-color: #292a2a; } .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #474949; border-color: #474949; } .btn-default .badge { color: #474949; background-color: #ffffff; } .btn-primary { color: #ffffff; background-color: #446e9b; border-color: #446e9b; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { color: #ffffff; background-color: #385a7f; border-color: #315070; } .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #446e9b; border-color: #446e9b; } .btn-primary .badge { color: #446e9b; background-color: #ffffff; } .btn-success { color: #ffffff; background-color: #3cb521; border-color: #3cb521; } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { color: #ffffff; background-color: #31921b; border-color: #2b8118; } .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #3cb521; border-color: #3cb521; } .btn-success .badge { color: #3cb521; background-color: #ffffff; } .btn-info { color: #ffffff; background-color: #3399f3; border-color: #3399f3; } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { color: #ffffff; background-color: #0e86ef; border-color: #0d7bdc; } .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #3399f3; border-color: #3399f3; } .btn-info .badge { color: #3399f3; background-color: #ffffff; } .btn-warning { color: #ffffff; background-color: #d47500; border-color: #d47500; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { color: #ffffff; background-color: #ab5e00; border-color: #975300; } .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #d47500; border-color: #d47500; } .btn-warning .badge { color: #d47500; background-color: #ffffff; } .btn-danger { color: #ffffff; background-color: #cd0200; border-color: #cd0200; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { color: #ffffff; background-color: #a40200; border-color: #900100; } .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #cd0200; border-color: #cd0200; } .btn-danger .badge { color: #cd0200; background-color: #ffffff; } .btn-link { color: #3399f3; font-weight: normal; cursor: pointer; border-radius: 0; } .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #3399f3; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #999999; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 14px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; padding-left: 0; padding-right: 0; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; transition: height 0.35s ease; } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px solid; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; font-size: 14px; background-color: #ffffff; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { text-decoration: none; color: #ffffff; background-color: #446e9b; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #ffffff; text-decoration: none; outline: 0; background-color: #446e9b; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #999999; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); cursor: not-allowed; } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { left: auto; right: 0; } .dropdown-menu-left { left: 0; right: auto; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #999999; } .dropdown-backdrop { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px solid; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 1px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { left: auto; right: 0; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group > .btn:focus, .btn-group-vertical > .btn:focus { outline: none; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-bottom-left-radius: 4px; border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] { display: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-left: 0; padding-right: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 54px; padding: 14px 16px; font-size: 18px; line-height: 1.33; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 54px; line-height: 54px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 8px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #666666; text-align: center; background-color: #eeeeee; border: 1px solid #cccccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 14px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { margin-left: -1px; } .nav { margin-bottom: 0; padding-left: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eeeeee; } .nav > li.disabled > a { color: #999999; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #999999; text-decoration: none; background-color: transparent; cursor: not-allowed; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eeeeee; border-color: #3399f3; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #dddddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee #dddddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #666666; background-color: #ffffff; border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #ffffff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #ffffff; background-color: #446e9b; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #ffffff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { max-height: 340px; overflow-x: visible; padding-right: 15px; padding-left: 15px; border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-overflow-scrolling: touch; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-left: 0; padding-right: 0; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; padding: 15px 15px; font-size: 18px; line-height: 20px; height: 50px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; margin-right: 15px; padding: 9px 10px; margin-top: 8px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: none; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } .navbar-nav.navbar-right:last-child { margin-right: -15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; } } .navbar-form { margin-left: -15px; margin-right: -15px; padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 6px; margin-bottom: 6px; } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; padding-left: 0; vertical-align: middle; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { float: none; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } } @media (min-width: 768px) { .navbar-form { width: auto; border: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-form.navbar-right:last-child { margin-right: -15px; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 6px; margin-bottom: 6px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-left: 15px; margin-right: 15px; } .navbar-text.navbar-right:last-child { margin-right: 0; } } .navbar-default { background-color: #eeeeee; border-color: #dddddd; } .navbar-default .navbar-brand { color: #777777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #3399f3; background-color: transparent; } .navbar-default .navbar-text { color: #777777; } .navbar-default .navbar-nav > li > a { color: #777777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #3399f3; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #3399f3; background-color: transparent; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #444444; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #dddddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #dddddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #cccccc; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #dddddd; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: transparent; color: #3399f3; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #3399f3; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #3399f3; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444444; background-color: transparent; } } .navbar-default .navbar-link { color: #777777; } .navbar-default .navbar-link:hover { color: #3399f3; } .navbar-inverse { background-color: #446e9b; border-color: #345578; } .navbar-inverse .navbar-brand { color: #dddddd; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-text { color: #dddddd; } .navbar-inverse .navbar-nav > li > a { color: #dddddd; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #345578; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #345578; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #395c82; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: transparent; color: #ffffff; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #345578; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #345578; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #dddddd; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #cccccc; background-color: transparent; } } .navbar-inverse .navbar-link { color: #dddddd; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { content: "/\00a0"; padding: 0 5px; color: #cccccc; } .breadcrumb > .active { color: #999999; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 8px 12px; line-height: 1.42857143; text-decoration: none; color: #3399f3; background-color: #ffffff; border: 1px solid #dddddd; margin-left: -1px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-bottom-left-radius: 4px; border-top-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-bottom-right-radius: 4px; border-top-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { color: #3399f3; background-color: #eeeeee; border-color: #dddddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #999999; background-color: #f5f5f5; border-color: #dddddd; cursor: default; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #999999; background-color: #ffffff; border-color: #dddddd; cursor: not-allowed; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 14px 16px; font-size: 18px; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-bottom-left-radius: 6px; border-top-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-bottom-right-radius: 6px; border-top-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-bottom-right-radius: 3px; border-top-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; list-style: none; text-align: center; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eeeeee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #999999; background-color: #ffffff; cursor: not-allowed; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #ffffff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } .label[href]:hover, .label[href]:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #474949; } .label-default[href]:hover, .label-default[href]:focus { background-color: #2e2f2f; } .label-primary { background-color: #446e9b; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #345578; } .label-success { background-color: #3cb521; } .label-success[href]:hover, .label-success[href]:focus { background-color: #2e8a19; } .label-info { background-color: #3399f3; } .label-info[href]:hover, .label-info[href]:focus { background-color: #0e80e5; } .label-warning { background-color: #d47500; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #a15900; } .label-danger { background-color: #cd0200; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #9a0200; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; color: #ffffff; line-height: 1; vertical-align: baseline; white-space: nowrap; text-align: center; background-color: #3399f3; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #ffffff; text-decoration: none; cursor: pointer; } a.list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #3399f3; background-color: #ffffff; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding: 30px; margin-bottom: 30px; color: inherit; background-color: #EBEBEB; border-style: solid; border-color: #CCC; border-width: 1px; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; /*font-size: 21px;*/ font-weight: 200; } .container .jumbotron { border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron { padding-left: 60px; padding-right: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-left: auto; margin-right: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #3399f3; } .thumbnail .caption { padding: 9px; color: #666666; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable { padding-right: 35px; } .alert-dismissable .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { background-color: #dff0d8; border-color: #d6e9c6; color: #468847; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #356635; } .alert-info { background-color: #d9edf7; border-color: #bce8f1; color: #3a87ad; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #2d6987; } .alert-warning { background-color: #fcf8e3; border-color: #fbeed5; color: #c09853; } .alert-warning hr { border-top-color: #f8e5be; } .alert-warning .alert-link { color: #a47e3c; } .alert-danger { background-color: #f2dede; border-color: #eed3d7; color: #b94a48; } .alert-danger hr { border-top-color: #e6c1c7; } .alert-danger .alert-link { color: #953b39; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { overflow: hidden; height: 20px; margin-bottom: 20px; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress-bar { float: left; width: 0%; height: 100%; font-size: 12px; line-height: 20px; color: #ffffff; text-align: center; background-color: #446e9b; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-transition: width 0.6s ease; transition: width 0.6s ease; } .progress-striped .progress-bar { background-image: -webkit-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-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: 40px 40px; } .progress.active .progress-bar { -webkit-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #3cb521; } .progress-striped .progress-bar-success { background-image: -webkit-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-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); } .progress-bar-info { background-color: #3399f3; } .progress-striped .progress-bar-info { background-image: -webkit-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-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); } .progress-bar-warning { background-color: #d47500; } .progress-striped .progress-bar-warning { background-image: -webkit-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-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); } .progress-bar-danger { background-color: #cd0200; } .progress-striped .progress-bar-danger { background-image: -webkit-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-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); } .media, .media-body { overflow: hidden; zoom: 1; } .media, .media .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media-object { display: block; } .media-heading { margin: 0 0 5px; } .media > .pull-left { margin-right: 10px; } .media > .pull-right { margin-left: 10px; } .media-list { padding-left: 0; list-style: none; } .list-group { margin-bottom: 20px; padding-left: 0; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #ffffff; border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 4px; border-top-left-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } a.list-group-item { color: #555555; } a.list-group-item .list-group-item-heading { color: #333333; } a.list-group-item:hover, a.list-group-item:focus { text-decoration: none; background-color: #f5f5f5; } a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { z-index: 2; color: #ffffff; background-color: #446e9b; border-color: #446e9b; } a.list-group-item.active .list-group-item-heading, a.list-group-item.active:hover .list-group-item-heading, a.list-group-item.active:focus .list-group-item-heading { color: inherit; } a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { color: #c5d5e6; } .list-group-item-success { color: #468847; background-color: #dff0d8; } a.list-group-item-success { color: #468847; } a.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, a.list-group-item-success:focus { color: #468847; background-color: #d0e9c6; } a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus { color: #fff; background-color: #468847; border-color: #468847; } .list-group-item-info { color: #3a87ad; background-color: #d9edf7; } a.list-group-item-info { color: #3a87ad; } a.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, a.list-group-item-info:focus { color: #3a87ad; background-color: #c4e3f3; } a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus { color: #fff; background-color: #3a87ad; border-color: #3a87ad; } .list-group-item-warning { color: #c09853; background-color: #fcf8e3; } a.list-group-item-warning { color: #c09853; } a.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, a.list-group-item-warning:focus { color: #c09853; background-color: #faf2cc; } a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus { color: #fff; background-color: #c09853; border-color: #c09853; } .list-group-item-danger { color: #b94a48; background-color: #f2dede; } a.list-group-item-danger { color: #b94a48; } a.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, a.list-group-item-danger:focus { color: #b94a48; background-color: #ebcccc; } a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus { color: #fff; background-color: #b94a48; border-color: #b94a48; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #ffffff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table { margin-bottom: 0; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { border: 0; margin-bottom: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; overflow: hidden; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse .panel-body { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #333333; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse .panel-body { border-top-color: #dddddd; } .panel-default > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #446e9b; } .panel-primary > .panel-heading { color: #ffffff; background-color: #446e9b; border-color: #446e9b; } .panel-primary > .panel-heading + .panel-collapse .panel-body { border-top-color: #446e9b; } .panel-primary > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #446e9b; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #468847; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #3a87ad; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #fbeed5; } .panel-warning > .panel-heading { color: #c09853; background-color: #fcf8e3; border-color: #fbeed5; } .panel-warning > .panel-heading + .panel-collapse .panel-body { border-top-color: #fbeed5; } .panel-warning > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #fbeed5; } .panel-danger { border-color: #eed3d7; } .panel-danger > .panel-heading { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; } .panel-danger > .panel-heading + .panel-collapse .panel-body { border-top-color: #eed3d7; } .panel-danger > .panel-footer + .panel-collapse .panel-body { border-bottom-color: #eed3d7; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.5; filter: alpha(opacity=50); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal { display: none; overflow: auto; overflow-y: scroll; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); transform: translate(0, -25%); -webkit-transition: -webkit-transform 0.3s ease-out; -moz-transition: -moz-transform 0.3s ease-out; -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); transform: translate(0, 0); } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #ffffff; border: 1px solid #999999; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); background-clip: padding-box; outline: none; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; filter: alpha(opacity=0); } .modal-backdrop.in { opacity: 0.5; filter: alpha(opacity=50); } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; min-height: 16.42857143px; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 20px; } .modal-footer { margin-top: 15px; padding: 19px 20px 20px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1030; display: block; visibility: visible; font-size: 12px; line-height: 1.4; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; text-decoration: none; background-color: rgba(0, 0, 0, 0.9); border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: rgba(0, 0, 0, 0.9); } .tooltip.top-left .tooltip-arrow { bottom: 0; left: 5px; border-width: 5px 5px 0; border-top-color: rgba(0, 0, 0, 0.9); } .tooltip.top-right .tooltip-arrow { bottom: 0; right: 5px; border-width: 5px 5px 0; border-top-color: rgba(0, 0, 0, 0.9); } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: rgba(0, 0, 0, 0.9); } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: rgba(0, 0, 0, 0.9); } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: rgba(0, 0, 0, 0.9); } .tooltip.bottom-left .tooltip-arrow { top: 0; left: 5px; border-width: 0 5px 5px; border-bottom-color: rgba(0, 0, 0, 0.9); } .tooltip.bottom-right .tooltip-arrow { top: 0; right: 5px; border-width: 0 5px 5px; border-bottom-color: rgba(0, 0, 0, 0.9); } .popover { position: absolute; top: 0; left: 0; z-index: 1010; display: none; max-width: 276px; padding: 1px; text-align: left; background-color: #ffffff; background-clip: padding-box; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); white-space: normal; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { margin: 0; padding: 8px 14px; font-size: 14px; font-weight: normal; line-height: 18px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { border-width: 10px; content: ""; } .popover.top > .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: #999999; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; } .popover.top > .arrow:after { content: " "; bottom: 1px; margin-left: -10px; border-bottom-width: 0; border-top-color: #ffffff; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-left-width: 0; border-right-color: #999999; border-right-color: rgba(0, 0, 0, 0.25); } .popover.right > .arrow:after { content: " "; left: 1px; bottom: -10px; border-left-width: 0; border-right-color: #ffffff; } .popover.bottom > .arrow { left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999999; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; } .popover.bottom > .arrow:after { content: " "; top: 1px; margin-left: -10px; border-top-width: 0; border-bottom-color: #ffffff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999999; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left > .arrow:after { content: " "; right: 1px; border-right-width: 0; border-left-color: #ffffff; bottom: -10px; } .carousel { position: relative; } .carousel-inner { position: relative; overflow: hidden; width: 100%; } .carousel-inner > .item { display: none; position: relative; -webkit-transition: 0.6s ease-in-out left; transition: 0.6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; left: 0; bottom: 0; width: 15%; opacity: 0.5; filter: alpha(opacity=50); font-size: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } .carousel-control.left { background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%)); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); } .carousel-control.right { left: auto; right: 0; background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%)); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); } .carousel-control:hover, .carousel-control:focus { outline: none; color: #ffffff; text-decoration: none; opacity: 0.9; filter: alpha(opacity=90); } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; margin-top: -10px; margin-left: -10px; font-family: serif; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; margin-left: -30%; padding-left: 0; list-style: none; text-align: center; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; border: 1px solid #ffffff; border-radius: 10px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); } .carousel-indicators .active { margin: 0; width: 12px; height: 12px; background-color: #ffffff; } .carousel-caption { position: absolute; left: 15%; right: 15%; bottom: 20px; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; margin-left: -15px; font-size: 30px; } .carousel-caption { left: 20%; right: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { content: " "; display: table; } .clearfix:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-left: auto; margin-right: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; visibility: hidden !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } @media print { .hidden-print { display: none !important; } } .navbar { background-image: -webkit-linear-gradient(#ffffff, #eeeeee 50%, #e4e4e4); background-image: linear-gradient(#ffffff, #eeeeee 50%, #e4e4e4); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe4e4e4', GradientType=0); filter: none; border: 1px solid #d5d5d5; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3); } .navbar-inverse { background-image: -webkit-linear-gradient(#6d94bf, #446e9b 50%, #3e648d); background-image: linear-gradient(#6d94bf, #446e9b 50%, #3e648d); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d94bf', endColorstr='#ff3e648d', GradientType=0); filter: none; border: 1px solid #345578; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); } .navbar-inverse .badge { background-color: #fff; color: #446e9b; } .navbar .badge { text-shadow: none; } .navbar-nav > li > a, .navbar-nav > li > a:hover { padding-top: 17px; padding-bottom: 13px; -webkit-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .navbar-brand, .navbar-brand:hover { -webkit-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .navbar .caret, .navbar .caret:hover { -webkit-transition: border-color ease-in-out 0.2s; transition: border-color ease-in-out 0.2s; } .navbar .dropdown-menu { text-shadow: none; } .btn { text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); } .btn-default { background-image: -webkit-linear-gradient(#6d7070, #474949 50%, #3d3f3f); background-image: linear-gradient(#6d7070, #474949 50%, #3d3f3f); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d7070', endColorstr='#ff3d3f3f', GradientType=0); filter: none; border: 1px solid #2e2f2f; } .btn-default:hover { background-image: -webkit-linear-gradient(#636565, #3d3f3f 50%, #333434); background-image: linear-gradient(#636565, #3d3f3f 50%, #333434); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff636565', endColorstr='#ff333434', GradientType=0); filter: none; border: 1px solid #242525; } .btn-primary { background-image: -webkit-linear-gradient(#6d94bf, #446e9b 50%, #3e648d); background-image: linear-gradient(#6d94bf, #446e9b 50%, #3e648d); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d94bf', endColorstr='#ff3e648d', GradientType=0); filter: none; border: 1px solid #345578; } .btn-primary:hover { background-image: -webkit-linear-gradient(#5f8ab9, #3e648d 50%, #385a7f); background-image: linear-gradient(#5f8ab9, #3e648d 50%, #385a7f); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5f8ab9', endColorstr='#ff385a7f', GradientType=0); filter: none; border: 1px solid #2e4b69; } .btn-success { background-image: -webkit-linear-gradient(#61dd45, #3cb521 50%, #36a41e); background-image: linear-gradient(#61dd45, #3cb521 50%, #36a41e); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff61dd45', endColorstr='#ff36a41e', GradientType=0); filter: none; border: 1px solid #2e8a19; } .btn-success:hover { background-image: -webkit-linear-gradient(#52da34, #36a41e 50%, #31921b); background-image: linear-gradient(#52da34, #36a41e 50%, #31921b); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff52da34', endColorstr='#ff31921b', GradientType=0); filter: none; border: 1px solid #287916; } .btn-info { background-image: -webkit-linear-gradient(#7bbdf7, #3399f3 50%, #208ff2); background-image: linear-gradient(#7bbdf7, #3399f3 50%, #208ff2); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7bbdf7', endColorstr='#ff208ff2', GradientType=0); filter: none; border: 1px solid #0e80e5; } .btn-info:hover { background-image: -webkit-linear-gradient(#68b3f6, #208ff2 50%, #0e86ef); background-image: linear-gradient(#68b3f6, #208ff2 50%, #0e86ef); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff68b3f6', endColorstr='#ff0e86ef', GradientType=0); filter: none; border: 1px solid #0c75d2; } .btn-warning { background-image: -webkit-linear-gradient(#ff9c21, #d47500 50%, #c06a00); background-image: linear-gradient(#ff9c21, #d47500 50%, #c06a00); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff9c21', endColorstr='#ffc06a00', GradientType=0); filter: none; border: 1px solid #a15900; } .btn-warning:hover { background-image: -webkit-linear-gradient(#ff930d, #c06a00 50%, #ab5e00); background-image: linear-gradient(#ff930d, #c06a00 50%, #ab5e00); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff930d', endColorstr='#ffab5e00', GradientType=0); filter: none; border: 1px solid #8d4e00; } .btn-danger { background-image: -webkit-linear-gradient(#ff1d1b, #cd0200 50%, #b90200); background-image: linear-gradient(#ff1d1b, #cd0200 50%, #b90200); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff1d1b', endColorstr='#ffb90200', GradientType=0); filter: none; border: 1px solid #9a0200; } .btn-danger:hover { background-image: -webkit-linear-gradient(#ff0906, #b90200 50%, #a40200); background-image: linear-gradient(#ff0906, #b90200 50%, #a40200); background-repeat: no-repeat; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff0906', endColorstr='#ffa40200', GradientType=0); filter: none; border: 1px solid #860100; } .btn:active, .btn.active { background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .panel-primary .panel-title { color: #fff; }
docs/types/Body.html
alucardxlx/caoticamente-shards
<html> <head> <title>RunUO Documentation - Class Overview - Body</title> </head> <body bgcolor="white" style="font-family: Courier New" text="#000000" link="#000000" vlink="#000000" alink="#808080"> <h4><a href="../namespaces/Server.html">Back to Server</a></h4> <h2>Body</h2> (<font color="blue">ctor</font>) Body( <font color="blue">int</font> bodyID )<br> <font color="blue">int</font> BodyID( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsAnimal( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsEmpty( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsEquipment( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsFemale( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsGhost( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsHuman( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsMale( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsMonster( <font color="blue">get</font>; )<br> <font color="blue">bool</font> IsSea( <font color="blue">get</font>; )<br> <!-- DBG-0 --><a href="BodyType.html">BodyType</a> Type( <font color="blue">get</font>; )<br> <font color="blue">virtual</font> <font color="blue">bool</font> Equals( <font color="blue">object</font> o )<br> <font color="blue">virtual</font> <font color="blue">int</font> GetHashCode()<br> <font color="blue">virtual</font> <font color="blue">string</font> ToString()<br> </body> </html>
templates/default/stats.html
vir/gnump3d
<!-- include="header.tmpl" --> <!-- Banner --> <p>&nbsp;</p> <p align="center"> $BANNER </p> <table border="0" cellpadding="0" cellspacing="2" width="100%" bgcolor="#ff0000"> <tr><td> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#eaecef"> <tr><td colspan="2" align="center"><b>Most Popular Songs</b></td></tr> $MOST_POPULAR_SONGS </table> </td></tr> </table> <p>&nbsp;</p> <table border="0" cellpadding="0" cellspacing="2" width="100%" bgcolor="#ff0000"> <tr><td> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#eaecef"> <tr><td colspan="2" align="center"><b>Most Popular Directories</b></td></tr> $MOST_POPULAR_DIRS </table> </td></tr> </table> <p>&nbsp;</p> <table border="0" cellpadding="0" cellspacing="2" width="100%" bgcolor="#ff0000"> <tr><td> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#eaecef"> <tr><td ALIGN="center"><b>Most Active Clients</b></td></tr> $MOST_ACTIVE_CLIENTS </table> </td></tr> </table> <p>&nbsp;</p> <table border="0" cellpadding="0" cellspacing="2" width="100%" bgcolor="#ff0000"> <tr><td> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#eaecef"> <tr><td colspan="2" align="center"><b>Most Popular User Agents</b></td></tr> $MOST_POPULAR_USER_AGENTS </table> </td></tr> </table> <p align="center"> $BANNER </p> <!-- include="footer.tmpl" -->
boost_1_49_0/doc/html/BOOST_PROTO_REPEAT_FROM_TO_EX.html
phra/802_21
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Macro BOOST_PROTO_REPEAT_FROM_TO_EX</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="proto/reference.html#header.boost.proto.repeat_hpp" title="Header &lt;boost/proto/repeat.hpp&gt;"> <link rel="prev" href="BOOST_PROTO_REPEAT_EX.html" title="Macro BOOST_PROTO_REPEAT_EX"> <link rel="next" href="BOOST_PROTO_LOCAL_ITERATE.html" title="Macro BOOST_PROTO_LOCAL_ITERATE"> </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_PROTO_REPEAT_EX.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="proto/reference.html#header.boost.proto.repeat_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="BOOST_PROTO_LOCAL_ITERATE.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="BOOST_PROTO_REPEAT_FROM_TO_EX"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Macro BOOST_PROTO_REPEAT_FROM_TO_EX</span></h2> <p>BOOST_PROTO_REPEAT_FROM_TO_EX &#8212; Repeatedly invoke the specified macro.</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: &lt;<a class="link" href="proto/reference.html#header.boost.proto.repeat_hpp" title="Header &lt;boost/proto/repeat.hpp&gt;">boost/proto/repeat.hpp</a>&gt; </span>BOOST_PROTO_REPEAT_FROM_TO_EX(FROM, TO, MACRO, typename_A, A, A_a, a)</pre></div> <div class="refsect1"> <a name="id2789840"></a><h2>Description</h2> <p> <code class="computeroutput">BOOST_PROTO_REPEAT_FROM_TO_EX()</code> is used to generate the kind of repetitive code that is typical of EDSLs built with Proto. <code class="computeroutput">BOOST_PROTO_REPEAT_FROM_TO_EX(<em class="replaceable"><code>FROM</code></em>, <em class="replaceable"><code>TO</code></em>, <em class="replaceable"><code>MACRO</code></em>, <em class="replaceable"><code>typename_A</code></em>, <em class="replaceable"><code>A</code></em>, <em class="replaceable"><code>A_a</code></em>, <em class="replaceable"><code>a</code></em>)</code> is equivalent to: </p> <p> </p> <pre class="programlisting"><em class="replaceable"><code><span class="identifier">MACRO</span></code></em><span class="special">(</span><em class="replaceable"><code><span class="identifier">FROM</span></code></em><span class="special">,</span> <span class="identifier">typename_A</span><span class="special">,</span> <span class="identifier">A</span><span class="special">,</span> <span class="identifier">A_a</span><span class="special">,</span> <span class="identifier">a</span><span class="special">)</span> <em class="replaceable"><code><span class="identifier">MACRO</span></code></em><span class="special">(</span><em class="replaceable"><code><span class="identifier">FROM</span><span class="special">+</span><span class="number">1</span></code></em><span class="special">,</span> <span class="identifier">typename_A</span><span class="special">,</span> <span class="identifier">A</span><span class="special">,</span> <span class="identifier">A_a</span><span class="special">,</span> <span class="identifier">a</span><span class="special">)</span> <span class="special">...</span> <em class="replaceable"><code><span class="identifier">MACRO</span></code></em><span class="special">(</span><em class="replaceable"><code><span class="identifier">TO</span><span class="special">-</span><span class="number">1</span></code></em><span class="special">,</span> <span class="identifier">typename_A</span><span class="special">,</span> <span class="identifier">A</span><span class="special">,</span> <span class="identifier">A_a</span><span class="special">,</span> <span class="identifier">a</span><span class="special">)</span></pre> <p> </p> <p> <span class="bold"><strong>Example:</strong></span> </p> <p> See <code class="computeroutput"><a class="link" href="BOOST_PROTO_REPEAT_FROM_TO.html" title="Macro BOOST_PROTO_REPEAT_FROM_TO">BOOST_PROTO_REPEAT_FROM_TO</a>()</code>. </p> </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 &#169; 2008 Eric Niebler<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="BOOST_PROTO_REPEAT_EX.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="proto/reference.html#header.boost.proto.repeat_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="BOOST_PROTO_LOCAL_ITERATE.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
media/com_acymailing/css/component_default_classic_green.css
hscomp2002/edmansport
/** * @package AcyMailing for Joomla! * @version 4.5.1 * @author acyba.com * @copyright (C) 2009-2013 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ @import url("component_default_classic_black.css"); #acyarchivelisting .button, #acymodifyform .button, #unsubbutton_div .button{ color:#9e9c07 !important; } #acyarchivelisting .button:hover, #acymodifyform .button:hover, #unsubbutton_div .button:hover{ color:#fff!important; background-color:#9e9c07 !important; } #acyarchivelisting .contentheading{ color:#727127; } #acyarchivelisting .contentpane .contentdescription{ color:#9e9c07; } #acyarchivelisting .contentpane tbody .sectiontableentry1 a:hover{ color:#9e9c07; } #acyarchivelisting .contentpane tbody .sectiontableentry2 a:hover{ color:#9e9c07; } #acyarchivelisting .sectiontableheader a:hover{ color:#727127; } #acyarchiveview .contentheading{ color:#9e9c07;} #acylistslisting .componentheading{ color:#727127; } #acylistslisting .list_name a{ color:#9e9c07; } #acylistslisting .list_name a:hover, #acylistslisting .list_name a:focus { color:#9e9c07; } #acymodifyform legend{ color:#727127; } #acyusersubscription .list_name{ color: #9e9c07; } #unsubpage .unsubsurveytext{ color: #727127; } #unsubpage .unsubintro{ color:#727127; }
sites/all/libraries/yui/examples/charts/charts-xhr-polling_clean.html
ehazell/AWBA
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Chart with DataSource Polling</title> <style type="text/css"> /*margin and padding on body element can introduce errors in determining element position and are not recommended; we turn them off as a foundation for YUI CSS treatments. */ body { margin:0; padding:0; } </style> <link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" /> <script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script> <script type="text/javascript" src="../../build/json/json-min.js"></script> <script type="text/javascript" src="../../build/element/element-min.js"></script> <script type="text/javascript" src="../../build/connection/connection-min.js"></script> <script type="text/javascript" src="../../build/datasource/datasource-min.js"></script> <script type="text/javascript" src="../../build/swf/swf-min.js"></script> <script type="text/javascript" src="../../build/charts/charts-min.js"></script> <!--begin custom header content for this example--> <style type="text/css"> #chart { width: 500px; height: 350px; } .chart_title { display: block; font-size: 1.2em; font-weight: bold; margin-bottom: 0.4em; } #buttons { margin-top: 12px; } </style> <!--end custom header content for this example--> </head> <body class="yui-skin-sam"> <h1>Chart with DataSource Polling</h1> <div class="exampleIntro"> <p>The <a href="http://developer.yahoo.com/yui/charts/">YUI Charts Control</a> provides built-in support for iterative polling for data over XHR using an XHR <a href="http://developer.yahoo.com/yui/datasource/">DataSource</a> instance. In the example below, iterative polling causes the chart to refresh every several seconds and animate its display to represent the new data.</p> <p>Please note: The YUI Charts Control requires Flash Player 9.0.45 or higher. The latest version of Flash Player is available at the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p> </div> <!--BEGIN SOURCE CODE FOR EXAMPLE =============================== --> <span class="chart_title"></span> <div id="chart">Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p></div> <div id="buttons"> <button id="startpolling">Start Polling</button> <button id="stoppolling">Stop Polling</button> </div> <script type="text/javascript"> YAHOO.widget.Chart.SWFURL = "../../build/charts/assets/charts.swf"; //--- data var jsonData = new YAHOO.util.DataSource( "assets/generatedata.php?" ); //use POST so that IE doesn't cache the data jsonData.connMethodPost = true; jsonData.responseType = YAHOO.util.DataSource.TYPE_JSON; jsonData.responseSchema = { resultsList: "Results", fields: ["Name","Value"] }; //--- chart var yAxis = new YAHOO.widget.NumericAxis(); yAxis.minimum = 0; yAxis.maximum = 100; var mychart = new YAHOO.widget.ColumnChart( "chart", jsonData, { xField: "Name", yField: "Value", yAxis: yAxis }); var clearPollingId; function startPolling(e) { clearTimeout(clearPollingId); clearPollingId = setTimeout("stopPolling()", 60000); mychart.set("polling", 2000); } function stopPolling(e) { mychart.set("polling", null); } YAHOO.util.Event.addListener("startpolling", "click", startPolling); YAHOO.util.Event.addListener("stoppolling", "click", stopPolling); </script> <!--END SOURCE CODE FOR EXAMPLE =============================== --> </body> </html>
gcc-linaro/share/doc/gas/as.html/RL78_002dModifiers.html
SubhrajyotiSen/HelioxKernelHarpia
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991-2016 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.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". --> <!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ --> <head> <title>Using as: RL78-Modifiers</title> <meta name="description" content="Using as: RL78-Modifiers"> <meta name="keywords" content="Using as: RL78-Modifiers"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="makeinfo"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link href="index.html#Top" rel="start" title="Top"> <link href="AS-Index.html#AS-Index" rel="index" title="AS Index"> <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents"> <link href="RL78_002dDependent.html#RL78_002dDependent" rel="up" title="RL78-Dependent"> <link href="RL78_002dDirectives.html#RL78_002dDirectives" rel="next" title="RL78-Directives"> <link href="RL78_002dOpts.html#RL78_002dOpts" rel="prev" title="RL78-Opts"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.smallquotation {font-size: smaller} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.indentedblock {margin-left: 3.2em} div.lisp {margin-left: 3.2em} div.smalldisplay {margin-left: 3.2em} div.smallexample {margin-left: 3.2em} div.smallindentedblock {margin-left: 3.2em; font-size: smaller} div.smalllisp {margin-left: 3.2em} kbd {font-style:oblique} pre.display {font-family: inherit} pre.format {font-family: inherit} pre.menu-comment {font-family: serif} pre.menu-preformatted {font-family: serif} pre.smalldisplay {font-family: inherit; font-size: smaller} pre.smallexample {font-size: smaller} pre.smallformat {font-family: inherit; font-size: smaller} pre.smalllisp {font-size: smaller} span.nocodebreak {white-space:nowrap} span.nolinebreak {white-space:nowrap} span.roman {font-family:serif; font-weight:normal} span.sansserif {font-family:sans-serif; font-weight:normal} ul.no-bullet {list-style: none} --> </style> </head> <body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000"> <a name="RL78_002dModifiers"></a> <div class="header"> <p> Next: <a href="RL78_002dDirectives.html#RL78_002dDirectives" accesskey="n" rel="next">RL78-Directives</a>, Previous: <a href="RL78_002dOpts.html#RL78_002dOpts" accesskey="p" rel="prev">RL78-Opts</a>, Up: <a href="RL78_002dDependent.html#RL78_002dDependent" accesskey="u" rel="up">RL78-Dependent</a> &nbsp; [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="AS-Index.html#AS-Index" title="Index" rel="index">Index</a>]</p> </div> <hr> <a name="Symbolic-Operand-Modifiers-2"></a> <h4 class="subsection">9.36.2 Symbolic Operand Modifiers</h4> <a name="index-RL78-modifiers"></a> <a name="index-syntax_002c-RL78"></a> <p>The RL78 has three modifiers that adjust the relocations used by the linker: </p> <dl compact="compact"> <dt><code>%lo16()</code></dt> <dd> <p>When loading a 20-bit (or wider) address into registers, this modifier selects the 16 least significant bits. </p> <div class="smallexample"> <pre class="smallexample"> movw ax,#%lo16(_sym) </pre></div> </dd> <dt><code>%hi16()</code></dt> <dd> <p>When loading a 20-bit (or wider) address into registers, this modifier selects the 16 most significant bits. </p> <div class="smallexample"> <pre class="smallexample"> movw ax,#%hi16(_sym) </pre></div> </dd> <dt><code>%hi8()</code></dt> <dd> <p>When loading a 20-bit (or wider) address into registers, this modifier selects the 8 bits that would go into CS or ES (i.e. bits 23..16). </p> <div class="smallexample"> <pre class="smallexample"> mov es, #%hi8(_sym) </pre></div> </dd> </dl> </body> </html>
user/pixil/packages/viewml/viewml/src/test/unicode.html
ipwndev/DSLinux-Mirror
<HTML> <HEAD> <TITLE> Test of some Unicode symbols in numeric character reference form </TITLE> </HEAD> <BODY> <PRE> This table prepared from SGML.TXT available at ftp.unicode.org ftp://ftp.unicode.org/MAPPINGS/VENDORS/MISC/SGML.TXT (if doing ftp, try cd Public/MAPPINGS/VENDORS/MISC) original comment: # Author: John Cowan <cowan@ccil.org> # Date: 25 July 1997 # # The following table maps SGML character entities from various # public sets (namely, ISOamsa, ISOamsb, ISOamsc, ISOamsn, ISOamso, # ISOamsr, ISObox, ISOcyr1, ISOcyr2, ISOdia, ISOgrk1, ISOgrk2, # ISOgrk3, ISOgrk4, ISOlat1, ISOlat2, ISOnum, ISOpub, ISOtech, # HTMLspecial, HTMLsymbol) to corresponding Unicode characters. # # The table has four tab-separated columns: # Column 1: SGML character entity name # Column 2: SGML public entity set # Column 3: Unicode 2.0 character code # Column 4: Unicode 2.0 character name (UPPER CASE) # Entries which don't have Unicode equivalents have "0x????" # in Column 3 and a lower case description (from the public entity # set DTD) in Column 4. The mapping is not reversible, because many # distinctions are unified away in Unicode, particularly between # mathematical symbols. # # The table is sorted case-blind by SGML character entity name. # # The contents of this table are drawn from various sources, and # are in the public domain. # This test is illuminated Unicode numeric entities like &amp;#x22AB; We sort the entities according to unicode numbers. (Sorry, many lines duplicated). You should see visible characters if your display character set support them or some substitution string picked up from src/chrtrans/def7_uni.tbl If you see something like &amp;#x34D2; - this number unknown to def7_uni.tbl or the internal browser's implementation is broken. Leonid Pauzner. 0x0021 &#x0021; # EXCLAMATION MARK 0x0022 &#x0022; # QUOTATION MARK 0x0023 &#x0023; # NUMBER SIGN 0x0024 &#x0024; # DOLLAR SIGN 0x0025 &#x0025; # PERCENT SIGN 0x0026 &#x0026; # AMPERSAND 0x0028 &#x0028; # LEFT PARENTHESIS 0x0029 &#x0029; # RIGHT PARENTHESIS 0x002A &#x002A; # ASTERISK 0x002B &#x002B; # PLUS SIGN 0x002C &#x002C; # COMMA 0x002D &#x002D; # HYPHEN-MINUS 0x002E &#x002E; # FULL STOP 0x002F &#x002F; # SOLIDUS 0x003A &#x003A; # COLON 0x003B &#x003B; # SEMICOLON 0x003C &#x003C; # LESS-THAN SIGN 0x003D &#x003D; # EQUALS SIGN 0x003E &#x003E; # GREATER-THAN SIGN 0x003F &#x003F; # QUESTION MARK 0x0040 &#x0040; # COMMERCIAL AT 0x005B &#x005B; # LEFT SQUARE BRACKET 0x005C &#x005C; # REVERSE SOLIDUS 0x005C &#x005C; # REVERSE SOLIDUS 0x005D &#x005D; # RIGHT SQUARE BRACKET 0x005F &#x005F; # LOW LINE 0x0060 &#x0060; # GRAVE ACCENT 0x007B &#x007B; # LEFT CURLY BRACKET 0x007C &#x007C; # VERTICAL LINE 0x007D &#x007D; # RIGHT CURLY BRACKET 0x00A0 &#x00A0; # NO-BREAK SPACE 0x00A1 &#x00A1; # INVERTED EXCLAMATION MARK 0x00A2 &#x00A2; # CENT SIGN 0x00A3 &#x00A3; # POUND SIGN 0x00A4 &#x00A4; # CURRENCY SIGN 0x00A5 &#x00A5; # YEN SIGN 0x00A6 &#x00A6; # BROKEN BAR 0x00A7 &#x00A7; # SECTION SIGN 0x00A8 &#x00A8; # DIAERESIS 0x00A8 &#x00A8; # DIAERESIS 0x00A8 &#x00A8; # DIAERESIS 0x00A9 &#x00A9; # COPYRIGHT SIGN 0x00AA &#x00AA; # FEMININE ORDINAL INDICATOR 0x00AB &#x00AB; # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 0x00AC &#x00AC; # NOT SIGN 0x00AD &#x00AD; # SOFT HYPHEN 0x00AE &#x00AE; # REGISTERED SIGN 0x00AF &#x00AF; # MACRON 0x00B0 &#x00B0; # DEGREE SIGN 0x00B1 &#x00B1; # PLUS-MINUS SIGN 0x00B2 &#x00B2; # SUPERSCRIPT TWO 0x00B3 &#x00B3; # SUPERSCRIPT THREE 0x00B4 &#x00B4; # ACUTE ACCENT 0x00B5 &#x00B5; # MICRO SIGN 0x00B6 &#x00B6; # PILCROW SIGN 0x00B7 &#x00B7; # MIDDLE DOT 0x00B8 &#x00B8; # CEDILLA 0x00B9 &#x00B9; # SUPERSCRIPT ONE 0x00BA &#x00BA; # MASCULINE ORDINAL INDICATOR 0x00BB &#x00BB; # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 0x00BC &#x00BC; # VULGAR FRACTION ONE QUARTER 0x00BD &#x00BD; # VULGAR FRACTION ONE HALF 0x00BD &#x00BD; # VULGAR FRACTION ONE HALF 0x00BE &#x00BE; # VULGAR FRACTION THREE QUARTERS 0x00BF &#x00BF; # INVERTED QUESTION MARK 0x00C0 &#x00C0; # LATIN CAPITAL LETTER A WITH GRAVE 0x00C1 &#x00C1; # LATIN CAPITAL LETTER A WITH ACUTE 0x00C2 &#x00C2; # LATIN CAPITAL LETTER A WITH CIRCUMFLEX 0x00C3 &#x00C3; # LATIN CAPITAL LETTER A WITH TILDE 0x00C4 &#x00C4; # LATIN CAPITAL LETTER A WITH DIAERESIS 0x00C5 &#x00C5; # LATIN CAPITAL LETTER A WITH RING ABOVE 0x00C6 &#x00C6; # LATIN CAPITAL LETTER AE 0x00C7 &#x00C7; # LATIN CAPITAL LETTER C WITH CEDILLA 0x00C8 &#x00C8; # LATIN CAPITAL LETTER E WITH GRAVE 0x00C9 &#x00C9; # LATIN CAPITAL LETTER E WITH ACUTE 0x00CA &#x00CA; # LATIN CAPITAL LETTER E WITH CIRCUMFLEX 0x00CB &#x00CB; # LATIN CAPITAL LETTER E WITH DIAERESIS 0x00CC &#x00CC; # LATIN CAPITAL LETTER I WITH GRAVE 0x00CD &#x00CD; # LATIN CAPITAL LETTER I WITH ACUTE 0x00CE &#x00CE; # LATIN CAPITAL LETTER I WITH CIRCUMFLEX 0x00CF &#x00CF; # LATIN CAPITAL LETTER I WITH DIAERESIS 0x00D0 &#x00D0; # LATIN CAPITAL LETTER ETH 0x00D1 &#x00D1; # LATIN CAPITAL LETTER N WITH TILDE 0x00D2 &#x00D2; # LATIN CAPITAL LETTER O WITH GRAVE 0x00D3 &#x00D3; # LATIN CAPITAL LETTER O WITH ACUTE 0x00D4 &#x00D4; # LATIN CAPITAL LETTER O WITH CIRCUMFLEX 0x00D5 &#x00D5; # LATIN CAPITAL LETTER O WITH TILDE 0x00D6 &#x00D6; # LATIN CAPITAL LETTER O WITH DIAERESIS 0x00D7 &#x00D7; # MULTIPLICATION SIGN 0x00D8 &#x00D8; # LATIN CAPITAL LETTER O WITH STROKE 0x00D9 &#x00D9; # LATIN CAPITAL LETTER U WITH GRAVE 0x00DA &#x00DA; # LATIN CAPITAL LETTER U WITH ACUTE 0x00DB &#x00DB; # LATIN CAPITAL LETTER U WITH CIRCUMFLEX 0x00DC &#x00DC; # LATIN CAPITAL LETTER U WITH DIAERESIS 0x00DD &#x00DD; # LATIN CAPITAL LETTER Y WITH ACUTE 0x00DE &#x00DE; # LATIN CAPITAL LETTER THORN 0x00DF &#x00DF; # LATIN SMALL LETTER SHARP S 0x00E0 &#x00E0; # LATIN SMALL LETTER A WITH GRAVE 0x00E1 &#x00E1; # LATIN SMALL LETTER A WITH ACUTE 0x00E2 &#x00E2; # LATIN SMALL LETTER A WITH CIRCUMFLEX 0x00E3 &#x00E3; # LATIN SMALL LETTER A WITH TILDE 0x00E4 &#x00E4; # LATIN SMALL LETTER A WITH DIAERESIS 0x00E5 &#x00E5; # LATIN SMALL LETTER A WITH RING ABOVE 0x00E6 &#x00E6; # LATIN SMALL LETTER AE 0x00E7 &#x00E7; # LATIN SMALL LETTER C WITH CEDILLA 0x00E8 &#x00E8; # LATIN SMALL LETTER E WITH GRAVE 0x00E9 &#x00E9; # LATIN SMALL LETTER E WITH ACUTE 0x00EA &#x00EA; # LATIN SMALL LETTER E WITH CIRCUMFLEX 0x00EB &#x00EB; # LATIN SMALL LETTER E WITH DIAERESIS 0x00EC &#x00EC; # LATIN SMALL LETTER I WITH GRAVE 0x00ED &#x00ED; # LATIN SMALL LETTER I WITH ACUTE 0x00EE &#x00EE; # LATIN SMALL LETTER I WITH CIRCUMFLEX 0x00EF &#x00EF; # LATIN SMALL LETTER I WITH DIAERESIS 0x00F0 &#x00F0; # LATIN SMALL LETTER ETH 0x00F1 &#x00F1; # LATIN SMALL LETTER N WITH TILDE 0x00F2 &#x00F2; # LATIN SMALL LETTER O WITH GRAVE 0x00F3 &#x00F3; # LATIN SMALL LETTER O WITH ACUTE 0x00F4 &#x00F4; # LATIN SMALL LETTER O WITH CIRCUMFLEX 0x00F5 &#x00F5; # LATIN SMALL LETTER O WITH TILDE 0x00F6 &#x00F6; # LATIN SMALL LETTER O WITH DIAERESIS 0x00F7 &#x00F7; # DIVISION SIGN 0x00F8 &#x00F8; # LATIN SMALL LETTER O WITH STROKE 0x00F9 &#x00F9; # LATIN SMALL LETTER U WITH GRAVE 0x00FA &#x00FA; # LATIN SMALL LETTER U WITH ACUTE 0x00FB &#x00FB; # LATIN SMALL LETTER U WITH CIRCUMFLEX 0x00FC &#x00FC; # LATIN SMALL LETTER U WITH DIAERESIS 0x00FD &#x00FD; # LATIN SMALL LETTER Y WITH ACUTE 0x00FE &#x00FE; # LATIN SMALL LETTER THORN 0x00FF &#x00FF; # LATIN SMALL LETTER Y WITH DIAERESIS 0x0100 &#x0100; # LATIN CAPITAL LETTER A WITH MACRON 0x0101 &#x0101; # LATIN SMALL LETTER A WITH MACRON 0x0102 &#x0102; # LATIN CAPITAL LETTER A WITH BREVE 0x0103 &#x0103; # LATIN SMALL LETTER A WITH BREVE 0x0104 &#x0104; # LATIN CAPITAL LETTER A WITH OGONEK 0x0105 &#x0105; # LATIN SMALL LETTER A WITH OGONEK 0x0106 &#x0106; # LATIN CAPITAL LETTER C WITH ACUTE 0x0107 &#x0107; # LATIN SMALL LETTER C WITH ACUTE 0x0108 &#x0108; # LATIN CAPITAL LETTER C WITH CIRCUMFLEX 0x0109 &#x0109; # LATIN SMALL LETTER C WITH CIRCUMFLEX 0x010A &#x010A; # LATIN CAPITAL LETTER C WITH DOT ABOVE 0x010B &#x010B; # LATIN SMALL LETTER C WITH DOT ABOVE 0x010C &#x010C; # LATIN CAPITAL LETTER C WITH CARON 0x010D &#x010D; # LATIN SMALL LETTER C WITH CARON 0x010E &#x010E; # LATIN CAPITAL LETTER D WITH CARON 0x010F &#x010F; # LATIN SMALL LETTER D WITH CARON 0x0110 &#x0110; # LATIN CAPITAL LETTER D WITH STROKE 0x0111 &#x0111; # LATIN SMALL LETTER D WITH STROKE 0x0112 &#x0112; # LATIN CAPITAL LETTER E WITH MACRON 0x0113 &#x0113; # LATIN SMALL LETTER E WITH MACRON 0x0116 &#x0116; # LATIN CAPITAL LETTER E WITH DOT ABOVE 0x0117 &#x0117; # LATIN SMALL LETTER E WITH DOT ABOVE 0x0118 &#x0118; # LATIN CAPITAL LETTER E WITH OGONEK 0x0119 &#x0119; # LATIN SMALL LETTER E WITH OGONEK 0x011A &#x011A; # LATIN CAPITAL LETTER E WITH CARON 0x011B &#x011B; # LATIN SMALL LETTER E WITH CARON 0x011C &#x011C; # LATIN CAPITAL LETTER G WITH CIRCUMFLEX 0x011D &#x011D; # LATIN SMALL LETTER G WITH CIRCUMFLEX 0x011E &#x011E; # LATIN CAPITAL LETTER G WITH BREVE 0x011F &#x011F; # LATIN SMALL LETTER G WITH BREVE 0x0120 &#x0120; # LATIN CAPITAL LETTER G WITH DOT ABOVE 0x0121 &#x0121; # LATIN SMALL LETTER G WITH DOT ABOVE 0x0122 &#x0122; # LATIN CAPITAL LETTER G WITH CEDILLA 0x0123 &#x0123; # LATIN SMALL LETTER G WITH CEDILLA 0x0124 &#x0124; # LATIN CAPITAL LETTER H WITH CIRCUMFLEX 0x0125 &#x0125; # LATIN SMALL LETTER H WITH CIRCUMFLEX 0x0126 &#x0126; # LATIN CAPITAL LETTER H WITH STROKE 0x0127 &#x0127; # LATIN SMALL LETTER H WITH STROKE 0x0128 &#x0128; # LATIN CAPITAL LETTER I WITH TILDE 0x0129 &#x0129; # LATIN SMALL LETTER I WITH TILDE 0x012A &#x012A; # LATIN CAPITAL LETTER I WITH MACRON 0x012B &#x012B; # LATIN SMALL LETTER I WITH MACRON 0x012E &#x012E; # LATIN CAPITAL LETTER I WITH OGONEK 0x012F &#x012F; # LATIN SMALL LETTER I WITH OGONEK 0x0130 &#x0130; # LATIN CAPITAL LETTER I WITH DOT ABOVE 0x0131 &#x0131; # LATIN SMALL LETTER DOTLESS I 0x0131 &#x0131; # LATIN SMALL LETTER DOTLESS I 0x0132 &#x0132; # LATIN CAPITAL LIGATURE IJ 0x0133 &#x0133; # LATIN SMALL LIGATURE IJ 0x0134 &#x0134; # LATIN CAPITAL LETTER J WITH CIRCUMFLEX 0x0135 &#x0135; # LATIN SMALL LETTER J WITH CIRCUMFLEX 0x0136 &#x0136; # LATIN CAPITAL LETTER K WITH CEDILLA 0x0137 &#x0137; # LATIN SMALL LETTER K WITH CEDILLA 0x0138 &#x0138; # LATIN SMALL LETTER KRA 0x0139 &#x0139; # LATIN CAPITAL LETTER L WITH ACUTE 0x013A &#x013A; # LATIN SMALL LETTER L WITH ACUTE 0x013B &#x013B; # LATIN CAPITAL LETTER L WITH CEDILLA 0x013C &#x013C; # LATIN SMALL LETTER L WITH CEDILLA 0x013D &#x013D; # LATIN CAPITAL LETTER L WITH CARON 0x013E &#x013E; # LATIN SMALL LETTER L WITH CARON 0x013F &#x013F; # LATIN CAPITAL LETTER L WITH MIDDLE DOT 0x0140 &#x0140; # LATIN SMALL LETTER L WITH MIDDLE DOT 0x0141 &#x0141; # LATIN CAPITAL LETTER L WITH STROKE 0x0142 &#x0142; # LATIN SMALL LETTER L WITH STROKE 0x0143 &#x0143; # LATIN CAPITAL LETTER N WITH ACUTE 0x0144 &#x0144; # LATIN SMALL LETTER N WITH ACUTE 0x0145 &#x0145; # LATIN CAPITAL LETTER N WITH CEDILLA 0x0146 &#x0146; # LATIN SMALL LETTER N WITH CEDILLA 0x0147 &#x0147; # LATIN CAPITAL LETTER N WITH CARON 0x0148 &#x0148; # LATIN SMALL LETTER N WITH CARON 0x0149 &#x0149; # LATIN SMALL LETTER N PRECEDED BY APOSTROPHE 0x014A &#x014A; # LATIN CAPITAL LETTER ENG 0x014B &#x014B; # LATIN SMALL LETTER ENG 0x014C &#x014C; # LATIN CAPITAL LETTER O WITH MACRON 0x014D &#x014D; # LATIN SMALL LETTER O WITH MACRON 0x0150 &#x0150; # LATIN CAPITAL LETTER O WITH DOUBLE ACUTE 0x0151 &#x0151; # LATIN SMALL LETTER O WITH DOUBLE ACUTE 0x0152 &#x0152; # LATIN CAPITAL LIGATURE OE 0x0153 &#x0153; # LATIN SMALL LIGATURE OE 0x0154 &#x0154; # LATIN CAPITAL LETTER R WITH ACUTE 0x0155 &#x0155; # LATIN SMALL LETTER R WITH ACUTE 0x0156 &#x0156; # LATIN CAPITAL LETTER R WITH CEDILLA 0x0157 &#x0157; # LATIN SMALL LETTER R WITH CEDILLA 0x0158 &#x0158; # LATIN CAPITAL LETTER R WITH CARON 0x0159 &#x0159; # LATIN SMALL LETTER R WITH CARON 0x015A &#x015A; # LATIN CAPITAL LETTER S WITH ACUTE 0x015B &#x015B; # LATIN SMALL LETTER S WITH ACUTE 0x015C &#x015C; # LATIN CAPITAL LETTER S WITH CIRCUMFLEX 0x015D &#x015D; # LATIN SMALL LETTER S WITH CIRCUMFLEX 0x015E &#x015E; # LATIN CAPITAL LETTER S WITH CEDILLA 0x015F &#x015F; # LATIN SMALL LETTER S WITH CEDILLA 0x0160 &#x0160; # LATIN CAPITAL LETTER S WITH CARON 0x0161 &#x0161; # LATIN SMALL LETTER S WITH CARON 0x0162 &#x0162; # LATIN CAPITAL LETTER T WITH CEDILLA 0x0163 &#x0163; # LATIN SMALL LETTER T WITH CEDILLA 0x0164 &#x0164; # LATIN CAPITAL LETTER T WITH CARON 0x0165 &#x0165; # LATIN SMALL LETTER T WITH CARON 0x0166 &#x0166; # LATIN CAPITAL LETTER T WITH STROKE 0x0167 &#x0167; # LATIN SMALL LETTER T WITH STROKE 0x0168 &#x0168; # LATIN CAPITAL LETTER U WITH TILDE 0x0169 &#x0169; # LATIN SMALL LETTER U WITH TILDE 0x016A &#x016A; # LATIN CAPITAL LETTER U WITH MACRON 0x016B &#x016B; # LATIN SMALL LETTER U WITH MACRON 0x016C &#x016C; # LATIN CAPITAL LETTER U WITH BREVE 0x016D &#x016D; # LATIN SMALL LETTER U WITH BREVE 0x016E &#x016E; # LATIN CAPITAL LETTER U WITH RING ABOVE 0x016F &#x016F; # LATIN SMALL LETTER U WITH RING ABOVE 0x0170 &#x0170; # LATIN CAPITAL LETTER U WITH DOUBLE ACUTE 0x0171 &#x0171; # LATIN SMALL LETTER U WITH DOUBLE ACUTE 0x0172 &#x0172; # LATIN CAPITAL LETTER U WITH OGONEK 0x0173 &#x0173; # LATIN SMALL LETTER U WITH OGONEK 0x0174 &#x0174; # LATIN CAPITAL LETTER W WITH CIRCUMFLEX 0x0175 &#x0175; # LATIN SMALL LETTER W WITH CIRCUMFLEX 0x0176 &#x0176; # LATIN CAPITAL LETTER Y WITH CIRCUMFLEX 0x0177 &#x0177; # LATIN SMALL LETTER Y WITH CIRCUMFLEX 0x0178 &#x0178; # LATIN CAPITAL LETTER Y WITH DIAERESIS 0x0179 &#x0179; # LATIN CAPITAL LETTER Z WITH ACUTE 0x017A &#x017A; # LATIN SMALL LETTER Z WITH ACUTE 0x017B &#x017B; # LATIN CAPITAL LETTER Z WITH DOT ABOVE 0x017C &#x017C; # LATIN SMALL LETTER Z WITH DOT ABOVE 0x017D &#x017D; # LATIN CAPITAL LETTER Z WITH CARON 0x017E &#x017E; # LATIN SMALL LETTER Z WITH CARON 0x0192 &#x0192; # LATIN SMALL LETTER F WITH HOOK 0x01F5 &#x01F5; # LATIN SMALL LETTER G WITH ACUTE 0x02BC &#x02BC; # MODIFIER LETTER APOSTROPHE 0x02C6 &#x02C6; # MODIFIER LETTER CIRCUMFLEX ACCENT 0x02C7 &#x02C7; # CARON 0x02D8 &#x02D8; # BREVE 0x02D9 &#x02D9; # DOT ABOVE 0x02DA &#x02DA; # RING ABOVE 0x02DB &#x02DB; # OGONEK 0x02DC &#x02DC; # SMALL TILDE 0x02DD &#x02DD; # DOUBLE ACUTE ACCENT 0x0386 &#x0386; # GREEK CAPITAL LETTER ALPHA WITH TONOS 0x0388 &#x0388; # GREEK CAPITAL LETTER EPSILON WITH TONOS 0x0389 &#x0389; # GREEK CAPITAL LETTER ETA WITH TONOS 0x038A &#x038A; # GREEK CAPITAL LETTER IOTA WITH TONOS 0x038C &#x038C; # GREEK CAPITAL LETTER OMICRON WITH TONOS 0x038E &#x038E; # GREEK CAPITAL LETTER UPSILON WITH TONOS 0x038F &#x038F; # GREEK CAPITAL LETTER OMEGA WITH TONOS 0x0390 &#x0390; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS 0x0391 &#x0391; # GREEK CAPITAL LETTER ALPHA 0x0391 &#x0391; # GREEK CAPITAL LETTER ALPHA 0x0392 &#x0392; # GREEK CAPITAL LETTER BETA 0x0392 &#x0392; # GREEK CAPITAL LETTER BETA 0x0393 &#x0393; # GREEK CAPITAL LETTER GAMMA 0x0393 &#x0393; # GREEK CAPITAL LETTER GAMMA 0x0393 &#x0393; # GREEK CAPITAL LETTER GAMMA 0x0394 &#x0394; # GREEK CAPITAL LETTER DELTA 0x0394 &#x0394; # GREEK CAPITAL LETTER DELTA 0x0394 &#x0394; # GREEK CAPITAL LETTER DELTA 0x0395 &#x0395; # GREEK CAPITAL LETTER EPSILON 0x0395 &#x0395; # GREEK CAPITAL LETTER EPSILON 0x0396 &#x0396; # GREEK CAPITAL LETTER ZETA 0x0396 &#x0396; # GREEK CAPITAL LETTER ZETA 0x0397 &#x0397; # GREEK CAPITAL LETTER ETA 0x0397 &#x0397; # GREEK CAPITAL LETTER ETA 0x0398 &#x0398; # GREEK CAPITAL LETTER THETA 0x0398 &#x0398; # GREEK CAPITAL LETTER THETA 0x0398 &#x0398; # GREEK CAPITAL LETTER THETA 0x0399 &#x0399; # GREEK CAPITAL LETTER IOTA 0x0399 &#x0399; # GREEK CAPITAL LETTER IOTA 0x039A &#x039A; # GREEK CAPITAL LETTER KAPPA 0x039A &#x039A; # GREEK CAPITAL LETTER KAPPA 0x039B &#x039B; # GREEK CAPITAL LETTER LAMDA 0x039B &#923; # GREEK CAPITAL LETTER LAMDA 0x039B &#x039B; # GREEK CAPITAL LETTER LAMDA 0x039C &#x039C; # GREEK CAPITAL LETTER MU 0x039C &#x039C; # GREEK CAPITAL LETTER MU 0x039D &#x039D; # GREEK CAPITAL LETTER NU 0x039D &#x039D; # GREEK CAPITAL LETTER NU 0x039E &#x039E; # GREEK CAPITAL LETTER XI 0x039E &#x039E; # GREEK CAPITAL LETTER XI 0x039E &#x039E; # GREEK CAPITAL LETTER XI 0x039F &#x039F; # GREEK CAPITAL LETTER OMICRON 0x039F &#x039F; # GREEK CAPITAL LETTER OMICRON 0x03A0 &#x03A0; # GREEK CAPITAL LETTER PI 0x03A0 &#x03A0; # GREEK CAPITAL LETTER PI 0x03A0 &#x03A0; # GREEK CAPITAL LETTER PI 0x03A1 &#x03A1; # GREEK CAPITAL LETTER RHO 0x03A1 &#x03A1; # GREEK CAPITAL LETTER RHO 0x03A3 &#x03A3; # GREEK CAPITAL LETTER SIGMA 0x03A3 &#x03A3; # GREEK CAPITAL LETTER SIGMA 0x03A3 &#x03A3; # GREEK CAPITAL LETTER SIGMA 0x03A4 &#x03A4; # GREEK CAPITAL LETTER TAU 0x03A4 &#x03A4; # GREEK CAPITAL LETTER TAU 0x03A5 &#x03A5; # GREEK CAPITAL LETTER UPSILON 0x03A5 &#x03A5; # GREEK CAPITAL LETTER UPSILON 0x03A5 &#x03A5; # GREEK CAPITAL LETTER UPSILON 0x03A5 &#x03A5; # GREEK CAPITAL LETTER UPSILON 0x03A6 &#x03A6; # GREEK CAPITAL LETTER PHI 0x03A6 &#x03A6; # GREEK CAPITAL LETTER PHI 0x03A6 &#x03A6; # GREEK CAPITAL LETTER PHI 0x03A7 &#x03A7; # GREEK CAPITAL LETTER CHI 0x03A7 &#x03A7; # GREEK CAPITAL LETTER CHI 0x03A8 &#x03A8; # GREEK CAPITAL LETTER PSI 0x03A8 &#x03A8; # GREEK CAPITAL LETTER PSI 0x03A8 &#x03A8; # GREEK CAPITAL LETTER PSI 0x03A9 &#x03A9; # GREEK CAPITAL LETTER OMEGA 0x03A9 &#x03A9; # GREEK CAPITAL LETTER OMEGA 0x03A9 &#x03A9; # GREEK CAPITAL LETTER OMEGA 0x03AA &#x03AA; # GREEK CAPITAL LETTER IOTA WITH DIALYTIKA 0x03AB &#x03AB; # GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA 0x03AC &#x03AC; # GREEK SMALL LETTER ALPHA WITH TONOS 0x03AD &#x03AD; # GREEK SMALL LETTER EPSILON WITH TONOS 0x03AE &#x03AE; # GREEK SMALL LETTER ETA WITH TONOS 0x03AF &#x03AF; # GREEK SMALL LETTER IOTA WITH TONOS 0x03B0 &#x03B0; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS 0x03B1 &#x03B1; # GREEK SMALL LETTER ALPHA 0x03B1 &#x03B1; # GREEK SMALL LETTER ALPHA 0x03B1 &#x03B1; # GREEK SMALL LETTER ALPHA 0x03B2 &#x03B2; # GREEK SMALL LETTER BETA 0x03B2 &#x03B2; # GREEK SMALL LETTER BETA 0x03B2 &#x03B2; # GREEK SMALL LETTER BETA 0x03B3 &#x03B3; # GREEK SMALL LETTER GAMMA 0x03B3 &#x03B3; # GREEK SMALL LETTER GAMMA 0x03B3 &#x03B3; # GREEK SMALL LETTER GAMMA 0x03B3 &#x03B3; # GREEK SMALL LETTER GAMMA 0x03B4 &#x03B4; # GREEK SMALL LETTER DELTA 0x03B4 &#x03B4; # GREEK SMALL LETTER DELTA 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B5 &#x03B5; # GREEK SMALL LETTER EPSILON 0x03B6 &#x03B6; # GREEK SMALL LETTER ZETA 0x03B6 &#x03B6; # GREEK SMALL LETTER ZETA 0x03B6 &#x03B6; # GREEK SMALL LETTER ZETA 0x03B7 &#x03B7; # GREEK SMALL LETTER ETA 0x03B7 &#x03B7; # GREEK SMALL LETTER ETA 0x03B7 &#x03B7; # GREEK SMALL LETTER ETA 0x03B8 &#x03B8; # GREEK SMALL LETTER THETA 0x03B8 &#x03B8; # GREEK SMALL LETTER THETA 0x03B8 &#x03B8; # GREEK SMALL LETTER THETA 0x03B8 &#x03B8; # GREEK SMALL LETTER THETA 0x03B9 &#x03B9; # GREEK SMALL LETTER IOTA 0x03B9 &#x03B9; # GREEK SMALL LETTER IOTA 0x03B9 &#x03B9; # GREEK SMALL LETTER IOTA 0x03BA &#x03BA; # GREEK SMALL LETTER KAPPA 0x03BA &#x03BA; # GREEK SMALL LETTER KAPPA 0x03BA &#x03BA; # GREEK SMALL LETTER KAPPA 0x03BB &#x03BB; # GREEK SMALL LETTER LAMDA 0x03BB &#x03BB; # GREEK SMALL LETTER LAMDA 0x03BB &#x03BB; # GREEK SMALL LETTER LAMDA 0x03BC &#x03BC; # GREEK SMALL LETTER MU 0x03BC &#x03BC; # GREEK SMALL LETTER MU 0x03BC &#x03BC; # GREEK SMALL LETTER MU 0x03BD &#x03BD; # GREEK SMALL LETTER NU 0x03BD &#x03BD; # GREEK SMALL LETTER NU 0x03BD &#x03BD; # GREEK SMALL LETTER NU 0x03BE &#x03BE; # GREEK SMALL LETTER XI 0x03BE &#x03BE; # GREEK SMALL LETTER XI 0x03BE &#x03BE; # GREEK SMALL LETTER XI 0x03BF &#x03BF; # GREEK SMALL LETTER OMICRON 0x03BF &#x03BF; # GREEK SMALL LETTER OMICRON 0x03C0 &#x03C0; # GREEK SMALL LETTER PI 0x03C0 &#x03C0; # GREEK SMALL LETTER PI 0x03C0 &#x03C0; # GREEK SMALL LETTER PI 0x03C1 &#x03C1; # GREEK SMALL LETTER RHO 0x03C1 &#x03C1; # GREEK SMALL LETTER RHO 0x03C1 &#x03C1; # GREEK SMALL LETTER RHO 0x03C2 &#x03C2; # GREEK SMALL LETTER FINAL SIGMA 0x03C2 &#x03C2; # GREEK SMALL LETTER FINAL SIGMA 0x03C2 &#x03C2; # GREEK SMALL LETTER FINAL SIGMA 0x03C2 &#x03C2; # GREEK SMALL LETTER FINAL SIGMA 0x03C3 &#x03C3; # GREEK SMALL LETTER SIGMA 0x03C3 &#x03C3; # GREEK SMALL LETTER SIGMA 0x03C3 &#x03C3; # GREEK SMALL LETTER SIGMA 0x03C4 &#x03C4; # GREEK SMALL LETTER TAU 0x03C4 &#x03C4; # GREEK SMALL LETTER TAU 0x03C4 &#x03C4; # GREEK SMALL LETTER TAU 0x03C5 &#x03C5; # GREEK SMALL LETTER UPSILON 0x03C5 &#x03C5; # GREEK SMALL LETTER UPSILON 0x03C5 &#x03C5; # GREEK SMALL LETTER UPSILON 0x03C5 &#x03C5; # GREEK SMALL LETTER UPSILON 0x03C6 &#x03C6; # GREEK SMALL LETTER PHI 0x03C6 &#x03C6; # GREEK SMALL LETTER PHI 0x03C6 &#x03C6; # GREEK SMALL LETTER PHI 0x03C6 &#x03C6; # GREEK SMALL LETTER PHI 0x03C7 &#x03C7; # GREEK SMALL LETTER CHI 0x03C7 &#x03C7; # GREEK SMALL LETTER CHI 0x03C7 &#x03C7; # GREEK SMALL LETTER CHI 0x03C8 &#x03C8; # GREEK SMALL LETTER PSI 0x03C8 &#x03C8; # GREEK SMALL LETTER PSI 0x03C8 &#x03C8; # GREEK SMALL LETTER PSI 0x03C9 &#x03C9; # GREEK SMALL LETTER OMEGA 0x03C9 &#x03C9; # GREEK SMALL LETTER OMEGA 0x03CA &#x03CA; # GREEK SMALL LETTER IOTA WITH DIALYTIKA 0x03CB &#x03CB; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA 0x03CC &#x03CC; # GREEK SMALL LETTER OMICRON WITH TONOS 0x03CD &#x03CD; # GREEK SMALL LETTER UPSILON WITH TONOS 0x03CE &#x03CE; # GREEK SMALL LETTER OMEGA WITH TONOS 0x03CE &#x03CE; # GREEK SMALL LETTER OMEGA WITH TONOS 0x03D1 &#x03D1; # GREEK THETA SYMBOL 0x03D1 &#x03D1; # GREEK THETA SYMBOL 0x03D1 &#x03D1; # GREEK THETA SYMBOL 0x03D2 &#x03D2; # GREEK UPSILON WITH HOOK SYMBOL 0x03D5 &#x03D5; # GREEK PHI SYMBOL 0x03D5 &#x03D5; # GREEK PHI SYMBOL 0x03D6 &#x03D6; # GREEK PI SYMBOL 0x03D6 &#x03D6; # GREEK PI SYMBOL 0x03DC &#x03DC; # GREEK LETTER DIGAMMA 0x03DC &#x03DC; # GREEK LETTER DIGAMMA 0x03F0 &#x03F0; # GREEK KAPPA SYMBOL 0x03F0 &#x03F0; # GREEK KAPPA SYMBOL 0x03F1 &#x03F1; # GREEK RHO SYMBOL 0x03F1 &#x03F1; # GREEK RHO SYMBOL 0x0401 &#x0401; # CYRILLIC CAPITAL LETTER IO 0x0402 &#x0402; # CYRILLIC CAPITAL LETTER DJE 0x0403 &#x0403; # CYRILLIC CAPITAL LETTER GJE 0x0404 &#x0404; # CYRILLIC CAPITAL LETTER UKRAINIAN IE 0x0405 &#x0405; # CYRILLIC CAPITAL LETTER DZE 0x0406 &#x0406; # CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I 0x0407 &#x0407; # CYRILLIC CAPITAL LETTER YI 0x0408 &#x0408; # CYRILLIC CAPITAL LETTER JE 0x0409 &#x0409; # CYRILLIC CAPITAL LETTER LJE 0x040A &#x040A; # CYRILLIC CAPITAL LETTER NJE 0x040B &#x040B; # CYRILLIC CAPITAL LETTER TSHE 0x040C &#x040C; # CYRILLIC CAPITAL LETTER KJE 0x040E &#x040E; # CYRILLIC CAPITAL LETTER SHORT U 0x040F &#x040F; # CYRILLIC CAPITAL LETTER DZHE 0x0410 &#x0410; # CYRILLIC CAPITAL LETTER A 0x0411 &#x0411; # CYRILLIC CAPITAL LETTER BE 0x0412 &#x0412; # CYRILLIC CAPITAL LETTER VE 0x0413 &#x0413; # CYRILLIC CAPITAL LETTER GHE 0x0414 &#x0414; # CYRILLIC CAPITAL LETTER DE 0x0415 &#x0415; # CYRILLIC CAPITAL LETTER IE 0x0416 &#x0416; # CYRILLIC CAPITAL LETTER ZHE 0x0417 &#x0417; # CYRILLIC CAPITAL LETTER ZE 0x0418 &#x0418; # CYRILLIC CAPITAL LETTER I 0x0419 &#x0419; # CYRILLIC CAPITAL LETTER SHORT I 0x041A &#x041A; # CYRILLIC CAPITAL LETTER KA 0x041B &#x041B; # CYRILLIC CAPITAL LETTER EL 0x041C &#x041C; # CYRILLIC CAPITAL LETTER EM 0x041D &#x041D; # CYRILLIC CAPITAL LETTER EN 0x041E &#x041E; # CYRILLIC CAPITAL LETTER O 0x041F &#x041F; # CYRILLIC CAPITAL LETTER PE 0x0420 &#x0420; # CYRILLIC CAPITAL LETTER ER 0x0421 &#x0421; # CYRILLIC CAPITAL LETTER ES 0x0422 &#x0422; # CYRILLIC CAPITAL LETTER TE 0x0423 &#x0423; # CYRILLIC CAPITAL LETTER U 0x0424 &#x0424; # CYRILLIC CAPITAL LETTER EF 0x0425 &#x0425; # CYRILLIC CAPITAL LETTER HA 0x0426 &#x0426; # CYRILLIC CAPITAL LETTER TSE 0x0427 &#x0427; # CYRILLIC CAPITAL LETTER CHE 0x0428 &#x0428; # CYRILLIC CAPITAL LETTER SHA 0x0429 &#x0429; # CYRILLIC CAPITAL LETTER SHCHA 0x042A &#x042A; # CYRILLIC CAPITAL LETTER HARD SIGN 0x042B &#x042B; # CYRILLIC CAPITAL LETTER YERU 0x042C &#x042C; # CYRILLIC CAPITAL LETTER SOFT SIGN 0x042D &#x042D; # CYRILLIC CAPITAL LETTER E 0x042E &#x042E; # CYRILLIC CAPITAL LETTER YU 0x042F &#x042F; # CYRILLIC CAPITAL LETTER YA 0x0430 &#x0430; # CYRILLIC SMALL LETTER A 0x0431 &#x0431; # CYRILLIC SMALL LETTER BE 0x0432 &#x0432; # CYRILLIC SMALL LETTER VE 0x0433 &#x0433; # CYRILLIC SMALL LETTER GHE 0x0434 &#x0434; # CYRILLIC SMALL LETTER DE 0x0435 &#x0435; # CYRILLIC SMALL LETTER IE 0x0436 &#x0436; # CYRILLIC SMALL LETTER ZHE 0x0437 &#x0437; # CYRILLIC SMALL LETTER ZE 0x0438 &#x0438; # CYRILLIC SMALL LETTER I 0x0439 &#x0439; # CYRILLIC SMALL LETTER SHORT I 0x043A &#x043A; # CYRILLIC SMALL LETTER KA 0x043B &#x043B; # CYRILLIC SMALL LETTER EL 0x043C &#x043C; # CYRILLIC SMALL LETTER EM 0x043D &#x043D; # CYRILLIC SMALL LETTER EN 0x043E &#x043E; # CYRILLIC SMALL LETTER O 0x043F &#x043F; # CYRILLIC SMALL LETTER PE 0x0440 &#x0440; # CYRILLIC SMALL LETTER ER 0x0441 &#x0441; # CYRILLIC SMALL LETTER ES 0x0442 &#x0442; # CYRILLIC SMALL LETTER TE 0x0443 &#x0443; # CYRILLIC SMALL LETTER U 0x0444 &#x0444; # CYRILLIC SMALL LETTER EF 0x0445 &#x0445; # CYRILLIC SMALL LETTER HA 0x0446 &#x0446; # CYRILLIC SMALL LETTER TSE 0x0447 &#x0447; # CYRILLIC SMALL LETTER CHE 0x0448 &#x0448; # CYRILLIC SMALL LETTER SHA 0x0449 &#x0449; # CYRILLIC SMALL LETTER SHCHA 0x044A &#x044A; # CYRILLIC SMALL LETTER HARD SIGN 0x044B &#x044B; # CYRILLIC SMALL LETTER YERU 0x044C &#x044C; # CYRILLIC SMALL LETTER SOFT SIGN 0x044D &#x044D; # CYRILLIC SMALL LETTER E 0x044E &#x044E; # CYRILLIC SMALL LETTER YU 0x044F &#x044F; # CYRILLIC SMALL LETTER YA 0x0451 &#x0451; # CYRILLIC SMALL LETTER IO 0x0452 &#x0452; # CYRILLIC SMALL LETTER DJE 0x0453 &#x0453; # CYRILLIC SMALL LETTER GJE 0x0454 &#x0454; # CYRILLIC SMALL LETTER UKRAINIAN IE 0x0455 &#x0455; # CYRILLIC SMALL LETTER DZE 0x0456 &#x0456; # CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I 0x0457 &#x0457; # CYRILLIC SMALL LETTER YI 0x0458 &#x0458; # CYRILLIC SMALL LETTER JE 0x0459 &#x0459; # CYRILLIC SMALL LETTER LJE 0x045A &#x045A; # CYRILLIC SMALL LETTER NJE 0x045B &#x045B; # CYRILLIC SMALL LETTER TSHE 0x045C &#x045C; # CYRILLIC SMALL LETTER KJE 0x045E &#x045E; # CYRILLIC SMALL LETTER SHORT U 0x045F &#x045F; # CYRILLIC SMALL LETTER DZHE 0x2002 &#x2002; # EN SPACE 0x2003 &#x2003; # EM SPACE 0x2004 &#x2004; # THREE-PER-EM SPACE 0x2005 &#x2005; # FOUR-PER-EM SPACE 0x2007 &#x2007; # FIGURE SPACE 0x2008 &#x2008; # PUNCTUATION SPACE 0x2009 &#x2009; # THIN SPACE 0x200A &#x200A; # HAIR SPACE 0x200C &#x200C; # ZERO WIDTH NON-JOINER 0x200D &#x200D; # ZERO WIDTH JOINER 0x200E &#x200E; # LEFT-TO-RIGHT MARK 0x200F &#x200F; # RIGHT-TO-LEFT MARK 0x2010 &#x2010; # HYPHEN 0x2013 &#x2013; # EN DASH 0x2014 &#x2014; # EM DASH 0x2015 &#x2015; # HORIZONTAL BAR 0x2016 &#x2016; # DOUBLE VERTICAL LINE 0x2018 &#x2018; # LEFT SINGLE QUOTATION MARK 0x2018 &#x2018; # LEFT SINGLE QUOTATION MARK 0x2019 &#x2019; # RIGHT SINGLE QUOTATION MARK 0x201A &#x201A; # SINGLE LOW-9 QUOTATION MARK 0x201A &#x201A; # SINGLE LOW-9 QUOTATION MARK 0x201C &#x201C; # LEFT DOUBLE QUOTATION MARK 0x201C &#x201C; # LEFT DOUBLE QUOTATION MARK 0x201D &#x201D; # RIGHT DOUBLE QUOTATION MARK 0x201E &#x201E; # DOUBLE LOW-9 QUOTATION MARK 0x201E &#x201E; # DOUBLE LOW-9 QUOTATION MARK 0x2020 &#x2020; # DAGGER 0x2021 &#x2021; # DOUBLE DAGGER 0x2022 &#x2022; # BULLET 0x2025 &#x2025; # TWO DOT LEADER 0x2026 &#x2026; # HORIZONTAL ELLIPSIS 0x2026 &#x2026; # HORIZONTAL ELLIPSIS 0x2030 &#x2030; # PER MILLE SIGN 0x2032 &#x2032; # PRIME 0x2032 &#x2032; # PRIME 0x2033 &#x2033; # DOUBLE PRIME 0x2034 &#x2034; # TRIPLE PRIME 0x2035 &#x2035; # REVERSED PRIME 0x2039 &#x2039; # SINGLE LEFT-POINTING ANGLE QUOTATION MARK 0x203A &#x203A; # SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 0x203E &#x203E; # OVERLINE 0x2041 &#x2041; # CARET INSERTION POINT 0x2043 &#x2043; # HYPHEN BULLET 0x2044 &#x2044; # FRACTION SLASH 0x20DB &#x20DB; # COMBINING THREE DOTS ABOVE 0x20DC &#x20DC; # COMBINING FOUR DOTS ABOVE 0x2105 &#x2105; # CARE OF 0x210B &#x210B; # SCRIPT CAPITAL H 0x210F &#x210F; # PLANCK CONSTANT OVER TWO PI 0x2111 &#x2111; # BLACK-LETTER CAPITAL I 0x2112 &#x2112; # SCRIPT CAPITAL L 0x2113 &#x2113; # SCRIPT SMALL L 0x2116 &#x2116; # NUMERO SIGN 0x2117 &#x2117; # SOUND RECORDING COPYRIGHT 0x2118 &#x2118; # SCRIPT CAPITAL P 0x211C &#x211C; # BLACK-LETTER CAPITAL R 0x211E &#x211E; # PRESCRIPTION TAKE 0x2122 &#x2122; # TRADE MARK SIGN 0x2126 &#x2126; # OHM SIGN 0x212B &#x212B; # ANGSTROM SIGN 0x212C &#x212C; # SCRIPT CAPITAL B 0x2133 &#x2133; # SCRIPT CAPITAL M 0x2134 &#x2134; # SCRIPT SMALL O 0x2135 &#x2135; # ALEF SYMBOL 0x2135 &#x2135; # ALEF SYMBOL 0x2136 &#x2136; # BET SYMBOL 0x2137 &#x2137; # GIMEL SYMBOL 0x2138 &#x2138; # DALET SYMBOL 0x2153 &#x2153; # VULGAR FRACTION ONE THIRD 0x2154 &#x2154; # VULGAR FRACTION TWO THIRDS 0x2155 &#x2155; # VULGAR FRACTION ONE FIFTH 0x2156 &#x2156; # VULGAR FRACTION TWO FIFTHS 0x2157 &#x2157; # VULGAR FRACTION THREE FIFTHS 0x2158 &#x2158; # VULGAR FRACTION FOUR FIFTHS 0x2159 &#x2159; # VULGAR FRACTION ONE SIXTH 0x215A &#x215A; # VULGAR FRACTION FIVE SIXTHS 0x215B &#x215B; # VULGAR FRACTION ONE EIGHTH 0x215C &#x215C; # VULGAR FRACTION THREE EIGHTHS 0x215D &#x215D; # VULGAR FRACTION FIVE EIGHTHS 0x215E &#x215E; # VULGAR FRACTION SEVEN EIGHTHS 0x2190 &#x2190; # LEFTWARDS ARROW 0x2191 &#x2191; # UPWARDS ARROW 0x2192 &#x2192; # RIGHTWARDS ARROW 0x2193 &#x2193; # DOWNWARDS ARROW 0x2194 &#x2194; # LEFT RIGHT ARROW 0x2194 &#x2194; # LEFT RIGHT ARROW 0x2194 &#x2194; # LEFT RIGHT ARROW 0x2195 &#x2195; # UP DOWN ARROW 0x2196 &#x2196; # NORTH WEST ARROW 0x2197 &#x2197; # NORTH EAST ARROW 0x2198 &#x2198; # SOUTH EAST ARROW 0x2199 &#x2199; # SOUTH WEST ARROW 0x219A &#x219A; # LEFTWARDS ARROW WITH STROKE 0x219B &#x219B; # RIGHTWARDS ARROW WITH STROKE 0x219D &#x219D; # RIGHTWARDS WAVE ARROW 0x219E &#x219E; # LEFTWARDS TWO HEADED ARROW 0x21A0 &#x21A0; # RIGHTWARDS TWO HEADED ARROW 0x21A2 &#x21A2; # LEFTWARDS ARROW WITH TAIL 0x21A3 &#x21A3; # RIGHTWARDS ARROW WITH TAIL 0x21A6 &#x21A6; # RIGHTWARDS ARROW FROM BAR 0x21A9 &#x21A9; # LEFTWARDS ARROW WITH HOOK 0x21AA &#x21AA; # RIGHTWARDS ARROW WITH HOOK 0x21AB &#x21AB; # LEFTWARDS ARROW WITH LOOP 0x21AC &#x21AC; # RIGHTWARDS ARROW WITH LOOP 0x21AD &#x21AD; # LEFT RIGHT WAVE ARROW 0x21AE &#x21AE; # LEFT RIGHT ARROW WITH STROKE 0x21B0 &#x21B0; # UPWARDS ARROW WITH TIP LEFTWARDS 0x21B1 &#x21B1; # UPWARDS ARROW WITH TIP RIGHTWARDS 0x21B5 &#x21B5; # DOWNWARDS ARROW WITH CORNER LEFTWARDS 0x21B6 &#x21B6; # ANTICLOCKWISE TOP SEMICIRCLE ARROW 0x21B7 &#x21B7; # CLOCKWISE TOP SEMICIRCLE ARROW 0x21BA &#x21BA; # ANTICLOCKWISE OPEN CIRCLE ARROW 0x21BB &#x21BB; # CLOCKWISE OPEN CIRCLE ARROW 0x21BC &#x21BC; # LEFTWARDS HARPOON WITH BARB UPWARDS 0x21BD &#x21BD; # LEFTWARDS HARPOON WITH BARB DOWNWARDS 0x21BE &#x21BE; # UPWARDS HARPOON WITH BARB RIGHTWARDS 0x21BF &#x21BF; # UPWARDS HARPOON WITH BARB LEFTWARDS 0x21C0 &#x21C0; # RIGHTWARDS HARPOON WITH BARB UPWARDS 0x21C1 &#x21C1; # RIGHTWARDS HARPOON WITH BARB DOWNWARDS 0x21C2 &#x21C2; # DOWNWARDS HARPOON WITH BARB RIGHTWARDS 0x21C3 &#x21C3; # DOWNWARDS HARPOON WITH BARB LEFTWARDS 0x21C4 &#x21C4; # RIGHTWARDS ARROW OVER LEFTWARDS ARROW 0x21C6 &#x21C6; # LEFTWARDS ARROW OVER RIGHTWARDS ARROW 0x21C7 &#x21C7; # LEFTWARDS PAIRED ARROWS 0x21C8 &#x21C8; # UPWARDS PAIRED ARROWS 0x21C9 &#x21C9; # RIGHTWARDS PAIRED ARROWS 0x21CA &#x21CA; # DOWNWARDS PAIRED ARROWS 0x21CB &#x21CB; # LEFTWARDS HARPOON OVER RIGHTWARDS HARPOON 0x21CC &#x21CC; # RIGHTWARDS HARPOON OVER LEFTWARDS HARPOON 0x21CD &#x21CD; # LEFTWARDS DOUBLE ARROW WITH STROKE 0x21CE &#x21CE; # LEFT RIGHT DOUBLE ARROW WITH STROKE 0x21CF &#x21CF; # RIGHTWARDS DOUBLE ARROW WITH STROKE 0x21D0 &#x21D0; # LEFTWARDS DOUBLE ARROW 0x21D0 &#x21D0; # LEFTWARDS DOUBLE ARROW 0x21D1 &#x21D1; # UPWARDS DOUBLE ARROW 0x21D2 &#x21D2; # RIGHTWARDS DOUBLE ARROW 0x21D2 &#x21D2; # RIGHTWARDS DOUBLE ARROW 0x21D3 &#x21D3; # DOWNWARDS DOUBLE ARROW 0x21D4 &#x21D4; # LEFT RIGHT DOUBLE ARROW 0x21D4 &#x21D4; # LEFT RIGHT DOUBLE ARROW 0x21D5 &#x21D5; # UP DOWN DOUBLE ARROW 0x21DA &#x21DA; # LEFTWARDS TRIPLE ARROW 0x21DB &#x21DB; # RIGHTWARDS TRIPLE ARROW 0x2200 &#x2200; # FOR ALL 0x2201 &#x2201; # COMPLEMENT 0x2202 &#x2202; # PARTIAL DIFFERENTIAL 0x2203 &#x2203; # THERE EXISTS 0x2204 &#x2204; # THERE DOES NOT EXIST 0x2205 &#x2205; # EMPTY SET 0x2207 &#x2207; # NABLA 0x2208 &#x2208; # ELEMENT OF 0x2209 &#x2209; # NOT AN ELEMENT OF 0x220A &#x220A; # SMALL ELEMENT OF 0x220B &#x220B; # CONTAINS AS MEMBER 0x220D &#x220D; # SMALL CONTAINS AS MEMBER 0x220F &#x220F; # N-ARY PRODUCT 0x2210 &#x2210; # N-ARY COPRODUCT 0x2210 &#x2210; # N-ARY COPRODUCT 0x2210 &#x2210; # N-ARY COPRODUCT 0x2211 &#x2211; # N-ARY SUMMATION 0x2212 &#x2212; # MINUS SIGN 0x2213 &#x2213; # MINUS-OR-PLUS SIGN 0x2214 &#x2214; # DOT PLUS 0x2216 &#x2216; # SET MINUS 0x2216 &#x2216; # SET MINUS 0x2217 &#x2217; # ASTERISK OPERATOR 0x2218 &#x2218; # RING OPERATOR 0x221A &#x221A; # SQUARE ROOT 0x221D &#x221D; # PROPORTIONAL TO 0x221D &#x221D; # PROPORTIONAL TO 0x221E &#x221E; # INFINITY 0x221F &#x221F; # RIGHT ANGLE 0x2220 &#x2220; # ANGLE 0x2221 &#x2221; # MEASURED ANGLE 0x2222 &#x2222; # SPHERICAL ANGLE 0x2223 &#x2223; # DIVIDES 0x2224 &#x2224; # DOES NOT DIVIDE 0x2225 &#x2225; # PARALLEL TO 0x2225 &#x2225; # PARALLEL TO 0x2226 &#x2226; # NOT PARALLEL TO 0x2226 &#x2226; # NOT PARALLEL TO 0x2227 &#x2227; # LOGICAL AND 0x2228 &#x2228; # LOGICAL OR 0x2229 &#x2229; # INTERSECTION 0x222A &#x222A; # UNION 0x222B &#x222B; # INTEGRAL 0x222E &#x222E; # CONTOUR INTEGRAL 0x2234 &#x2234; # THEREFORE 0x2235 &#x2235; # BECAUSE 0x223C &#x223C; # TILDE OPERATOR 0x223C &#x223C; # TILDE OPERATOR 0x223D &#x223D; # REVERSED TILDE 0x2240 &#x2240; # WREATH PRODUCT 0x2241 &#x2241; # NOT TILDE 0x2243 &#x2243; # ASYMPTOTICALLY EQUAL TO 0x2244 &#x2244; # NOT ASYMPTOTICALLY EQUAL TO 0x2245 &#x2245; # APPROXIMATELY EQUAL TO 0x2247 &#x2247; # NEITHER APPROXIMATELY NOR ACTUALLY EQUAL TO 0x2248 &#x2248; # ALMOST EQUAL TO 0x2248 &#x2248; # ALMOST EQUAL TO 0x2248 &#x2248; # ALMOST EQUAL TO 0x2249 &#x2249; # NOT ALMOST EQUAL TO 0x224A &#x224A; # ALMOST EQUAL OR EQUAL TO 0x224C &#x224C; # ALL EQUAL TO 0x224E &#x224E; # GEOMETRICALLY EQUIVALENT TO 0x224F &#x224F; # DIFFERENCE BETWEEN 0x2250 &#x2250; # APPROACHES THE LIMIT 0x2251 &#x2251; # GEOMETRICALLY EQUAL TO 0x2252 &#x2252; # APPROXIMATELY EQUAL TO OR THE IMAGE OF 0x2253 &#x2253; # IMAGE OF OR APPROXIMATELY EQUAL TO 0x2254 &#x2254; # COLON EQUALS 0x2255 &#x2255; # EQUALS COLON 0x2256 &#x2256; # RING IN EQUAL TO 0x2257 &#x2257; # RING EQUAL TO 0x2259 &#x2259; # ESTIMATES 0x225C &#x225C; # DELTA EQUAL TO 0x2260 &#x2260; # NOT EQUAL TO 0x2261 &#x2261; # IDENTICAL TO 0x2262 &#x2262; # NOT IDENTICAL TO 0x2264 &#x2264; # LESS-THAN OR EQUAL TO 0x2264 &#x2264; # LESS-THAN OR EQUAL TO 0x2265 &#x2265; # GREATER-THAN OR EQUAL TO 0x2265 &#x2265; # GREATER-THAN OR EQUAL TO 0x2266 &#x2266; # LESS-THAN OVER EQUAL TO 0x2267 &#x2267; # GREATER-THAN OVER EQUAL TO 0x2268 &#x2268; # LESS-THAN BUT NOT EQUAL TO 0x2268 &#x2268; # LESS-THAN BUT NOT EQUAL TO 0x2268 &#x2268; # LESS-THAN BUT NOT EQUAL TO 0x2269 &#x2269; # GREATER-THAN BUT NOT EQUAL TO 0x2269 &#x2269; # GREATER-THAN BUT NOT EQUAL TO 0x2269 &#x2269; # GREATER-THAN BUT NOT EQUAL TO 0x226A &#x226A; # MUCH LESS-THAN 0x226B &#x226B; # MUCH GREATER-THAN 0x226C &#x226C; # BETWEEN 0x226E &#x226E; # NOT LESS-THAN 0x226F &#x226F; # NOT GREATER-THAN 0x2270 &#x2270; # NEITHER LESS-THAN NOR EQUAL TO 0x2270 &#x2270; # NEITHER LESS-THAN NOR EQUAL TO 0x2271 &#x2271; # NEITHER GREATER-THAN NOR EQUAL TO 0x2271 &#x2271; # NEITHER GREATER-THAN NOR EQUAL TO 0x2272 &#x2272; # LESS-THAN OR EQUIVALENT TO 0x2273 &#x2273; # GREATER-THAN OR EQUIVALENT TO 0x2276 &#x2276; # LESS-THAN OR GREATER-THAN 0x2277 &#x2277; # GREATER-THAN OR LESS-THAN 0x227A &#x227A; # PRECEDES 0x227B &#x227B; # SUCCEEDS 0x227C &#x227C; # PRECEDES OR EQUAL TO 0x227C &#x227C; # PRECEDES OR EQUAL TO 0x227D &#x227D; # SUCCEEDS OR EQUAL TO 0x227D &#x227D; # SUCCEEDS OR EQUAL TO 0x227E &#x227E; # PRECEDES OR EQUIVALENT TO 0x227F &#x227F; # SUCCEEDS OR EQUIVALENT TO 0x2280 &#x2280; # DOES NOT PRECEDE 0x2281 &#x2281; # DOES NOT SUCCEED 0x2282 &#x2282; # SUBSET OF 0x2283 &#x2283; # SUPERSET OF 0x2284 &#x2284; # NOT A SUBSET OF 0x2285 &#x2285; # NOT A SUPERSET OF 0x2286 &#x2286; # SUBSET OF OR EQUAL TO 0x2286 &#x2286; # SUBSET OF OR EQUAL TO 0x2287 &#x2287; # SUPERSET OF OR EQUAL TO 0x2287 &#x2287; # SUPERSET OF OR EQUAL TO 0x2288 &#x2288; # NEITHER A SUBSET OF NOR EQUAL TO 0x2288 &#x2288; # NEITHER A SUBSET OF NOR EQUAL TO 0x2289 &#x2289; # NEITHER A SUPERSET OF NOR EQUAL TO 0x2289 &#x2289; # NEITHER A SUPERSET OF NOR EQUAL TO 0x228A &#x228A; # SUBSET OF WITH NOT EQUAL TO 0x228A &#x228A; # SUBSET OF WITH NOT EQUAL TO 0x228A &#x228A; # SUBSET OF WITH NOT EQUAL TO 0x228A &#x228A; # SUBSET OF WITH NOT EQUAL TO 0x228B &#x228B; # SUPERSET OF WITH NOT EQUAL TO 0x228B &#x228B; # SUPERSET OF WITH NOT EQUAL TO 0x228B &#x228B; # SUPERSET OF WITH NOT EQUAL TO 0x228B &#x228B; # SUPERSET OF WITH NOT EQUAL TO 0x228E &#x228E; # MULTISET UNION 0x228F &#x228F; # SQUARE IMAGE OF 0x2290 &#x2290; # SQUARE ORIGINAL OF 0x2291 &#x2291; # SQUARE IMAGE OF OR EQUAL TO 0x2292 &#x2292; # SQUARE ORIGINAL OF OR EQUAL TO 0x2293 &#x2293; # SQUARE CAP 0x2294 &#x2294; # SQUARE CUP 0x2295 &#x2295; # CIRCLED PLUS 0x2296 &#x2296; # CIRCLED MINUS 0x2297 &#x2297; # CIRCLED TIMES 0x2298 &#x2298; # CIRCLED DIVISION SLASH 0x2299 &#x2299; # CIRCLED DOT OPERATOR 0x229A &#x229A; # CIRCLED RING OPERATOR 0x229B &#x229B; # CIRCLED ASTERISK OPERATOR 0x229D &#x229D; # CIRCLED DASH 0x229E &#x229E; # SQUARED PLUS 0x229F &#x229F; # SQUARED MINUS 0x22A0 &#x22A0; # SQUARED TIMES 0x22A1 &#x22A1; # SQUARED DOT OPERATOR 0x22A2 &#x22A2; # RIGHT TACK 0x22A3 &#x22A3; # LEFT TACK 0x22A4 &#x22A4; # DOWN TACK 0x22A5 &#x22A5; # UP TACK 0x22A5 &#x22A5; # UP TACK 0x22A7 &#x22A7; # MODELS 0x22A8 &#x22A8; # TRUE 0x22A9 &#x22A9; # FORCES 0x22AA &#x22AA; # TRIPLE VERTICAL BAR RIGHT TURNSTILE 0x22AC &#x22AC; # DOES NOT PROVE 0x22AD &#x22AD; # NOT TRUE 0x22AE &#x22AE; # DOES NOT FORCE 0x22AF &#x22AF; # NEGATED DOUBLE VERTICAL BAR DOUBLE RIGHT TURNSTILE 0x22B2 &#x22B2; # NORMAL SUBGROUP OF 0x22B3 &#x22B3; # CONTAINS AS NORMAL SUBGROUP 0x22B4 &#x22B4; # NORMAL SUBGROUP OF OR EQUAL TO 0x22B5 &#x22B5; # CONTAINS AS NORMAL SUBGROUP OR EQUAL TO 0x22B8 &#x22B8; # MULTIMAP 0x22BA &#x22BA; # INTERCALATE 0x22BB &#x22BB; # XOR 0x22BC &#x22BC; # NAND 0x22C4 &#x22C4; # DIAMOND OPERATOR 0x22C5 &#x22C5; # DOT OPERATOR 0x22C6 &#x22C6; # STAR OPERATOR 0x22C7 &#x22C7; # DIVISION TIMES 0x22C8 &#x22C8; # BOWTIE 0x22C9 &#x22C9; # LEFT NORMAL FACTOR SEMIDIRECT PRODUCT 0x22CA &#x22CA; # RIGHT NORMAL FACTOR SEMIDIRECT PRODUCT 0x22CB &#x22CB; # LEFT SEMIDIRECT PRODUCT 0x22CC &#x22CC; # RIGHT SEMIDIRECT PRODUCT 0x22CD &#x22CD; # REVERSED TILDE EQUALS 0x22CE &#x22CE; # CURLY LOGICAL OR 0x22CF &#x22CF; # CURLY LOGICAL AND 0x22D0 &#x22D0; # DOUBLE SUBSET 0x22D1 &#x22D1; # DOUBLE SUPERSET 0x22D2 &#x22D2; # DOUBLE INTERSECTION 0x22D3 &#x22D3; # DOUBLE UNION 0x22D4 &#x22D4; # PITCHFORK 0x22D6 &#x22D6; # LESS-THAN WITH DOT 0x22D7 &#x22D7; # GREATER-THAN WITH DOT 0x22D8 &#x22D8; # VERY MUCH LESS-THAN 0x22D9 &#x22D9; # VERY MUCH GREATER-THAN 0x22DA &#x22DA; # LESS-THAN EQUAL TO OR GREATER-THAN 0x22DB &#x22DB; # GREATER-THAN EQUAL TO OR LESS-THAN 0x22DC &#x22DC; # EQUAL TO OR LESS-THAN 0x22DD &#x22DD; # EQUAL TO OR GREATER-THAN 0x22DE &#x22DE; # EQUAL TO OR PRECEDES 0x22DF &#x22DF; # EQUAL TO OR SUCCEEDS 0x22E0 &#x22E0; # DOES NOT PRECEDE OR EQUAL 0x22E1 &#x22E1; # DOES NOT SUCCEED OR EQUAL 0x22E6 &#x22E6; # LESS-THAN BUT NOT EQUIVALENT TO 0x22E7 &#x22E7; # GREATER-THAN BUT NOT EQUIVALENT TO 0x22E8 &#x22E8; # PRECEDES BUT NOT EQUIVALENT TO 0x22E9 &#x22E9; # SUCCEEDS BUT NOT EQUIVALENT TO 0x22EA &#x22EA; # NOT NORMAL SUBGROUP OF 0x22EB &#x22EB; # DOES NOT CONTAIN AS NORMAL SUBGROUP 0x22EC &#x22EC; # NOT NORMAL SUBGROUP OF OR EQUAL TO 0x22ED &#x22ED; # DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL 0x22EE &#x22EE; # VERTICAL ELLIPSIS 0x2306 &#x2306; # PERSPECTIVE 0x2308 &#x2308; # LEFT CEILING 0x2309 &#x2309; # RIGHT CEILING 0x230A &#x230A; # LEFT FLOOR 0x230B &#x230B; # RIGHT FLOOR 0x230C &#x230C; # BOTTOM RIGHT CROP 0x230D &#x230D; # BOTTOM LEFT CROP 0x230E &#x230E; # TOP RIGHT CROP 0x230F &#x230F; # TOP LEFT CROP 0x2315 &#x2315; # TELEPHONE RECORDER 0x2316 &#x2316; # POSITION INDICATOR 0x231C &#x231C; # TOP LEFT CORNER 0x231D &#x231D; # TOP RIGHT CORNER 0x231E &#x231E; # BOTTOM LEFT CORNER 0x231F &#x231F; # BOTTOM RIGHT CORNER 0x2322 &#x2322; # FROWN 0x2322 &#x2322; # FROWN 0x2323 &#x2323; # SMILE 0x2323 &#x2323; # SMILE 0x2329 &#x2329; # LEFT-POINTING ANGLE BRACKET 0x232A &#x232A; # RIGHT-POINTING ANGLE BRACKET 0x2423 &#x2423; # OPEN BOX 0x24C8 &#x24C8; # CIRCLED LATIN CAPITAL LETTER S 0x2500 &#x2500; # BOX DRAWINGS LIGHT HORIZONTAL 0x2502 &#x2502; # BOX DRAWINGS LIGHT VERTICAL 0x250C &#x250C; # BOX DRAWINGS LIGHT DOWN AND RIGHT 0x2510 &#x2510; # BOX DRAWINGS LIGHT DOWN AND LEFT 0x2514 &#x2514; # BOX DRAWINGS LIGHT UP AND RIGHT 0x2518 &#x2518; # BOX DRAWINGS LIGHT UP AND LEFT 0x251C &#x251C; # BOX DRAWINGS LIGHT VERTICAL AND RIGHT 0x2524 &#x2524; # BOX DRAWINGS LIGHT VERTICAL AND LEFT 0x252C &#x252C; # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL 0x2534 &#x2534; # BOX DRAWINGS LIGHT UP AND HORIZONTAL 0x253C &#x253C; # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL 0x2550 &#x2550; # BOX DRAWINGS DOUBLE HORIZONTAL 0x2551 &#x2551; # BOX DRAWINGS DOUBLE VERTICAL 0x2552 &#x2552; # BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE 0x2553 &#x2553; # BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE 0x2554 &#x2554; # BOX DRAWINGS DOUBLE DOWN AND RIGHT 0x2555 &#x2555; # BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE 0x2556 &#x2556; # BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE 0x2557 &#x2557; # BOX DRAWINGS DOUBLE DOWN AND LEFT 0x2558 &#x2558; # BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE 0x2559 &#x2559; # BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE 0x255A &#x255A; # BOX DRAWINGS DOUBLE UP AND RIGHT 0x255B &#x255B; # BOX DRAWINGS UP SINGLE AND LEFT DOUBLE 0x255C &#x255C; # BOX DRAWINGS UP DOUBLE AND LEFT SINGLE 0x255D &#x255D; # BOX DRAWINGS DOUBLE UP AND LEFT 0x255E &#x255E; # BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE 0x255F &#x255F; # BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE 0x2560 &#x2560; # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT 0x2561 &#x2561; # BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE 0x2562 &#x2562; # BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE 0x2563 &#x2563; # BOX DRAWINGS DOUBLE VERTICAL AND LEFT 0x2564 &#x2564; # BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE 0x2565 &#x2565; # BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE 0x2566 &#x2566; # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL 0x2567 &#x2567; # BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE 0x2568 &#x2568; # BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE 0x2569 &#x2569; # BOX DRAWINGS DOUBLE UP AND HORIZONTAL 0x256A &#x256A; # BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE 0x256B &#x256B; # BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE 0x256C &#x256C; # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL 0x2580 &#x2580; # UPPER HALF BLOCK 0x2584 &#x2584; # LOWER HALF BLOCK 0x2588 &#x2588; # FULL BLOCK 0x2591 &#x2591; # LIGHT SHADE 0x2592 &#x2592; # MEDIUM SHADE 0x2593 &#x2593; # DARK SHADE 0x25A1 &#x25A1; # WHITE SQUARE 0x25A1 &#x25A1; # WHITE SQUARE 0x25AA &#x25AA; # BLACK SMALL SQUARE 0x25AD &#x25AD; # WHITE RECTANGLE 0x25AE &#x25AE; # BLACK VERTICAL RECTANGLE 0x25B3 &#x25B3; # WHITE UP-POINTING TRIANGLE 0x25B4 &#x25B4; # BLACK UP-POINTING SMALL TRIANGLE 0x25B5 &#x25B5; # WHITE UP-POINTING SMALL TRIANGLE 0x25B8 &#x25B8; # BLACK RIGHT-POINTING SMALL TRIANGLE 0x25B9 &#x25B9; # WHITE RIGHT-POINTING SMALL TRIANGLE 0x25BD &#x25BD; # WHITE DOWN-POINTING TRIANGLE 0x25BE &#x25BE; # BLACK DOWN-POINTING SMALL TRIANGLE 0x25BF &#x25BF; # WHITE DOWN-POINTING SMALL TRIANGLE 0x25C2 &#x25C2; # BLACK LEFT-POINTING SMALL TRIANGLE 0x25C3 &#x25C3; # WHITE LEFT-POINTING SMALL TRIANGLE 0x25CA &#x25CA; # LOZENGE 0x25CB &#x25CB; # WHITE CIRCLE 0x25CB &#x25CB; # WHITE CIRCLE 0x2605 &#x2605; # BLACK STAR 0x2606 &#x2606; # WHITE STAR 0x260E &#x260E; # BLACK TELEPHONE 0x2640 &#x2640; # FEMALE SIGN 0x2642 &#x2642; # MALE SIGN 0x2660 &#x2660; # BLACK SPADE SUIT 0x2663 &#x2663; # BLACK CLUB SUIT 0x2665 &#x2665; # BLACK HEART SUIT 0x2666 &#x2666; # BLACK DIAMOND SUIT 0x266A &#x266A; # EIGHTH NOTE 0x266D &#x266D; # MUSIC FLAT SIGN 0x266E &#x266E; # MUSIC NATURAL SIGN 0x266F &#x266F; # MUSIC SHARP SIGN 0x2713 &#x2713; # CHECK MARK 0x2717 &#x2717; # BALLOT X 0x2720 &#x2720; # MALTESE CROSS 0x2726 &#x2726; # BLACK FOUR POINTED STAR 0x2727 &#x2727; # WHITE FOUR POINTED STAR 0x2736 &#x2736; # SIX POINTED BLACK STAR 0xFB00 &#xFB00; # LATIN SMALL LIGATURE FF 0xFB01 &#xFB01; # LATIN SMALL LIGATURE FI 0xFB02 &#xFB02; # LATIN SMALL LIGATURE FL 0xFB03 &#xFB03; # LATIN SMALL LIGATURE FFI 0xFB04 &#xFB04; # LATIN SMALL LIGATURE FFL </PRE> </BODY> </HTML>
wp-content/themes/snowberry/style.css
marcoamarelo/soylocoporti
/** * Theme Name: Snowberry * Theme URI: http://snowberry.dev.stfalcon.com/about-theme/ * Description: Simple and clean wordpress theme with nice contrast headers. Good readability of text. Perfect theme for personal blogs. Based on HTML of Twenty Eleven. * Author: web studio stfalcon.com * Author URI: http://stfalcon.com/ * Version: 1.1.4.1 * Tags: light, white, silver, fixed-width, one-column, two-columns, right-sidebar * * License: GNU General Public License * License URI: license.txt * * Snowberry, (c) Web studio stfalcon.com * Snowberry Theme is a derivative of Twenty Eleven, (c) The WordPress Team */ /* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html -------------------------------------------------------------- */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; } :focus {/* remember to define focus styles! */ outline: 0; } body { background: #fff; line-height: 1; } ol, ul { list-style: none; } table {/* tables still need 'cellspacing="0"' in the markup */ border-collapse: separate; border-spacing: 0; } caption, th, td { font-weight: normal; text-align: left; } blockquote:before, blockquote:after, q:before, q:after { content: ""; } blockquote, q { quotes: "" ""; } a img { border: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } /* =Structure ----------------------------------------------- */ .clearFix{ clear:both; } .top-border-img{ position:relative; display:block; } .top-border-img span.ovrl{ display:block; width:100%; height:5px; left:0px; top:0px; position:absolute; background:url(images/img-overlay.png) 0 0 repeat-x; } body { /*padding: 0 2em;*/ } .comment .edit-link{ position:static !important; display:inline-block; } *+ html .comment .edit-link{display:inline; zoom:1;} .top-navigation-wrap{ border-bottom:1px solid #f2f2f2; z-index:9; position:relative; } .top-navigation-wrap:after{display:block;content:'.';height:0px;clear:both;line-height:0px;font-size:0px;} #page { margin: 0 auto; max-width: 1000px; } #branding hgroup { /*margin: 0 50px;*/ float:left; margin:0 0 0 5%; } #access div { margin: 0 5%; } #primary { float: left; margin: 0 -30.4% 0 0; width: 100%; } #content { margin: 0 34% 0 5%; width: 62%; } #content .navigation{ margin:0 0 1.625em 0; padding:0 0 1.625em 0; } #secondary { float: right; margin-right: 5%; width: 20%; font-size:13px; } .entry-title{ position:relative; } /* Singular */ .singular #primary { margin: 0; } .inner-page #primary{ margin:0 -30.4% 0 0; } .singular #content, .left-sidebar.singular #content { margin: 0 5%; position: relative; width: auto; } .inner-page #content{ margin:0 34% 0 5%; width:62%; } .left-sidebar.inner-page #content{ margin:0 5% 0 34%; width:62%; } .singular .entry-header, .singular .entry-content, .singular footer.entry-meta, .singular #comments-title { margin: 0 auto; width: 68.9%; } .inner-page .entry-header, .inner-page .entry-content, .inner-page footer.entry-meta, .inner-page #comments-title { margin: 0 auto; width: auto; } /* Attachments */ .singular .image-attachment .entry-content { margin: 0 auto; width: auto; } .singular .image-attachment .entry-description { margin: 0 auto; width: 68.9%; } /* Showcase */ .page-template-showcase-php #primary, .left-sidebar.page-template-showcase-php #primary { margin: 0; } .page-template-showcase-php #content, .left-sidebar.page-template-showcase-php #content { margin: 0 5%; width: auto; } .page-template-showcase-php section.recent-posts { float: right; margin: 0 0 0 31%; width: 69%; } .page-template-showcase-php #main .widget-area { float: left; margin: 0 -22.15% 0 0; width: 22.15%; } /* error404 */ .error404 #primary { float: none; margin: 0; } .error404 #primary #content { margin: 0 5%; width: auto; } /* Alignment */ .alignleft { display: inline; float: left; margin-right: 1.625em; } .alignright { display: inline; float: right; margin-left: 1.625em; } .aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; } /* Right Content */ .left-sidebar #primary { float: right; margin: 0 0 0 -30.4%; width: 100%; } .left-sidebar #content { margin: 0 5% 0 34%; width: 62%; } .left-sidebar #secondary { float: left; margin-left: 5%; margin-right: 0; width: 22%; } /* One column */ .one-column #access{ max-width: 690px; } .one-column #page { max-width: 690px; } .one-column #content { margin: 0 5%; width: auto; } .one-column #nav-below { margin-bottom: 0; } .one-column #secondary { float: none; margin: 0 7.6%; width: auto; } /* Simplify the showcase template */ .one-column .page-template-showcase-php section.recent-posts { float: none; margin: 0; width: 100%; } .one-column .page-template-showcase-php #main .widget-area { float: none; margin: 0; width: auto; } .one-column .page-template-showcase-php .other-recent-posts { border-bottom: 1px solid #ddd; } /* Simplify the showcase template when small feature */ .one-column section.featured-post .attachment-small-feature { border: none; display: block; height: auto; max-width: 60%; position: static; } .one-column article.feature-image.small { margin: 0 0 1.625em; padding: 0; } .one-column article.feature-image.small .entry-title { font-size: 20px; line-height: 1.3em; } .one-column article.feature-image.small .entry-summary { height: 150px; overflow: hidden; padding: 0; text-overflow: ellipsis; } .one-column article.feature-image.small .entry-summary a { left: -9%; } /* Remove the margin on singular articles */ .one-column.singular .entry-header, .one-column.singular .entry-content, .one-column.singular footer.entry-meta, .one-column.singular #comments-title { width: 100%; } /* Simplify the pullquotes and pull styles */ .one-column.singular blockquote.pull { margin: 0 0 1.625em; } .one-column.singular .pull.alignleft { margin: 0 1.625em 0 0; } .one-column.singular .pull.alignright { margin: 0 0 0 1.625em; } .one-column.singular #author-info { margin: 2.2em -8.8% 0; padding: 20px 8.8%; } /* Make sure we have room for our comment avatars */ .one-column .commentlist > li.comment { margin-left: 102px; width: auto; } /* Make sure the logo and search form don't collide */ .one-column #branding #searchform { right: 40px; top: 4em; } /* Talking avatars take up too much room at this size */ .one-column .commentlist > li.comment { margin-left: 0; } .one-column .commentlist > li.comment .comment-meta, .one-column .commentlist > li.comment .comment-content { margin-right: 85px; } .one-column .commentlist .avatar { background: transparent; display: block; padding: 0; top: 1.625em; left: auto; right: 1.625em; } .one-column .commentlist .children .avatar { background: none; padding: 0; position: absolute; top: 2.2em; left: 2.2em; } .one-column #respond { width: auto; } /* =Global ----------------------------------------------- */ .replay-href{text-decoration:none; margin:0 0 0 20px;} .replay-href:hover span{ text-decoration:none; } .replay-href span{ text-decoration:underline; margin:0 0 0 -20px; } body, input, textarea { color: #000; font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; line-height: 1.625; } body { background: #e5e5e5 url(images/main_bg.png) 0 0 repeat-x; } #page { /*background: #fff;*/ } /* Headings */ h1,h2,h3,h4,h5,h6 { clear: both; font-family:'Open Sans', arial, sans-serif; letter-spacing:-1px; } hr { background-color: #ccc; border: 0; height: 1px; margin-bottom: 1.625em; } /* Text elements */ p { margin-bottom: 0.94em; } ul, ol { margin: 0 0 .94em 2.5em; } ul { list-style: square; } ol { list-style-type: decimal; } ol ol { list-style: upper-alpha; } ol ol ol { list-style: lower-roman; } ol ol ol ol { list-style: lower-alpha; } ul ul, ol ol, ul ol, ol ul { margin-bottom: 0; } dl { margin: 0 1.625em; } dt { font-weight: bold; } dd { margin-bottom: 1.625em; } strong { font-weight: bold; } cite, em, i { font-style: italic; } blockquote { font-family: arial, sans-serif; font-style: italic; font-weight: normal; margin: 0 3em 0.94em 3em; color:#666666; font-size:0.86em; } pre{ background:#f4f4f4; overflow:auto; } blockquote em, blockquote i, blockquote cite { font-style: normal; } blockquote cite { color: #666; font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 300; letter-spacing: 0.05em; text-transform: uppercase; } code, pre { font: 12px monospace; line-height: 19px !important; margin-bottom: 1.625em; overflow: auto; /*display:block;*/ /*padding: 0 1.625em;*/ } pre{ background:#fff; } code{ background: url(images/zebra-bg.png) 0 2px repeat; } code, kbd { font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; } abbr, acronym, dfn { border-bottom: 1px dotted #666; cursor: help; } address { display: block; margin: 0 0 1.625em; } ins { background: #fff9c0; text-decoration: none; } sup, sub { font-size: 10px; height: 0; line-height: 1; position: relative; vertical-align: baseline; } sup { bottom: 1ex; } sub { top: .5ex; } /* Forms */ input[type=text], input[type=password], textarea { background: #fff; /*-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);*/ color: #888; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; font-size: 13px; line-height: 13px; padding: 3px; border:1px solid #c8c8c8; border-top-color:#929292; } input[type=text]:focus, textarea:focus { color: #373737; } textarea { padding-left: 3px; width: 98%; } input[type=text] { padding: 3px; } input#s { -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; font-size: 13px; height: 21px; line-height: 13px; padding: 1px 32px 1px 5px; border:1px solid #c8c8c8; border-top-color:#929292; } input#searchsubmit { background: #fff url(images/search-bg.gif) no-repeat 100% 0px; border: none; cursor: pointer; position: absolute; top: 1px; right: 2px; height: 23px; width: 29px; text-indent: -99999px; } .left-sidebar .widget input#searchsubmit { right: 4px } .right-sidebar .widget input#searchsubmit { right: 1px } /* Links */ a { color: #008fd2; text-decoration: none; } a:focus, a:active, a:hover { text-decoration: underline; } /* Assistive text */ .assistive-text { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); } #access a.assistive-text:active, #access a.assistive-text:focus { background: #eee; border-bottom: 1px solid #ddd; color: #1982d1; clip: auto !important; font-size: 12px; position: absolute; text-decoration: underline; top: 0; left: 7.6%; } /* =Header ----------------------------------------------- */ .inner-page #branding{ /*border-bottom:none;*/ overflow:hidden; } #branding { border-bottom:4px solid #fff; position: relative; z-index: 2; } #site-title { margin-right: 400px; padding: 30px 0 0; letter-spacing:-1px; } #site-title a { color: #000000; font-size: 32px; font-weight: bold; line-height: 18px; text-decoration: none; text-shadow:#fff 0 1px 0; font-family:'Open Sans', arial, sans-serif; } #site-title a:hover, #site-title a:focus, #site-title a:active { color: #1982d1; } #site-description { color: #525252; font-size: 13px; margin: 0 400px 25px 0; text-shadow:#fff 0 1px 0; font-family:'Open Sans', arial, sans-serif; } #branding img { height: auto; margin-bottom: -7px; width: 100%; } /* =Menu -------------------------------------------------------------- */ #access { /*background: #000; background: -moz-linear-gradient(#252525, #0a0a0a); background: -o-linear-gradient(#252525, #0a0a0a); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); background: -webkit-linear-gradient(#252525, #0a0a0a); -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px; box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;*/ clear: both; display: block; float: none; margin: 0 auto; max-width: 1000px; } #access ul { font-size: 13px; list-style: none; margin: 0 0 0 -0.8125em; padding-left: 0; } #access li { float: left; position: relative; padding:0px; margin:0px; } #access a { color: #008fd2; display: block; line-height: 3.27em; height: 3.27em; padding: 0 0.95em; text-decoration: none; font-size:0.85em; font-family:'Open Sans', arial, sans-serif; position:relative; } #access a .top-menu-tail{ width:9px; height:5px; background:url(images/top-menu-tail.png) 0 0 no-repeat; position:absolute; left:50%; margin-left:-4px; bottom:-5px; z-index:99999; display:none; } #access .submn a{ padding-right:1.65em; } #access .submn .menu-arrow-down{ width:5px; height:5px; display:block; position:absolute; background:url(images/top-menu-arrows.png) -9px 0 no-repeat; top:1.6em; right:7px; } #access li:hover .menu-arrow-down{ background-position:-1px 0; } #access li:hover .top-menu-tail{ display:block; } #access ul ul { /*-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2); -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2); box-shadow: 0 3px 3px rgba(0,0,0,0.2);*/ display: none; float: left; margin: 0; padding:3px 10px; position: absolute; top: 2.79em; left: 0; min-width: 100px; z-index: 9999; background:#4c4c4c; } #access ul ul .top-menu-tail{ display:none !important; } #access ul ul .menu-arrow-down{ display:none !important; } #access ul ul li a{ padding:6px 0px ; background:none; color:#fff; border-top:1px solid #5e5e5e; } #access ul ul li:first-child a{ border-top:0px; } #access ul ul li a:hover{ color:#008fd2; background:none; } #access ul ul ul { left: 100%; top: -3px; } #access ul ul a { background: #f9f9f9; color: #444; font-size: 11px; font-weight: normal; height: auto; line-height: 1.4em; padding: 10px 10px; width: 168px; word-wrap: break-word; } #access li li:hover > a, #access ul ul :hover > a, #access a:focus { background: none; color:#008FD2; } #access li:hover > a, #access a:focus { background: #0094d4; /* Show a solid color for older browsers */ background: -moz-linear-gradient(#00a5db, #007ac6); background: -o-linear-gradient(#00a5db, #007ac6); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#00a5db), to(#007ac6)); /* Older webkit syntax */ background: -webkit-linear-gradient(#00a5db, #007ac6); color: #fff; } #access ul li:hover > ul { display: block; } #access .current_page_item > a { /*font-weight: bold;*/ background: #f2f2f2; background: -moz-linear-gradient(#e4e4e4, #f2f2f2); background: -o-linear-gradient(#e4e4e4, #f2f2f2); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e4e4e4), to(#f2f2f2)); background: -webkit-linear-gradient(#e4e4e4, #f2f2f2); color: #000; } #access ul li .current_page_item > a { background:none; font-weight:bold; color:#fff; } #access .current_page_item > a:hover .top-menu-tail{ background-position:0 0; } #access .current_page_item > a .top-menu-tail{ background:url(images/top-menu-tail.png) 0 -5px no-repeat; display:block; } /* Search Form */ #branding #searchform { position: absolute; top: 2.7em; right: 5%; text-align: right; display:block; float:right; max-width:280px; } #branding #searchform div { margin: 0; } #branding #searchform label.assistive-text{ clip:auto; position:static !important; float:left; line-height:25px; margin:0 18px 0 0; font-size:13px; color:#525252; } #branding #s { float: right; /*-webkit-transition-duration: 400ms; -webkit-transition-property: width, background; -webkit-transition-timing-function: ease; -moz-transition-duration: 400ms; -moz-transition-property: width, background; -moz-transition-timing-function: ease; -o-transition-duration: 400ms; -o-transition-property: width, background; -o-transition-timing-function: ease;*/ width: 180px; } #branding #s:focus { /*background-color: #f9f9f9;*/ /*width: 196px;*/ } #branding .only-search #searchform { top: 5px; z-index: 1; } #branding .only-search #s { background-color: #666; border-color: #000; color: #000; } #branding .only-search #s, #branding .only-search #s:focus { /*width: 85%;*/ } #branding .only-search #s:focus { background-color: #bbb; } #branding .with-image #searchform { top: auto; bottom: -27px; max-width: 195px; } #branding .only-search + #access div { padding-right: 205px; } /* =Content ----------------------------------------------- */ .inner-page #main{ padding-top:43px; /*border-top:none; background:#fff url(images/img-overlay.png) 0 0 repeat-x;*/ } #main { clear: both; padding: 25px 0 0; overflow:hidden; background:#fff; border-top:1px solid #e5e5e5; } .page-title { color: #666; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; line-height: 2.6em; margin: 0 0 2.6em; text-transform: uppercase; } .page-title a { font-size: 12px; font-weight: bold; letter-spacing: 0; text-transform: none; } .hentry, .no-results { margin: 0 0 30px; padding: 0 0 20px; position: relative; } .hentry:last-child, .no-results { border-bottom: none; } .blog .sticky .entry-header .entry-meta { clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); position: absolute !important; } .entry-title, .entry-header .entry-meta { padding-right: 76px; } .entry-title { clear: both; color: #000; font-size: 27px; font-weight: bold; line-height: 1; padding-bottom: .4em; font-family:'Open Sans', arial, sans-serif; /*padding-top: 15px;*/ letter-spacing:-1px; } .entry-title, .entry-title a { color: #000; text-decoration: none; } .entry-title a:hover, .entry-title a:focus, .entry-title a:active { color: #1982d1; } .entry-meta { color: #999; clear: both; font-size: 12px; line-height: 18px; font-family:'Open Sans', arial, sans-serif; } .entry-meta a{ text-decoration:underline; } .entry-meta a:hover{ text-decoration:none; } footer.entry-meta .sep{ display:none; } .entry-meta .cat-links{ display:none; } .entry-meta .tag-links{ display:block; padding:0 0 7px 0; margin:0 0 7px 0; border-bottom:1px dashed #ccc; font-family:'Open sans', arial, sans-serif; color:#999999; font-size:12px; } .entry-meta .comments-link{ font-size:1.25em; } .entry-meta .comments-link b{ font-weight:normal; } .entry-meta .comments-link a{ text-decoration:underline; } .entry-meta .comments-link a:hover{ text-decoration:none; } .leave-reply-cloud{ padding-left:20px; background:url(images/reply_ico.png) 0 70% no-repeat; } .entry-meta .tag-links a{ text-decoration:underline; } .entry-meta .tag-links a:hover{ text-decoration:none; } .entry-meta a { font-weight: normal; } .single-author .entry-meta .by-author { display: none; } .entry-meta .by-author .sep { display: inline; } .entry-content a{ text-decoration:underline; } .entry-content a:hover{ text-decoration:none; } .entry-content, .entry-summary { padding: 10px 0 0; } .entry-content h2, .comment-content h2{ margin:0 0 .2em 0 !important; } .entry-content h1, .entry-content h2, .comment-content h1, .comment-content h2 { color: #000; font-weight: bold; } .entry-content ul{ margin-left:1.3em; overflow: hidden; } .entry-content ul li{ list-style:none; background:url(images/ul-list-slyle.gif) 0 .7em no-repeat; padding-left:1.2em; /*margin-bottom: 0.5em;*/ } .entry-content h1, .comment-content h1 { font-size:27px; } .entry-content h2, .comment-content h2 { font-size:20px; font-family:'Open Sans', arial, sans-serif; } .entry-content h3, .comment-content h3 , .entry-content h4, .comment-content h4 , .entry-content h5, .comment-content h5, .entry-content h6, .comment-content h6{ font-size:18px; margin:0 0 .05em; font-weight:bold; } .entry-content h3, .comment-content h3 { } .entry-content .table-row-odd td{ background:#f8f8f8; } .entry-content table, .comment-content table { border-bottom: 1px solid #ddd; margin: 0 0 1.625em; width: 100%; border-collapse:collapse; } .entry-content th, .comment-content th { color: #000; border-right:1px solid #ebebeb; padding: 6px 20px 6px 20px; border-bottom:1px solid #cccccc; background:#fff; } .entry-content td, .comment-content td { border:none; color:#000; border-right:1px solid #ebebeb; padding: 6px 20px 6px 20px; background:#fff; } .entry-content table, .comment-content table{ border:1px solid #ebebeb; border-collapse:collapse; font-size:0.86em; } .entry-content #s { width: 75%; } .comment-content ul, .comment-content ol { margin-bottom: 1.625em; } .comment-content ul ul, .comment-content ol ol, .comment-content ul ol, .comment-content ol ul { margin-bottom: 0; } dl.gallery-item { margin: 0; } .page-link { clear: both; display: block; margin: 0 0 1.625em; } .page-link a { background: #eee; color: #373737; margin: 0; padding: 2px 3px; text-decoration: none; } .page-link a:hover { background: #888; color: #fff; font-weight: bold; } .page-link span { margin-right: 6px; } .edit-link{ position:absolute; right:8px; top:10px; display:block; height:21px; line-height:21px !important; font-size: 11px !important; background:url(images/edit-link-bg.png) 0 0 no-repeat; } .entry-meta .edit-link a, .entry-header .edit-link a, .commentlist .edit-link a { color: #676767; font-weight:bold; line-height: 21px; height:21px; font-weight: bold; text-decoration: none; padding: 0 8px 0 0; position:relative; right:-8px; display:block; text-transform:uppercase; font-family:'Open Sans', arial, sans-serif; background:url(images/edit-link-bg.png) 100% 0 no-repeat; } .entry-meta .edit-link:hover, .entry-header .edit-link:hover, .commentlist .edit-link:hover { background:url(images/edit-link-bg.png) 0 100% no-repeat; } .entry-meta .edit-link:hover a, .entry-header .edit-link:hover a, .commentlist .edit-link:hover a{ background:url(images/edit-link-bg.png) 100% 100% no-repeat; color:#fff; } .entry-content .edit-link { clear: both; display: block; } /* Images */ .entry-content img, .comment-content img{ vertical-align:top; position:relative; top:-2px; } .entry-content img, .comment-content img, .widget img { max-width: 97.5%; /* Fluid images for posts, comments, and widgets */ } img[class*="align"], img[class*="wp-image-"] { height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */ } img.size-full { max-width: 97.5%; } .entry-content p img{ margin-right:20px; margin-bottom:20px; } .entry-content img.wp-smiley { border: none; margin: 0; padding: 0; } img.alignleft, img.alignright, img.aligncenter { margin-bottom: 0.94em; } img.aligncenter { margin-right: auto !important; } img.alignnone { vertical-align: inherit; } p img, .wp-caption { margin-top: 0.4em; } .wp-caption { background: #eee; margin-bottom: 1.625em; max-width: 96%; padding: 9px; } .wp-caption img { display: block; margin: 0 auto; max-width: 98%; } .wp-caption .wp-caption-text, .gallery-caption { color: #666; font-family: Georgia, serif; font-size: 12px; } .wp-caption .wp-caption-text { margin-bottom: 0.6em; padding: 10px 0 5px 40px; position: relative; } .wp-caption .wp-caption-text:before { color: #666; content: '\2014'; font-size: 14px; font-style: normal; font-weight: bold; margin-right: 5px; position: absolute; left: 10px; top: 7px; } #content .gallery { margin: 0 auto 1.625em; } #content .gallery a img { border: none; } img#wpstats { display: block; margin: 0 auto; } #content .gallery-columns-4 .gallery-item { width: 23%; padding-right: 2%; } #content .gallery-columns-4 .gallery-item img { width: 100%; height: auto; } /* Image borders */ img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */ /*border: 1px solid #ddd; padding: 6px;*/ } .wp-caption img { border-color: #eee; } a:focus img[class*="align"], a:hover img[class*="align"], a:active img[class*="align"], a:focus img[class*="wp-image-"], a:hover img[class*="wp-image-"], a:active img[class*="wp-image-"], #content .gallery .gallery-icon a:focus img, #content .gallery .gallery-icon a:hover img, #content .gallery .gallery-icon a:active img {/* Add some useful style to those fancy borders for linked images ... */ background: #eee; border-color: #bbb; } .wp-caption a:focus img, .wp-caption a:active img, .wp-caption a:hover img {/* ... including captioned images! */ background: #fff; border-color: #ddd; } /* Password Protected Posts */ .post-password-required .entry-header .comments-link { margin: 1.625em 0 0; } .post-password-required input[type=password] { margin: 0.8125em 0; } .post-password-required input[type=password]:focus { background: #f7f7f7; } /* Author Info */ #author-info { font-size: 12px; overflow: hidden; } .singular #author-info { border-top: 1px dashed #ccc; margin: 2.2em 0 0; padding: 20px 0; } .singular #author-info #author-link { margin-top: 5px; } .archive #author-info { border-bottom: 1px dashed #ccc; margin: 0 0 2.2em; padding: 0 0 2.2em; } #author-avatar { float: left; margin-right: -78px; } #author-avatar img { background: #fff; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 2px #bbb; -moz-box-shadow: 0 1px 2px #bbb; box-shadow: 0 1px 2px #bbb; padding: 3px; } #author-description { float: left; margin-left: 108px; } #author-description h2 { color: #000; font-size: 15px; font-weight: bold; margin: 5px 0 10px; } /* Comments link */ .entry-header .comments-link a { background: #eee url(images/comment-bubble.png) no-repeat; color: #666; font-size: 13px; font-weight: normal; line-height: 35px; overflow: hidden; padding: 0 0 0; position: absolute; top: 1.5em; right: 0; text-align: center; text-decoration: none; width: 43px; height: 36px; display:none; } .entry-header .comments-link a:hover, .entry-header .comments-link a:focus, .entry-header .comments-link a:active { background-color: #1982d1; color: #fff; color: rgba(255,255,255,0.8); } .entry-header .comments-link .leave-reply { visibility: hidden; } /* Post Formats Headings To hide the headings, display: none the ".entry-header .entry-format" selector, and remove the padding rules below. */ .entry-header .entry-format { color: #666; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; line-height: 2.6em; position: absolute; text-transform: uppercase; top: -5px; } .entry-header hgroup .entry-title { padding-top: 15px; } article.format-aside .entry-content, article.format-link .entry-content, article.format-status .entry-content { padding: 20px 0 0; } .recent-posts .entry-header .entry-format { display: none; } .recent-posts .entry-header hgroup .entry-title { padding-top: 0; } /* Singular content styles for Posts and Pages */ .singular .hentry { border-bottom: none; padding: /*4.875em*/ 0 0 10px 0; position: relative; border-bottom:1px dashed #cccccc; } .singular.page .hentry { padding: /*3.5em*/ 0 0 0 0; } .singular .entry-title { color: #000; font-size: 27px; font-weight: bold; padding-right:75px !important; font-family:'Open Sans', arial, sans-serif; /*line-height: 48px;*/ } .singular .entry-title .edit-link{} .singular .entry-title, .singular .entry-header .entry-meta { padding-right: 0; } .singular .entry-header .entry-meta { /*position: absolute; top: 0; left: 0;*/ } blockquote.pull { font-size: 21px; font-weight: bold; line-height: 1.6125em; margin: 0 0 1.625em; text-align: center; } .singular blockquote.pull { margin: 0 -22.25% 1.625em; } .pull.alignleft { margin: 0 1.625em 0 0; text-align: right; width: 33%; } .singular .pull.alignleft { margin: 0 1.625em 0 -22.25%; } .pull.alignright { margin: 0 0 0 1.625em; text-align: left; width: 33%; } .singular .pull.alignright { margin: 0 -22.25% 0 1.625em; } .singular blockquote.pull.alignleft, .singular blockquote.pull.alignright { width: 33%; } /*.singular .entry-meta .edit-link a { bottom: auto; left: 50px; position: absolute; right: auto; top: 80px; }*/ /* =Aside ----------------------------------------------- */ .format-aside .entry-title, .format-aside .entry-header .comments-link { display: none; } .singular .format-aside .entry-title { display: block; } .format-aside .entry-content { padding: 0; } .singular .format-aside .entry-content { padding: 1.625em 0 0; } /* =Link ----------------------------------------------- */ .format-link .entry-title, .format-link .entry-header .comments-link { display: none; } .singular .format-link .entry-title { display: block; } .format-link .entry-content { padding: 0; } .singular .format-link .entry-content { padding: 1.625em 0 0; } /* =Gallery ----------------------------------------------- */ .format-gallery .gallery-thumb { float: left; display: block; margin: .375em 1.625em 0 0; } /* =Status ----------------------------------------------- */ .format-status .entry-title, .format-status .entry-header .comments-link { display: none; } .singular .format-status .entry-title { display: block; } .format-status .entry-content { padding: 0; } .singular .format-status .entry-content { padding: 1.625em 0 0; } .format-status img.avatar { -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 2px #ccc; -moz-box-shadow: 0 1px 2px #ccc; box-shadow: 0 1px 2px #ccc; float: left; margin: 4px 10px 2px 0; padding: 0; } /* =Quote ----------------------------------------------- */ .format-quote blockquote { color: #555; font-size: 17px; margin: 0; } /* =Image ----------------------------------------------- */ .indexed.format-image .entry-header { min-height: 61px; /* Prevent the comment icon from colliding with the image when there is no title */ } .indexed.format-image .entry-content { padding-top: 0.5em; } .indexed.format-image p, .indexed.format-image p img { margin-bottom: 0; } .indexed.format-image footer.entry-meta { background: #ddd; margin-top: -7px; padding: 20px 30px; overflow: hidden; } .indexed.format-image div.entry-meta { display: inline-block; float: left; width: 35%; } .indexed.format-image div.entry-meta + div.entry-meta { float: none; width: 65%; } .indexed.format-image .entry-meta span.cat-links, .indexed.format-image .entry-meta span.tag-links, .indexed.format-image .entry-meta span.comments-link { display: block; font-size: 12px; } .indexed.format-image footer.entry-meta a { color: #444; } .indexed.format-image footer.entry-meta a:hover { color: #fff; } #content .indexed.format-image img { border: none; max-width: 100%; padding: 0; } .indexed.format-image .wp-caption { background: #111; margin-bottom: 0; max-width: 96%; padding: 11px; } .indexed.format-image .wp-caption .wp-caption-text { color: #ddd; } .indexed.format-image .wp-caption .wp-caption-text:before { color: #444; } .indexed.format-image a:hover img { opacity: 0.8; } /* =error404 ----------------------------------------------- */ .error404 #main #searchform { background: #f9f9f9; border: 1px solid #ddd; border-width: 1px 0; margin: 0 -8.9% 1.625em; overflow: hidden; padding: 1.625em 8.9%; } .error404 #main #s { width: 95%; } .error404 #main .widget { clear: none; float: left; margin-right: 3.7%; width: 30.85%; } .error404 #main .widget_archive { margin-right: 0; } .error404 #main .widget_tag_cloud { float: none; margin-right: 0; width: 100%; } .error404 .widgettitle { font-size: 10px; letter-spacing: 0.1em; line-height: 2.6em; text-transform: uppercase; } /* =Showcase ----------------------------------------------- */ h1.showcase-heading { color: #666; font-size: 10px; font-weight: 500; letter-spacing: 0.1em; line-height: 2.6em; text-transform: uppercase; } /* Intro */ article.intro { background: #f9f9f9; border-bottom: none; margin: -1.855em -8.9% 1.625em; padding: 0 8.9%; } article.intro .entry-title { display: none; } article.intro .entry-content { color: #111; font-size: 16px; padding: 1.625em 0 0.625em; } article.intro .edit-link a { background: #aaa; -moz-border-radius: 3px; border-radius: 3px; color: #fff; font-size: 12px; padding: 0 8px; position: absolute; top: 30px; right: 20px; text-decoration: none; } article.intro .edit-link a:hover, article.intro .edit-link a:focus, article.intro .edit-link a:active { background: #777; } /* Featured post */ section.featured-post { float: left; margin: -1.625em -8.9% 1.625em; padding: 1.625em 8.9% 0; position: relative; width: 100%; } section.featured-post .hentry { border: none; color: #666; margin: 0; } section.featured-post .entry-meta { clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); position: absolute !important; } /* Small featured post */ section.featured-post .attachment-small-feature { float: right; height: auto; margin: 0 -8.9% 1.625em 0; max-width: 59%; position: relative; right: -15px; } section.featured-post.small { padding-top: 0; } section.featured-post .attachment-small-feature:hover, section.featured-post .attachment-small-feature:focus, section.featured-post .attachment-small-feature:active { opacity: .8; } article.feature-image.small { float: left; margin: 0 0 1.625em; width: 45%; } article.feature-image.small .entry-title { line-height: 1.2em; } article.feature-image.small .entry-summary { color: #555; font-size: 13px; } article.feature-image.small .entry-summary p a { background: #000; color: #eee; display: block; left: -23.8%; padding: 9px 26px 9px 85px; position: relative; text-decoration: none; top: 20px; width: 180px; z-index: 1; } article.feature-image.small .entry-summary p a:hover { background: #1982d1; color: #eee; color: rgba(255,255,255,0.8); } /* Large featured post */ section.feature-image.large { border: none; max-height: 288px; padding: 0; width: 100%; } section.feature-image.large .showcase-heading { display: none; } section.feature-image.large .hentry { border-bottom: none; left: 9%; margin: 1.625em 9% 0 0; position: absolute; top: 0; } article.feature-image.large .entry-title a { background: #000; background: rgba(0,0,0,0.8); -moz-border-radius: 3px; border-radius: 3px; color: #fff; display: inline-block; font-weight: 300; padding: .2em 20px; } section.feature-image.large:hover .entry-title a, section.feature-image.large .entry-title:hover a { background: #eee; background: rgba(255,255,255,0.8); color: #000; } article.feature-image.large .entry-summary { display: none; } section.feature-image.large img { display: block; height: auto; max-width: 117.9%; padding: 0 0 6px; } /* Featured Slider */ .featured-posts { border-bottom: 1px solid #ddd; display: block; height: 328px; margin: 1.625em -8.9% 20px; max-width: 1000px; padding: 0; position: relative; overflow: hidden; } .featured-posts .showcase-heading { padding-left: 8.9%; } .featured-posts section.featured-post { background: #fff; height: 288px; left: 0; margin: 0; position: absolute; top: 30px; width: auto; } .featured-posts section.featured-post.large { max-width: 100%; overflow: hidden; } .featured-posts section.featured-post { -webkit-transition-duration: 200ms; -webkit-transition-property: opacity, visibility; -webkit-transition-timing-function: ease; -moz-transition-duration: 200ms; -moz-transition-property: opacity, visibility; -moz-transition-timing-function: ease; } .featured-posts section.featured-post { opacity: 0; visibility: hidden; } .featured-posts #featured-post-1 { opacity: 1; visibility: visible; } .featured-post .feature-text:after, .featured-post .feature-image.small:after { content: ' '; background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera11.10+ */ background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */ background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */ width: 100%; height: 45px; position: absolute; top: 230px; } .featured-post .feature-image.small:after { top: 253px; } #content .feature-slider { top: 5px; right: 8.9%; overflow: visible; position: absolute; } .feature-slider ul { list-style-type: none; margin: 0; } .feature-slider li { float: left; margin: 0 6px; } .feature-slider a { background: #3c3c3c; background: rgba(60,60,60,0.9); -moz-border-radius: 12px; border-radius: 12px; -webkit-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5); -moz-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5); box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5); display: block; width: 14px; height: 14px; } .feature-slider a.active { background: #1982d1; -webkit-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8); -moz-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8); box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8); cursor: default; opacity: 0.5; } /* Recent Posts */ section.recent-posts { padding: 0 0 1.625em; } section.recent-posts .hentry { border: none; margin: 0; } section.recent-posts .other-recent-posts { border-bottom: 1px solid #ddd; list-style: none; margin: 0; } section.recent-posts .other-recent-posts li { padding: 0.3125em 0; position: relative; } section.recent-posts .other-recent-posts .entry-title { border-top: 1px solid #ddd; font-size: 17px; } section.recent-posts .other-recent-posts a[rel="bookmark"] { color: #373737; float: left; max-width: 84%; } section.recent-posts .other-recent-posts a[rel="bookmark"]:after { content: '-'; color: transparent; font-size: 11px; } section.recent-posts .other-recent-posts a[rel="bookmark"]:hover { } section.recent-posts .other-recent-posts .comments-link a, section.recent-posts .other-recent-posts .comments-link > span { border-bottom: 2px solid #999; bottom: -2px; color: #444; display: block; font-size: 10px; font-weight: 500; line-height: 2.76333em; padding: 0.3125em 0 0.3125em 1em; position: absolute; right: 0; text-align: right; text-transform: uppercase; z-index: 1; } section.recent-posts .other-recent-posts .comments-link > span { border-color: #bbb; color: #888; } section.recent-posts .other-recent-posts .comments-link a:hover { color: #1982d1; border-color: #1982d1; } section.recent-posts .other-recent-posts li:after { clear: both; content: '.'; display: block; height: 0; visibility: hidden; } /* =Attachments ----------------------------------------------- */ .image-attachment div.attachment { background: #f9f9f9; border: 1px solid #ddd; border-width: 1px 0; margin: 0 -8.9% 1.625em; overflow: hidden; padding: 1.625em 1.625em 0; text-align: center; } .image-attachment div.attachment img { display: block; height: auto; margin: 0 auto 1.625em; max-width: 100%; } .image-attachment div.attachment a img { border-color: #f9f9f9; } .image-attachment div.attachment a:focus img, .image-attachment div.attachment a:hover img, .image-attachment div.attachment a:active img { border-color: #ddd; background: #fff; } .image-attachment .entry-caption p { font-size: 10px; letter-spacing: 0.1em; line-height: 2.6em; margin: 0 0 2.6em; text-transform: uppercase; } /* =Navigation -------------------------------------------------------------- */ #content nav { clear: both; overflow: hidden; padding: 0 0 1.625em; } #content nav a { font-size: 12px; font-weight: bold; line-height: 2.2em; } #nav-above { padding: 0 0 1.625em; display: none; } #nav-above .nav-next{ width: auto; } .paged #nav-above { display: block; } .nav-previous { float: left; width: 50%; } .nav-next { float: right; text-align: right; width: 50%; } #content nav .meta-nav { font-weight: normal; } /* Singular navigation */ #nav-single { position: relative; top: -0.3em; text-align: right; width: 100%; z-index: 1; } #nav-single .nav-previous, #nav-single .nav-next { width: auto; } #nav-single .nav-next { padding-left: .5em; } /* =Widgets ----------------------------------------------- */ .widget-area { font-size: 12px; } .widget { clear: both; margin: 0 0 38px; } .widget-title { color: #9a9a9a; font-size: 11px; font-weight: bold; letter-spacing: 0; line-height: 1; text-transform: uppercase; font-family:'Open Sans', arial, sans-serif; margin: 0 0 11px 0; } .widget ul { font-size: 15px; margin: 0; } .widget ul ul { margin-left: 0em; } .widget ul ul ul li:first-child{ padding-top:10px; background-position:0 20px; } .widget ul ul ul li{ padding:10px 0 0 15px; background:url(images/widget-list-in.png) 0 20px no-repeat; } .widget ul ul li:first-child{ padding-top:10px; background-position:0 20px; } .widget ul ul li { color: #777; font-size: 13px; list-style:none; padding:10px 0 0 20px; background:url(images/widget-list.png) 0 20px no-repeat; } .widget ul li { color: #666; font-size: 13px; list-style:none; padding: 0 0 12px 0; } .entry-content .widget ul li { padding: 0 0 0 1.2em; } .widget a { font-weight: normal; color:#497489; text-decoration:underline; } .widget a:hover, .widget a:focus, .widget a:active { text-decoration: none; } /* Search Widget */ .widget_search form { margin: 0 0 1.625em; position: relative; } .widget_search #s { width: 81%; } /* Ephemera Widget */ section.ephemera ol, .widget_snowberry_ephemera ol { list-style: square; margin: 5px 0 0; } .widget_snowberry_ephemera .widget-entry-title { font-size: 15px; font-weight: bold; padding: 0; } .widget_snowberry_ephemera .comments-link a, .widget_snowberry_ephemera .comments-link > span { color: #666; display: block; font-size: 10px; font-weight: 500; line-height: 2.76333em; text-transform: uppercase; } section.ephemera .entry-title .comments-link a:hover, .widget_snowberry_ephemera .entry-title .comments-link a:hover { } section.ephemera .entry-title a span { color: #29628d; } /* Twitter */ .widget_twitter li { list-style-type: none; margin-bottom: 14px; } .widget_twitter .timesince { display: block; font-size: 11px; margin-right: -10px; text-align: right; } /* Widget Image */ .widget_image img { height: auto; max-width: 100%; } /* Calendar Widget */ .widget_calendar #wp-calendar { color: #555; width: 95%; text-align: center; } .widget_calendar #wp-calendar caption, .widget_calendar #wp-calendar td, .widget_calendar #wp-calendar th { text-align: center; } .widget_calendar #wp-calendar caption { font-size: 11px; font-weight: 500; padding: 5px 0 3px 0; text-transform: uppercase; } .widget_calendar #wp-calendar th { background: #f4f4f4; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; font-weight: bold; } .widget_calendar #wp-calendar tfoot td { background: #f4f4f4; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; } /* =Comments ----------------------------------------------- */ #comments-title { color: #000; font-size: 27px; font-weight: 500; line-height: 1.1em; padding: 0 0 .7em; /*text-transform: uppercase;*/ letter-spacing:-1px; font-weight:bold; font-family:'Open Sans', arial, sans-serif; } #comments-title a{ vertical-align:middle; font-size:12px; text-decoration:none; border-bottom:1px dashed #008fd2; color:#008fd2; margin:0 0 0 20px; font-weight:normal; line-height:1; } #comments-title a:hover{ border:none; } .nopassword, .nocomments { color: #aaa; font-size: 24px; font-weight: 100; margin: 26px 0; text-align: center; } .commentlist{ background:url(images/comments-bg.png); margin:0 0 1.625em 0; padding:18px 18px 0 18px; overflow:hidden; } .commentlist #respond input#submit{ left:0px; } .commentlist #reply-title{ font-size:21px; } .commentlist li.pingback{ margin:0 0 0 22px; } .commentlist li.comment{ margin:0 0 0 80px; list-style:none; } .commentlist li.comment li.comment{ margin:0 0 0 20px; } .commentlist article.comment{ background:#fff; -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; padding:10px 13px; position:relative; margin:0 0 17px 0; font-family:'Open Sans', arial, sans-serif; font-size:.866em; } article.comment .comment-content{ color:#000; } article.comment .comment-content p{ margin:.69em 0; } article.comment .reply{ } *+ html .reply .comment-reply-link{display:inline; zoom:1;} .reply .comment-reply-link{ display:inline-block; height:23px; line-height:23px; color:#676767; font-size:11px; font-weight:bold; background:url(images/comment-links.png) 0 0 no-repeat; padding:0 0 0 8px; position:relative; margin:0 8px 0 0; text-transform:uppercase; text-decoration:none; } .reply .comment-reply-link:hover{ background-position:0 -23px; color:#fff; } .reply .comment-reply-link:hover span{ background-position:100% -23px; } .reply .comment-reply-link span{ width:8px; height:23px; display:block; overflow:hidden; text-indent:99999px; position:absolute; background:url(images/comment-links.png) 100% 0 no-repeat; top:0px; right:-8px; } .reply .edit-link{ height:23px; background:url(images/comment-links.png) 0 0 no-repeat; margin:0 0 0 7px; } .reply .edit-link a{ height:23px; line-height:23px; background:url(images/comment-links.png) 100% 0 no-repeat; color:#676767; font-size:11px; font-weight:bold; } .reply .edit-link:hover{ background:url(images/comment-links.png) 0 -23px no-repeat; } .reply .edit-link:hover a{ background:url(images/comment-links.png) 100% -23px no-repeat; } article.comment .comment-author{ color:#999999; font-size:.92em; margin:0 0 .64em 0; line-height:1; } article.comment .comment-author a{ text-decoration:underline; } article.comment .comment-author a:hover{ text-decoration:none; } article.comment .comment-tail{ width:6px; height:12px; position:absolute; left:-6px; top:7px; background:url(images/comment-tail.png) 0 0 no-repeat; } article.comment .avatar{ position:absolute; top:0px; left:-80px; } /*.commentlist { list-style: none; margin: 0 auto; width: 68.9%; } .content .commentlist, .page-template-sidebar-page-php .commentlist { width: 100%; } .commentlist > li.comment { background: #f6f6f6; border: 1px solid #ddd; -moz-border-radius: 3px; border-radius: 3px; margin: 0 0 1.625em; padding: 1.625em; position: relative; } .commentlist .pingback { margin: 0 0 1.625em; padding: 0 1.625em; } .commentlist .children { list-style: none; margin: 0; } .commentlist .children li.comment { background: #fff; border-left: 1px solid #ddd; -moz-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; margin: 1.625em 0 0; padding: 1.625em; position: relative; } .commentlist .children li.comment .fn { display: block; } .comment-meta .fn { font-style: normal; } .comment-meta { color: #666; font-size: 12px; line-height: 2.2em; } .commentlist .children li.comment .comment-meta { line-height: 1.625em; margin-left: 50px; } .commentlist .children li.comment .comment-content { margin: 1.625em 0 0; } .comment-meta a { font-weight: bold; } .comment-meta a:focus, .comment-meta a:active, .comment-meta a:hover { } .commentlist .avatar { -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 2px #ccc; -moz-box-shadow: 0 1px 2px #ccc; box-shadow: 0 1px 2px #ccc; left: -102px; padding: 0; position: absolute; top: 0; } .commentlist > li:before { content: url(images/comment-arrow.png); left: -21px; position: absolute; } .commentlist > li.pingback:before { content: ''; } .commentlist .children .avatar { background: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; left: 2.2em; padding: 0; top: 2.2em; } a.comment-reply-link { background: #eee; -moz-border-radius: 3px; border-radius: 3px; color: #666; display: inline-block; font-size: 12px; padding: 0 8px; text-decoration: none; } a.comment-reply-link:hover, a.comment-reply-link:focus, a.comment-reply-link:active { background: #888; color: #fff; } a.comment-reply-link > span { display: inline-block; position: relative; top: -1px; } */ /* Post author highlighting */ /*.commentlist > li.bypostauthor { background: #ddd; border-color: #d3d3d3; } .commentlist > li.bypostauthor .comment-meta { color: #575757; } .commentlist > li.bypostauthor .comment-meta a:focus, .commentlist > li.bypostauthor .comment-meta a:active, .commentlist > li.bypostauthor .comment-meta a:hover { } .commentlist > li.bypostauthor:before { content: url(images/comment-arrow-bypostauthor.png); } */ /* Post Author threaded comments */ /*.commentlist .children > li.bypostauthor { background: #ddd; border-color: #d3d3d3; }*/ /* sidebar-page.php comments */ /* Make sure we have room for our comment avatars */ .page-template-sidebar-page-php .commentlist > li.comment, .page-template-sidebar-page-php.commentlist .pingback { margin-left: 102px; width: auto; } /* And a full-width comment form */ .page-template-sidebar-page-php #respond { width: auto; } /* Comment Form */ #respond { margin: 0 auto 1.625em; padding: /*1.625em*/ 0; position: relative; width: auto; } #respond input[type="text"], #respond textarea { background: #fff; border: 1px solid #c8c8c8; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; position: relative; padding: 10px; border-top-color:#929292; } #respond textarea #respond .comment-form-author, #respond .comment-form-email, #respond .comment-form-url, #respond .comment-form-comment { position: relative; } #respond .comment-form-author label, #respond .comment-form-email label, #respond .comment-form-url label, #respond .comment-form-comment label { /*background: #eee; -webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8); -moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8); box-shadow: 1px 2px 2px rgba(204,204,204,0.8); color: #555; display: inline-block; font-size: 13px; left: 4px; min-width: 60px; padding: 4px 10px; position: relative; top: 40px;*/ float:left; padding-right:20px; width:80px; z-index: 1; text-align:right; } #respond input[type="text"]:focus, #respond textarea:focus { text-indent: 0; z-index: 1; } #respond textarea { resize: vertical; width: 80%; max-width: 80%; height:115px; } #respond .comment-form-author .required, #respond .comment-form-email .required { color: #bd3500; font-size: 22px; font-weight: bold; left: 85px; position: absolute; top: auto; z-index: 1; } #respond .comment-notes, #respond .logged-in-as { font-size: 13px; } #respond p { margin: 10px 0; } #respond .form-submit { /*float: right;*/ margin: 0px 0 10px; } #respond input#submit { /*background: #000; border: none; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3); -moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3); box-shadow: 0px 1px 2px rgba(0,0,0,0.3); color: #eee; cursor: pointer;*/ font-size: 15px; margin: 0px 0; /*padding: 5px 42px 5px 22px;*/ position: relative; left: 100px; /*text-shadow: 0 -1px 0 rgba(0,0,0,0.3);*/ } #respond input#submit:active { /*background: #1982d1; color: #bfddf3;*/ } #respond #cancel-comment-reply-link { color: #666; margin-left: 10px; text-decoration: none; } #respond .logged-in-as a:hover, #respond #cancel-comment-reply-link:hover { text-decoration: underline; } .commentlist #respond { margin: 1.625em 0 0; width: auto; } #reply-title { color: #000; font-size: 27px; font-weight: bold; line-height: 30px; font-family:'Open Sans', arial, sans-serif; } #cancel-comment-reply-link { color: #888; display: block; font-size: 10px; font-weight: normal; line-height: 2.2em; letter-spacing: 0.05em; position: absolute; right: 1.625em; text-decoration: none; text-transform: uppercase; top: 1.1em; } #cancel-comment-reply-link:focus, #cancel-comment-reply-link:active, #cancel-comment-reply-link:hover { color: #ff4b33; } #respond label { line-height: 2.2em; } #respond input[type=text] { display: block; height: 24px; width: 34%; font-size:13px; padding:0 5px; } #respond p { font-size: 12px; } #respond a{ text-decoration:underline; } #respond a:hover{ text-decoration:none !important; } p.comment-form-comment { margin: 0; } .form-allowed-tags { display: none; } /* =Footer ----------------------------------------------- */ #colophon { clear: both; background:#fff; } #supplementary { border-top: 1px solid #ddd; padding: 1.625em 5%; overflow: hidden; } #supplementary .widget{ padding:0px; border:none; text-align:left; } #supplementary .widget-title{ text-align:left; } /* Two Footer Widget Areas */ #supplementary.two .widget-area { float: left; margin-right: 3.7%; width: 48.1%; } #supplementary.two .widget-area + .widget-area { margin-right: 0; } /* Three Footer Widget Areas */ #supplementary.three .widget-area { float: left; margin-right: 3.7%; width: 30.85%; } #supplementary.three .widget-area + .widget-area + .widget-area { margin-right: 0; } /* Site Generator Line */ #site-generator { background: url(images/footer-bg.gif) 0 bottom repeat-x; border-top: 1px solid #ddd; color: #999999; font-size: 13px; line-height: 1.6em; padding: 1.8em 0.5em 2.5em 0.5em; text-align: center; } #site-generator a { color: #999999; font-weight: normal; text-decoration: underline; } #site-generator .sep { background: url(images/wordpress.png) center left no-repeat; color: transparent; display: inline-block; height: 16px; line-height: 16px; margin: 0 7px; width: 16px; } /* =Responsive Structure ----------------------------------------------- */ @media (max-width: 800px) { /* Simplify the basic layout */ #main #content { margin: 0 5%; width: auto; } #nav-below { border-bottom: 1px solid #ddd; margin-bottom: 1.625em; } #main #secondary { float: none; margin: 0 7.6%; width: auto; } /* Simplify the showcase template */ .page-template-showcase-php .featured-posts { min-height: 280px; } .featured-posts section.featured-post { height: auto; } .page-template-showcase-php section.recent-posts { float: none; margin: 0; width: 100%; } .page-template-showcase-php #main .widget-area { float: none; margin: 0; width: auto; } .page-template-showcase-php .other-recent-posts { border-bottom: 1px solid #ddd; } /* Simplify the showcase template when small feature */ section.featured-post .attachment-small-feature, .one-column section.featured-post .attachment-small-feature { border: none; display: block; float: left; height: auto; margin: 0.625em auto 1.025em; max-width: 30%; position: static; } article.feature-image.small { float: right; margin: 0 0 1.625em; width: 64%; } .one-column article.feature-image.small .entry-summary { height: auto; } article.feature-image.small .entry-summary p a { left: 0; padding-left: 20px; padding-right: 20px; width: auto; } /* Remove the margin on singular articles */ .singular .entry-header, .singular .entry-content, .singular footer.entry-meta, .singular #comments-title { width: 100%; } /* Simplify the pullquotes and pull styles */ .singular blockquote.pull { margin: 0 0 1.625em; } .singular .pull.alignleft { margin: 0 1.625em 0 0; } .singular .pull.alignright { margin: 0 0 0 1.625em; } .singular #author-info { margin: 2.2em -8.8% 0; padding: 20px 8.8%; } /* Make sure we have room for our comment avatars */ .commentlist { width: 100%; } .commentlist > li.comment, .commentlist .pingback { margin-left: 102px; width: auto; } /* And a full-width comment form */ #respond { width: auto; } /* No need to float footer widgets at this size */ #colophon #supplementary .widget-area { float: none; margin-right: 0; width: auto; } /* No need to float 404 widgets at this size */ .error404 #main .widget { float: none; margin-right: 0; width: auto; } /* Make sure embeds fit their containers */ embed, object { max-width: 100%; } } @media (max-width: 650px) { /* @media (max-width: 650px) Reduce font-sizes for better readability on smaller devices */ body, input, textarea { font-size: 13px; line-height: 1.4; } #site-title a { font-size: 24px; } #site-description { font-size: 12px; } #access ul { font-size: 12px; } article.intro .entry-content { font-size: 12px; } .entry-title { font-size: 21px; } .featured-post .entry-title { font-size: 14px; } .singular .entry-title { font-size: 27px; } .entry-meta { font-size: 12px; } blockquote { margin: 0; } blockquote.pull { font-size: 17px; } /* Reposition the site title and description slightly */ #site-title { padding: 30px 0 0; } #site-title, #site-description { margin-right: 0; } /* Make sure the logo and search form don't collide */ #branding #searchform { top: 1.625em !important; } /* Floated content doesn't work well at this size */ .alignleft, .alignright { float: none; margin-left: 0; margin-right: 0; } /* Make sure the post-post navigation doesn't collide with anything */ #nav-single { display: block; position: static; } .singular .hentry { padding: 1.625em 0 0; } .singular.page .hentry { padding: /*1.625em*/ 0 0 0 0; } /* Talking avatars take up too much room at this size */ .commentlist > li.comment, .commentlist > li.pingback { margin-left: 0 !important; } .commentlist .avatar { background: transparent; display: block; padding: 0; position: static; } .commentlist .children .avatar { background: none; left: 2.2em; padding: 0; position: absolute; top: 2.2em; } /* Use the available space in the smaller comment form */ #respond input[type="text"] { width: 95%; } #respond .comment-form-author .required, #respond .comment-form-email .required { left: 95%; } #content .gallery-columns-3 .gallery-item { width: 31%; padding-right: 2%; } #content .gallery-columns-3 .gallery-item img { width: 100%; height: auto; } } @media (max-width: 450px) { #content .gallery-columns-2 .gallery-item { width: 45%; padding-right: 4%; } #content .gallery-columns-2 .gallery-item img { width: 100%; height: auto; } #site-title a{ font-size:25px; } #site-description{ font-size:12px; } } @media only screen and (min-device-width: 320px) and (max-device-width: 480px) { body { padding: 0; } #page { margin-top: 0; } #branding { border-top: none; } } /* =Print ----------------------------------------------- */ @media print { body { background: none !important; font-size: 10pt; } footer.entry-meta a[rel=bookmark]:link:after, footer.entry-meta a[rel=bookmark]:visited:after { content: " [" attr(href) "] "; /* Show URLs */ } #page { clear: both !important; display: block !important; float: none !important; max-width: 100%; position: relative !important; } #branding { border-top: none !important; padding: 0; } #branding hgroup { margin: 0; } #site-title a { font-size: 21pt; } #site-description { font-size: 10pt; } #branding #searchform { display: none; } #branding img { display: none; } #access { display: none; } #main { border-top: none; box-shadow: none; } #primary { float: left; margin: 0; width: 100%; } #content { margin: 0 32% 0 5%; width: 64%; } .singular #content { margin: 0; width: 100%; } .singular .entry-header .entry-meta { position: static; } .entry-meta .edit-link a { display: none; } #content nav { display: none; } .singular .entry-header, .singular .entry-content, .singular footer.entry-meta, .singular #comments-title { margin: 0; width: 100%; } .singular .hentry { padding: 0; } .entry-title, .singular .entry-title { font-size: 21pt; } .entry-meta { font-size: 10pt; } .entry-header .comments-link { display: none; } .page-link { display: none; } .singular #author-info { background: none; border-bottom: none; border-top: none; margin: 2.2em 0 0; padding: 0; } #respond { display: none; } .widget-area { display: none; } #colophon { display: none; } /* Comments */ .commentlist > li.comment { background: none; border: 1px solid #ddd; -moz-border-radius: 3px 3px 3px 3px; border-radius: 3px 3px 3px 3px; margin: 0 auto 1.625em; padding: 1.625em; position: relative; width: auto; } .commentlist .avatar { height: 39px; left: 2.2em; top: 2.2em; width: 39px; } .commentlist li.comment .comment-meta { line-height: 1.625em; margin-left: 50px; } .commentlist li.comment .fn { display: block; } .commentlist li.comment .comment-content { margin: 1.625em 0 0; } .commentlist .comment-edit-link { display: none; } .commentlist > li::before, .commentlist > li.bypostauthor::before { content: ''; } .commentlist .reply { display: none; } /* Post author highlighting */ .commentlist > li.bypostauthor { color: #444; } .commentlist > li.bypostauthor .comment-meta { color: #666; } .commentlist > li.bypostauthor:before { content: none; } /* Post Author threaded comments */ .commentlist .children > li.bypostauthor { background: #fff; border-color: #ddd; } .commentlist .children > li.bypostauthor > article, .commentlist .children > li.bypostauthor > article .comment-meta { color: #666; } } /* Wp-paginate styling */ #nav-below{ margin:0 0 1.625em 0; } #nav-below .nav-previous{ width:auto; } .nav-previous a{ overflow:hidden; text-indent:99999px; display:block; width:26px; height:26px; background:url(images/pagination_sprite.png) -27px 0 no-repeat; } .nav-previous a:hover{ background:url(images/pagination_sprite.png) -27px -27px no-repeat; } #nav-below .nav-next{ width:auto; } .nav-next a{ overflow:hidden; text-indent:99999px; display:block; width:26px; height:26px; background:url(images/pagination_sprite.png) 0 0 no-repeat; } .nav-next a:hover{ background:url(images/pagination_sprite.png) 0 -27px no-repeat; } .wp-paginate{ display:block; overflow:hidden; } .wp-paginate li{ float:left; margin:0 5px 0 0; } .wp-paginate li .page, .wp-paginate li .next, .wp-paginate li .prev{ width:26px; height:26px; color:#676767; font-family:'Open Sans', arial, sans-serif; font-weight:bold; font-size:13px; display:block; padding:0px; margin:0px; text-align:center; line-height:26px; border:none; background:url(images/pagination_sprite.png) -54px 0 no-repeat; text-indent:-1px; } .wp-paginate li .page:hover{ background:url(images/pagination_sprite.png) -54px -27px no-repeat; color:#fff; } .wp-paginate li .page.current{ cursor:default; background:url(images/pagination_sprite.png) -81px 0 no-repeat; color:#fff; } .wp-paginate li .next{ text-indent:-99999px; background:url(images/pagination_sprite.png) 0 0 no-repeat; } .wp-paginate li .next:hover{ background:url(images/pagination_sprite.png) 0 -27px no-repeat; } .wp-paginate li .prev{ text-indent:-99999px; background:url(images/pagination_sprite.png) -27px 0 no-repeat; } .wp-paginate li .prev:hover{ background:url(images/pagination_sprite.png) -27px -27px no-repeat; } /* =IE7 ----------------------------------------------- */ #ie7 article.intro { margin-left: -7.6%; margin-right: -7.6%; padding-left: -7.6%; padding-right: -7.6%; max-width: 1000px; } #ie7 section.featured-post { margin-left: -7.6%; margin-right: -7.6%; max-width: 850px; } #ie7 section.recent-posts { margin-right: 7.6%; } /* comment form header */ .comment-form-header{ font-size:13px; margin:0 0 10px 0; color:#000; } .comment-form-header h2{ display:inline; font-size:27px; vertical-align:middle; font-weight:bold; margin-right:35px; } .comment-form-header a{ vertical-align:middle; display:inline-block; margin-right:30px; color:#000; text-decoration:none; margin-top:5px; } .comment-form-header a.twitter-link{ padding:0 0 0 20px; background:url(images/twitter-ico.gif) 0 49% no-repeat; } .comment-form-header a.twitter-link:hover{text-decoration:underline;} .comment-form-header a.facebook-link{ padding:0 0 0 20px; background:url(images/facebook-ico.gif) 0 49% no-repeat; } .comment-form-header a.facebook-link:hover{text-decoration:underline;} .comment-form-header a.cloud{ height:18px; line-height:18px; background:url(images/cloud-sprite.png) 100% 0 no-repeat; padding:0; position:relative; } .comment-form-header a.cloud span{ padding:0 0 0 5px; display:block; height:18px; line-height:18px; position:relative; left:-5px; background:url(images/cloud-sprite.png) 0 0 no-repeat; } .comment-form-header a.cloud .tail{ position:absolute; width:9px; height:5px; left:50%; margin-left:-6px; bottom:-5px; background:url(images/cloud-sprite.png) -18px -18px no-repeat; } .comment-form-header a.cloud:hover{ background-position:100% -23px; color:#fff; } .comment-form-header a.cloud:hover span{ background:url(images/cloud-sprite.png) 0 -23px no-repeat; } .comment-form-header a.cloud:hover .tail{ background:url(images/cloud-sprite.png) -18px -41px no-repeat; } *+ html .comment-form-header a{display:inline; zoom:1;}
client/src/modules/vouchers/toolkit/convention_payment/convention_payment.modal.html
IMA-WorldHealth/bhima-2.X
<div class="modal-header"> <ol class="headercrumb"> <li class="static" translate>VOUCHERS.GLOBAL.CONVENTION_INVOICES</li> <li class="title" translate>VOUCHERS.GLOBAL.IMPORT_TRANSACTION</li> </ol> </div> <form name="ToolForm" bh-submit="ToolCtrl.import(ToolForm)" novalidate> <div class="modal-body"> <!-- select the cashbox --> <bh-cashbox-select cashbox-id="ToolCtrl.cashbox.id" on-select-callback="ToolCtrl.onSelectCashbox(cashbox)" required="true"> </bh-cashbox-select> <bh-debtor-group-select debtor-group-uuid="ToolCtrl.convention" name="convention" label="FORM.LABELS.CONVENTION" filter="ToolCtrl.debtorGroupFilter" on-select-callback = "ToolCtrl.onSelectDebtor(debtorGroup)"> </bh-debtor-group-select> <!-- select invoices --> <div ng-show="ToolCtrl.convention"> <div id="invoiceGrid" style="height: 40vh; margin-bottom: 20px;" ui-grid="ToolCtrl.gridOptions" ui-grid-filtering ui-grid-auto-resize ui-grid-resize-columns ui-grid-selection> <bh-grid-loading-indicator loading-state="ToolCtrl.loading" empty-state="ToolCtrl.gridOptions.data.length === 0" error-state="ToolCtrl.hasError"> </bh-grid-loading-indicator> </div> </div> <div ng-show="ToolCtrl.convention" class="text-right"> <span translate>FORM.LABELS.TOTAL_BILLED</span>: <strong class="text-danger">{{ ToolCtrl.totalInvoices || 0 | currency: ToolCtrl.enterprise.currency_id }}</strong><br> <span translate>FORM.LABELS.TOTAL_SELECTED_INVOICES</span>: <strong class="text-success">{{ ToolCtrl.totalSelected || 0 | currency: ToolCtrl.enterprise.currency_id }}</strong> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" ng-click="ToolCtrl.close()" data-method="close" translate> FORM.BUTTONS.CANCEL </button> <bh-loading-button loading-state="ToolForm.$loading" disabled="ToolForm.$invalid || !ToolCtrl.hasSelectedRows"> <span translate>FORM.BUTTONS.SUBMIT</span> </bh-loading-button> </div> </form>
toolchain/deprecated/arm_cm0_4.9/share/doc/gcc-arm-none-eabi/html/ld.html/MRI.html
jocelynmass/nrf51
<html lang="en"> <head> <title>MRI - Untitled</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Untitled"> <meta name="generator" content="makeinfo 4.8"> <link title="Top" rel="start" href="index.html#Top"> <link rel="prev" href="Reporting-Bugs.html#Reporting-Bugs" title="Reporting Bugs"> <link rel="next" href="GNU-Free-Documentation-License.html#GNU-Free-Documentation-License" title="GNU Free Documentation License"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU linker LD (GNU Tools for ARM Embedded Processors) version 2.24.0. Copyright (C) 1991-2013 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.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''.--> <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="MRI"></a> Next:&nbsp;<a rel="next" accesskey="n" href="GNU-Free-Documentation-License.html#GNU-Free-Documentation-License">GNU Free Documentation License</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Reporting-Bugs.html#Reporting-Bugs">Reporting Bugs</a>, Up:&nbsp;<a rel="up" accesskey="u" href="index.html#Top">Top</a> <hr> </div> <h2 class="appendix">Appendix A MRI Compatible Script Files</h2> <p><a name="index-MRI-compatibility-729"></a>To aid users making the transition to <span class="sc">gnu</span> <samp><span class="command">ld</span></samp> from the MRI linker, <samp><span class="command">ld</span></samp> can use MRI compatible linker scripts as an alternative to the more general-purpose linker scripting language described in <a href="Scripts.html#Scripts">Scripts</a>. MRI compatible linker scripts have a much simpler command set than the scripting language otherwise used with <samp><span class="command">ld</span></samp>. <span class="sc">gnu</span> <samp><span class="command">ld</span></samp> supports the most commonly used MRI linker commands; these commands are described here. <p>In general, MRI scripts aren't of much use with the <code>a.out</code> object file format, since it only has three sections and MRI scripts lack some features to make use of them. <p>You can specify a file containing an MRI-compatible script using the `<samp><span class="samp">-c</span></samp>' command-line option. <p>Each command in an MRI-compatible script occupies its own line; each command line starts with the keyword that identifies the command (though blank lines are also allowed for punctuation). If a line of an MRI-compatible script begins with an unrecognized keyword, <samp><span class="command">ld</span></samp> issues a warning message, but continues processing the script. <p>Lines beginning with `<samp><span class="samp">*</span></samp>' are comments. <p>You can write these commands using all upper-case letters, or all lower case; for example, `<samp><span class="samp">chip</span></samp>' is the same as `<samp><span class="samp">CHIP</span></samp>'. The following list shows only the upper-case form of each command. <a name="index-g_t_0040code_007bABSOLUTE_007d-_0028MRI_0029-730"></a> <dl><dt><code>ABSOLUTE </code><var>secname</var><dt><code>ABSOLUTE </code><var>secname</var><code>, </code><var>secname</var><code>, ... </code><var>secname</var><dd>Normally, <samp><span class="command">ld</span></samp> includes in the output file all sections from all the input files. However, in an MRI-compatible script, you can use the <code>ABSOLUTE</code> command to restrict the sections that will be present in your output program. If the <code>ABSOLUTE</code> command is used at all in a script, then only the sections named explicitly in <code>ABSOLUTE</code> commands will appear in the linker output. You can still use other input sections (whatever you select on the command line, or using <code>LOAD</code>) to resolve addresses in the output file. <p><a name="index-g_t_0040code_007bALIAS_007d-_0028MRI_0029-731"></a><br><dt><code>ALIAS </code><var>out-secname</var><code>, </code><var>in-secname</var><dd>Use this command to place the data from input section <var>in-secname</var> in a section called <var>out-secname</var> in the linker output file. <p><var>in-secname</var> may be an integer. <p><a name="index-g_t_0040code_007bALIGN_007d-_0028MRI_0029-732"></a><br><dt><code>ALIGN </code><var>secname</var><code> = </code><var>expression</var><dd>Align the section called <var>secname</var> to <var>expression</var>. The <var>expression</var> should be a power of two. <p><a name="index-g_t_0040code_007bBASE_007d-_0028MRI_0029-733"></a><br><dt><code>BASE </code><var>expression</var><dd>Use the value of <var>expression</var> as the lowest address (other than absolute addresses) in the output file. <p><a name="index-g_t_0040code_007bCHIP_007d-_0028MRI_0029-734"></a><br><dt><code>CHIP </code><var>expression</var><dt><code>CHIP </code><var>expression</var><code>, </code><var>expression</var><dd>This command does nothing; it is accepted only for compatibility. <p><a name="index-g_t_0040code_007bEND_007d-_0028MRI_0029-735"></a><br><dt><code>END</code><dd>This command does nothing whatever; it's only accepted for compatibility. <p><a name="index-g_t_0040code_007bFORMAT_007d-_0028MRI_0029-736"></a><br><dt><code>FORMAT </code><var>output-format</var><dd>Similar to the <code>OUTPUT_FORMAT</code> command in the more general linker language, but restricted to one of these output formats: <ol type=1 start=1> <li>S-records, if <var>output-format</var> is `<samp><span class="samp">S</span></samp>' <li>IEEE, if <var>output-format</var> is `<samp><span class="samp">IEEE</span></samp>' <li>COFF (the `<samp><span class="samp">coff-m68k</span></samp>' variant in BFD), if <var>output-format</var> is `<samp><span class="samp">COFF</span></samp>' </ol> <p><a name="index-g_t_0040code_007bLIST_007d-_0028MRI_0029-737"></a><br><dt><code>LIST </code><var>anything</var><code>...</code><dd>Print (to the standard output file) a link map, as produced by the <samp><span class="command">ld</span></samp> command-line option `<samp><span class="samp">-M</span></samp>'. <p>The keyword <code>LIST</code> may be followed by anything on the same line, with no change in its effect. <p><a name="index-g_t_0040code_007bLOAD_007d-_0028MRI_0029-738"></a><br><dt><code>LOAD </code><var>filename</var><dt><code>LOAD </code><var>filename</var><code>, </code><var>filename</var><code>, ... </code><var>filename</var><dd>Include one or more object file <var>filename</var> in the link; this has the same effect as specifying <var>filename</var> directly on the <samp><span class="command">ld</span></samp> command line. <p><a name="index-g_t_0040code_007bNAME_007d-_0028MRI_0029-739"></a><br><dt><code>NAME </code><var>output-name</var><dd><var>output-name</var> is the name for the program produced by <samp><span class="command">ld</span></samp>; the MRI-compatible command <code>NAME</code> is equivalent to the command-line option `<samp><span class="samp">-o</span></samp>' or the general script language command <code>OUTPUT</code>. <p><a name="index-g_t_0040code_007bORDER_007d-_0028MRI_0029-740"></a><br><dt><code>ORDER </code><var>secname</var><code>, </code><var>secname</var><code>, ... </code><var>secname</var><dt><code>ORDER </code><var>secname</var> <var>secname</var> <var>secname</var><dd>Normally, <samp><span class="command">ld</span></samp> orders the sections in its output file in the order in which they first appear in the input files. In an MRI-compatible script, you can override this ordering with the <code>ORDER</code> command. The sections you list with <code>ORDER</code> will appear first in your output file, in the order specified. <p><a name="index-g_t_0040code_007bPUBLIC_007d-_0028MRI_0029-741"></a><br><dt><code>PUBLIC </code><var>name</var><code>=</code><var>expression</var><dt><code>PUBLIC </code><var>name</var><code>,</code><var>expression</var><dt><code>PUBLIC </code><var>name</var> <var>expression</var><dd>Supply a value (<var>expression</var>) for external symbol <var>name</var> used in the linker input files. <p><a name="index-g_t_0040code_007bSECT_007d-_0028MRI_0029-742"></a><br><dt><code>SECT </code><var>secname</var><code>, </code><var>expression</var><dt><code>SECT </code><var>secname</var><code>=</code><var>expression</var><dt><code>SECT </code><var>secname</var> <var>expression</var><dd>You can use any of these three forms of the <code>SECT</code> command to specify the start address (<var>expression</var>) for section <var>secname</var>. If you have more than one <code>SECT</code> statement for the same <var>secname</var>, only the <em>first</em> sets the start address. </dl> </body></html>
docs/types/VisibilityList.html
alucardxlx/caoticamente-shards
<html> <head> <title>RunUO Documentation - Class Overview - VisibilityList</title> </head> <body bgcolor="white" style="font-family: Courier New" text="#000000" link="#000000" vlink="#000000" alink="#808080"> <h4><a href="../namespaces/Server.Commands.html">Back to Server.Commands</a></h4> <h2>VisibilityList</h2> <h4>Nested Types: <!-- DBG-4 --><a href="VisTarget.html">VisTarget</a></h4> (<font color="blue">static</font>) <font color="blue">void</font> Initialize()<br> (<font color="blue">static</font>) <font color="blue">void</font> OnLogin( <!-- DBG-0 --><a href="LoginEventArgs.html">LoginEventArgs</a> e )<br> (<font color="blue">static</font>) <font color="blue">void</font> Vis_OnCommand( <!-- DBG-0 --><a href="CommandEventArgs.html">CommandEventArgs</a> e )<br> (<font color="blue">static</font>) <font color="blue">void</font> VisClear_OnCommand( <!-- DBG-0 --><a href="CommandEventArgs.html">CommandEventArgs</a> e )<br> (<font color="blue">static</font>) <font color="blue">void</font> VisList_OnCommand( <!-- DBG-0 --><a href="CommandEventArgs.html">CommandEventArgs</a> e )<br> (<font color="blue">ctor</font>) VisibilityList()<br> </body> </html>
Skins/Pragma/Css/residencesclient.css
ENG-SYSTEMS/Kob-Eye
.BlocDetailResidenceClient .accroche { font-weight: normal; padding: 10px; color:#0070ba; font-size:12px; } .BlocDetailResidenceClient .infosRes { font-weight: normal; padding: 10px; color:#525252; font-size:12px; } .BlocDetailResidenceClient li, .BlocDetailResidenceClient a { background: url("../Img/sprite.png") no-repeat scroll 0 -1170px transparent; display: block; padding: 5px 11px; } .BlocDetailResidenceClient .infosclients { font-weight: normal; padding: 10px; color:#525252; font-size:12px; display:block; overflow:hidden; position:relative; width:100%; } .BlocDetailResidenceClient .infosclients .Item{ float:left; display:block; position:relative; width:33%; } div#MenuResidenceClient { position: relative; display: block; float: left; width: 160px; } div#MenuResidenceClient li { list-style: none; } div#MenuResidenceClient li.current a.lvl1 { color: #0070ba; } div#MenuResidenceClient li.lvl1 { padding: 0 0 5px; } div#MenuResidenceClient a.lvl1 { background: url("../Img/sprite.png") no-repeat scroll 0 -858px transparent; color: #525252; display: block; height: 19px; padding: 5px 13px; width:155px; } div#MenuResidenceClient ul.lvl1 { margin-left: 15px; }
engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
dLobatog/katello
<span page-title ng-model="activationKey">{{ 'Content Hosts for Activation Key:' | translate }} {{ activationKey.name }}</span> <div class="nutupane"> <h3 translate> Attached to Content Hosts </h3> <div bst-alert="info" ng-show="!table.working && contentHosts.length === 0"> <span translate>This activation key is not associated with any content hosts.</span> </div> <table class="table table-bordered table-striped" bst-table="table" ng-show="contentHosts.length > 0" ng-class="{'table-mask': table.working}"> <thead> <tr bst-table-head> <th bst-table-column="name" sortable><span translate>Name</span></th> <th bst-table-column="status"> {{ "Subscription Status" | translate }} </th> <th bst-table-column="environment" sortable><span translate>Environment</span></th> <th bst-table-column="contentView"><span translate>Content View</span></th> <th bst-table-column="serviceLevel"><span translate>Service Level</span></th> <th bst-table-column="releaseVersion"><span translate>Release Version</span></th> </tr> </thead> <tbody> <tr bst-table-row ng-repeat="contentHost in contentHosts" ng-controller="ContentHostStatusController"> <td bst-table-cell> <a ui-sref="content-hosts.details.info({hostId: contentHost.host_id})"> {{ contentHost.name }} </a> </td> <td bst-table-cell> <span class="fa fa-circle" ng-class="getSubscriptionStatusColor(contentHost.entitlementStatus)"> </span> </td> <td bst-table-cell>{{ contentHost.environment.name }}</td> <td bst-table-cell>{{ contentHost.content_view.name || "" }}</td> <td bst-table-cell>{{ contentHost.service_level }}</td> <td bst-table-cell>{{ contentHost.release_ver }}</td> </tr> </tbody> </table> </div>
layouts/sidebar-content-sidebar.css
beaulebens/Homeroom
/* Theme Name: Homeroom Layout: Sidebar-Content-Sidebar */ .site-content { float: left; width: 100%; } #content { margin: 0 20%; } #main .widget-area { float: left; overflow: hidden; width: 20%; } #secondary { /* Sidebar 1 */ margin: 0 0 0 -100%; } #tertiary { /* Sidebar 2 */ margin: 0 0 0 -20%; } .site-footer { clear: both; width: 100%; }
ch05/06 - var.html
JedrzMar/avr
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Przykład</title> </head> <body> <script type="text/javascript"> var myGlobalVar = "jabłka"; function myFunc(name) { var myLocalVar = "słonecznie"; return ("Witaj, " + name + ". Jest dziś " + myLocalVar + "."); }; document.writeln(myFunc("Adam")); </script> <script type="text/javascript"> document.writeln("Lubię " + myGlobalVar); </script> </body> </html>
wp-content/plugins/ultimate-responsive-image-slider/css/slider-pro.css
BlueSkyVacations-Pantheon/BlueSkyVacations-Pantheon
/*! * - v1.2.4 * Homepage: http://bqworks.com/slider-pro/ * Author: bqworks * Author URL: http://bqworks.com/ */ /* Core --------------------------------------------------*/ .slider-pro { position: relative; margin: 0 auto; -moz-box-sizing: content-box; box-sizing: content-box; } .sp-slides-container { position: relative; } .sp-mask { position: relative; overflow: hidden; } .sp-slides { position: relative; -webkit-backface-visibility: hidden; -webkit-perspective: 1000; } .sp-slide { position: absolute; } .sp-image-container { overflow: hidden; } .sp-image { position: relative; display: block; border: none; } .sp-no-js { overflow: hidden; max-width: 100%; } /* Thumbnails --------------------------------------------------*/ .sp-thumbnails-container { position: relative; overflow: hidden; } .sp-top-thumbnails, .sp-bottom-thumbnails { left: 0; margin: 0 auto; } .sp-top-thumbnails { position: absolute; top: 0; margin-bottom: 4px; } .sp-bottom-thumbnails { margin-top: 4px; } .sp-left-thumbnails, .sp-right-thumbnails { position: absolute; top: 0; } .sp-right-thumbnails { right: 0; margin-left: 4px; } .sp-left-thumbnails { left: 0; margin-right: 4px; } .sp-thumbnails { position: relative; } .sp-thumbnail { border: none; } .sp-thumbnail-container { position: relative; display: block; overflow: hidden; float: left; -moz-box-sizing: border-box; box-sizing: border-box; } /* Horizontal thumbnails ------------------------*/ .sp-top-thumbnails .sp-thumbnail-container, .sp-bottom-thumbnails .sp-thumbnail-container { margin-left: 2px; margin-right: 2px; } .sp-top-thumbnails .sp-thumbnail-container:first-child, .sp-bottom-thumbnails .sp-thumbnail-container:first-child { margin-left: 0; } .sp-top-thumbnails .sp-thumbnail-container:last-child, .sp-bottom-thumbnails .sp-thumbnail-container:last-child { margin-right: 0; } /* Vertical thumbnails ----------------------*/ .sp-left-thumbnails .sp-thumbnail-container, .sp-right-thumbnails .sp-thumbnail-container { margin-top: 2px; margin-bottom: 2px; } .sp-left-thumbnails .sp-thumbnail-container:first-child, .sp-right-thumbnails .sp-thumbnail-container:first-child { margin-top: 0; } .sp-left-thumbnails .sp-thumbnail-container:last-child, .sp-right-thumbnails .sp-thumbnail-container:last-child { margin-bottom: 0; } /* Right thumbnails with pointer --------------------------------*/ .sp-right-thumbnails.sp-has-pointer { margin-left: -13px; } .sp-right-thumbnails.sp-has-pointer .sp-thumbnail { position: absolute; left: 18px; margin-left: 0 !important; } .sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:before { content: ''; position: absolute; height: 100%; border-left: 5px solid #F00; left: 0; top: 0; margin-left: 13px; } .sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:after { content: ''; position: absolute; width: 0; height: 0; left: 0; top: 50%; margin-top: -8px; border-right: 13px solid #F00; border-top: 8px solid transparent; border-bottom: 8px solid transparent; } /* Left thumbnails with pointer -------------------------------*/ .sp-left-thumbnails.sp-has-pointer { margin-right: -13px; } .sp-left-thumbnails.sp-has-pointer .sp-thumbnail { position: absolute; right: 18px; } .sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:before { content: ''; position: absolute; height: 100%; border-left: 5px solid #F00; right: 0; top: 0; margin-right: 13px; } .sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:after { content: ''; position: absolute; width: 0; height: 0; right: 0; top: 50%; margin-top: -8px; border-left: 13px solid #F00; border-top: 8px solid transparent; border-bottom: 8px solid transparent; } /* Bottom thumbnails with pointer ---------------------------------*/ .sp-bottom-thumbnails.sp-has-pointer { margin-top: -13px; } .sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail { position: absolute; top: 18px; margin-top: 0 !important; } .sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before { content: ''; position: absolute; width: 100%; border-bottom: 5px solid #F00; top: 0; margin-top: 13px; } .sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after { content: ''; position: absolute; width: 0; height: 0; left: 50%; top: 0; margin-left: -8px; border-bottom: 13px solid #F00; border-left: 8px solid transparent; border-right: 8px solid transparent; } /* Top thumbnails with pointer ------------------------------*/ .sp-top-thumbnails.sp-has-pointer { margin-bottom: -13px; } .sp-top-thumbnails.sp-has-pointer .sp-thumbnail { position: absolute; bottom: 18px; } .sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:before { content: ''; position: absolute; width: 100%; border-bottom: 5px solid #F00; bottom: 0; margin-bottom: 13px; } .sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:after { content: ''; position: absolute; width: 0; height: 0; left: 50%; bottom: 0; margin-left: -8px; border-top: 13px solid #F00; border-left: 8px solid transparent; border-right: 8px solid transparent; } /* Layers --------------------------------------------------*/ .sp-layer { position: absolute; margin: 0; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -webkit-font-smoothing: subpixel-antialiased; -webkit-backface-visibility: hidden; } .sp-black { color: #FFF; background: rgb(0, 0, 0); background: rgba(0, 0, 0, 0.7); } .sp-white { color: #000; background: rgb(255, 255, 255); background: rgba(255, 255, 255, 0.7); } .sp-rounded { border-radius: 10px; } .sp-padding { padding: 10px; } /* Touch Swipe --------------------------------------------------*/ .sp-grab { cursor: url(images/openhand.cur), move; } .sp-grabbing { cursor: url(images/closedhand.cur), move; } .sp-selectable { cursor: default; } /* Caption --------------------------------------------------*/ .sp-caption-container { text-align: center; margin-top: 10px; } /* Full Screen --------------------------------------------------*/ .sp-full-screen { margin: 0 !important; background-color: #000; } .sp-full-screen-button { position: absolute; top: 5px; right: 10px; font-size: 30px; line-height: 1; cursor: pointer; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .sp-full-screen-button:before { content: '\2195'; } .sp-fade-full-screen { opacity: 0; -webkit-transition: opacity 0.5s; transition: opacity 0.5s; } .slider-pro:hover .sp-fade-full-screen { opacity: 1; } /* Buttons --------------------------------------------------*/ .sp-buttons { position: relative; width: 100%; text-align: center; padding-top: 10px; } .sp-button { width: 10px; height: 10px; border: 2px solid #000; border-radius: 50%; margin: 4px; display: inline-block; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; cursor: pointer; } .sp-selected-button { background-color: #000; } @media only screen and (min-width: 768px) and (max-width: 1024px) { .sp-button { width: 14px; height: 14px; } } @media only screen and (min-width: 568px) and (max-width: 768px) { .sp-button { width: 16px; height: 16px; } } @media only screen and (min-width: 320px) and (max-width: 568px) { .sp-button { width: 18px; height: 18px; } } /* Arrows --------------------------------------------------*/ .sp-arrows { position: absolute; } .sp-fade-arrows { opacity: 0; -webkit-transition: opacity 0.5s; transition: opacity 0.5s; } .sp-slides-container:hover .sp-fade-arrows { opacity: 1; } .sp-horizontal .sp-arrows { width: 100%; left: 0; top: 50%; margin-top: -15px; } .sp-vertical .sp-arrows { height: 100%; left: 50%; top: 0; margin-left: -10px; } .sp-arrow { position: absolute; display: block; width: 20px; height: 30px; cursor: pointer; } .sp-vertical .sp-arrow { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .sp-horizontal .sp-previous-arrow { left: 20px; } .sp-horizontal .sp-next-arrow { right: 20px; } .sp-vertical .sp-previous-arrow { top: 20px; } .sp-vertical .sp-next-arrow { bottom: 20px; } .sp-previous-arrow:before, .sp-previous-arrow:after, .sp-next-arrow:before, .sp-next-arrow:after { content: ''; position: absolute; width: 50%; height: 50%; background-color: #FFF; } .sp-previous-arrow:before { left: 30%; top: 0; -webkit-transform: skew(145deg, 0deg); -ms-transform: skew(145deg, 0deg); transform: skew(145deg, 0deg); } .sp-previous-arrow:after { left: 30%; top: 50%; -webkit-transform: skew(-145deg, 0deg); -ms-transform: skew(-145deg, 0deg); transform: skew(-145deg, 0deg); } .sp-next-arrow:before { right: 30%; top: 0; -webkit-transform: skew(35deg, 0deg); -ms-transform: skew(35deg, 0deg); transform: skew(35deg, 0deg); } .sp-next-arrow:after { right: 30%; top: 50%; -webkit-transform: skew(-35deg, 0deg); -ms-transform: skew(-35deg, 0deg); transform: skew(-35deg, 0deg); } .ie8 .sp-arrow, .ie7 .sp-arrow { width: 0; height: 0; } .ie8 .sp-arrow:before, .ie8 .sp-arrow:after, .ie7 .sp-arrow:before, .ie7 .sp-arrow:after { content: none; } .ie8.sp-horizontal .sp-previous-arrow, .ie7.sp-horizontal .sp-previous-arrow { border-right: 20px solid #FFF; border-top: 20px solid transparent; border-bottom: 20px solid transparent; } .ie8.sp-horizontal .sp-next-arrow, .ie7.sp-horizontal .sp-next-arrow { border-left: 20px solid #FFF; border-top: 20px solid transparent; border-bottom: 20px solid transparent; } .ie8.sp-vertical .sp-previous-arrow, .ie7.sp-vertical .sp-previous-arrow { border-bottom: 20px solid #FFF; border-left: 20px solid transparent; border-right: 20px solid transparent; } .ie8.sp-vertical .sp-next-arrow, .ie7.sp-vertical .sp-next-arrow { border-top: 20px solid #FFF; border-left: 20px solid transparent; border-right: 20px solid transparent; } /* Thumbnail Arrows --------------------------------------------------*/ .sp-thumbnail-arrows { position: absolute; } .sp-fade-thumbnail-arrows { opacity: 0; -webkit-transition: opacity 0.5s; transition: opacity 0.5s; } .sp-thumbnails-container:hover .sp-fade-thumbnail-arrows { opacity: 1; } .sp-top-thumbnails .sp-thumbnail-arrows, .sp-bottom-thumbnails .sp-thumbnail-arrows { width: 100%; top: 50%; left: 0; margin-top: -12px; } .sp-left-thumbnails .sp-thumbnail-arrows, .sp-right-thumbnails .sp-thumbnail-arrows { height: 100%; top: 0; left: 50%; margin-left: -7px; } .sp-thumbnail-arrow { position: absolute; display: block; width: 15px; height: 25px; cursor: pointer; } .sp-left-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow, .sp-right-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .sp-top-thumbnails .sp-previous-thumbnail-arrow, .sp-bottom-thumbnails .sp-previous-thumbnail-arrow { left: 0px; } .sp-top-thumbnails .sp-next-thumbnail-arrow, .sp-bottom-thumbnails .sp-next-thumbnail-arrow { right: 0px; } .sp-left-thumbnails .sp-previous-thumbnail-arrow, .sp-right-thumbnails .sp-previous-thumbnail-arrow { top: 0px; } .sp-left-thumbnails .sp-next-thumbnail-arrow, .sp-right-thumbnails .sp-next-thumbnail-arrow { bottom: 0px; } .sp-previous-thumbnail-arrow:before, .sp-previous-thumbnail-arrow:after, .sp-next-thumbnail-arrow:before, .sp-next-thumbnail-arrow:after { content: ''; position: absolute; width: 50%; height: 50%; background-color: #FFF; } .sp-previous-thumbnail-arrow:before { left: 30%; top: 0; -webkit-transform: skew(145deg, 0deg); -ms-transform: skew(145deg, 0deg); transform: skew(145deg, 0deg); } .sp-previous-thumbnail-arrow:after { left: 30%; top: 50%; -webkit-transform: skew(-145deg, 0deg); -ms-transform: skew(-145deg, 0deg); transform: skew(-145deg, 0deg); } .sp-next-thumbnail-arrow:before { right: 30%; top: 0; -webkit-transform: skew(35deg, 0deg); -ms-transform: skew(35deg, 0deg); transform: skew(35deg, 0deg); } .sp-next-thumbnail-arrow:after { right: 30%; top: 50%; -webkit-transform: skew(-35deg, 0deg); -ms-transform: skew(-35deg, 0deg); transform: skew(-35deg, 0deg); } .ie8 .sp-thumbnail-arrow, .ie7 .sp-thumbnail-arrow { width: 0; height: 0; } .ie8 .sp-thumbnail-arrow:before, .ie8 .sp-thumbnail-arrow:after, .ie7 .sp-thumbnail-arrow:before, .ie7 .sp-thumbnail-arrow:after { content: none; } .ie8 .sp-top-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-top-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow { border-right: 12px solid #FFF; border-top: 12px solid transparent; border-bottom: 12px solid transparent; } .ie8 .sp-top-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-bottom-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-top-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-bottom-thumbnails .sp-next-thumbnail-arrow { border-left: 12px solid #FFF; border-top: 12px solid transparent; border-bottom: 12px solid transparent; } .ie8 .sp-left-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-right-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-left-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-right-thumbnails .sp-previous-thumbnail-arrow { border-bottom: 12px solid #FFF; border-left: 12px solid transparent; border-right: 12px solid transparent; } .ie8 .sp-left-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-right-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-left-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-right-thumbnails .sp-next-thumbnail-arrow { border-top: 12px solid #FFF; border-left: 12px solid transparent; border-right: 12px solid transparent; } /* Video --------------------------------------------------*/ a.sp-video { text-decoration: none; } a.sp-video img { -webkit-backface-visibility: hidden; border: none; } a.sp-video:after { content: '\25B6'; position: absolute; width: 45px; padding-left: 5px; height: 50px; border: 2px solid #FFF; text-align: center; font-size: 30px; border-radius: 30px; top: 0; color: #FFF; bottom: 0; left: 0; right: 0; background-color: rgba(0, 0, 0, 0.2); margin: auto; line-height: 52px; } /* CSS for preventing styling issues in WordPress --------------------------------------------------*/ .slider-pro img.sp-image, .slider-pro img.sp-thumbnail { max-width: none; max-height: none; border: none !important; border-radius: 0 !important; padding: 0 !important; -webkit-box-shadow: none !important; -mox-box-shadow: none !important; box-shadow: none !important; transition: none; -moz-transition: none; -webkit-transition: none; -o-transition: none; } .slider-pro a { position: static; transition: none !important; -moz-transition: none !important; -webkit-transition: none !important; -o-transition: none !important; } .slider-pro iframe, .slider-pro object, .slider-pro video, .slider-pro embed, .slider-pro canvas { max-width: none; max-height: none; } .slider-pro p.sp-layer { font-size: 14px; line-height: 1.4; margin: 0; } .slider-pro h1.sp-layer { font-size: 32px; line-height: 1.4; margin: 0; } .slider-pro h2.sp-layer { font-size: 24px; line-height: 1.4; margin: 0; } .slider-pro h3.sp-layer { font-size: 19px; line-height: 1.4; margin: 0; } .slider-pro h4.sp-layer { font-size: 16px; line-height: 1.4; margin: 0; } .slider-pro h5.sp-layer { font-size: 13px; line-height: 1.4; margin: 0; } .slider-pro h6.sp-layer { font-size: 11px; line-height: 1.4; margin: 0; } .slider-pro img.sp-layer { border: none; }
sites/all/libraries/yui/examples/datatable/dt_clientpagination_clean.html
brennascurlock/Write-IIT
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>Client-side Pagination</title> <style type="text/css"> /*margin and padding on body element can introduce errors in determining element position and are not recommended; we turn them off as a foundation for YUI CSS treatments. */ body { margin:0; padding:0; } </style> <link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" /> <link rel="stylesheet" type="text/css" href="../../build/paginator/assets/skins/sam/paginator.css" /> <link rel="stylesheet" type="text/css" href="../../build/datatable/assets/skins/sam/datatable.css" /> <script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script> <script type="text/javascript" src="../../build/connection/connection-min.js"></script> <script type="text/javascript" src="../../build/json/json-min.js"></script> <script type="text/javascript" src="../../build/element/element-min.js"></script> <script type="text/javascript" src="../../build/paginator/paginator-min.js"></script> <script type="text/javascript" src="../../build/datasource/datasource-min.js"></script> <script type="text/javascript" src="../../build/datatable/datatable-min.js"></script> <!--begin custom header content for this example--> <style type="text/css"> #paginated { text-align: center; } #paginated table { margin-left:auto; margin-right:auto; } #paginated, #paginated .yui-dt-loading { text-align: center; background-color: transparent; } </style> <!--end custom header content for this example--> </head> <body class="yui-skin-sam"> <h1>Client-side Pagination</h1> <div class="exampleIntro"> <p>This example retrieves a large data set in JSON format from a server script, then loads the data into a DataTable with client side pagination enabled.</p> </div> <!--BEGIN SOURCE CODE FOR EXAMPLE =============================== --> <div id="paginated"></div> <script type="text/javascript"> YAHOO.util.Event.onDOMReady(function() { YAHOO.example.ClientPagination = function() { var myColumnDefs = [ {key:"id", label:"ID"}, {key:"name", label:"Name"}, {key:"date", label:"Date"}, {key:"price", label:"Price"}, {key:"number", label:"Number"} ]; var myDataSource = new YAHOO.util.DataSource("assets/php/json_proxy.php?"); myDataSource.responseType = YAHOO.util.DataSource.TYPE_JSON; myDataSource.responseSchema = { resultsList: "records", fields: ["id","name","date","price","number"] }; var oConfigs = { paginator: new YAHOO.widget.Paginator({ rowsPerPage: 15 }), initialRequest: "results=504" }; var myDataTable = new YAHOO.widget.DataTable("paginated", myColumnDefs, myDataSource, oConfigs); return { oDS: myDataSource, oDT: myDataTable }; }(); }); </script> </body> </html> <!--END SOURCE CODE FOR EXAMPLE =============================== --> </body> </html>
wp-content/themes/NativeChurch/css/event-printing.css
calasisqueta/calasisqueta
@media print { .event-printing.single-event .body{ display:none; } .event-printing.single-event #ticketModal{ display:block; } .event-printing .modal-footer{ display:none; } .event-printing .modal-content{ box-shadow:none; border:0; } .event-printing .modal-header .close{ display:none; } .event-printing .event-ticket .event-location{ font-size:14px!important; } .event-printing .event-area{ display:none; } .event-printing .event-ticket-left{ border-color:#999; } .event-printing .ticket-cost{ background-color: #f0ad4e!important; color:#fff!important; } }
plugins/content/accordionfaq/css/startfaq-ie6.css
ForAEdesWeb/AEW32
/* startfaq faq layout */ .startfaq.arrow .accordionfaqheader:hover span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/collapsed-black.gif'); } .startfaq.arrow .accordionfaqheader.selected span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/expanded-black.gif'); } .startfaq.defaulticon .accordionfaqheader:hover span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_222222_256x240.png'); } .startfaq.defaulticon span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_056b93_256x240.png'); } .startfaq.headerbackground.defaulticon span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_e0fdff_256x240.png'); } .startfaq.headerbackground.defaulticon .accordionfaqheader:hover span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_056b93_256x240.png'); } .startfaq.defaulticon .accordionfaqheader:hover span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_056b93_256x240.png'); } .startfaq.defaulticon .accordionfaqheader.selected span.accordionfaqicon, .startfaq.headerbackground.defaulticon .accordionfaqheader.selected span.accordionfaqicon { background-image: url('/plugins/content/accordionfaq/images/ui-icons_f5e175_256x240.png'); }