path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
src/Viteloge/CoreBundle/Resources/descriptions/43016.html
donaldinou/frontend
<div class="commune_descr limited"> <p> Auzon est un village géographiquement positionné dans le département de Haute-Loire en Auvergne. On dénombrait 904 habitants en 2008.</p> <p>Le parc de logements, à Auzon, était réparti en 2011 en 76 appartements et 594 maisons soit un marché relativement équilibré.</p> <p>À Auzon, le prix moyen à l'achat d'un appartement se situe à zero &euro; du m² en vente. Le prix moyen d'une maison à l'achat se situe à 953 &euro; du m². À la location la valeur moyenne se situe à 6,29 &euro; du m² mensuel.</p> <p>À proximité de Auzon sont positionnées géographiquement les villes de <a href="{{VLROOT}}/immobilier/frugeres-les-mines_43099/">Frugerès-les-Mines</a> située à 5&nbsp;km, 520 habitants, <a href="{{VLROOT}}/immobilier/vergongheon_43258/">Vergongheon</a> située à 4&nbsp;km, 1&nbsp;758 habitants, <a href="{{VLROOT}}/immobilier/solignat_63422/">Solignat</a> à 4&nbsp;km, 426 habitants, <a href="{{VLROOT}}/immobilier/brassac-les-mines_63050/">Brassac-les-Mines</a> située à 3&nbsp;km, 3&nbsp;287 habitants, <a href="{{VLROOT}}/immobilier/vezezoux_43261/">Vézézoux</a> située à 2&nbsp;km, 448 habitants, <a href="{{VLROOT}}/immobilier/valz-sous-chateauneuf_63442/">Valz-sous-Châteauneuf</a> à 5&nbsp;km, 55 habitants, entre autres. De plus, Auzon est située à seulement 19&nbsp;km de <a href="{{VLROOT}}/immobilier/issoire_63178/">Issoire</a>.</p> <p>Si vous pensez venir habiter à Auzon, vous pourrez aisément trouver une maison à acheter. </p> <p>La ville compte quelques équipements sportifs, elle dispose, entre autres, de un terrain de tennis, un terrain de sport et une boucle de randonnée.</p> </div>
levels/e70.html
grunfeld/grunfeld.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/x-icon" href="../favicon.ico"> <link rel="stylesheet" type="text/css" href="../css/font-awesome-4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../css/fonts.css"> <link rel="stylesheet" type="text/css" href="../css/sweetalert.css"> <link rel="stylesheet" type="text/css" href="../css/game.css"> <title>C.A.S.E.O.</title> </head> <body> <div class="center-align-container"> <canvas id="myCanvas" class="myCanvas"></canvas> </div> <div class="center-align-container" style="font-size:1.4em;margin-top:0;padding-top:0"> <a href="../menu.html" style="color:rgba(150, 146, 130, 0.7)"><i class="fa fa-bars fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="LOCK_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-lock fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="UNDO_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-times fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="BOOKMARK_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-bookmark-o fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a onclick="ReloadPage()" style="color:#DB7093;cursor:pointer"><i class="fa fa-repeat fa-3x" aria-hidden="true"></i></a> </div> <script src="../js/jquery-3.2.1.min.js"></script> <script src="../js/sweetalert.min.js"></script> <script src="../js/js.cookie.js"></script> <script src="../js/utils.js"></script> <script src="../js/board.js"></script> <script> $(document).ready(function() { let R = 5; let C = 8; let row_data = [[0, 0, 0, 2, 0, 0, 2, 0], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 1, 1], [1, 1, 1, 1, 1, 1, 0, 1], [1, 0, 1, 1, 1, 1, 1, 1], [0, 0, 0, 0, 2, 0, 2, 0]]; let col_data = [[0, 1, 1, 1, 0, 1, 1, 1, 0], [2, 1, 0, 1, 1, 1, 0, 1, 0], [2, 1, 0, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0], [0, 1, 1, 1, 0, 1, 1, 1, 0]]; let win_h = $(window).height(); let win_w = $(window).width(); let FONT = "Courier, monospace"; let fh = 2; let font_dim = MeasureText("A", true, FONT, fh); let char_h = font_dim[1]; let char_w = font_dim[0]; let req_h = R * 5 * char_h + (R+1) * char_h + 80; let req_w = C * 11 * char_w + (C+1) * char_w + 80; while (req_h < win_h && req_w < win_w) { ++fh; font_dim = MeasureText("A", true, FONT, fh); char_h = font_dim[1]; char_w = font_dim[0]; req_h = R * 5 * char_h + (R+1) * char_h + 80; req_w = C * 11 * char_w + (C+1) * char_w + 80; } var _b = new board(R, C, "myCanvas", FONT, fh-1); _b.RestoreBookmark(row_data, col_data); function getMousePos(canvas, evt) { let rect = canvas.getBoundingClientRect(); return { x: (evt.clientX-rect.left) / (rect.right-rect.left) * canvas.width, y: (evt.clientY-rect.top) / (rect.bottom-rect.top) * canvas.height }; } var canvas = document.getElementById("myCanvas"); var _ctx = canvas.getContext("2d"); _ctx.strokeStyle = "#E6E6FA"; _ctx.lineWidth = Math.floor(fh*1.33); var _drawing = false; var _mousePos = { x : -1, y : -1 }; var _lastPos = _mousePos; $('body').on('contextmenu', '#myCanvas', function(e) { // Disable default right-click - it is used for creating helper walls return false; }); canvas.addEventListener("mousedown", function (e) { _ctx.beginPath(); _drawing = true; _lastPos = getMousePos(canvas, e); _ctx.lineJoin = _ctx.lineCap = 'round'; }, false); canvas.addEventListener("mouseup", function (e) { if (_drawing) { _ctx.closePath(); _mousePos = getMousePos(canvas, e); if (e.which && e.which == 3) _b.AddHelperWall(_mousePos.x, _mousePos.y); else _b.Clicked(_mousePos.x, _mousePos.y); _lastPos = _mousePos; _drawing = false; } }, false); canvas.addEventListener("mousemove", function (e) { _mousePos = getMousePos(canvas, e); }, false); canvas.addEventListener("mouseout", function (e) { var mouseEvent = new MouseEvent("mouseup", {}); canvas.dispatchEvent(mouseEvent); }, false); function renderCanvas() { if (_drawing) { if (_lastPos.x > 0 && _lastPos.y > 0 && _mousePos.x > 0 && _mousePos.y > 0) { _ctx.moveTo(_lastPos.x, _lastPos.y); _ctx.lineTo(_mousePos.x, _mousePos.y); _ctx.stroke(); } _lastPos = _mousePos; _b.LogDragClick(_mousePos.x, _mousePos.y); } } (function drawLoop () { requestAnimFrame(drawLoop); renderCanvas(); })(); // TOUCH EVENTS // Prevent scrolling when touching the canvas canvas.addEventListener("touchstart", function (e) { e.preventDefault(); var touch = e.touches[0]; var mouseEvent = new MouseEvent("mousedown", { clientX: touch.clientX, clientY: touch.clientY }); canvas.dispatchEvent(mouseEvent); }, false); canvas.addEventListener("touchend", function (e) { var mouseEvent = new MouseEvent("mouseup", {}); canvas.dispatchEvent(mouseEvent); }, false); canvas.addEventListener("touchmove", function (e) { e.preventDefault(); var touch = e.touches[0]; var mouseEvent = new MouseEvent("mousemove", { clientX: touch.clientX, clientY: touch.clientY }); canvas.dispatchEvent(mouseEvent); }, false); $("#LOCK_BTN").click(function() { _b.ToggleLock(); }); $("#UNDO_BTN").click(function() { _b.RestoreLockedState(); }); $("#BOOKMARK_BTN").click(function() { _b.Bookmark(); }); }); </script> </body> </html>
docs/Annon.Requests.Request.API.html
Nebo15/annon.api
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="ExDoc v0.18.3"> <title>Annon.Requests.Request.API – annon_api v0.16.2</title> <link rel="stylesheet" href="dist/app-091c05798a.css" /> <script src="dist/sidebar_items-0083d416e2.js"></script> </head> <body data-type="modules"> <script>try { if(localStorage.getItem('night-mode')) document.body.className += ' night-mode'; } catch (e) { }</script> <div class="main"> <button class="sidebar-button sidebar-toggle"> <span class="icon-menu" aria-hidden="true"></span> <span class="sr-only">Toggle Sidebar</span> </button> <button class="sidebar-button night-mode-toggle"> <span class="icon-theme" aria-hidden="true"></span> <span class="sr-only">Toggle Theme</span> </button> <section class="sidebar"> <a href="readme.html" class="sidebar-projectLink"> <div class="sidebar-projectDetails"> <h1 class="sidebar-projectName"> annon_api </h1> <h2 class="sidebar-projectVersion"> v0.16.2 </h2> </div> </a> <form class="sidebar-search" action="search.html"> <button type="submit" class="search-button"> <span class="icon-search" aria-hidden="true"></span> </button> <input name="q" type="text" id="search-list" class="search-input" placeholder="Search" aria-label="Search" autocomplete="off" /> </form> <ul class="sidebar-listNav"> <li><a id="extras-list" href="#full-list">Pages</a></li> <li><a id="modules-list" href="#full-list">Modules</a></li> </ul> <div class="gradient"></div> <ul id="full-list" class="sidebar-fullList"></ul> </section> <section class="content"> <div class="content-outer"> <div id="content" class="content-inner"> <h1> <small class="visible-xs">annon_api v0.16.2</small> Annon.Requests.Request.API </h1> <footer class="footer"> <p> <span class="line"> Built using <a href="https://github.com/elixir-lang/ex_doc" title="ExDoc" rel="help" target="_blank">ExDoc</a> (v0.18.3), </span> <span class="line"> designed by <a href="https://twitter.com/dignifiedquire" target="_blank" title="@dignifiedquire">Friedel Ziegelmayer</a>. </span> </p> </footer> </div> </div> </section> </div> <script src="dist/app-574613960f.js"></script> </body> </html>
css/open-iconic.css
TheBlackParrot/pos7d
@font-face { font-family: 'Icons'; src: url('../includes/open-iconic.eot'); src: url('../includes/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../includes/open-iconic.woff') format('woff'), url('../includes/open-iconic.ttf') format('truetype'), url('../includes/open-iconic.otf') format('opentype'), url('../includes/open-iconic.svg#iconic-sm') format('svg'); font-weight: normal; font-style: normal; } .oi[data-glyph].oi-text-replace { font-size: 0; line-height: 0; } .oi[data-glyph].oi-text-replace:before { width: 1em; text-align: center; } .oi[data-glyph]:before { font-family: 'Icons'; display: inline-block; speak: none; line-height: 1; vertical-align: baseline; font-weight: normal; font-style: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .oi[data-glyph]:empty:before { width: 1em; text-align: center; box-sizing: content-box; } .oi[data-glyph].oi-align-left:before { text-align: left; } .oi[data-glyph].oi-align-right:before { text-align: right; } .oi[data-glyph].oi-align-center:before { text-align: center; } .oi[data-glyph].oi-flip-horizontal:before { -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1); } .oi[data-glyph].oi-flip-vertical:before { -webkit-transform: scale(1, -1); -ms-transform: scale(-1, 1); transform: scale(1, -1); } .oi[data-glyph].oi-flip-horizontal-vertical:before { -webkit-transform: scale(-1, -1); -ms-transform: scale(-1, 1); transform: scale(-1, -1); } .oi[data-glyph=account-login]:before { content:'\e000'; } .oi[data-glyph=account-logout]:before { content:'\e001'; } .oi[data-glyph=action-redo]:before { content:'\e002'; } .oi[data-glyph=action-undo]:before { content:'\e003'; } .oi[data-glyph=align-center]:before { content:'\e004'; } .oi[data-glyph=align-left]:before { content:'\e005'; } .oi[data-glyph=align-right]:before { content:'\e006'; } .oi[data-glyph=aperture]:before { content:'\e007'; } .oi[data-glyph=arrow-bottom]:before { content:'\e008'; } .oi[data-glyph=arrow-circle-bottom]:before { content:'\e009'; } .oi[data-glyph=arrow-circle-left]:before { content:'\e00a'; } .oi[data-glyph=arrow-circle-right]:before { content:'\e00b'; } .oi[data-glyph=arrow-circle-top]:before { content:'\e00c'; } .oi[data-glyph=arrow-left]:before { content:'\e00d'; } .oi[data-glyph=arrow-right]:before { content:'\e00e'; } .oi[data-glyph=arrow-thick-bottom]:before { content:'\e00f'; } .oi[data-glyph=arrow-thick-left]:before { content:'\e010'; } .oi[data-glyph=arrow-thick-right]:before { content:'\e011'; } .oi[data-glyph=arrow-thick-top]:before { content:'\e012'; } .oi[data-glyph=arrow-top]:before { content:'\e013'; } .oi[data-glyph=audio-spectrum]:before { content:'\e014'; } .oi[data-glyph=audio]:before { content:'\e015'; } .oi[data-glyph=badge]:before { content:'\e016'; } .oi[data-glyph=ban]:before { content:'\e017'; } .oi[data-glyph=bar-chart]:before { content:'\e018'; } .oi[data-glyph=basket]:before { content:'\e019'; } .oi[data-glyph=battery-empty]:before { content:'\e01a'; } .oi[data-glyph=battery-full]:before { content:'\e01b'; } .oi[data-glyph=beaker]:before { content:'\e01c'; } .oi[data-glyph=bell]:before { content:'\e01d'; } .oi[data-glyph=bluetooth]:before { content:'\e01e'; } .oi[data-glyph=bold]:before { content:'\e01f'; } .oi[data-glyph=bolt]:before { content:'\e020'; } .oi[data-glyph=book]:before { content:'\e021'; } .oi[data-glyph=bookmark]:before { content:'\e022'; } .oi[data-glyph=box]:before { content:'\e023'; } .oi[data-glyph=briefcase]:before { content:'\e024'; } .oi[data-glyph=british-pound]:before { content:'\e025'; } .oi[data-glyph=browser]:before { content:'\e026'; } .oi[data-glyph=brush]:before { content:'\e027'; } .oi[data-glyph=bug]:before { content:'\e028'; } .oi[data-glyph=bullhorn]:before { content:'\e029'; } .oi[data-glyph=calculator]:before { content:'\e02a'; } .oi[data-glyph=calendar]:before { content:'\e02b'; } .oi[data-glyph=camera-slr]:before { content:'\e02c'; } .oi[data-glyph=caret-bottom]:before { content:'\e02d'; } .oi[data-glyph=caret-left]:before { content:'\e02e'; } .oi[data-glyph=caret-right]:before { content:'\e02f'; } .oi[data-glyph=caret-top]:before { content:'\e030'; } .oi[data-glyph=cart]:before { content:'\e031'; } .oi[data-glyph=chat]:before { content:'\e032'; } .oi[data-glyph=check]:before { content:'\e033'; } .oi[data-glyph=chevron-bottom]:before { content:'\e034'; } .oi[data-glyph=chevron-left]:before { content:'\e035'; } .oi[data-glyph=chevron-right]:before { content:'\e036'; } .oi[data-glyph=chevron-top]:before { content:'\e037'; } .oi[data-glyph=circle-check]:before { content:'\e038'; } .oi[data-glyph=circle-x]:before { content:'\e039'; } .oi[data-glyph=clipboard]:before { content:'\e03a'; } .oi[data-glyph=clock]:before { content:'\e03b'; } .oi[data-glyph=cloud-download]:before { content:'\e03c'; } .oi[data-glyph=cloud-upload]:before { content:'\e03d'; } .oi[data-glyph=cloud]:before { content:'\e03e'; } .oi[data-glyph=cloudy]:before { content:'\e03f'; } .oi[data-glyph=code]:before { content:'\e040'; } .oi[data-glyph=cog]:before { content:'\e041'; } .oi[data-glyph=collapse-down]:before { content:'\e042'; } .oi[data-glyph=collapse-left]:before { content:'\e043'; } .oi[data-glyph=collapse-right]:before { content:'\e044'; } .oi[data-glyph=collapse-up]:before { content:'\e045'; } .oi[data-glyph=command]:before { content:'\e046'; } .oi[data-glyph=comment-square]:before { content:'\e047'; } .oi[data-glyph=compass]:before { content:'\e048'; } .oi[data-glyph=contrast]:before { content:'\e049'; } .oi[data-glyph=copywriting]:before { content:'\e04a'; } .oi[data-glyph=credit-card]:before { content:'\e04b'; } .oi[data-glyph=crop]:before { content:'\e04c'; } .oi[data-glyph=dashboard]:before { content:'\e04d'; } .oi[data-glyph=data-transfer-download]:before { content:'\e04e'; } .oi[data-glyph=data-transfer-upload]:before { content:'\e04f'; } .oi[data-glyph=delete]:before { content:'\e050'; } .oi[data-glyph=dial]:before { content:'\e051'; } .oi[data-glyph=document]:before { content:'\e052'; } .oi[data-glyph=dollar]:before { content:'\e053'; } .oi[data-glyph=double-quote-sans-left]:before { content:'\e054'; } .oi[data-glyph=double-quote-sans-right]:before { content:'\e055'; } .oi[data-glyph=double-quote-serif-left]:before { content:'\e056'; } .oi[data-glyph=double-quote-serif-right]:before { content:'\e057'; } .oi[data-glyph=droplet]:before { content:'\e058'; } .oi[data-glyph=eject]:before { content:'\e059'; } .oi[data-glyph=elevator]:before { content:'\e05a'; } .oi[data-glyph=ellipses]:before { content:'\e05b'; } .oi[data-glyph=envelope-closed]:before { content:'\e05c'; } .oi[data-glyph=envelope-open]:before { content:'\e05d'; } .oi[data-glyph=euro]:before { content:'\e05e'; } .oi[data-glyph=excerpt]:before { content:'\e05f'; } .oi[data-glyph=expand-down]:before { content:'\e060'; } .oi[data-glyph=expand-left]:before { content:'\e061'; } .oi[data-glyph=expand-right]:before { content:'\e062'; } .oi[data-glyph=expand-up]:before { content:'\e063'; } .oi[data-glyph=external-link]:before { content:'\e064'; } .oi[data-glyph=eye]:before { content:'\e065'; } .oi[data-glyph=eyedropper]:before { content:'\e066'; } .oi[data-glyph=file]:before { content:'\e067'; } .oi[data-glyph=fire]:before { content:'\e068'; } .oi[data-glyph=flag]:before { content:'\e069'; } .oi[data-glyph=flash]:before { content:'\e06a'; } .oi[data-glyph=folder]:before { content:'\e06b'; } .oi[data-glyph=fork]:before { content:'\e06c'; } .oi[data-glyph=fullscreen-enter]:before { content:'\e06d'; } .oi[data-glyph=fullscreen-exit]:before { content:'\e06e'; } .oi[data-glyph=globe]:before { content:'\e06f'; } .oi[data-glyph=graph]:before { content:'\e070'; } .oi[data-glyph=grid-four-up]:before { content:'\e071'; } .oi[data-glyph=grid-three-up]:before { content:'\e072'; } .oi[data-glyph=grid-two-up]:before { content:'\e073'; } .oi[data-glyph=hard-drive]:before { content:'\e074'; } .oi[data-glyph=header]:before { content:'\e075'; } .oi[data-glyph=headphones]:before { content:'\e076'; } .oi[data-glyph=heart]:before { content:'\e077'; } .oi[data-glyph=home]:before { content:'\e078'; } .oi[data-glyph=image]:before { content:'\e079'; } .oi[data-glyph=inbox]:before { content:'\e07a'; } .oi[data-glyph=infinity]:before { content:'\e07b'; } .oi[data-glyph=info]:before { content:'\e07c'; } .oi[data-glyph=italic]:before { content:'\e07d'; } .oi[data-glyph=justify-center]:before { content:'\e07e'; } .oi[data-glyph=justify-left]:before { content:'\e07f'; } .oi[data-glyph=justify-right]:before { content:'\e080'; } .oi[data-glyph=key]:before { content:'\e081'; } .oi[data-glyph=laptop]:before { content:'\e082'; } .oi[data-glyph=layers]:before { content:'\e083'; } .oi[data-glyph=lightbulb]:before { content:'\e084'; } .oi[data-glyph=link-broken]:before { content:'\e085'; } .oi[data-glyph=link-intact]:before { content:'\e086'; } .oi[data-glyph=list-rich]:before { content:'\e087'; } .oi[data-glyph=list]:before { content:'\e088'; } .oi[data-glyph=location]:before { content:'\e089'; } .oi[data-glyph=lock-locked]:before { content:'\e08a'; } .oi[data-glyph=lock-unlocked]:before { content:'\e08b'; } .oi[data-glyph=loop-circular]:before { content:'\e08c'; } .oi[data-glyph=loop-square]:before { content:'\e08d'; } .oi[data-glyph=loop]:before { content:'\e08e'; } .oi[data-glyph=magnifying-glass]:before { content:'\e08f'; } .oi[data-glyph=map-marker]:before { content:'\e090'; } .oi[data-glyph=map]:before { content:'\e091'; } .oi[data-glyph=media-pause]:before { content:'\e092'; } .oi[data-glyph=media-play]:before { content:'\e093'; } .oi[data-glyph=media-record]:before { content:'\e094'; } .oi[data-glyph=media-skip-backward]:before { content:'\e095'; } .oi[data-glyph=media-skip-forward]:before { content:'\e096'; } .oi[data-glyph=media-step-backward]:before { content:'\e097'; } .oi[data-glyph=media-step-forward]:before { content:'\e098'; } .oi[data-glyph=media-stop]:before { content:'\e099'; } .oi[data-glyph=medical-cross]:before { content:'\e09a'; } .oi[data-glyph=menu]:before { content:'\e09b'; } .oi[data-glyph=microphone]:before { content:'\e09c'; } .oi[data-glyph=minus]:before { content:'\e09d'; } .oi[data-glyph=monitor]:before { content:'\e09e'; } .oi[data-glyph=moon]:before { content:'\e09f'; } .oi[data-glyph=move]:before { content:'\e0a0'; } .oi[data-glyph=musical-note]:before { content:'\e0a1'; } .oi[data-glyph=paperclip]:before { content:'\e0a2'; } .oi[data-glyph=pencil]:before { content:'\e0a3'; } .oi[data-glyph=people]:before { content:'\e0a4'; } .oi[data-glyph=person]:before { content:'\e0a5'; } .oi[data-glyph=phone]:before { content:'\e0a6'; } .oi[data-glyph=pie-chart]:before { content:'\e0a7'; } .oi[data-glyph=pin]:before { content:'\e0a8'; } .oi[data-glyph=play-circle]:before { content:'\e0a9'; } .oi[data-glyph=plus]:before { content:'\e0aa'; } .oi[data-glyph=power-standby]:before { content:'\e0ab'; } .oi[data-glyph=print]:before { content:'\e0ac'; } .oi[data-glyph=project]:before { content:'\e0ad'; } .oi[data-glyph=pulse]:before { content:'\e0ae'; } .oi[data-glyph=puzzle-piece]:before { content:'\e0af'; } .oi[data-glyph=question-mark]:before { content:'\e0b0'; } .oi[data-glyph=rain]:before { content:'\e0b1'; } .oi[data-glyph=random]:before { content:'\e0b2'; } .oi[data-glyph=reload]:before { content:'\e0b3'; } .oi[data-glyph=resize-both]:before { content:'\e0b4'; } .oi[data-glyph=resize-height]:before { content:'\e0b5'; } .oi[data-glyph=resize-width]:before { content:'\e0b6'; } .oi[data-glyph=rss-alt]:before { content:'\e0b7'; } .oi[data-glyph=rss]:before { content:'\e0b8'; } .oi[data-glyph=script]:before { content:'\e0b9'; } .oi[data-glyph=share-boxed]:before { content:'\e0ba'; } .oi[data-glyph=share]:before { content:'\e0bb'; } .oi[data-glyph=shield]:before { content:'\e0bc'; } .oi[data-glyph=signal]:before { content:'\e0bd'; } .oi[data-glyph=signpost]:before { content:'\e0be'; } .oi[data-glyph=sort-ascending]:before { content:'\e0bf'; } .oi[data-glyph=sort-descending]:before { content:'\e0c0'; } .oi[data-glyph=spreadsheet]:before { content:'\e0c1'; } .oi[data-glyph=star]:before { content:'\e0c2'; } .oi[data-glyph=sun]:before { content:'\e0c3'; } .oi[data-glyph=tablet]:before { content:'\e0c4'; } .oi[data-glyph=tag]:before { content:'\e0c5'; } .oi[data-glyph=tags]:before { content:'\e0c6'; } .oi[data-glyph=target]:before { content:'\e0c7'; } .oi[data-glyph=task]:before { content:'\e0c8'; } .oi[data-glyph=terminal]:before { content:'\e0c9'; } .oi[data-glyph=text]:before { content:'\e0ca'; } .oi[data-glyph=thumb-down]:before { content:'\e0cb'; } .oi[data-glyph=thumb-up]:before { content:'\e0cc'; } .oi[data-glyph=timer]:before { content:'\e0cd'; } .oi[data-glyph=transfer]:before { content:'\e0ce'; } .oi[data-glyph=trash]:before { content:'\e0cf'; } .oi[data-glyph=underline]:before { content:'\e0d0'; } .oi[data-glyph=vertical-align-bottom]:before { content:'\e0d1'; } .oi[data-glyph=vertical-align-center]:before { content:'\e0d2'; } .oi[data-glyph=vertical-align-top]:before { content:'\e0d3'; } .oi[data-glyph=video]:before { content:'\e0d4'; } .oi[data-glyph=volume-high]:before { content:'\e0d5'; } .oi[data-glyph=volume-low]:before { content:'\e0d6'; } .oi[data-glyph=volume-off]:before { content:'\e0d7'; } .oi[data-glyph=warning]:before { content:'\e0d8'; } .oi[data-glyph=wifi]:before { content:'\e0d9'; } .oi[data-glyph=wrench]:before { content:'\e0da'; } .oi[data-glyph=x]:before { content:'\e0db'; } .oi[data-glyph=yen]:before { content:'\e0dc'; } .oi[data-glyph=zoom-in]:before { content:'\e0dd'; } .oi[data-glyph=zoom-out]:before { content:'\e0de'; }
clean/Linux-x86_64-4.12.1-2.0.8/extra-dev/dev/smpl/8.12.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>smpl: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.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/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">dev / smpl - 8.12</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> smpl <small> 8.12 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-27 19:27:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-27 19:27:03 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 4 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 3.0.2 Fast, portable, and opinionated build system ocaml 4.12.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.12.1 Official release 4.12.1 ocaml-config 2 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.3 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; version: &quot;8.12&quot; maintainer: &quot;Yannick Forster &lt;forster@cs.uni-saarland.de&gt;&quot; authors: [&quot;Sigurd Schneider &lt;sigurd.schneider@cs.uni-saarland.de&gt;&quot; &quot;Yannick Forster &lt;forster@cs.uni-saarland.de&gt;&quot; &quot;Fabian Kunze &lt;fabian.kunze@cs.uni-saarland.de&gt;&quot;] homepage: &quot;https://github.com/uds-psl/smpl&quot; bug-reports: &quot;https://github.com/uds-psl/smpl/issues&quot; license: &quot;MIT&quot; dev-repo: &quot;git+https://github.com/uds-psl/smpl&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; { &gt;= &quot;8.12&quot; &amp; &lt; &quot;8.13~&quot; } ] synopsis: &quot;Smpl: An Extensible Tactic for Coq&quot; description: &quot;&quot;&quot; Smpl is useful for proof automation in Coq. Smpl provides named lists of tactics to which tactics can be added with Coq commands. A special tactic called &#39;smpl foo&#39; executes the tactics in the lists named foo in order, until one of them succeeds. Smpl works across modules by merging tactics from all imports according to a priority number that can be provided upon addition. Smpl thus allows to modify the behavior of a tactic after it is defined in a convenient and modular way. &quot;&quot;&quot; url { src: &quot;https://github.com/uds-psl/smpl/archive/v8.12.tar.gz&quot; checksum: &quot;sha256=719b8bbc64e0095a506892e2ec3b81f55987788963b238ad196fd927b576fcd6&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-smpl.8.12 coq.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq-smpl -&gt; coq &lt; 8.13~ -&gt; ocaml &lt; 4.12 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-smpl.8.12</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
src/libs/NVAPI_343/docs/NVAPI_Gameworks_R343_html/struct__NV__TIMING.html
helifax/OGL-3DVision-Wrapper
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>NVAPI Reference Documentation</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head> <table width="99%" border="0" cellspacing="1" cellpadding="1"> <tr valign="top"> <td rowspan="2" height="100" width="19%"><img src="NV_Gameworks_blk_H.png"></td> <td width="81%" height="51"> <h6 align="left" style="text-align:right"><font face="Arial, Helvetica, sans-serif" size="4">NVAPI Reference Documentation</font> <br /> <font face="Arial, Helvetica, sans-serif" size="4">NVIDIA</font></h6> </td> </tr> <tr> <td width="81%" height="30"> <h6 align="right"><font face="Arial, Helvetica, sans-serif" size="3">Release 343: September 30 </font><font face="Arial, Helvetica, sans-serif" size="+1"> <br /> </font><font size="2" face="Arial, Helvetica, sans-serif">2014 </font></h6> </td> </tr> </table> <hr> <!-- Generated by Doxygen 1.7.6.1 --> <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><a href="modules.html"><span>Modules</span></a></li> <li class="current"><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="functions.html"><span>Data&#160;Fields</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-attribs">Data Fields</a> </div> <div class="headertitle"> <div class="title">_NV_TIMING Struct Reference<div class="ingroups"><a class="el" href="group__dispcontrol.html">Display Control Interface</a></div></div> </div> </div><!--header--> <div class="contents"> <!-- doxytag: class="_NV_TIMING" --> <p><code>#include &lt;nvapi.h&gt;</code></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-attribs"></a> Data Fields</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a99f91c7e45aa0598dba77eb58fac21fe">HVisible</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a54397d9d66c748d12c9b43b6e9021811">HBorder</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a212be3bc450abdf5336a48b125fd9d25">HFrontPorch</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a1f246d1ef7f22cdf75fe024676c9adc7">HSyncWidth</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#ad773c7ad852fbc81847e0673a3661ace">HTotal</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#af1085c85510da1e11e691cacb3797a16">NvU8</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#ae7f01409d4864c95ee89db04c8eb1248">HSyncPol</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a542354f9e09d93504a110df08d1ecb8e">VVisible</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a8d605a02bd1157c2b2bec3e20504655c">VBorder</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a31c95b75bfda78d48e0863e27f01bdf2">VFrontPorch</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a83cd84713ba668753c916676c7a0073c">VSyncWidth</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#acb2282c7cbc237656487fc1a10b7293a">VTotal</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#af1085c85510da1e11e691cacb3797a16">NvU8</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#ac909bb01b36088c329562f01a2bb2f13">VSyncPol</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a4e0c46456c1fd2ca197657ed6759d26e">interlaced</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a6ff45c2b8d30d0ede3d1063bdf208a32">pclk</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__dispcontrol.html#ga8ccca8f090b400b657b11cedfaea408e">NV_TIMINGEXT</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="struct__NV__TIMING.html#a76655f259f3ce380f1ede292d2a55349">etc</a></td></tr> </table> <hr/><a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"><p>The very basic timing structure based on the VESA standard: </p> <div class="fragment"><pre class="fragment"> |&lt;----------------------------htotal---------------------------&gt;| ---------<span class="stringliteral">&quot;active&quot;</span> video--------&gt;|&lt;-------blanking------&gt;|&lt;----- |&lt;-------hvisible--------&gt;|&lt;-hb-&gt;|&lt;-hfp-&gt;|&lt;-hsw-&gt;|&lt;-hbp-&gt;|&lt;-hb-&gt;| --------- -+-------------------------+ | | | | | A A | | | | | | | : : | | | | | | | : : | | | | | | | :vertical| addressable video | | | | | | : visible| | | | | | | : : | | | | | | | : : | | | | | | | vertical V | | | | | | | total --+-------------------------+ | | | | | : vb border | | | | | : -----------------------------------+ | | | | : vfp front porch | | | | : -------------------------------------------+ | | | : vsw sync width | | | : ---------------------------------------------------+ | | : vbp back porch | | : -----------------------------------------------------------+ | V vb border | ---------------------------------------------------------------------------+ </pre></div> </div><hr/><h2>Field Documentation</h2> <a class="anchor" id="a76655f259f3ce380f1ede292d2a55349"></a><!-- doxytag: member="_NV_TIMING::etc" ref="a76655f259f3ce380f1ede292d2a55349" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="group__dispcontrol.html#ga8ccca8f090b400b657b11cedfaea408e">NV_TIMINGEXT</a> <a class="el" href="struct__NV__TIMING.html#a76655f259f3ce380f1ede292d2a55349">_NV_TIMING::etc</a></td> </tr> </table> </div> <div class="memdoc"> </div> </div> <a class="anchor" id="a54397d9d66c748d12c9b43b6e9021811"></a><!-- doxytag: member="_NV_TIMING::HBorder" ref="a54397d9d66c748d12c9b43b6e9021811" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a54397d9d66c748d12c9b43b6e9021811">_NV_TIMING::HBorder</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal border </p> </div> </div> <a class="anchor" id="a212be3bc450abdf5336a48b125fd9d25"></a><!-- doxytag: member="_NV_TIMING::HFrontPorch" ref="a212be3bc450abdf5336a48b125fd9d25" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a212be3bc450abdf5336a48b125fd9d25">_NV_TIMING::HFrontPorch</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal front porch </p> </div> </div> <a class="anchor" id="ae7f01409d4864c95ee89db04c8eb1248"></a><!-- doxytag: member="_NV_TIMING::HSyncPol" ref="ae7f01409d4864c95ee89db04c8eb1248" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#af1085c85510da1e11e691cacb3797a16">NvU8</a> <a class="el" href="struct__NV__TIMING.html#ae7f01409d4864c95ee89db04c8eb1248">_NV_TIMING::HSyncPol</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal sync polarity: 1-negative, 0-positive </p> </div> </div> <a class="anchor" id="a1f246d1ef7f22cdf75fe024676c9adc7"></a><!-- doxytag: member="_NV_TIMING::HSyncWidth" ref="a1f246d1ef7f22cdf75fe024676c9adc7" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a1f246d1ef7f22cdf75fe024676c9adc7">_NV_TIMING::HSyncWidth</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal sync width </p> </div> </div> <a class="anchor" id="ad773c7ad852fbc81847e0673a3661ace"></a><!-- doxytag: member="_NV_TIMING::HTotal" ref="ad773c7ad852fbc81847e0673a3661ace" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#ad773c7ad852fbc81847e0673a3661ace">_NV_TIMING::HTotal</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal total </p> </div> </div> <a class="anchor" id="a99f91c7e45aa0598dba77eb58fac21fe"></a><!-- doxytag: member="_NV_TIMING::HVisible" ref="a99f91c7e45aa0598dba77eb58fac21fe" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a99f91c7e45aa0598dba77eb58fac21fe">_NV_TIMING::HVisible</a></td> </tr> </table> </div> <div class="memdoc"> <p>horizontal visible </p> </div> </div> <a class="anchor" id="a4e0c46456c1fd2ca197657ed6759d26e"></a><!-- doxytag: member="_NV_TIMING::interlaced" ref="a4e0c46456c1fd2ca197657ed6759d26e" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a4e0c46456c1fd2ca197657ed6759d26e">_NV_TIMING::interlaced</a></td> </tr> </table> </div> <div class="memdoc"> <p>1-interlaced, 0-progressive </p> </div> </div> <a class="anchor" id="a6ff45c2b8d30d0ede3d1063bdf208a32"></a><!-- doxytag: member="_NV_TIMING::pclk" ref="a6ff45c2b8d30d0ede3d1063bdf208a32" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="struct__NV__TIMING.html#a6ff45c2b8d30d0ede3d1063bdf208a32">_NV_TIMING::pclk</a></td> </tr> </table> </div> <div class="memdoc"> <p>pixel clock in 10 kHz </p> </div> </div> <a class="anchor" id="a8d605a02bd1157c2b2bec3e20504655c"></a><!-- doxytag: member="_NV_TIMING::VBorder" ref="a8d605a02bd1157c2b2bec3e20504655c" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a8d605a02bd1157c2b2bec3e20504655c">_NV_TIMING::VBorder</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical border </p> </div> </div> <a class="anchor" id="a31c95b75bfda78d48e0863e27f01bdf2"></a><!-- doxytag: member="_NV_TIMING::VFrontPorch" ref="a31c95b75bfda78d48e0863e27f01bdf2" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a31c95b75bfda78d48e0863e27f01bdf2">_NV_TIMING::VFrontPorch</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical front porch </p> </div> </div> <a class="anchor" id="ac909bb01b36088c329562f01a2bb2f13"></a><!-- doxytag: member="_NV_TIMING::VSyncPol" ref="ac909bb01b36088c329562f01a2bb2f13" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#af1085c85510da1e11e691cacb3797a16">NvU8</a> <a class="el" href="struct__NV__TIMING.html#ac909bb01b36088c329562f01a2bb2f13">_NV_TIMING::VSyncPol</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical sync polarity: 1-negative, 0-positive </p> </div> </div> <a class="anchor" id="a83cd84713ba668753c916676c7a0073c"></a><!-- doxytag: member="_NV_TIMING::VSyncWidth" ref="a83cd84713ba668753c916676c7a0073c" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a83cd84713ba668753c916676c7a0073c">_NV_TIMING::VSyncWidth</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical sync width </p> </div> </div> <a class="anchor" id="acb2282c7cbc237656487fc1a10b7293a"></a><!-- doxytag: member="_NV_TIMING::VTotal" ref="acb2282c7cbc237656487fc1a10b7293a" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#acb2282c7cbc237656487fc1a10b7293a">_NV_TIMING::VTotal</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical total </p> </div> </div> <a class="anchor" id="a542354f9e09d93504a110df08d1ecb8e"></a><!-- doxytag: member="_NV_TIMING::VVisible" ref="a542354f9e09d93504a110df08d1ecb8e" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#acf51f7fb01c4a38c7379c022d93cfa7e">NvU16</a> <a class="el" href="struct__NV__TIMING.html#a542354f9e09d93504a110df08d1ecb8e">_NV_TIMING::VVisible</a></td> </tr> </table> </div> <div class="memdoc"> <p>vertical visible </p> </div> </div> <hr/>The documentation for this struct was generated from the following file:<ul> <li><a class="el" href="nvapi_8h.html">nvapi.h</a></li> </ul> </div><!-- contents --> <hr size="2" color="lime"> <small> <br> <div align="center"><a href="legal.html"> Copyright (c) 2007-2014 NVIDIA Corporation. All rights reserved.</a></div> <br> <a href="http://www.nvidia.com" target=_blank><div align="center"><img src="nvidia-logo.jpg" alt="NVIDIA" border="0" align="middle"></a></div> </body> </html>
tests/notification-drawer-vertical-nav.html
rimolive/mapa-crime-sp
<!DOCTYPE html> <!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]--> <!--[if gt IE 9]><!--> <html lang="en-us" class="layout-pf layout-pf-fixed"> <!--<![endif]--> <head> <title>Notification Drawer for Vertical Navigation - PatternFly</title> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="../../dist/img/favicon.ico"> <!-- iPad retina icon --> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../../dist/img/apple-touch-icon-precomposed-152.png"> <!-- iPad retina icon (iOS < 7) --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../../dist/img/apple-touch-icon-precomposed-144.png"> <!-- iPad non-retina icon --> <link rel="apple-touch-icon-precomposed" sizes="76x76" href="../../dist/img/apple-touch-icon-precomposed-76.png"> <!-- iPad non-retina icon (iOS < 7) --> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../../dist/img/apple-touch-icon-precomposed-72.png"> <!-- iPhone 6 Plus icon --> <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../../dist/img/apple-touch-icon-precomposed-180.png"> <!-- iPhone retina icon (iOS < 7) --> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../../dist/img/apple-touch-icon-precomposed-114.png"> <!-- iPhone non-retina icon (iOS < 7) --> <link rel="apple-touch-icon-precomposed" sizes="57x57" href="../../dist/img/apple-touch-icon-precomposed-57.png"> <link rel="stylesheet" href="../../dist/css/patternfly.min.css" > <link rel="stylesheet" href="../../dist/css/patternfly-additions.min.css" > <link href="tests.css" rel="stylesheet" media="screen, print"> <script src="//code.jquery.com/jquery-3.2.1.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script> <script src="./../../dist/js/patternfly.min.js"></script> </head> <div class="toast-notifications-list-pf"> <div class="toast-pf alert alert-warning alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true"> <span class="pficon pficon-close"></span> </button> <span class="pficon pficon-warning-triangle-o"></span> These examples are included for development testing purposes. For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>. </div> </div> <body class="cards-pf"> <nav class="navbar navbar-pf-vertical"> <div class="navbar-header"> <button type="button" class="navbar-toggle"> <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="/" class="navbar-brand"> <img class="navbar-brand-icon" src="./../../dist/img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="./../../dist/img/brand-alt.svg" alt="PatternFly Enterprise Application" /> </a> </div> <nav class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="#" target="_blank" class="nav-item-iconic nav-item-iconic-new-window"><span title="Launch" class="fa fa-external-link"></span></a></li> </ul> <ul class="nav navbar-nav navbar-right navbar-iconic"> <li class="drawer-pf-trigger dropdown"> <a class="nav-item-iconic drawer-pf-trigger-icon"> <span class="fa fa-bell" title="Notifications"></span><!-- In case of all notifications read, the icon should be fa-bell-o --> </a> </li> <li class="dropdown"> <a class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span title="Help" class="fa pficon-help"></span> <span class="caret"></span> </a> <ul class="dropdown-menu" aria-labelledby="dropdownMenu1"> <li><a href="#">Help</a></li> <li><a href="#">About</a></li> </ul> </li> <li class="dropdown"> <a class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span title="Username" class="fa pficon-user"></span> <span class="caret"></span> </a> <ul class="dropdown-menu" aria-labelledby="dropdownMenu2"> <li><a href="#">Preferences</a></li> <li><a href="#">Logout</a></li> </ul> </li> </ul> <div class="drawer-pf hide drawer-pf-notifications-non-clickable"> <div class="drawer-pf-title"> <a class="drawer-pf-toggle-expand"></a> <h3 class="text-center">Notifications Drawer</h3> </div> <div class="panel-group" id="notification-drawer-accordion"> <div class="panel panel-default"> <div class="panel-heading" data-component="collapse-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne"> Notification Tab 1 </a> </h4> <span class="panel-counter">5 New Events</span> </div> <div id="fixedCollapseOne" class="panel-collapse collapse in"> <div class="panel-body"> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> </div> <div class="drawer-pf-action"> <button class="btn btn-link btn-block">Mark All Read</button> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading" data-component="collapse-heading"> <h4 class="panel-title"> <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo"> Notification Tab 2 </a> </h4> <span class="panel-counter">5 New Events</span> </div> <div id="fixedCollapseTwo" class="panel-collapse collapse"> <div class="panel-body"> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-loading text-center"> <span class="spinner spinner-xs spinner-inline"></span> Loading More </div> </div> <div class="drawer-pf-action"> <button class="btn btn-link btn-block">Mark All Read</button> </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading" data-component="collapse-heading"> <h4 class="panel-title"> <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree"> Notification Tab 3 </a> </h4> <span class="panel-counter">5 New Events</span> </div> <div id="fixedCollapseThree" class="panel-collapse collapse"> <div class="panel-body"> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-info pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification unread"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-ok pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <span class="pficon pficon-warning-triangle-o pull-left"></span> <div class="drawer-pf-notification-content"> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> <div class="drawer-pf-notification"> <div class="dropdown pull-right dropdown-kebab-pf"> <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"> <span class="fa fa-ellipsis-v"></span> </button> <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div> <div class="drawer-pf-notification-content"> <span class="pficon pficon-error-circle-o pull-left"></span> <span class="drawer-pf-notification-message">Another Event Notification</span> <div class="drawer-pf-notification-info"> <span class="date">3/31/16</span> <span class="time">12:12:44 PM</span> </div> </div> </div> </div> <div class="drawer-pf-action"> <button class="btn btn-link btn-block">Mark All Read</button> </div> </div> </div> </div> </div> <script> $(document).ready(function() { // Show/Hide Notifications Drawer $('.drawer-pf-trigger').click(function() { var $drawer = $('.drawer-pf'); $(this).toggleClass('open'); if ($drawer.hasClass('hide')) { $drawer.removeClass('hide'); setTimeout(function () { if (window.dispatchEvent) { window.dispatchEvent(new Event('resize')); } // Special case for IE if ($(document).fireEvent) { $(document).fireEvent('onresize'); } }, 100); } else { $drawer.addClass('hide'); } }); $('.drawer-pf-toggle-expand').click(function() { var $drawer = $('.drawer-pf'); var $drawerNotifications = $drawer.find('.drawer-pf-notification'); if ($drawer.hasClass('drawer-pf-expanded')) { $drawer.removeClass('drawer-pf-expanded'); $drawerNotifications.removeClass('expanded-notification'); } else { $drawer.addClass('drawer-pf-expanded'); $drawerNotifications.addClass('expanded-notification'); } }); // Mark All Read $('.panel-collapse').each(function (index, panel) { var $panel = $(panel); $panel.on('click', '.drawer-pf-action .btn', function() { $panel.find('.unread').removeClass('unread'); $(panel.parentElement).find('.panel-counter').text('0 New Events'); }); }); $('#notification-drawer-accordion').initCollapseHeights('.panel-body'); }); </script> </nav> </nav> <!--/.navbar--> <div class="nav-pf-vertical nav-pf-vertical-with-sub-menus "> <ul class="list-group"> <li class="list-group-item"> <a> <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span> <span class="list-group-item-value">Dashboard</span> </a> </li> <li class="list-group-item"> <a> <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span> <span class="list-group-item-value">Dolor</span> </a> </li> <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary"> <a> <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span> <span class="list-group-item-value">Ipsum</span> </a> <div id="-secondary" class="nav-pf-secondary-nav"> <div class="nav-item-pf-header"> <a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a> <span>Ipsum</span> </div> <ul class="list-group"> <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary"> <a> <span class="list-group-item-value">Intellegam</span> </a> </li> <li class="list-group-item " data-target="#ipsum-copiosae-tertiary"> <a> <span class="list-group-item-value">Copiosae</span> </a> </li> <li class="list-group-item " data-target="#ipsum-patrioque-tertiary"> <a> <span class="list-group-item-value">Patrioque</span> </a> </li> </ul> </div> </li> <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary"> <a> <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span> <span class="list-group-item-value">Amet</span> </a> <div id="amet-secondary" class="nav-pf-secondary-nav"> <div class="nav-item-pf-header"> <a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a> <span>Amet</span> </div> <ul class="list-group"> <li class="list-group-item " data-target="#amet-detracto-tertiary"> <a> <span class="list-group-item-value">Detracto Suscipiantur</span> </a> </li> <li class="list-group-item " data-target="#amet-mediocrem-tertiary"> <a> <span class="list-group-item-value">Mediocrem</span> </a> </li> <li class="list-group-item " data-target="#amet-corrumpit-tertiary"> <a> <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span> </a> </li> </ul> </div> </li> <li class="list-group-item"> <a> <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span> <span class="list-group-item-value">Adipscing</span> </a> </li> <li class="list-group-item"> <a> <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span> <span class="list-group-item-value">Lorem</span> </a> </li> <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary"> <a> <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span> <span class="list-group-item-value">User</span> </a> <div id="user-secondary" class="nav-pf-secondary-nav"> <div class="nav-item-pf-header"> <a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a> <span>User</span> </div> <ul class="list-group"> <li class="list-group-item"> <a> <span class="list-group-item-value">Preferences</span> </a> </li> <li class="list-group-item"> <a> <span class="list-group-item-value">Logout</span> </a> </li> </ul> </div> </li> <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary"> <a> <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Amet"></span> <span class="list-group-item-value">Help</span> </a> <div id="help-secondary" class="nav-pf-secondary-nav"> <div class="nav-item-pf-header"> <a class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a> <span>Help</span> </div> <ul class="list-group"> <li class="list-group-item"> <a> <span class="list-group-item-value">Help</span> </a> </li> <li class="list-group-item"> <a> <span class="list-group-item-value">About</span> </a> </li> </ul> </div> </li> </ul> </div> <div class="container-fluid container-cards-pf container-pf-nav-pf-vertical "> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status"> <h2 class="card-pf-title"> <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status"> <h2 class="card-pf-title"> <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span> <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status"> <h2 class="card-pf-title"> <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status"> <h2 class="card-pf-title"> <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a> </p> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini"> <h2 class="card-pf-title"> <span class="fa fa-rebel"></span> <span class="card-pf-aggregate-status-count">0</span> Ipsum </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini"> <h2 class="card-pf-title"> <a href="#"> <span class="fa fa-paper-plane"></span> <span class="card-pf-aggregate-status-count">20</span> Amet </a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini"> <h2 class="card-pf-title"> <a href="#"> <span class="pficon pficon-cluster"></span> <span class="card-pf-aggregate-status-count">9</span> Adipiscing </a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span> </p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-3"> <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini"> <h2 class="card-pf-title"> <a href="#"> <span class="pficon pficon-image"></span> <span class="card-pf-aggregate-status-count">12</span> Lorem </a> </h2> <div class="card-pf-body"> <p class="card-pf-aggregate-status-notifications"> <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a> </p> </div> </div> </div> </div> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-12 col-sm-6"> <div class="card-pf"> <div class="card-pf-heading"> <h2 class="card-pf-title"> Top Utilized Clusters </h2> </div> <div class="card-pf-body"> <div class="progress-description"> RHOS6-Controller </div> <div class="progress progress-label-top-right"> <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;" data-toggle="tooltip" title="95% Used"> <span><strong>190.0 of 200.0 GB</strong> Used</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available"> <span class="sr-only">5% Available</span> </div> </div> <div class="progress-description"> CFMEQE-Cluster </div> <div class="progress progress-label-top-right"> <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Used"> <span><strong>100.0 of 200.0 GB</strong> Used</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available"> <span class="sr-only">50% Available</span> </div> </div> <div class="progress-description"> RHOS-Undercloud </div> <div class="progress progress-label-top-right"> <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;" data-toggle="tooltip" title="70% Used"> <span><strong>140.0 of 200.0 GB</strong> Used</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available"> <span class="sr-only">30% Available</span> </div> </div> <div class="progress-description"> RHEL6-Controller </div> <div class="progress progress-label-top-right"> <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;" data-toggle="tooltip" title="76.5% Used"> <span><strong>153.0 of 200.0 GB</strong> Used</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available"> <span class="sr-only">23.5% Available</span> </div> </div> </div> </div> </div> <div class="col-xs-12 col-sm-6"> <div class="card-pf"> <div class="card-pf-heading"> <h2 class="card-pf-title"> Quotas </h2> </div> <div class="card-pf-body"> <div class="progress-container progress-description-left progress-label-right"> <div class="progress-description"> CPU </div> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used"> <span><strong>115 of 460</strong> MHz</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available"> <span class="sr-only">75% Available</span> </div> </div> </div> <div class="progress-container progress-description-left progress-label-right"> <div class="progress-description"> Memory </div> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used"> <span><strong>8 of 16</strong> GB</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available"> <span class="sr-only">50% Available</span> </div> </div> </div> <div class="progress-container progress-description-left progress-label-right"> <div class="progress-description"> Pods </div> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used"> <span><strong>5 of 8</strong> Total</span> </div> <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available"> <span class="sr-only">37.5% Available</span> </div> </div> </div> <div class="progress-container progress-description-left progress-label-right"> <div class="progress-description"> Services </div> <div class="progress"> <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used"> <span><strong>2 of 2</strong> Total</span> </div> </div> </div> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <div class="col-md-12"> <div class="card-pf card-pf-utilization"> <div class="card-pf-heading"> <p class="card-pf-heading-details">Last 30 days</p> <h2 class="card-pf-title"> Utilization </h2> </div> <div class="card-pf-body"> <div class="row"> <div class="col-xs-12 col-sm-4 col-md-4"> <h3 class="card-pf-subtitle">CPU</h3> <p class="card-pf-utilization-details"> <span class="card-pf-utilization-card-details-count">50</span> <span class="card-pf-utilization-card-details-description"> <span class="card-pf-utilization-card-details-line-1">Available</span> <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span> </span> </p> <div id="chart-pf-donut-1"></div> <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div> <script> var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A'); donutConfig.bindto = '#chart-pf-donut-1'; donutConfig.color = { pattern: ["#cc0000","#D1D1D1"] }; donutConfig.data = { type: "donut", columns: [ ["Used", 95], ["Available", 5] ], groups: [ ["used", "available"] ], order: null }; donutConfig.tooltip = { contents: function (d) { return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' + Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name + '</span>'; } }; var chart1 = c3.generate(donutConfig); var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title'); donutChartTitle.text(""); donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0); donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0); var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig(); sparklineConfig.bindto = '#chart-pf-sparkline-1'; sparklineConfig.data = { columns: [ ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95], ], type: 'area' }; var chart2 = c3.generate(sparklineConfig); </script> </div> <div class="col-xs-12 col-sm-4 col-md-4"> <h3 class="card-pf-subtitle">Memory</h3> <p class="card-pf-utilization-details"> <span class="card-pf-utilization-card-details-count">256</span> <span class="card-pf-utilization-card-details-description"> <span class="card-pf-utilization-card-details-line-1">Available</span> <span class="card-pf-utilization-card-details-line-2">of 432 GB</span> </span> </p> <div id="chart-pf-donut-2"></div> <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div> <script> var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A'); donutConfig.bindto = '#chart-pf-donut-2'; donutConfig.color = { pattern: ["#3f9c35","#D1D1D1"] }; donutConfig.data = { type: "donut", columns: [ ["Used", 41], ["Available", 59] ], groups: [ ["used", "available"] ], order: null }; donutConfig.tooltip = { contents: function (d) { return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' + Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name + '</span>'; } }; var chart3 = c3.generate(donutConfig); var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title'); donutChartTitle.text(""); donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0); donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0); var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig(); sparklineConfig.bindto = '#chart-pf-sparkline-2'; sparklineConfig.data = { columns: [ ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41], ], type: 'area' }; var chart4 = c3.generate(sparklineConfig); </script> </div> <div class="col-xs-12 col-sm-4 col-md-4"> <h3 class="card-pf-subtitle">Network</h3> <p class="card-pf-utilization-details"> <span class="card-pf-utilization-card-details-count">200</span> <span class="card-pf-utilization-card-details-description"> <span class="card-pf-utilization-card-details-line-1">Available</span> <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span> </span> </p> <div id="chart-pf-donut-3"></div> <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div> <script> var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A'); donutConfig.bindto = '#chart-pf-donut-3'; donutConfig.color = { pattern: ["#EC7A08","#D1D1D1"] }; donutConfig.data = { type: "donut", columns: [ ["Used", 85], ["Available", 15] ], groups: [ ["used", "available"] ], order: null }; donutConfig.tooltip = { contents: function (d) { return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' + Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name + '</span>'; } }; var chart5 = c3.generate(donutConfig); var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title'); donutChartTitle.text(""); donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0); donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0); var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig(); sparklineConfig.bindto = '#chart-pf-sparkline-3'; sparklineConfig.data = { columns: [ ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85], ], type: 'area' }; var chart6 = c3.generate(sparklineConfig); </script> </div> </div> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <div class="col-xs-12 col-sm-4 col-md-4"> <div class="card-pf card-pf-utilization"> <h2 class="card-pf-title"> Network </h2> <div class="card-pf-body"> <p class="card-pf-utilization-details"> <span class="card-pf-utilization-card-details-count">200</span> <span class="card-pf-utilization-card-details-description"> <span class="card-pf-utilization-card-details-line-1">Available</span> <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span> </span> </p> <div id="chart-pf-donut-4"></div> <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div> <script> var c3ChartDefaults = $().c3ChartDefaults(); var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A'); donutConfig.bindto = '#chart-pf-donut-4'; donutConfig.color = { pattern: ["#EC7A08","#D1D1D1"] }; donutConfig.data = { type: "donut", columns: [ ["Used", 85], ["Available", 15] ], groups: [ ["used", "available"] ], order: null }; donutConfig.tooltip = { contents: function (d) { return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' + Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name + '</span>'; } }; var chart1 = c3.generate(donutConfig); var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title'); donutChartTitle.text(""); donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0); donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0); var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig(); sparklineConfig.bindto = '#chart-pf-sparkline-4'; sparklineConfig.data = { columns: [ ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85], ], type: 'area' }; var chart2 = c3.generate(sparklineConfig); </script> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-12 col-sm-6 col-md-5"> <div class="card-pf"> <div class="card-pf-heading"> <div class="dropdown card-pf-time-frame-filter"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Last 30 Days <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-right" role="menu"> <li class="selected"><a href="#">Last 30 Days</a></li> <li><a href="#">Last 60 Days</a></li> <li><a href="#">Last 90 Days</a></li> </ul> </div> <h2 class="card-pf-title"> Card Title </h2> </div> <div class="card-pf-body"> <p>[card contents]</p> </div> </div> </div> <div class="col-xs-12 col-sm-6 col-md-7"> <div class="card-pf"> <h2 class="card-pf-title"> Card Title </h2> <div class="card-pf-body"> <p>[card contents]</p> </div> <div class="card-pf-footer"> <div class="dropdown card-pf-time-frame-filter"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Last 30 Days <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-right" role="menu"> <li class="selected"><a href="#">Last 30 Days</a></li> <li><a href="#">Last 60 Days</a></li> <li><a href="#">Last 90 Days</a></li> </ul> </div> <p> <a href="#" class="card-pf-link-with-icon"> <span class="pficon pficon-add-circle-o"></span>Add New Cluster </a> </p> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-12 col-sm-5 col-md-5"> <div class="card-pf"> <h2 class="card-pf-title"> Card Title </h2> <div class="card-pf-body"> <p>[card contents]</p> </div> <div class="card-pf-footer"> <div class="dropdown card-pf-time-frame-filter"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Last 30 Days <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-right" role="menu"> <li class="selected"><a href="#">Last 30 Days</a></li> <li><a href="#">Last 60 Days</a></li> <li><a href="#">Last 90 Days</a></li> </ul> </div> <p> <a href="#" class="card-pf-link-with-icon"> <span class="pficon pficon-flag"></span>View CPU Events </a> </p> </div> </div> </div> <div class="col-xs-12 col-sm-7 col-md-7"> <div class="card-pf"> <h2 class="card-pf-title"> Card Title </h2> <div class="card-pf-body"> <p>[card contents]</p> </div> </div> </div> </div> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-6 col-sm-8 col-md-8"> <div class="card-pf"> <div class="card-pf-body"> <p>[card contents]</p> </div> <div class="card-pf-footer"> <p><a href="#">Footer link</a></p> </div> </div> </div> <div class="col-xs-6 col-sm-4 col-md-4"> <div class="card-pf"> <div class="card-pf-body"> <p>[card contents]</p> </div> <div class="card-pf-footer"> <p><a href="#">Footer link</a></p> </div> </div> </div> </div><!-- /row --> <div class="row row-cards-pf"> <!-- Important: if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row --> <div class="col-xs-6 col-sm-6 col-md-6"> <div class="card-pf"> <div class="card-pf-body"> <p>[card contents]</p> </div> </div> </div> <div class="col-xs-6 col-sm-6 col-md-6"> <div class="card-pf"> <div class="card-pf-body"> <p>[card contents]</p> </div> </div> </div> </div><!-- /row --> </div> <script> $(document).ready(function() { // matchHeight the contents of each .card-pf and then the .card-pf itself $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight(); // Initialize the vertical navigation $().setupVerticalNavigation(true); }); </script> </body> </html>
examples/react-relay-graphql-sails-example/client/src/index.html
agenthunt/waterline-to-graphql
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"> <script type="text/javascript" src="js/bundle.js"></script> </head> <body> <div id="root"> </div> </body> </html>
doc/api/files/__/_rvm/gems/ruby-2_2_0/gems/activerecord-4_1_8/lib/active_record/schema_rb.html
kristoferrobin/p2p
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>schema.rb</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="../../../../../../../../../css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../css/main.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../css/github.css" type="text/css" media="screen" /> <script src="../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class="banner"> <span>Ruby on Rails 4.1.8</span><br /> <h1> schema.rb </h1> <ul class="files"> <li> ../.rvm/gems/ruby-2.2.0/gems/activerecord-4.1.8/lib/active_record/schema.rb </li> <li>Last modified: 2015-02-25 10:25:45 +0200</li> </ul> </div> <div id="bodyContent"> <div id="content"> <!-- Namespace --> <div class="sectiontitle">Namespace</div> <ul> <li> <span class="type">MODULE</span> <a href="../../../../../../../../../classes/ActiveRecord.html">ActiveRecord</a> </li> <li> <span class="type">CLASS</span> <a href="../../../../../../../../../classes/ActiveRecord/Schema.html">ActiveRecord::Schema</a> </li> </ul> <!-- Methods --> </div> </div> </body> </html>
tags/mob programming.html
asciamanna/asciamanna.github.io
--- layout: tag section-type: tag title: mob programming --- ## Tag
styleguide/item-frontpack-common-screen-reader-text.html
bmarshall511/frontpack
<!DOCTYPE html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <title>Style Guide</title> <meta name="description" content=""> <meta name="generator" content="kss-node"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="kss-assets/kss.css"> <link rel="stylesheet" href="../../frontpack/dist/css/global.css"> </head> <body id="kss-node" class="kss-fullscreen-mode"> <div class="kss-sidebar kss-style"> <header class="kss-header"> <h1 class="kss-doc-title">Style Guide</h1> </header> <nav class="kss-nav"> <ul class="kss-nav__menu"> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="./"> <span class="kss-nav__ref">0</span ><span class="kss-nav__name">Overview</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-compass.html"> <span class="kss-nav__ref">1</span><span class="kss-nav__name">Compass</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-components.html"> <span class="kss-nav__ref">2</span><span class="kss-nav__name">Components</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-core.html"> <span class="kss-nav__ref">3</span><span class="kss-nav__name">Core Includes</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-foundation.html"> <span class="kss-nav__ref">4</span><span class="kss-nav__name">Foundation</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-frontpack.html"> <span class="kss-nav__ref">5</span><span class="kss-nav__name">Frontpack</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-global.html"> <span class="kss-nav__ref">6</span><span class="kss-nav__name">Global Style Sheet</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-motion-ui.html"> <span class="kss-nav__ref">7</span><span class="kss-nav__name">Motion UI</span> </a> </li> <li class="kss-nav__menu-item"> <a class="kss-nav__menu-link" href="section-variables.html"> <span class="kss-nav__ref">8</span><span class="kss-nav__name">Variables</span> </a> </li> </ul> </nav> </div> <article role="main" class="kss-main"> <div id="kssref-frontpack-common-screen-reader-text" class="kss-section kss-section--depth-3 is-fullscreen"> <div class="kss-style"> <h3 class="kss-title kss-title--level-3"> <a class="kss-title__permalink" href="#kssref-frontpack-common-screen-reader-text"> <span class="kss-title__ref"> 5.1.2 <span class="kss-title__permalink-hash"> #frontpack.common.screen-reader-text </span> </span> Screen Reader Text </a> </h3> <div class="kss-parameters__title">Parameters:</div> <ul class="kss-parameters"> <li class="kss-parameters__item"> <div class="kss-parameters__name"><code>.screen-reader-text</code></div> <div class="kss-parameters__description"> A canonical way that handles any HTML output that is targeted at screen readers. </div> </li> </ul> </div> <div class="kss-source kss-style"> Source: <code>frontpack/_common.scss</code>, line 35 </div> </div> </article> <!-- SCRIPTS --> <script src="kss-assets/kss.js"></script> <script src="kss-assets/scrollspy.js"></script> <script src="kss-assets/prettify.js"></script> <script src="kss-assets/kss-fullscreen.js"></script> <script src="kss-assets/kss-guides.js"></script> <script src="kss-assets/kss-markup.js"></script> <script> prettyPrint(); var spy = new ScrollSpy('#kss-node', { nav: '.kss-nav__menu-child > li > a', className: 'is-in-viewport' }); var kssFullScreen = new KssFullScreen({ idPrefix: 'kss-fullscreen-', bodyClass: 'kss-fullscreen-mode', elementClass: 'is-fullscreen' }); var kssGuides = new KssGuides({ bodyClass: 'kss-guides-mode' }); var kssMarkup = new KssMarkup({ bodyClass: 'kss-markup-mode', detailsClass: 'kss-markup' }); </script> <script src="../../frontpack/dist/js/common.js"></script> <script src="../../frontpack/dist/js/global.js"></script> <!-- Automatically built using <a href="https://github.com/kss-node/kss-node">kss-node</a>. --> </body> </html>
build/class-manager_create-a-class.html
knitevision1/quill-bootstrap
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Test Uladzislau task</title> <!-- Bootstrap --> <link href="../build/css/footer.css" rel="stylesheet"> <link href="../build/css/jquery-ui.min.css" rel="stylesheet"> <!-- Slick --> <link href="../build/css/slick.css" rel="stylesheet"> <!-- Slick Theme --> <link href="../build/css/slick-theme.css" rel="stylesheet"> <link href="../build/css/bootstrap.css" rel="stylesheet"> <link href="../build/css/custom.css" rel="stylesheet"> <link href="../build/fonts/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" href="../build/css/custom-home.css"> <!-- 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/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <nav class="navbar home-page-navbar npr other-pages-navbar" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#home-collapsed-navbar"> <span class="sr-only">Menu</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#"> <img src="images/home-header-logo.png" alt=""> </a> </div> <div id="home-collapsed-navbar" class="collapse navbar-collapse"> <ul class="home-navbar-list"> <li class="active"><a href="http://quill.org/mission">Discover</a></li> <li><a href="http://community.quill.org">Community</a></li> <li><a href="">Login</a></li> <li class="sign-up-wrapper"><a href="" class="sign-up-btn">Sign Up</a></li> </ul> </div> </div> </nav> <div id="page-content-wrapper"> <div class="row"> <div class="col-xs-12 col-xl-12"> <!-- Nav tabs --> <div class="container"> <ul class="nav nav-tabs tabs-navigation-list" role="tablist"> <li> <a href="#scorebook" id="first-tab" role="tab" data-toggle="tab">Scorebook</a> </li> <li> <a href="#portfolio" role="tab" data-toggle="tab">Portfolio</a> </li> <li> <a href="#activity-planner" role="tab" data-toggle="tab">Activity Planner</a> </li> <li class="active"> <a href="#class-manager" role="tab" data-toggle="tab">Class Manager</a> </li> </ul> </div> <!-- //.container --> <!-- Tab panes --> <div class="tab-content"> <div class="tab-pane active" id="class-manager"> <div class="tab-subnavigation-wrapper"> <div class="container"> <ul> <li><a href="" class="active">Manage Classes</a></li> <li><a href="">Invite Students</a></li> <li><a href="">Create a Class</a></li> </ul> </div> <!-- //.container --> </div> <!-- //.tab-subnavigation-wrapper --> <div class="container"> <section class="no-border create-a-class"> <h1 class="section-header">Create Your Class</h1> <div><input type="text" placeholder="Class Name"></div> <form action=""> <select name="grade" id="grade-select"> <option value="">Grade</option> <option value="">Grade</option> <option value="">Grade</option> </select> </form> <div class="class-code-wrapper"> <div>Class Code</div> <input type="text" class="inactive" disabled value="merry-honey"> <span><a href="#">Generate a New Code</a></span> </div> <div> <button class="button-green">Create Class</button> </div> </section> </div> </div> <!-- //.tab-content --> </div> <!-- //.col-xs-12--> </div> <!-- //.row --> </div> <!-- //#page-content-wrapper --> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../build/js/tabslet.js"></script> <script src="../build/js/selecter.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../build/js/bootstrap.min.js"></script> <script src="../build/js/jquery-ui.min.js"></script> <script src="../build/js/slick.js"></script> <script src="../build/js/custom.js"></script> </body> </html>
woof/hungry-crab.html
stevekrouse/coding.space
<link href="./projects.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <h1><a href="./index.html"><span class="glyphicon glyphicon-arrow-left"></span></a> Hungry Crab</h1> <div class="container"> <div class="block"> <p>Use the arrow keys to move a crab so she can eat some fish. Try to feed the crab as much as you can in 30 seconds! </p> <br><a target="_blank" href="./code/hungry-crab-code.html">Play this demo in full screen.</a> </div> <div class="block"> <p>1) Create a crab and have it move around when you press the arrow keys. Make it so that if your crab goes past one side of the screen, it appears on the opposite side of the screen. Feel free to add in a custom backdrop if you want to!</p> <br><a target="_blank" href="./snippets/hungry-crab-step1.html">Play this demo in full screen.</a> </div> <div class="block"> <p>2) Add a fish in your game, and have it start at a random point in the game screen. Make the fish move to another random point on the screen any time the crab eats it.</p> <br><a target="_blank" href="./snippets/hungry-crab-step2.html">Play this demo in full screen.</a> </div> <div class="block"> <p>3) Add in a score variable that increases every time the crab collects a fish. Display this number on the game screen. </p> <br><a target="_blank" href="./snippets/hungry-crab-step3.html">Play this demo in full screen.</a> </div> <div class="block"> <p>4) Add a timer variable that starts at 30 and decreases every second. Display this variable on the game screen. Have the game end if the timer reaches 0.</p> <br><a target="_blank" href="./snippets/hungry-crab-step4.html">Play this demo in full screen.</a> </div> <div class="block"> <p>5) Make it so that if you press the spacebar after the game ends, the timer, score, and game reset. </p> <br><a target="_blank" href="./code/hungry-crab-code.html">Play this demo in full screen.</a> </div> </div>
test/auction_object_state.html
LettError/filibuster
<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Filibuster</title> <link rel="stylesheet" href="styles.css"> <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet"> <body><h1>Results for "auction_object_state"</h1> <p><a href="index.html">Index</a></p> <p class="blurb">near mint</p> <p class="blurb">in original box</p> <p class="blurb">reasonable</p> <p class="blurb">excellent condition</p> <p class="blurb">slightly scratched</p> <p class="blurb">w/original box</p> <p class="blurb">in original box</p> <p class="blurb">w/original box</p> <p class="blurb">reasonable</p> <p class="blurb">discolored at back</p> <p class="blurb">in original box</p> <p class="blurb">mint</p> <p class="blurb">w/original box</p> <p class="blurb">mint</p> <p class="blurb">mint</p> <p class="blurb">slightly scratched</p> <p class="blurb">reasonable</p> <p class="blurb">in original box</p> <p class="blurb">near mint</p> <p class="blurb">mint</p> </body></html>
02_SKETCHES/bouncingBall/index.html
evejweinberg/ICM
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>bouncingBall</title> <script src="libraries/p5.js" type="text/javascript"></script> <script src="libraries/p5.dom.js" type="text/javascript"></script> <script src="libraries/p5.sound.js" type="text/javascript"></script> <script src="sketch.js" type="text/javascript"></script> <style> body {padding: 0; margin: 0;} canvas {vertical-align: top;} </style> </head> <body> </body> </html>
_site/2015/openvotes-voting/index.html
domschiener/domschiener.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Dominik Schiener - Personal Blog - PublicVotes: Ethereum-based Voting Application</title> <link rel="shortcut icon" href="/assets/images/favicon.ico"> <link rel="stylesheet" href="/assets/css/style.css"> <link rel="alternate" type="application/rss+xml" title="My Blog" href="/rss.xml"> <link rel="stylesheet" href="/assets/css/highlight.css"> </head> <body> <nav class="main-nav"> <a href="/"> <span class="arrow">←</span> Home </a> <a href="/about">About </a> <a class="cta" href="/feed.xml">Subscribe</a> </nav> <section id="wrapper" class=""> <article class="post"> <header> <h1>PublicVotes: Ethereum-based Voting Application</h1> <h2 class="headline">October 31, 2015</h2> </header> <section id="post-body"> <p>As part of my research for Reposium, I have started working on a <a href="http://publicvotes.org">simple voting application</a> built with Meteor that utilizes the Ethereum Blockchain to create a provably fair and transparent voting system. This is one of a few applications I want to create as part of my research (decentralized decision making or liquid democracy is most likely next). Before explaining the underlying structure of this application, let me explain which problems this application solves and which it doesn’t.</p> <h2 id="what-this-is-and-isnt">What this is and isn’t</h2> <p>What PublicVotes essentially is, is an easy to use, provably fair voting application. All votes of participants are recorded (by proxy) into the Blockchain for the world to verify. The application is not fully decentralized, since my design goal from the beginning was to create an application that is easy to use for people outside the Ethereum space. People should be able to participate in the voting process without even knowing what the underlying protocols are — which has lead to some functionality moving to the server (i.e. centralization). I will gradually work on making this more trustless. Right now you should treat PublicVotes as an <strong>application “empowered by Ethereum”</strong>, instead of a DApp powered by Ethereum.</p> <h1 id="how-it-works">How it works</h1> <p>The entire platform is built on Meteor, there is currently one smart contract coded in Solidity that is used for placing a poll into the Blockchain and for casting the votes. For display purposes on the website and making it easy to vote, I’m also storing poll information, votes and the related Ethereum accounts in MongoDB collections. There are basically 2 processes that make up the system. The first is the poll creation, the second is actual voting.</p> <h2 id="poll-creation">Poll Creation</h2> <p>Anyone with a small amount of Ether can create a poll. At PublicVotes, the creator of the poll pays for the creation of the poll and for all votes. This way anyone can vote by simply clicking their preferred option, without even knowing what the underlying technology (Ethereum) is.</p> <p>A poll consists of the following information:</p> <ul> <li>Title (required): Mostly a question that indicates what the users are voting about. Maxlength: 48 chars.</li> <li>Description (not required): A more comprehensive description that explains to the users what the vote is exactly about. Maxlength: 145 chars.</li> <li>Options (min 2 required): The actual voting options for your poll. Minimum is 2, max is 10 options. Maxlength: 20 chars.</li> </ul> <p><strong>Settings:</strong></p> <ul> <li>Public Poll: The user can choose if the poll should be public or not. If the poll is private, only people with the link can participate in the vote.</li> <li>Multioption (coming soon): Makes it possible for users to choose more than 1 poll option.</li> <li>Vote Limit: Limits the number of people that can participate in the poll. (not required).</li> <li>Time Limit: A timelimit for the poll. Right now this is a requirement as the account will eventually run out of Ether. But once we have setup a faucet I will remove the timelimit.</li> </ul> <p>Once the creator has entered this information, he/she is required to send a specified amount (0.2 Ether to be exact) of Ether to an address. All of the accounts are generated on the client, thanks to silentcicero’s ethereumjs library. This account is then stored in a local MongoDB collection and will be used for all future votes.</p> <p>Once the Ether have been received at the specified address, the poll is ready to go live and be deployed onto the Ethereum Blockchain. This is the smart contract that is deployed onto the Blockchain: <a href="https://github.com/domschiener/publicvotes/blob/master/contracts/contract.sol">Github Link</a> . Once the contract has been mined, the poll will go live and people can start voting.</p> <h2 id="casting-a-vote">Casting a Vote</h2> <p>Anyone with a link can participate in the poll and cast their vote. Casting a vote is as simple as clicking a button. The application does most of the rest, such as preparing and signing the transaction which will be sent to the smart contract. Once a vote has been received, the smart contract will record the vote into the Blockchain’s event log.</p> <p>After voting, the user is redirected to /voted where there are statistics about the poll and the people who have voted. The table at the bottom of the page has been purely generated through filters that get the event logs of the Ethereum Blockchain.</p> <h1 id="where-to-go-from-here">Where to go from here</h1> <p>This is a Minimum Viable Product and the system currently has many flaws. The major flaw being the IP-based redirect system. I will implement OAuth over the coming days so that users can participate in the voting process through social media accounts.</p> <p>It would be very interesting to work on a sybil-attack resistant system, but it seems that so far there is no viable solution to the problem at hand that offers both security and ease of use. Overall though, I will work on more improvements over the coming weeks and also on a follow-up application that will take this voting application to the next level (mostly based on Liquid Democracy concepts).</p> </section> </article> <footer id="post-meta" class="clearfix"> <a href="http://twitter.com/domschiener"> <img class="avatar" src="/assets/images/face.png"> <div> <span class="dark">Dominik Schiener</span> <span>Personal Blog discussing Entrepreneurship, Blockchain and Collective Intelligence</span> </div> </a> <section id="sharing"> <a class="twitter" href="https://twitter.com/intent/tweet?text=http://schiener.me/2015/openvotes-voting/ - PublicVotes: Ethereum-based Voting Application by @domschiener"><span class="icon-twitter"> Tweet</span></a> <a class="facebook" href="#" onclick=" window.open( 'https://www.facebook.com/sharer/sharer.php?u='+encodeURIComponent(location.href), 'facebook-share-dialog', 'width=626,height=436'); return false;"><span class="icon-facebook-rect"> Share</span> </a> </section> </footer> <!-- Disqus comments --> <!-- Archive post list --> </section> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/assets/js/main.js"></script> <script src="/assets/js/highlight.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-XXXXXXXX-X', 'auto'); ga('send', 'pageview'); </script> </body> </html>
public/Windows 10 x64 (18363.628)/_ETW_PAYLOAD_FILTER.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.628)</h4><br> <h2>_ETW_PAYLOAD_FILTER</h2> <font face="arial"> +0x000 RefCount : Int4B<br> +0x008 PayloadFilter : <a href="./_AGGREGATED_PAYLOAD_FILTER.html">_AGGREGATED_PAYLOAD_FILTER</a><br> </font></body></html>
chapter3/webville_tunes.html
milowyner/head-first-into-javascript
<!doctype html> <html lang="en"> <head> <title>Webville Tunes</title> <meta charset="utf-8"> <script src="playlist_store.js"></script> <script src="playlist.js"></script> <link rel="stylesheet" href="playlist.css"> </head> <body> <form> <input type="text" id="songTextInput" size="40" placeholder="Song Name"> <input type="button" id="addButton" value="Add Song"> </form> <ul id="playlist"></ul> </body> </html>
postgresql/html/catalog-pg-index.html
jenmwang/portfolio_site_2013
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >pg_index</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REV="MADE" HREF="mailto:pgsql-docs@postgresql.org"><LINK REL="HOME" TITLE="PostgreSQL 9.0.10 Documentation" HREF="index.html"><LINK REL="UP" TITLE="System Catalogs" HREF="catalogs.html"><LINK REL="PREVIOUS" TITLE="pg_foreign_server" HREF="catalog-pg-foreign-server.html"><LINK REL="NEXT" TITLE="pg_inherits" HREF="catalog-pg-inherits.html"><LINK REL="STYLESHEET" TYPE="text/css" HREF="stylesheet.css"><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"><META NAME="creation" CONTENT="2012-09-19T22:08:45"></HEAD ><BODY CLASS="SECT1" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="5" ALIGN="center" VALIGN="bottom" ><A HREF="index.html" >PostgreSQL 9.0.10 Documentation</A ></TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A TITLE="pg_foreign_server" HREF="catalog-pg-foreign-server.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="10%" ALIGN="left" VALIGN="top" ><A HREF="catalogs.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="60%" ALIGN="center" VALIGN="bottom" >Chapter 45. System Catalogs</TD ><TD WIDTH="20%" ALIGN="right" VALIGN="top" ><A TITLE="pg_inherits" HREF="catalog-pg-inherits.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><DIV CLASS="SECT1" ><H1 CLASS="SECT1" ><A NAME="CATALOG-PG-INDEX" >45.22. <TT CLASS="STRUCTNAME" >pg_index</TT ></A ></H1 ><P > The catalog <TT CLASS="STRUCTNAME" >pg_index</TT > contains part of the information about indexes. The rest is mostly in <TT CLASS="STRUCTNAME" >pg_class</TT >. </P ><DIV CLASS="TABLE" ><A NAME="AEN80299" ></A ><P ><B >Table 45-22. <TT CLASS="STRUCTNAME" >pg_index</TT > Columns</B ></P ><TABLE BORDER="1" CLASS="CALSTABLE" ><COL><COL><COL><COL><THEAD ><TR ><TH >Name</TH ><TH >Type</TH ><TH >References</TH ><TH >Description</TH ></TR ></THEAD ><TBODY ><TR ><TD ><TT CLASS="STRUCTFIELD" >indexrelid</TT ></TD ><TD ><TT CLASS="TYPE" >oid</TT ></TD ><TD ><TT CLASS="LITERAL" ><A HREF="catalog-pg-class.html" ><TT CLASS="STRUCTNAME" >pg_class</TT ></A >.oid</TT ></TD ><TD >The OID of the <TT CLASS="STRUCTNAME" >pg_class</TT > entry for this index</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indrelid</TT ></TD ><TD ><TT CLASS="TYPE" >oid</TT ></TD ><TD ><TT CLASS="LITERAL" ><A HREF="catalog-pg-class.html" ><TT CLASS="STRUCTNAME" >pg_class</TT ></A >.oid</TT ></TD ><TD >The OID of the <TT CLASS="STRUCTNAME" >pg_class</TT > entry for the table this index is for</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indnatts</TT ></TD ><TD ><TT CLASS="TYPE" >int2</TT ></TD ><TD >&nbsp;</TD ><TD >The number of columns in the index (duplicates <TT CLASS="LITERAL" >pg_class.relnatts</TT >)</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indisunique</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD >If true, this is a unique index</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indisprimary</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD >If true, this index represents the primary key of the table (<TT CLASS="STRUCTFIELD" >indisunique</TT > should always be true when this is true)</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indimmediate</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD >If true, the uniqueness check is enforced immediately on insertion (<TT CLASS="STRUCTFIELD" >indisunique</TT > should always be true when this is true)</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indisclustered</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD >If true, the table was last clustered on this index</TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indisvalid</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD > If true, the index is currently valid for queries. False means the index is possibly incomplete: it must still be modified by <TT CLASS="COMMAND" >INSERT</TT >/<TT CLASS="COMMAND" >UPDATE</TT > operations, but it cannot safely be used for queries. If it is unique, the uniqueness property is not true either. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indcheckxmin</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD > If true, queries must not use the index until the <TT CLASS="STRUCTFIELD" >xmin</TT > of this <TT CLASS="STRUCTNAME" >pg_index</TT > row is below their <TT CLASS="SYMBOL" >TransactionXmin</TT > event horizon, because the table may contain broken HOT chains with incompatible rows that they can see </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indisready</TT ></TD ><TD ><TT CLASS="TYPE" >bool</TT ></TD ><TD >&nbsp;</TD ><TD > If true, the index is currently ready for inserts. False means the index must be ignored by <TT CLASS="COMMAND" >INSERT</TT >/<TT CLASS="COMMAND" >UPDATE</TT > operations. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indkey</TT ></TD ><TD ><TT CLASS="TYPE" >int2vector</TT ></TD ><TD ><TT CLASS="LITERAL" ><A HREF="catalog-pg-attribute.html" ><TT CLASS="STRUCTNAME" >pg_attribute</TT ></A >.attnum</TT ></TD ><TD > This is an array of <TT CLASS="STRUCTFIELD" >indnatts</TT > values that indicate which table columns this index indexes. For example a value of <TT CLASS="LITERAL" >1 3</TT > would mean that the first and the third table columns make up the index key. A zero in this array indicates that the corresponding index attribute is an expression over the table columns, rather than a simple column reference. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indclass</TT ></TD ><TD ><TT CLASS="TYPE" >oidvector</TT ></TD ><TD ><TT CLASS="LITERAL" ><A HREF="catalog-pg-opclass.html" ><TT CLASS="STRUCTNAME" >pg_opclass</TT ></A >.oid</TT ></TD ><TD > For each column in the index key, this contains the OID of the operator class to use. See <A HREF="catalog-pg-opclass.html" ><TT CLASS="STRUCTNAME" >pg_opclass</TT ></A > for details. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indoption</TT ></TD ><TD ><TT CLASS="TYPE" >int2vector</TT ></TD ><TD >&nbsp;</TD ><TD > This is an array of <TT CLASS="STRUCTFIELD" >indnatts</TT > values that store per-column flag bits. The meaning of the bits is defined by the index's access method. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indexprs</TT ></TD ><TD ><TT CLASS="TYPE" >text</TT ></TD ><TD >&nbsp;</TD ><TD > Expression trees (in <CODE CLASS="FUNCTION" >nodeToString()</CODE > representation) for index attributes that are not simple column references. This is a list with one element for each zero entry in <TT CLASS="STRUCTFIELD" >indkey</TT >. Null if all index attributes are simple references. </TD ></TR ><TR ><TD ><TT CLASS="STRUCTFIELD" >indpred</TT ></TD ><TD ><TT CLASS="TYPE" >text</TT ></TD ><TD >&nbsp;</TD ><TD > Expression tree (in <CODE CLASS="FUNCTION" >nodeToString()</CODE > representation) for partial index predicate. Null if not a partial index. </TD ></TR ></TBODY ></TABLE ></DIV ></DIV ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="catalog-pg-foreign-server.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="catalog-pg-inherits.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><TT CLASS="STRUCTNAME" >pg_foreign_server</TT ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="catalogs.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><TT CLASS="STRUCTNAME" >pg_inherits</TT ></TD ></TR ></TABLE ></DIV ></BODY ></HTML >
src/app/shopping-list/shopping-list.component.html
ninad-d/angular2-kickstart
<div class="row"> <div class="col-xs-10"> <app-shopping-edit></app-shopping-edit> <hr> <ul class="list-group"> <a href="" class="list-group-item" style="cursor:pointer" *ngFor="let i of ingredients">{{i.name}} ({{i.amount}})</a> </ul> </div> </div>
Website/WoodTextures.html
GillesArcas/Drago
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="description" content="Drago, a Windows freeware to edit, view, play and replay games, and solve problems of Go"> <meta name="keywords" content="go, igo, baduk, weiqui, weichi, freeware, SGF, edit, play, replay, GNU Go, wood, texture"> <title>Drago - Textures</title> <link rel="StyleSheet" href="Drago.css" type="text/css"> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-396448-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-396448-1'); </script> </head> <body text="#000000" link="#0000FF" vlink="#800080"> <!-- --> <table border="0" cellspacing="0" width="100%"> <!-- --> <tr> <td class="x z" colspan="3"> <p class="title"> <img src="Images/dragon.png" align="absbottom"> Drago - Wood textures </p> </td> </tr> <!-- --> <tr> <td class="b x">&nbsp</td> <td class="c x"> <p><strong>Drago</strong> enables to select the texture image for the goban background as well as for the main window, coordinate border and game tree backgrounds (see Options dialog box). It is not hard to find interesting textures on the web. However, it will save time to find here the following samples. </p> <hr> <table align=center> <tr> <td><img src="Images/wood004.jpg" width="96" height="96"></td> <td><img src="Images/wood005.jpg" width="96" height="96"></td> <td><img src="Images/wood011.jpg" width="96" height="96"></td> <td><img src="Images/wood013.jpg" width="96" height="96"></td> </tr> <tr> <td><img src="Images/wood040.jpg" width="96" height="96"></td> <td><img src="Images/wood057.jpg" width="96" height="96"></td> <td><img src="Images/wood106.jpg" width="96" height="96"></td> <td><img src="Images/wood123.jpg" width="96" height="96"></td> <tr> </tr> <td><img src="Images/wood_i04.jpg" width="96" height="96"></td> <td><img src="Images/wood_i05.jpg" width="96" height="96"></td> <td><img src="Images/wood_i06.jpg" width="96" height="96"></td> <td><img src="Images/wood_i15.jpg" width="96" height="96"></td> </tr> </tr> <td><img src="Images/wood_i20.jpg" width="96" height="96"></td> <td><img src="Images/mywood01.jpg" width="96" height="96"></td> <td><img src="Images/mywood02.jpg" width="96" height="96"></td> <td><img src="Images/mywood03.jpg" width="96" height="96"></td> </tr> </table> <hr> <p>These images have been resized, rotated and converted to fit the required format. Download the <a href="Images/wood.zip">texture collection</a> (67Kb)</p> <hr> <p><small> These images come from the following sites offering free image resources:</p> <ul> <li><a href="http://www.grsites.com">www.grsites.com</a> (woodnnn.jpg) <li><a href="http://www.the3dstudio.com">www.the3dstudio.com</a> (wood_inn.jpg) </ul> </a>Actually, I lost the reference for three of them (mywoodnn.jpg).</small></p> </td> <td class="b x">&nbsp</td> </tr> <tr> <td class="b">&nbsp</td> <td class="c"> <p>Tiling small images can give some undesirable effects. For this reason, <a href="http://senseis.xmp.net/?Zinger">zinger</a> proposes texture images big enough to cover completely the board. <p> <table align=center> <tr> <td><img src="Images/zinger2tn.jpg" width="96" height="96"></td> <td><img src="Images/zinger3tn.jpg" width="96" height="96"></td> <td><img src="Images/zinger4tn.jpg" width="96" height="96"></td> <td><img src="Images/zinger5tn.jpg" width="96" height="96"></td> </tr> </table> <p> Download the <a href="Images/zinger.zip">full size images</a> (746Kb)</p> </td> <td class="b">&nbsp</td> </tr> <tr> <td class="b">&nbsp</td> <td class="c"> <p>Another very nice collection offered by Jorge Salas. <p> <table align=center> <tr> <td><img src="Images/jorge.jpg" width="400" height="350"></td> </tr> </table> <p> Download the <a href="Images/Wood Textures for Drago.zip">full size images</a> (1.33 Mb)</p> </td> <td class="b">&nbsp</td> </tr> <tr> <td class="bb y"> <a href="index.html"><img src="Images/favicon.gif" border="0" width="16" height="16"> Home</a> </td> <td class="c y"> <p>Another way to try avoiding artifacts when tiling is to use a bigger image made from the original image by applying mirror and flip symmetries. For instance, if the texture image is <img src="Images/Tile.gif" width="16" height="16"> then default tiling and tiling with symmetries give respectively the following figures:</p> <p align=center> <img src="Images/StdTiling.gif" width="64" height="64"> &nbsp&nbsp <img src="Images/SymTiling.gif" width="64" height="64"> </p> <p>When applied to one of the previous texture, default tiling and tiling with symmetries lead to:</p> <p align=center> <img src="Images/mywood01.jpg"> <img src="Images/StdTilingWood.jpg"> <img src="Images/SymTilingWood.jpg"> </p> <p> <p>Tiling with symmetries has been put at work by Stijn in his <a href="http://micans.org/goboards/">PostScript and PDF board repository</a>. Thanks a lot to <a href="http://www.goban.demon.co.uk">Harry Fearnley</a> for bringing this to my attention.</p> <p>Tiling with symmetries is available in <strong>Drago</strong> as an option in the advanced settings.</p> </td> <td class="b y">&nbsp</td> </tr> </table> <small class="x">Copyright &copy; 2006-2021 Drago - All rights reserved</small> </body> </html>
docs/api/OpenTl.Schema/TMessageService/224F0377.html
OpenTl/OpenTl.Schema
<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="description"> <meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <title>OpenTl.Schema - API - TMessageService.ReplyToMsgId Property</title> <link href="/OpenTl.Schema/assets/css/mermaid.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/highlight.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/theme/theme.css" rel="stylesheet"> <link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/OpenTl.Schema/assets/css/override.css" rel="stylesheet"> <script src="/OpenTl.Schema/assets/js/jquery-2.2.3.min.js"></script> <script src="/OpenTl.Schema/assets/js/bootstrap.min.js"></script> <script src="/OpenTl.Schema/assets/js/app.min.js"></script> <script src="/OpenTl.Schema/assets/js/highlight.pack.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.slimscroll.min.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.sticky-kit.min.js"></script> <script src="/OpenTl.Schema/assets/js/mermaid.min.js"></script> <!--[if lt IE 9]> <script src="/OpenTl.Schema/assets/js/html5shiv.min.js"></script> <script src="/OpenTl.Schema/assets/js/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition wyam layout-boxed "> <div class="top-banner"></div> <div class="wrapper with-container"> <!-- Header --> <header class="main-header"> <a href="/OpenTl.Schema/" class="logo"> <span>OpenTl.Schema</span> </a> <nav class="navbar navbar-static-top" role="navigation"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-right"></i> </a> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-down"></i> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="/OpenTl.Schema/about.html">About This Project</a></li> <li class="active"><a href="/OpenTl.Schema/api">API</a></li> </ul> </div> <!-- /.navbar-collapse --> <!-- Navbar Right Menu --> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar "> <section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200"> <div id="infobar-headings"><h6>On This Page</h6><p><a href="#Syntax">Syntax</a></p> <p><a href="#Attributes">Attributes</a></p> <p><a href="#Value">Value</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/OpenTl.Schema/assets/js/lunr.min.js"></script> <script src="/OpenTl.Schema/assets/js/searchIndex.js"></script> <div class="sidebar-form"> <div class="input-group"> <input type="text" name="search" id="search" class="form-control" placeholder="Search Types..."> <span class="input-group-btn"> <button class="btn btn-flat"><i class="fa fa-search"></i></button> </span> </div> </div> <div id="search-results"> </div> <script> function runSearch(query){ $("#search-results").empty(); if( query.length < 2 ){ return; } var results = searchModule.search("*" + query + "*"); var listHtml = "<ul class='sidebar-menu'>"; listHtml += "<li class='header'>Type Results</li>"; if(results.length == 0 ){ listHtml += "<li>No results found</li>"; } else { for(var i = 0; i < results.length; ++i){ var res = results[i]; listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>"; } } listHtml += "</ul>"; $("#search-results").append(listHtml); } $(document).ready(function(){ $("#search").on('input propertychange paste', function() { runSearch($("#search").val()); }); }); function htmlEscape(html) { return document.createElement('div') .appendChild(document.createTextNode(html)) .parentNode .innerHTML; } </script> <hr> <ul class="sidebar-menu"> <li class="header">Namespace</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></li> <li class="header">Type</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService">TMessageService</a></li> <li role="separator" class="divider"></li> <li class="header">Property Members</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/6585E077.html">Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/7962D155.html">Date</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/555FF392.html">Flags</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/97197F94.html">FromId</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/BAD8415F.html">Id</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/2D0DBC8E.html">MediaUnread</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/C238FE2C.html">Mentioned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/401ED5F9.html">Out</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/8E39C5A5.html">Post</a></li> <li class="selected"><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/224F0377.html">ReplyToMsgId</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/7B70800B.html">Silent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService/C460B912.html">ToId</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h3><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService">TMessageService</a>.</h3> <h1>ReplyToMsgId <small>Property</small></h1> </section> <section class="content"> <div class="panel panel-default"> <div class="panel-body"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></dd> <dt>Containing Type</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService">TMessageService</a></dd> </dl> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>[SerializationOrder(9)] [CanSerialize("Flags", 3)] public int ReplyToMsgId { get; set; }</code></pre> <h1 id="Attributes">Attributes</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>Serialization<wbr>Order<wbr>Attribute</td> <td></td> </tr> <tr> <td>Can<wbr>Serialize<wbr>Attribute</td> <td></td> </tr> </tbody></table> </div> </div> <h1 id="Value">Value</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>int</td> <td></td> </tr> </tbody></table> </div> </div> </section> </div> <!-- Footer --> <footer class="main-footer"> </footer> </div> <div class="wrapper bottom-wrapper"> <footer class="bottom-footer"> Generated by <a href="https://wyam.io">Wyam</a> </footer> </div> <a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a> <script> // Close the sidebar if we select an anchor link $(".main-sidebar a[href^='#']:not('.expand')").click(function(){ $(document.body).removeClass('sidebar-open'); }); $(document).load(function() { mermaid.initialize( { flowchart: { htmlLabels: false, useMaxWidth:false } }); mermaid.init(undefined, ".mermaid") $('svg').addClass('img-responsive'); $('pre code').each(function(i, block) { hljs.highlightBlock(block); }); }); hljs.initHighlightingOnLoad(); // Back to top $(window).scroll(function() { if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px $('#return-to-top').fadeIn(1000); // Fade in the arrow } else { $('#return-to-top').fadeOut(1000); // Else fade out the arrow } }); $('#return-to-top').click(function() { // When arrow is clicked $('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); }); </script> </body></html>
doc-html/src/Spah/SpahQL/new/index.html
danski/spah
<!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" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Spah v0.0.0 API documentation | new Spah.SpahQL</title> <meta name="generator" content="PDoc" /> <script charset="utf-8" src="../../../javascripts/pdoc/prototype.js" type="text/javascript"></script> <script charset="utf-8" src="../../../javascripts/pdoc/application.js" type="text/javascript"></script> <script charset="utf-8" src="../../../javascripts/pdoc/tabs.js" type="text/javascript"></script> <script charset="utf-8" src="../../../javascripts/pdoc/item_index.js" type="text/javascript"></script> <link charset="utf-8" href="../../../stylesheets/pdoc/api.css" media="screen, projection" rel="stylesheet" type="text/css" /> <link charset="utf-8" href="../../../stylesheets/pdoc/pygments.css" media="screen, projection" rel="stylesheet" type="text/css" /> <script type="text/javascript"> PDoc.pathPrefix = '../../../'; </script> </head> <body> <div id="sidebar"> <ul id="sidebar_tabs" class="sidebar-tabs"> <li> <a href="#menu_pane">Menu</a> </li> <li> <a href="#search_pane">Search</a> </li> </ul> <!-- .sidebar-tabs --> <form class="search-ribbon"> <label> <span class="hidden">Search</span> <input type="text" id="search" size="20" title="Search" /> </label> </form> <div class="sidebar-pane scrollable" id="menu_pane"> <ul class="menu-items" id="api_menu"><li><div class="menu-item"><a class="class current-parent" href="../../../Spah/index.html" title="Spah (class)">Spah</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/DOM/index.html" title="Spah.DOM (class)">Spah.DOM</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Blueprint/index.html" title="Spah.DOM.Blueprint (class)">Spah.DOM.Blueprint</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Document/index.html" title="Spah.DOM.Document (class)">Spah.DOM.Document</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Errors/index.html" title="Spah.DOM.Errors (class)">Spah.DOM.Errors</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Errors/InvalidModifierError/index.html" title="Spah.DOM.Errors.InvalidModifierError (class)">Spah.DOM.Errors.InvalidModifierError</a></div></li></ul></li> <li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Modifiers/index.html" title="Spah.DOM.Modifiers (class)">Spah.DOM.Modifiers</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Modifiers/ClassName/index.html" title="Spah.DOM.Modifiers.ClassName (class)">Spah.DOM.Modifiers.ClassName</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Modifiers/ElementId/index.html" title="Spah.DOM.Modifiers.ElementId (class)">Spah.DOM.Modifiers.ElementId</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/DOM/Modifiers/Show/index.html" title="Spah.DOM.Modifiers.Show (class)">Spah.DOM.Modifiers.Show</a></div></li></ul></li></ul></li> <li><div class="menu-item"><a class="class current-parent" href="../../../Spah/SpahQL/index.html" title="Spah.SpahQL (class)">Spah.SpahQL</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Callbacks/index.html" title="Spah.SpahQL.Callbacks (class)">Spah.SpahQL.Callbacks</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/DataHelper/index.html" title="Spah.SpahQL.DataHelper (class)">Spah.SpahQL.DataHelper</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Errors/index.html" title="Spah.SpahQL.Errors (class)">Spah.SpahQL.Errors</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Errors/SpahQLError/index.html" title="Spah.SpahQL.Errors.SpahQLError (class)">Spah.SpahQL.Errors.SpahQLError</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Errors/SpahQLRunTimeError/index.html" title="Spah.SpahQL.Errors.SpahQLRunTimeError (class)">Spah.SpahQL.Errors.SpahQLRunTimeError</a></div></li></ul></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Query/index.html" title="Spah.SpahQL.Query (class)">Spah.SpahQL.Query</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/QueryParser/index.html" title="Spah.SpahQL.QueryParser (class)">Spah.SpahQL.QueryParser</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/QueryRunner/index.html" title="Spah.SpahQL.QueryRunner (class)">Spah.SpahQL.QueryRunner</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Strategiser/index.html" title="Spah.SpahQL.Strategiser (class)">Spah.SpahQL.Strategiser</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/index.html" title="Spah.SpahQL.Token (class)">Spah.SpahQL.Token</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/Base/index.html" title="Spah.SpahQL.Token.Base (class)">Spah.SpahQL.Token.Base</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/Boolean/index.html" title="Spah.SpahQL.Token.Boolean (class)">Spah.SpahQL.Token.Boolean</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/ComparisonOperator/index.html" title="Spah.SpahQL.Token.ComparisonOperator (class)">Spah.SpahQL.Token.ComparisonOperator</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/FilterQuery/index.html" title="Spah.SpahQL.Token.FilterQuery (class)">Spah.SpahQL.Token.FilterQuery</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/KeyName/index.html" title="Spah.SpahQL.Token.KeyName (class)">Spah.SpahQL.Token.KeyName</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/Numeric/index.html" title="Spah.SpahQL.Token.Numeric (class)">Spah.SpahQL.Token.Numeric</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/PathComponent/index.html" title="Spah.SpahQL.Token.PathComponent (class)">Spah.SpahQL.Token.PathComponent</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/SelectionQuery/index.html" title="Spah.SpahQL.Token.SelectionQuery (class)">Spah.SpahQL.Token.SelectionQuery</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/Set/index.html" title="Spah.SpahQL.Token.Set (class)">Spah.SpahQL.Token.Set</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/Simple/index.html" title="Spah.SpahQL.Token.Simple (class)">Spah.SpahQL.Token.Simple</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/SpahQL/Token/String/index.html" title="Spah.SpahQL.Token.String (class)">Spah.SpahQL.Token.String</a></div></li></ul></li></ul><ul><li><div class="menu-item"><a class="constructor current" href="../../../Spah/SpahQL/new/index.html" title="new Spah.SpahQL (constructor)">new</a></div></li> <li><div class="menu-item"><a class="class-method" href="../../../Spah/SpahQL/assert/index.html" title="Spah.SpahQL.assert (class method)">assert</a></div></li> <li><div class="menu-item"><a class="class-method" href="../../../Spah/SpahQL/db/index.html" title="Spah.SpahQL.db (class method)">db</a></div></li> <li><div class="menu-item"><a class="class-method" href="../../../Spah/SpahQL/result/index.html" title="Spah.SpahQL.result (class method)">result</a></div></li> <li><div class="menu-item"><a class="class-method" href="../../../Spah/SpahQL/select/index.html" title="Spah.SpahQL.select (class method)">select</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/assert/index.html" title="Spah.SpahQL#assert (instance method)">assert</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/clone/index.html" title="Spah.SpahQL#clone (instance method)">clone</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/concat/index.html" title="Spah.SpahQL#concat (instance method)">concat</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/containing/index.html" title="Spah.SpahQL#containing (instance method)">containing</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/containingAll/index.html" title="Spah.SpahQL#containingAll (instance method)">containingAll</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/delete/index.html" title="Spah.SpahQL#delete (instance method)">delete</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/deleteAll/index.html" title="Spah.SpahQL#deleteAll (instance method)">deleteAll</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/detach/index.html" title="Spah.SpahQL#detach (instance method)">detach</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/each/index.html" title="Spah.SpahQL#each (instance method)">each</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/filter/index.html" title="Spah.SpahQL#filter (instance method)">filter</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/first/index.html" title="Spah.SpahQL#first (instance method)">first</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/item/index.html" title="Spah.SpahQL#item (instance method)">item</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/keyName/index.html" title="Spah.SpahQL#keyName (instance method)">keyName</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/keyNames/index.html" title="Spah.SpahQL#keyNames (instance method)">keyNames</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/last/index.html" title="Spah.SpahQL#last (instance method)">last</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/listen/index.html" title="Spah.SpahQL#listen (instance method)">listen</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/map/index.html" title="Spah.SpahQL#map (instance method)">map</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/parent/index.html" title="Spah.SpahQL#parent (instance method)">parent</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/parentPath/index.html" title="Spah.SpahQL#parentPath (instance method)">parentPath</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/parentPaths/index.html" title="Spah.SpahQL#parentPaths (instance method)">parentPaths</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/parents/index.html" title="Spah.SpahQL#parents (instance method)">parents</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/path/index.html" title="Spah.SpahQL#path (instance method)">path</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/paths/index.html" title="Spah.SpahQL#paths (instance method)">paths</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/replace/index.html" title="Spah.SpahQL#replace (instance method)">replace</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/replaceAll/index.html" title="Spah.SpahQL#replaceAll (instance method)">replaceAll</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/resultModified/index.html" title="Spah.SpahQL#resultModified (instance method)">resultModified</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/select/index.html" title="Spah.SpahQL#select (instance method)">select</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/set/index.html" title="Spah.SpahQL#set (instance method)">set</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/setAll/index.html" title="Spah.SpahQL#setAll (instance method)">setAll</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/sourceData/index.html" title="Spah.SpahQL#sourceData (instance method)">sourceData</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/type/index.html" title="Spah.SpahQL#type (instance method)">type</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/types/index.html" title="Spah.SpahQL#types (instance method)">types</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/unlisten/index.html" title="Spah.SpahQL#unlisten (instance method)">unlisten</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/value/index.html" title="Spah.SpahQL#value (instance method)">value</a></div></li> <li><div class="menu-item"><a class="instance-method" href="../../../Spah/SpahQL/prototype/values/index.html" title="Spah.SpahQL#values (instance method)">values</a></div></li></ul></li> <li><div class="menu-item"><a class="class" href="../../../Spah/State/index.html" title="Spah.State (class)">Spah.State</a></div><ul><li><div class="menu-item"><a class="class" href="../../../Spah/State/Strategies/index.html" title="Spah.State.Strategies (class)">Spah.State.Strategies</a></div></li></ul></li> <li><div class="menu-item"><a class="class" href="../../../Spah/StateClient/index.html" title="Spah.StateClient (class)">Spah.StateClient</a></div></li> <li><div class="menu-item"><a class="class" href="../../../Spah/StateServer/index.html" title="Spah.StateServer (class)">Spah.StateServer</a></div></li></ul></li></ul><!--- #api_menu =--> </div> <!-- .sidebar-pane --> <div class="sidebar-pane" id="search_pane"> <ul id="search_results" class="search-results menu-items scrollable"></ul> </div> <!-- .sidebar-pane --> </div> <!-- #sidebar --> <div id="page"> <div id="main" class="page-content"> <ul class="breadcrumbs clearfix"> <li><a href="../../../">Home</a></li> <li>&rarr; <a href="../../../Spah/index.html" title="Spah (class)">Spah</a></li> <li>&rarr; <a href="../../../Spah/SpahQL/index.html" title="Spah.SpahQL (class)">SpahQL</a></li> <li>&rarr; <a href="../../../Spah/SpahQL/new/index.html" title="new Spah.SpahQL (constructor)">new</a></li> </ul> <p id="src_code_href"><a href="http://github.com/danski/spah/blob/master/src/Spah.SpahQL.js#85">src code</a></p> <h2 class="page-title"> <span class="type">constructor</span> new Spah.SpahQL </h2> <div class="section"> <div class="section-title"> </div> <!-- .section-title --> <div class="section-content"> <div class="method-description"> <pre class="syntax"><code class="ebnf">new Spah.SpahQL(results[, result1][, result2])</code></pre> <p>Instantiate a new SpahQL monad with the given set of results. Each result is an object with keys &#8220;path&#8221; (indicating the absolute path of the item), &#8220;value&#8221; (indicating the value at this path) and &#8220;sourceData&#8221; (indicating the original data structure from which this data was culled).</p> <p>It&#8217;s recommended that you leave this method to be used by Spah&#8217;s internals, and instead use SpahQL.db(data) to create new SpahQL resources.</p> </div> </div> <!-- .section-content --> </div> <!-- .section --> </div> <!-- #main --> <div id="footer"> <p><a href="http://github.com/danski/spah">Spah</a> v0.0.0 API documentation.</p> <p> Last updated on April 17, 2012 at 07:01 UTC. Generated by <a href="http://pdoc.org">PDoc</a>. Uses <a href="http://famfamfam.com/lab/icons/silk/" title="famfamfam.com: Silk Icons">Silk Icons</a> and portions of <a href="http://github.com/280north/aristo/tree/master" title="280north's aristo at master - GitHub">Aristo</a>. </p> </div> <!-- #footer --> </div> <!-- #page --> </body> </html>
_posts/2005-12-28-决定了,春天完梦湘西.html
Leask/leask.github.io
--- layout: post status: publish published: true title: "决定了,春天完梦湘西" author: Leask author_login: leask author_email: i@leaskh.com author_url: https://leaskh.com wordpress_id: 624 wordpress_url: http://leaskh.wordpress.com/2005/12/28/%e5%86%b3%e5%ae%9a%e4%ba%86%e6%98%a5%e5%a4%a9%e5%ae%8c%e6%a2%a6%e6%b9%98%e8%a5%bf date: '2005-12-28 05:00:19 +0800' date_gmt: '2005-12-28 05:00:19 +0800' categories: - Life tags: [] comments: - id: 173 author: "倩君" author_email: '' author_url: '' date: '2005-12-28 13:40:41 +0800' date_gmt: '2005-12-28 13:40:41 +0800' content: "你不是要去体验你的迷失,而是应该去走出你的迷失&ldquo;希望在明天&rdquo;不要老把自己放在一个死角既然你已经找到了你的黎明,那么你离希望也就不远了。。。" - id: 174 author: "小雪" author_email: '' author_url: '' date: '2005-12-28 12:55:37 +0800' date_gmt: '2005-12-28 12:55:37 +0800' content: "你已经恢复理智了,不是吗?" --- <div id="msgcns!15BAC1A170471DB!1320" class="bvMsg"> <div>也许因为任性,也许因为贪玩。</div></p> <div>也许因为无知,也许因为痴狂。</div></p> <div>决定了,去那老老旧旧的地方,体验我的迷失。</div></p> <div>在迷失中,我将顾影自怜。</div></p> <div>迷失,只因梦中,你与我同游。</div></p> <div>&nbsp;</div></p> <div>今天气温又开始下降了,酝酿了好几天的阳光心情又被一扫而空。</div></p> <div>期待春天,有那暖暖的阳光空气和水。</div></p> <div>&nbsp;</div></p> <div>累了,现在只想回家。</div></div></p>
2013/10/07/uefi-doom-how-not-to-write-portable-code/index.html
warfish/warfish.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link href="http://gmpg.org/xfn/11" rel="profile"> <!-- Enable responsiveness on mobile devices--> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <title> [UEFI-DOOM] How not to write portable code &middot; My worklog </title> <!-- CSS --> <link rel="stylesheet" href="/public/css/poole.css"> <link rel="stylesheet" href="/public/css/syntax.css"> <!-- Icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-precomposed.png"> <link rel="shortcut icon" href="/public/favicon.png"> <!-- RSS --> <link rel="alternate" type="application/atom+xml" title="My worklog" href="/atom.xml"> </head> <body> <div class="container content"> <header class="masthead"> <h2 class="masthead-title"> <a href="/" title="Home">My worklog</a> <small><a href="https://github.com/warfish">GitHub</a></small> <small><a href="/archive/">Archive</a></small> <small><a href="/tags/">Tags</a></small> </h3> </header> <main> <article class="post"> <h1 class="post-title">[UEFI-DOOM] How not to write portable code</h1> <time datetime="2013-10-07T22:43:55+07:00" class="post-date">07 Oct 2013</time> <p>Структура текстурного патча из сурсов дума. Подразумевается что эти структуры хранятся в ресурсном образе as is, код подгружает их читая sizeof(maptexture_t) из файла:</p> <div class="highlight"><pre><code class="language-c" data-lang="c"><span class="k">struct</span> <span class="kt">maptexture_t</span> <span class="p">{</span> <span class="kt">char</span> <span class="n">name</span><span class="p">[</span><span class="mi">8</span><span class="p">];</span> <span class="kt">bool</span> <span class="n">masked</span><span class="p">;</span> <span class="kt">short</span> <span class="n">width</span><span class="p">;</span> <span class="kt">short</span> <span class="n">height</span><span class="p">;</span> <span class="kt">void</span><span class="o">**</span> <span class="n">obsolete</span><span class="p">;</span> <span class="kt">patch_t</span> <span class="n">patches</span><span class="p">[</span><span class="mi">1</span><span class="p">];</span> <span class="p">};</span></code></pre></div> <p>Естественно собираясь для 64-х битного уефая размер этой структуры едет сразу по нескольким полям.</p> <span class="tags"> <a href="/doom-uefi/">doom-uefi</a> </span> </article> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'warfish'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <!--aside class="related"> <h2>Related Posts</h2> <ul class="related-posts"> <li> <h3> <a href="//2015/01/31/CPU-out-of-order-optimization/"> CPU out-of-order performance <small><time datetime="2015-01-31T00:00:00+06:00">31 Jan 2015</time></small> </a> </h3> </li> <li> <h3> <a href="//2015/01/30/github-ci/"> GitHub + Continuous Integration <small><time datetime="2015-01-30T00:00:00+06:00">30 Jan 2015</time></small> </a> </h3> </li> <li> <h3> <a href="//2014/11/17/d181d0bed181d183d189d0b5d181d182d0b2d0bed0b2d0b0d0bdd0b8d0b5-uefi-d0b8-d0bbd0b8d0bdd183d0bad181d0bed0b2d0bed0b3d0be-d18fd0b4d180d0b0/"> Сосуществование UEFI и линуксового ядра для пребутовой авторизации с помощью гипервизора <small><time datetime="2014-11-17T13:20:53+06:00">17 Nov 2014</time></small> </a> </h3> </li> </ul> </aside --> </main> <footer class="footer"> <small> &copy; <time datetime="2015-01-31T16:39:32+06:00">2015</time>. All rights reserved. </small> </footer> </div> </body> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-59069328-1', 'auto'); ga('send', 'pageview'); </script> </html>
src/main/resources/templates/web/data/building/building_edit.html
zbeboy/ISY
<!DOCTYPE html> <html lang="zh-CN" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity4"> <head> <meta charset="utf-8"/> </head> <body> <div id="wrapper"> <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">楼数据 - <small>编辑</small> <small class="pull-right"> <button type="button" class="btn btn-primary" id="page_back">返回</button> </small> </h1> </div> <!-- /.col-lg-12 --> </div> <!-- /.row --> <div class="row"> <div class="col-lg-12 col-md-12"> <form role="form" id="edit_form"> <div class="form-group" id="valid_school" sec:authorize="hasRole('ROLE_SYSTEM')"> <select class="form-control" name="schoolId" id="select_school"> <option>请选择学校</option> </select> <p class="text-danger hidden" id="school_error_msg"></p> <input type="hidden" id="schoolId" th:value="${building.schoolId}"/> </div> <div class="form-group" id="valid_college" sec:authorize="hasRole('ROLE_SYSTEM')"> <select class="form-control" name="collegeId" id="select_college"> <option>请选择院</option> </select> <p class="text-danger hidden" id="college_error_msg"></p> <input type="hidden" id="collegeId" th:value="${building.collegeId}"/> </div> <div class="form-group" id="valid_building_name"> <label>楼</label> <input class="form-control" name="buildingName" id="buildingName" th:value="${building.buildingName}" maxlength="30" placeholder="楼名"/> <p class="text-danger hidden" id="building_name_error_msg"></p> <input type="hidden" id="buildingId" name="buildingId" th:value="${building.buildingId}"/> </div> <div class="form-group"> <label>状态</label> <div class="checkbox"> <label th:if="${building.buildingIsDel == 0 || building.buildingIsDel == null}"> <input type="checkbox" name="buildingIsDel" value="1"/>注销 </label> <label th:if="${building.buildingIsDel == 1}"> <input type="checkbox" name="buildingIsDel" checked="checked" value="1"/>注销 </label> </div> </div> <div class="text-center"> <button type="button" id="save" class="btn btn-default">保存</button> <button type="reset" class="btn btn-default">重置</button> </div> </form> </div> </div> <!-- /.row --> <footer class="footer" th:include="footer::footer"> <p class="text-muted">&copy; Company 2016</p> </footer> <!-- /.footer --> <script id="school-template" type="text/x-handlebars-template"> {{#each listResult}} <option value="{{school_value}}">{{school_name}}</option> {{/each}} </script> <script id="college-template" type="text/x-handlebars-template"> {{#each listResult}} <option value="{{college_value}}">{{college_name}}</option> {{/each}} </script> <script th:inline="javascript"> /*页面参数*/ var init_page_param = { 'currentUserRoleName': /*[[${currentUserRoleName}]]*/ '', 'collegeId': /*[[${collegeId}]]*/ 0 }; </script> <input type="hidden" class="dy_script" value="/js/data/building/building_edit.js"/> </div> <!-- /#page-wrapper --> </div> <!-- /#wrapper --> </body> </html>
_layouts/post.html
xuqiangm/xuqiangm.github.io
--- layout: default --- <div id="article"> <div class="article-title">{{ page.title }}</div> <p class="meta"> <small> &nbsp;<i class="fa fa-calendar-o"></i> {{ page.date | date_to_string}} </small> </p> <hr/> <div class="post"> {{ content }} </div> </div> <!--{% include share.html %}--> {% include pager.html %} {% include comment.html %}
starships/ufp-baker.html
searri/searri.github.io
<html> <body> <ul> <h1><i>Baker</i> Class Destroyer</h1> <li>Engines and Power</li> <ul> <li>Total power available: 10</li> <li>Movement point ratio: 1/1</li> <li>Stress charts: G/K</li> </ul> <li>Weapons</li> <ul> <li>Beam Weapon (6)</li> <ul> <li>Firing arcs: 2 fwd/port/strbd, 2 fwd</li> <li>Firing chart: T</li> <li>Power range: 0-2</li> <li>Damage modifiers: +1(1-10)</li> </ul> <li>Missile (2)</li> <ul> <li>Firing arcs: 2 fwd</li> <li>Firing chart: H</li> <li>Power to arm: 1</li> <li>Damage: 2</li> </ul> </ul> <li>Shields and Damage</li> <ul> <li>Superstructure: 5</li> <li>Shield point ratio: 1/3</li> <li>Max. shield power: 4</li> </ul> </ul> </body> </html>
src/ex/crazy-fe-book/2016/13/13.2/explicit_var.html
llinmeng/learn-fe
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> var a; /*显示声明变量*/ a = true; alert(a); </script> </body> </html>
doc/public/html/0.5.0/index.html
aisthesis/pynance
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>PyNance &mdash; PyNance 0.5.0 documentation</title> <link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', VERSION: '0.5.0', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <link rel="top" title="PyNance 0.5.0 documentation" href="#" /> <link rel="next" title="Charts (pynance.chart)" href="chart.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="chart.html" title="Charts (pynance.chart)" accesskey="N">next</a> |</li> <li class="nav-item nav-item-0"><a href="#">PyNance 0.5.0 documentation</a> &raquo;</li> </ul> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h3><a href="#">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">PyNance</a><ul> <li><a class="reference internal" href="#installation">Installation</a></li> <li><a class="reference internal" href="#basics">Basics</a></li> <li><a class="reference internal" href="#issues">Issues</a></li> <li><a class="reference internal" href="#reference">Reference</a></li> <li><a class="reference internal" href="#index">Index</a></li> <li><a class="reference internal" href="#prior-versions">Prior Versions</a></li> </ul> </li> </ul> <h4>Next topic</h4> <p class="topless"><a href="chart.html" title="next chapter">Charts (<code class="docutils literal"><span class="pre">pynance.chart</span></code>)</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="_sources/index.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="pynance"> <h1>PyNance<a class="headerlink" href="#pynance" title="Permalink to this headline">¶</a></h1> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Release:</th><td class="field-body">0.5.0</td> </tr> <tr class="field-even field"><th class="field-name">Date:</th><td class="field-body">April 03, 2016</td> </tr> </tbody> </table> <p>PyNance is open-source software for retrieving, analysing and visualizing data from stock and derivatives markets. It includes tools for generating features and labels for machine learning algorithms.</p> <div class="section" id="installation"> <h2>Installation<a class="headerlink" href="#installation" title="Permalink to this headline">¶</a></h2> <p>PyNance depends on several powerful libraries that can be tricky to install, specifically <a class="reference external" href="http://www.numpy.org/">NumPy</a>, <a class="reference external" href="http://pandas.pydata.org/">Pandas</a>, and <a class="reference external" href="http://matplotlib.org/index.html">matplotlib</a>. Unless you have already installed these libraries, it is recommended to install the following individually using <cite>pip</cite>, as you will likely need to debug one or more of these installations:</p> <div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">pip</span> <span class="n">install</span> <span class="n">matplotlib</span> <span class="n">pip</span> <span class="n">install</span> <span class="n">numpy</span> <span class="n">pip</span> <span class="n">install</span> <span class="n">pandas</span> <span class="n">pip</span> <span class="n">install</span> <span class="n">pandas</span><span class="o">-</span><span class="n">datareader</span> <span class="n">pip</span> <span class="n">install</span> <span class="n">pynance</span> </pre></div> </div> <p>Or for Python 3.x.x use <cite>pip3</cite> instead of <cite>pip</cite>.</p> <p>If you already have at least NumPy, Pandas and matplotlib installed or just prefer installing in one big step:</p> <div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">pip</span> <span class="n">install</span> <span class="n">pynance</span> </pre></div> </div> </div> <div class="section" id="basics"> <h2>Basics<a class="headerlink" href="#basics" title="Permalink to this headline">¶</a></h2> <p>Stock quotes maintained by <a class="reference external" href="http://finance.yahoo.com/">Yahoo! Finance</a> can be retrieved with the simple command:</p> <div class="highlight-default"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="kn">import</span> <span class="nn">pynance</span> <span class="k">as</span> <span class="nn">pn</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">ge</span> <span class="o">=</span> <span class="n">pn</span><span class="o">.</span><span class="n">data</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s1">&#39;ge&#39;</span><span class="p">,</span> <span class="s1">&#39;1962&#39;</span><span class="p">,</span> <span class="s1">&#39;2015&#39;</span><span class="p">)</span> </pre></div> </div> <p>Current options quotes can be retrieved using:</p> <div class="highlight-default"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">geopt</span><span class="p">,</span> <span class="n">geexp</span> <span class="o">=</span> <span class="n">pn</span><span class="o">.</span><span class="n">opt</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s1">&#39;ge&#39;</span><span class="p">)</span><span class="o">.</span><span class="n">info</span><span class="p">()</span> </pre></div> </div> <p>The options data retrieved can then be analysed using functions from <a class="reference internal" href="opt.html#module-pynance.opt" title="pynance.opt"><code class="xref py py-mod docutils literal"><span class="pre">pynance.opt</span></code></a>.</p> <p>Many of the functions in the submodules of <a class="reference internal" href="data.html#module-pynance.data" title="pynance.data"><code class="xref py py-mod docutils literal"><span class="pre">pynance.data</span></code></a> have been designed for easy creation of features and labels for machine learning applications. You can pass metrics from <a class="reference internal" href="tech.html#module-pynance.tech" title="pynance.tech"><code class="xref py py-mod docutils literal"><span class="pre">pynance.tech</span></code></a> along with numeric parameters to create highly customizable data sets to which machine learning algorithms can then be applied. Examples can be found in the documentation for <a class="reference internal" href="data.html#module-pynance.data" title="pynance.data"><code class="xref py py-mod docutils literal"><span class="pre">pynance.data</span></code></a>.</p> </div> <div class="section" id="issues"> <h2>Issues<a class="headerlink" href="#issues" title="Permalink to this headline">¶</a></h2> <p>Please help us by reporting any problems you find and sharing your ideas for new features.</p> <p>If you find a bug or think of a feature you would like to see included in the next release, please report the issue on <a class="reference external" href="https://github.com/aisthesis/pynance/issues">GitHub</a> in accordance with the <a class="reference external" href="http://scipy.org/bug-report.html#guidelines-for-submitting-bugs">Scipy guidelines</a>.</p> </div> <div class="section" id="reference"> <h2>Reference<a class="headerlink" href="#reference" title="Permalink to this headline">¶</a></h2> <div class="toctree-wrapper compound"> <ul> <li class="toctree-l1"><a class="reference internal" href="chart.html">Charts (<code class="docutils literal"><span class="pre">pynance.chart</span></code>)</a><ul> <li class="toctree-l2"><a class="reference internal" href="chart.html#examples">Examples</a><ul> <li class="toctree-l3"><a class="reference internal" href="chart.candlestick.html">candlestick</a></li> <li class="toctree-l3"><a class="reference internal" href="chart.sma.html">sma</a></li> <li class="toctree-l3"><a class="reference internal" href="chart.bollinger.html">bollinger</a></li> <li class="toctree-l3"><a class="reference internal" href="chart.line.html">line</a><ul> <li class="toctree-l4"><a class="reference internal" href="chart.line.html#close-py"><cite>close.py</cite></a></li> <li class="toctree-l4"><a class="reference internal" href="chart.line.html#adj-close-py"><cite>adj_close.py</cite></a></li> </ul> </li> </ul> </li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="common.html">Common - generic functions (<code class="docutils literal"><span class="pre">pynance.common</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.html">Data (<code class="docutils literal"><span class="pre">pynance.data</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.combine.html">Data - combine features and labels (<code class="docutils literal"><span class="pre">pynance.data.combine</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.compare.html">Data - compare (<code class="docutils literal"><span class="pre">pynance.data.compare</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.feat.html">Data - building features (<code class="docutils literal"><span class="pre">pynance.data.feat</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.lab.html">Data - building labels (<code class="docutils literal"><span class="pre">pynance.data.lab</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.prep.html">Data - preprocessing functions (<code class="docutils literal"><span class="pre">pynance.data.prep</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="data.retrieve.html">Data - remote retrieval (<code class="docutils literal"><span class="pre">pynance.data.retrieve</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="dateutils.html">Dateutils (<code class="docutils literal"><span class="pre">pynance.dateutils</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="interest.html">Interest rates (<code class="docutils literal"><span class="pre">pynance.interest</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="learn.html">Machine learning (<code class="docutils literal"><span class="pre">pynance.learn</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="learn.linreg.html">Linear regression (<code class="docutils literal"><span class="pre">pynance.learn.linreg</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="learn.metrics.html">Metrics (<code class="docutils literal"><span class="pre">pynance.learn.metrics</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.html">Options (<code class="docutils literal"><span class="pre">pynance.opt</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.core.html">Options - options class (<code class="docutils literal"><span class="pre">pynance.opt.core</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.covcall.html">Options - covered calls (<code class="docutils literal"><span class="pre">pynance.opt.covcall</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.price.html">Options - price (<code class="docutils literal"><span class="pre">pynance.opt.price</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.retrieve.html">Options - remote retrieval (<code class="docutils literal"><span class="pre">pynance.opt.retrieve</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.spread.html">Options spreads (<code class="docutils literal"><span class="pre">pynance.opt.spread</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.spread.core.html">Options - spreads (<code class="docutils literal"><span class="pre">pynance.opt.spread.core</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.spread.diag.html">Options - diagonal spreads (<code class="docutils literal"><span class="pre">pynance.opt.spread.diag</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="opt.spread.vert.html">Options - vertical spreads (<code class="docutils literal"><span class="pre">pynance.opt.spread.vert</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="pf.html">Portfolio optimization (<code class="docutils literal"><span class="pre">pynance.pf</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="tech.html">Technical analysis (<code class="docutils literal"><span class="pre">pynance.tech</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="tech.movave.html">Technical analysis - moving averages (<code class="docutils literal"><span class="pre">pynance.tech.movave</span></code>)</a></li> <li class="toctree-l1"><a class="reference internal" href="tech.simple.html">Technical analysis - basic metrics (<code class="docutils literal"><span class="pre">pynance.tech.simple</span></code>)</a></li> </ul> </div> </div> <div class="section" id="index"> <h2>Index<a class="headerlink" href="#index" title="Permalink to this headline">¶</a></h2> <ul class="simple"> <li><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></li> <li><a class="reference internal" href="py-modindex.html"><span class="std std-ref">Module Index</span></a></li> <li><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></li> </ul> </div> <div class="section" id="prior-versions"> <h2>Prior Versions<a class="headerlink" href="#prior-versions" title="Permalink to this headline">¶</a></h2> <ul class="simple"> <li><a class="reference external" href="0.2.0/index.html">0.2.0</a></li> <li><a class="reference external" href="0.3.0/index.html">0.3.0</a></li> <li><a class="reference external" href="0.3.1/index.html">0.3.1</a></li> <li><a class="reference external" href="0.4.0/index.html">0.4.0</a></li> </ul> </div> </div> </div> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="chart.html" title="Charts (pynance.chart)" >next</a> |</li> <li class="nav-item nav-item-0"><a href="#">PyNance 0.5.0 documentation</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2015-2016, Marshall Farrier. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4. </div> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-60405568-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
1b15af9/html/classv8_1_1_testing-members.html
v8-dox/v8-dox.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>V8 API Reference Guide for node.js v0.5.7 - v0.5.8: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.5.7 - v0.5.8 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.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 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"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#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> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_testing.html">Testing</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">v8::Testing Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classv8_1_1_testing.html">v8::Testing</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_testing.html#ae541bd8d75667db1d83c8aef7f8c1cf3">DeoptimizeAll</a>()</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_testing.html#adc876063b1e07462b8d9544dd8efab36">GetStressRuns</a>()</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>kStressTypeDeopt</b> enum value (defined in <a class="el" href="classv8_1_1_testing.html">v8::Testing</a>)</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>kStressTypeOpt</b> enum value (defined in <a class="el" href="classv8_1_1_testing.html">v8::Testing</a>)</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_testing.html#ab9da044b18b9d05770b655bed27ed7f4">PrepareStressRun</a>(int run)</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_testing.html#aafa5a4917998aa64134aa750ce5c4b2e">SetStressRunType</a>(StressType type)</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>StressType</b> enum name (defined in <a class="el" href="classv8_1_1_testing.html">v8::Testing</a>)</td><td class="entry"><a class="el" href="classv8_1_1_testing.html">v8::Testing</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:47:24 for V8 API Reference Guide for node.js v0.5.7 - v0.5.8 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
mynotes/mynotes/page/article/html/article.html
MichaelHu/rocket_apps
<div id="article_page"> <div id="article_page_header"></div> <div id="article_page_lines"></div> </div>
about/index.html
yangchenyun/yangchenyun.github.com
<!DOCTYPE html> <html xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:g="urn:g"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="keywords" content=""> <meta name="description" content="Blog about hackings and development | About me"> <title>About me | 杨晨昀 Steven Yang</title> <link rel="stylesheet" href="/stylesheets/screen.css"> <!--[if lt IE 9]> <script src="/javascripts/html5.js"></script> <![endif]--> </head> <body> <div class="wrap"> <div id="sidebar" class="side group clear"> <header> <a href="/">Steven Yang</a> </header> <nav> <ul> <li><a href="/about/">About</a></li> <li><a href="/contact/">Contact</a></li> </ul> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <div> <a class="addthis_button_facebook_like" fb:like:width="46px"></a> <a class='addthis_button_google_plusone' g:plusone:size='small' g:plusone:annotation='none'></a> <br class="clear"> </div> <div> <a class="addthis_button_douban"></a> <a class="addthis_button_sinaweibo"></a> <a class="addthis_button_twitter"></a> <br class="clear"> </div> </div> <!-- AddThis Button END --> </div> <div class="content"> <h2 id="about-me">About me</h2> <p><img src="/images/me.jpg" alt="self-potrait" class="right" /> I am a self-taught craftman, I like design and build stuff with computers.</p> <p>In 2011, I led the UI design and frontend development at <a href="http://ele.me/at/entry/1">eleme</a> and build a <a href="http://ele.me/napos.php">webapp</a> there. And currently I am starting up a <a href="http://zenhacks.org/">company</a> at Shanghai.</p> <p>I am fluent with <code>Ruby</code> and <code>javaScript</code>, but works with various language when it solves the problem. I used <code>Rails</code> in previous projects and I am more inclined to use <code>Patrino</code> for its flexibility of design.</p> <p>You could find me on <a href="https://github.com/yangchenyun">github</a> and <a href="http://stackoverflow.com/users/966437/steven-yang">stackoverflow</a>. I am also fascinated about <a href="http://www.faqs.org/docs/artu/ch01s06.html">Unix’s philosophy</a>.</p> <p>When I am not coding, I think and write about education, learn new stuffs.</p> <p>By the way, my name is Steven Yang graduated from Zhejiang University with a Bachelor degree in Economics.</p> <p>I’d love to collect <a href="http://quote.yangchenyun.com">inspiration</a> to keep myself motivated and do volunteer work at <a href="http://ted.yangchenyun.com">TEDxFivestarsquare</a>.</p> <p>This site is created with <a href="http://github.com/mojombo/jekyll">Jekyll</a> and hosted on <a href="http://github.com">github</a>.</p> </div> <br class="clear"> <footer> <p>Powered by <a title="Don't worry, it's not the morally ambivalent doctor." href="http://github.com/mojombo/jekyll">Jekyll</a>.<span class="copyright">copyright 2011-2012&copy; <a href="//github.com/yangchenyun">Steven Yang</a></span></p> <!-- <p>Also find me on <a href="http://stackoverflow.com/users/966437/steven-yang">stackoverflow</a> and <a href="http://delicious.com/chenyunyang">delicious</a>.</p> --> </footer> </div> </body> <!-- Add this script --> <script type="text/javascript" src="http://s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4f01c8a46f097959"></script> <!-- Google Analytics Improved Version --> <script>var _gaq=[['_setAccount','UA-27986795-1'],['_trackPageview']];(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.src='//www.google-analytics.com/ga.js';s.parentNode.insertBefore(g,s)}(document,'script')) </script> <!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6. chromium.org/developers/how-tos/chrome-frame-getting-started --> <!--[if lt IE 7 ]> <script defer src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script> <script defer>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script> <![endif]--> </html>
wad/static/admin.css
zqqf16/wad
.content { margin-left: auto; margin-right: auto; padding-left: 1em; padding-right: 1em; max-width: 768px; } .header { font-family: "omnes-pro", sans-serif; max-width: 768px; margin: 0 auto; padding: 1em; text-align: center; border-bottom: 1px solid #eee; } .header h1 { font-size: 200%; } .archives table { width: 100%; } h2.subhead { margin: 2em 0 1em 0; font-weight: 300; color: #888; position: relative; } .box { margin-bottom: 20px; } .pure-button { color: white; border-radius: 4px; text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); } .pure-button-warning { background: rgb(223, 117, 20); }
modules/default/weather/weather.css
vyazadji/MagicMirror
.weather .weathericon, .weather .fa-home { font-size: 75%; line-height: 65px; display: inline-block; -ms-transform: translate(0, -3px); /* IE 9 */ -webkit-transform: translate(0, -3px); /* Safari */ transform: translate(0, -3px); } .weather .humidityIcon { padding-right: 4px; } .weather .humidity-padding { padding-bottom: 6px; } .weather .day { padding-left: 0; padding-right: 25px; } .weather .weather-icon { padding-right: 30px; text-align: center; } .weather .min-temp { padding-left: 20px; padding-right: 0; } .weather .rain { padding-left: 20px; padding-right: 0; } .weather tr.colored .min-temp { color: #bcddff; } .weather tr.colored .max-temp { color: #ff8e99; }
resources/doc/de/uniba/kinf/jerusalem/gui/view/workpanels/helper/subclasses/class-use/JerIntNumberTextField.html
hanwi/uncertainty-gazetteer
<!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_25) on Wed Apr 16 13:46:29 CEST 2014 --> <title>Uses of Class de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses.JerIntNumberTextField</title> <meta name="date" content="2014-04-16"> <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 de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses.JerIntNumberTextField"; } //--> </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="../../../../../../../../../../de/uniba/kinf/jerusalem/gui/view/workpanels/helper/subclasses/JerIntNumberTextField.html" title="class in de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../../../index-files/index-1.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?de/uniba/kinf/jerusalem/gui/view/workpanels/helper/subclasses/class-use/JerIntNumberTextField.html" target="_top">Frames</a></li> <li><a href="JerIntNumberTextField.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 de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses.JerIntNumberTextField" class="title">Uses of Class<br>de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses.JerIntNumberTextField</h2> </div> <div class="classUseContainer">No usage of de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses.JerIntNumberTextField</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="../../../../../../../../../../de/uniba/kinf/jerusalem/gui/view/workpanels/helper/subclasses/JerIntNumberTextField.html" title="class in de.uniba.kinf.jerusalem.gui.view.workpanels.helper.subclasses">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../../../index-files/index-1.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?de/uniba/kinf/jerusalem/gui/view/workpanels/helper/subclasses/class-use/JerIntNumberTextField.html" target="_top">Frames</a></li> <li><a href="JerIntNumberTextField.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 ======= --> </body> </html>
_includes/fb-like.html
geekprompt/geekprompt.github.io
<div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.10&appId=263262000401109"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="fb-like" data-href="https://www.facebook.com/geekprompt/" data-layout="button" data-action="like" data-size="large" data-show-faces="true" data-share="false"></div>
clean/Linux-x86_64-4.11.2-2.0.7/released/8.12.1/cfml/20180525.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>cfml: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.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/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.12.1 / cfml - 20180525</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> cfml <small> 20180525 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-19 00:31:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-19 00:31:13 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils coq 8.12.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.11.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.11.2 Official release 4.11.2 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;armael.gueneau@inria.fr&quot; authors: &quot;Arthur Charguéraud &lt;arthur.chargueraud@inria.fr&gt;&quot; synopsis: &quot;A tool for proving OCaml programs in Separation Logic&quot; homepage: &quot;https://gitlab.inria.fr/charguer/cfml&quot; bug-reports: &quot;https://gitlab.inria.fr/charguer/cfml/issues&quot; license: &quot;CeCILL-B&quot; dev-repo: &quot;git+https://gitlab.inria.fr/charguer/cfml.git&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot; &quot;PREFIX=%{prefix}%&quot;] depends: [ &quot;ocaml&quot; {&gt;= &quot;4.03.0&quot; &amp; &lt; &quot;4.07.0&quot;} &quot;ocamlbuild&quot; {build} &quot;pprint&quot; &quot;base-bytes&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.9&quot;} &quot;coq-tlc&quot; {&gt;= &quot;20171206&quot;} ] url { src: &quot;https://gitlab.inria.fr/charguer/cfml/-/archive/20180525/archive.tar.gz&quot; checksum: &quot;sha512=ee6c62a7b7885aa9b443da97fb1b1d20e30d383d59ff2affebca7f35880c3396549b6e7c4547087e9d6eef5185b77ecf1adc78e94ced20c7c6c052db68a5caf5&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-cfml.20180525 coq.8.12.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.12.1). The following dependencies couldn&#39;t be met: - coq-cfml -&gt; ocaml &lt; 4.07.0 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-cfml.20180525</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
_site/page12/index.html
nanishin/nanishin.github.io
<!doctype html> <!-- Minimal Mistakes Jekyll Theme 4.18.1 by Michael Rose Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes Free for personal and commercial use under the MIT license https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE --> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <!-- begin _includes/seo.html --><title>Posts by Year - 申Nani? - Page 12</title> <meta name="description" content="Daddy of two daughters, Action for sustainable life, Maker with upcycling, Let’s live a life to reach spiritual enlightenment "> <meta name="author" content="Nani Shin"> <meta property="og:type" content="website"> <meta property="og:locale" content="en_US"> <meta property="og:site_name" content="申Nani?"> <meta property="og:title" content="申Nani?"> <meta property="og:url" content="https://nanishin.github.io/page12/"> <meta property="og:description" content="Daddy of two daughters, Action for sustainable life, Maker with upcycling, Let’s live a life to reach spiritual enlightenment "> <meta property="og:image" content="https://nanishin.github.io/assets/images/nanishin.jpg"> <link rel="canonical" href="https://nanishin.github.io/page12/"> <link rel="prev" href="https://nanishin.github.io/page11/"> <link rel="next" href="https://nanishin.github.io/page13/"> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Person", "name": "Nani Shin", "url": "https://nanishin.github.io/" } </script> <!-- end _includes/seo.html --> <link href="/feed.xml" type="application/atom+xml" rel="alternate" title="申Nani? Feed"> <!-- https://t.co/dKP3o1e --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script> document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js '; </script> <!-- For all browsers --> <link rel="stylesheet" href="/assets/css/main.css"> <!--[if IE]> <style> /* old IE unsupported flexbox fixes */ .greedy-nav .site-title { padding-right: 3em; } .greedy-nav button { position: absolute; top: 0; right: 0; height: 100%; } </style> <![endif]--> <!-- start custom head snippets --> <!-- insert favicons. use https://realfavicongenerator.net/ --> <!-- end custom head snippets --> </head> <body class="layout--home"> <nav class="skip-links"> <h2 class="screen-reader-text">Skip links</h2> <ul> <li><a href="#site-nav" class="screen-reader-shortcut">Skip to primary navigation</a></li> <li><a href="#main" class="screen-reader-shortcut">Skip to content</a></li> <li><a href="#footer" class="screen-reader-shortcut">Skip to footer</a></li> </ul> </nav> <!--[if lt IE 9]> <div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience.</div> <![endif]--> <div class="masthead"> <div class="masthead__inner-wrap"> <div class="masthead__menu"> <nav id="site-nav" class="greedy-nav"> <a class="site-title" href="/"> 申Nani? </a> <ul class="visible-links"><li class="masthead__menu-item"> <a href="/about/" >about</a> </li><li class="masthead__menu-item"> <a href="/categories/music/" >music</a> </li><li class="masthead__menu-item"> <a href="/categories/maker/" >maker</a> </li><li class="masthead__menu-item"> <a href="/categories/tip/" >tip</a> </li></ul> <button class="greedy-nav__toggle hidden" type="button"> <span class="visually-hidden">Toggle menu</span> <div class="navicon"></div> </button> <ul class="hidden-links hidden"></ul> </nav> </div> </div> </div> <div class="initial-content"> <div id="main" role="main"> <div class="sidebar sticky"> <div itemscope itemtype="https://schema.org/Person"> <div class="author__avatar"> <img src="/assets/images/nanishin.jpg" alt="Nani Shin" itemprop="image"> </div> <div class="author__content"> <h3 class="author__name" itemprop="name">Nani Shin</h3> <div class="author__bio" itemprop="description"> <p>Daddy of two daughters, Action for sustainable life, Maker with upcycling, Let’s live a life to reach spiritual enlightenment</p> </div> </div> <div class="author__urls-wrapper"> <button class="btn btn--inverse">Follow</button> <ul class="author__urls social-icons"> <li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place"> <i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">South Korea</span> </li> <li><a href="mailto:nani.shin@gmail.com" rel="nofollow noopener noreferrer"><i class="fas fa-fw fa-envelope-square" aria-hidden="true"></i> Email</a></li> <li><a href="https://nanishin.github.io" rel="nofollow noopener noreferrer"><i class="fas fa-fw fa-link" aria-hidden="true"></i> Website</a></li> <li><a href="https://github.com/nanishin" rel="nofollow noopener noreferrer"><i class="fab fa-fw fa-github" aria-hidden="true"></i> GitHub</a></li> <li><a href="https://instagram.com/nanishin" rel="nofollow noopener noreferrer"><i class="fab fa-fw fa-instagram" aria-hidden="true"></i> Instagram</a></li> <!-- <li> <a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fas fa-fw" aria-hidden="true"></i> Custom Social Profile Link </a> </li> --> </ul> </div> </div> </div> <div class="archive"> <h1 id="page-title" class="page__title"></h1> <h3 class="archive__subtitle">Recent posts</h3> <div class="list__item"> <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"> <h2 class="archive__item-title" itemprop="headline"> <a href="/tip/how-to-embed-youtube-in-markdown/" rel="permalink">마크다운에서 유튜브 링크하는 방법 </a> </h2> <p class="page__meta"><i class="far fa-fw fa-calendar-alt" aria-hidden="true"></i> January 14 2017</p> <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> less than 1 minute read </p> <p class="archive__item-excerpt" itemprop="description">구글링으로 찾은 마크다운에서 유튜브 링크를 추가하는 방법 </p> </article> </div> <div class="list__item"> <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"> <h2 class="archive__item-title" itemprop="headline"> <a href="/maker/fishbowl-diy-fish-house-roof-feeder-v2/" rel="permalink">귀요미 어항 지붕 먹이통 2차 버전 </a> </h2> <p class="page__meta"><i class="far fa-fw fa-calendar-alt" aria-hidden="true"></i> January 11 2017</p> <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> less than 1 minute read </p> <p class="archive__item-excerpt" itemprop="description">C-Lab 팀동료의 아이디어를 받아들여 기어를 활용해서 기어바에 있는 0.3mm 구멍으로 </p> </article> </div> <div class="list__item"> <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"> <h2 class="archive__item-title" itemprop="headline"> <a href="/maker/fishbowl-diy-fish-house-roof-feeder-v1/" rel="permalink">귀요미 어항 지붕 먹이통 1차 버전 </a> </h2> <p class="page__meta"><i class="far fa-fw fa-calendar-alt" aria-hidden="true"></i> January 08 2017</p> <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> less than 1 minute read </p> <p class="archive__item-excerpt" itemprop="description">아두이노 나노와 서보모터를 이용해서 자동 먹이통 1차 버전을 적용했다. </p> </article> </div> <div class="list__item"> <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"> <h2 class="archive__item-title" itemprop="headline"> <a href="/maker/fishbowl-diy-fish-house-roof-lighting/" rel="permalink">귀요미 어항 지붕 조명 공사 </a> </h2> <p class="page__meta"><i class="far fa-fw fa-calendar-alt" aria-hidden="true"></i> January 07 2017</p> <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> less than 1 minute read </p> <p class="archive__item-excerpt" itemprop="description">아두이노 나노와 LED 스트립을 이용해서 간단하게 귀요미 어항 지붕에 조명을 달았다. </p> </article> </div> <div class="list__item"> <article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork"> <h2 class="archive__item-title" itemprop="headline"> <a href="/maker/fishbowl-diy-fish-house-roof/" rel="permalink">귀요미 어항 지붕 덮은 날 </a> </h2> <p class="page__meta"><i class="far fa-fw fa-calendar-alt" aria-hidden="true"></i> January 06 2017</p> <p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> less than 1 minute read </p> <p class="archive__item-excerpt" itemprop="description">베타 물고기를 검색하다 보니 자주 등장하는 점프사 이야기들… </p> </article> </div> <nav class="pagination"> <ul> <li><a href="/page11/">Previous</a></li> <li><a href="/">1</a></li> <li><a href="#" class="disabled">&hellip;</a></li> <li><a href="/page10/">10</a></li> <li><a href="/page11/">11</a></li> <li><a href="/page12/" class="disabled current">12</a></li> <li><a href="/page13/">13</a></li> <li><a href="/page14/">14</a></li> <li><a href="/page15/">15</a></li> <li><a href="#" class="disabled">&hellip;</a></li> <li><a href="/page16/">16</a></li> <li><a href="/page13/">Next</a></li> </ul> </nav> </div> </div> </div> <div id="footer" class="page__footer"> <footer> <!-- start custom footer snippets --> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Recommended Style --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8174347775628935" data-ad-slot="1733352839" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- end custom footer snippets --> <div class="page__footer-follow"> <ul class="social-icons"> <li><strong>Follow:</strong></li> <li><a href="/feed.xml"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> Feed</a></li> </ul> </div> <div class="page__footer-copyright">&copy; 2021 Nani Shin. Powered by <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div> </footer> </div> <script src="/assets/js/main.min.js"></script> <script src="https://kit.fontawesome.com/4eee35f757.js"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-90337089-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-90337089-1', { 'anonymize_ip': false}); </script> </body> </html>
OLT-36.html
itsmachine/itsmachine.github.io
<!doctype html> <html> <head> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:691940,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); </script> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <title>OLT 36</title> <style> body { background-color:#2A242D; } #usage,.demo,h1,.tear { font-family: Consolas, Menlo, Monaco, monospace; background-color: #2A242D; color: #FDFBFB; font-size: 14px; line-height: 30px } h1{ font-size:18px; color:#B1AFAF; } .tear { color:#07A8F6; } .home{} </style> </head> <body> <style>.github-corner:hover .octo-arm { animation: octocat-wave 560ms ease-in-out } @keyframes octocat-wave { 0%, 100% { transform: rotate(0) } 20%, 60% { transform: rotate(-25deg) } 40%, 80% { transform: rotate(10deg) } } </style> <div class="container-fluid"> <div class="row"> <div class="col-xs-12"> <div class="demo"> <div id="terminal"> <h1> OLT 36</h1> <p>The devil with money, he buries the souls; yet God the penniless One, with art, with philosophy, he elevates back them all. </p> </div> </div> </div> <div class="home"><a href="https://itsmachine.github.io">home</a><div/> </div> <script src="dist/terminal.js"></script> <script> </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-82648473-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
docs/examples/src/main/java/com/axellience/vuegwtexamples/client/examples/hiwhat/HiWhatComponent.html
Axellience/vue-gwt
<div> <button v-on:click='say("hi")'>Say hi</button> <button v-on:click='say("what")'>Say what</button> </div>
clean/Linux-x86_64-4.09.1-2.0.6/released/8.13.0/classical-realizability/8.9.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>classical-realizability: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.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/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.13.0 / classical-realizability - 8.9.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> classical-realizability <small> 8.9.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-05 18:22:55 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-05 18:22:55 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq 8.13.0 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.1 Official release 4.09.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/classical-realizability&quot; license: &quot;BSD&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/ClassicalRealizability&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.9.1&quot; &amp; &lt; &quot;8.10~&quot;} ] tags: [ &quot;keyword: classical realizability&quot; &quot;keyword: Krivine&#39;s realizability&quot; &quot;keyword: primitive datatype&quot; &quot;keyword: non determinism&quot; &quot;keyword: quote&quot; &quot;keyword: axiom of countable choice&quot; &quot;keyword: real numbers&quot; &quot;category: Mathematics/Logic/Foundations&quot; ] authors: [ &quot;Lionel Rieg &lt;lionel.rieg@ens-lyon.org&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/classical-realizability/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/classical-realizability.git&quot; synopsis: &quot;Krivine&#39;s classical realizability&quot; description: &quot;&quot;&quot; The aim of this Coq library is to provide a framework for checking proofs in Krivine&#39;s classical realizability for second-order Peano arithmetic. It is designed to be as extensible as the original theory by Krivine and to support on-the-fly extensions by new instructions with their evaluation rules.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/classical-realizability/archive/v8.9.0.tar.gz&quot; checksum: &quot;md5=59773d429c7003f5ff88bc4984521453&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-classical-realizability.8.9.0 coq.8.13.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.13.0). The following dependencies couldn&#39;t be met: - coq-classical-realizability -&gt; coq &lt; 8.10~ -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-classical-realizability.8.9.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
multilingual_project_blog/templates/cmsplugin_filer_image/image.html
bigee/django-multilingual-project-blog
{% load thumbnail filer_tags filer_image_tags %}{% spaceless %} {% comment %} You may change the image size for special cases in your project by overriding this template. There are a few size manipulation filters for this in `filer_image_tags`: {% if placeholder == 'my_special_sidebar' %} {% thumbnail instance.image opts.size|extra_padding_y:10 crop=opts.crop upscale=opts.upscale as thumbnail %} {% else %} {% thumbnail instance.image opts.size crop=opts.crop upscale=opts.upscale as thumbnail %} {% endif %} {% if link %}<a href="{{ link }}"{% if instance.target_blank %} target="_blank"{% endif %}>{% endif %}<img{% if instance.alignment %} class="{{ instance.alignment }}"{% endif %} alt="{% if instance.alt %}{{ instance.alt }}{% endif %}" src="{{ thumbnail.url }}"{% if instance.caption %} title="{{ instance.caption }}"{% endif %} />{% if link %}</a>{% endif %} {% endcomment %} {% if instance.image %} {% thumbnail instance.image size crop=opts.crop upscale=opts.upscale subject_location=opts.subject_location as thumbnail %} {% if instance.caption %} <div class="image-heading">{{ instance.caption }}</div> {% endif %} {# LIGHTBOX #} {% if instance.original_link and not instance.free_link and not instance.page_link %} <a data-toggle="lightbox" href="#Lightbox_ID_{{ instance.image.id }}" class="thumbnail_lightbox"> <img class="thumbnail{% if instance.alignment %} {{ instance.alignment }}{% endif %}" style="" alt="{% if instance.alt %}{{ instance.alt }}{% endif %}" src="{{ thumbnail.url }}"{% if thumbnail.width %} width="{{ thumbnail.width }}"{% endif %}{% if thumbnail.height %} height="{{ thumbnail.height }}"{% endif %}> </a> <div id="Lightbox_ID_{{ instance.image.id }}" class="lightbox hide fade" tabindex="-1" role="dialog" aria-hidden="true"> <div class="lightbox-header"> <button type="button" class="close" data-dismiss="lightbox" aria-hidden="true">×</button> </div> <div class="lightbox-content"> <img src="{{ link }}"> {% if instance.image.description %} <div class="lightbox-caption">{{ instance.image.description|linebreaksbr }}</div> {% endif %} </div> </div> {% else %} {% if link %}<a href="{{ link }}" class="no-ico"{% if instance.target_blank %} target="_blank"{% endif %}>{% endif %} <img class="thumbnail{% if instance.alignment %} {{ instance.alignment }}{% endif %}" style="" alt="{% if instance.alt %}{{ instance.alt }}{% endif %}" src="{% if instance.use_original_image %}{{ instance.image.url }}{% else %}{{ thumbnail.url }}{% endif %}"{% if thumbnail.width %} width="{{ thumbnail.width }}"{% endif %}{% if thumbnail.height %} height="{{ thumbnail.height }}"{% endif %}> {% if link %}</a>{% endif %} {% endif %} {% if instance.image.description or instance.description %} <div class="image-description">{{ instance.image.description|linebreaksbr }}{% if instance.description %}<br>{{ instance.description|linebreaksbr }}{% endif %}</div> {% endif %} {% else %} {# just a plain link to some external image #} {% if link %}<a href="{{ link }}">{% endif %}<img{% if instance.alignment %} class="{{ instance.alignment }}"{% endif %} alt="{% if instance.alt %}{{ instance.alt }}{% endif %}" src="{{ instance.image_url }}"{% if size.0 %} width="{{ size.0 }}"{% endif %}{% if size.1 %} height="{{ size.1 }}"{% endif %}{% if instance.caption %} title="{{ instance.caption }}"{% endif %} />{% if link %}</a>{% endif %} {% endif %} {% endspaceless %}
css/main.css
Levitaar/ThousandMiles.tk
/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */ /* * What follows is the result of much research on cross-browser styling. * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal, * Kroc Camen, and the H5BP dev community and team. */ /* ========================================================================== Base styles: opinionated defaults ========================================================================== */ html { color: #222; font-size: 1em; line-height: 1.4; } /* * Remove text-shadow in selection highlight: * https://twitter.com/miketaylr/status/12228805301 * * These selection rule sets have to be separate. * Customize the background color to match your design. */ ::-moz-selection { background: #b3d4fc; text-shadow: none; } ::selection { background: #b3d4fc; text-shadow: none; } /* * A better looking default horizontal rule */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } /* * Remove the gap between audio, canvas, iframes, * images, videos and the bottom of their containers: * https://github.com/h5bp/html5-boilerplate/issues/440 */ audio, canvas, iframe, img, svg, video { vertical-align: middle; } /* * Remove default fieldset styles. */ fieldset { border: 0; margin: 0; padding: 0; } /* * Allow only vertical resizing of textareas. */ textarea { resize: vertical; } /* ========================================================================== Browser Upgrade Prompt ========================================================================== */ .browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; } /* ========================================================================== Author's custom styles ========================================================================== */ #background { border: 5px; font-size: 20px; } #center { text-align: center; padding: 10px 60px; } .light { background-color: #2A358F; } .dark { background-color: #0A0C21; } #img { max-width: 20%; height: auto; width: auto\9; display: inline-block; } #textDark { max-width: 40%; font-size: 20px; } #text { } #switch { max-width: 5%; height: auto; width: auto\9; display: inline-block; } .visible { visibility: visible; color: white; } .notVisible { visibility: hidden; } /* ========================================================================== Helper classes ========================================================================== */ /* * Hide visually and from screen readers */ .hidden { display: none !important; } /* * Hide only visually, but have it available for screen readers: * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */ .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } /* * Extends the .visuallyhidden class to allow the element * to be focusable when navigated to via the keyboard: * https://www.drupal.org/node/897638 */ .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } /* * Hide visually and from screen readers, but maintain layout */ .invisible { visibility: hidden; } /* * Clearfix: contain floats * * For modern browsers * 1. The space content is one way to avoid an Opera bug when the * `contenteditable` attribute is included anywhere else in the document. * Otherwise it causes space to appear at the top and bottom of elements * that receive the `clearfix` class. * 2. The use of `table` rather than `block` is only necessary if using * `:before` to contain the top-margins of child elements. */ .clearfix:before, .clearfix:after { content: " "; /* 1 */ display: table; /* 2 */ } .clearfix:after { clear: both; } /* ========================================================================== EXAMPLE Media Queries for Responsive Design. These examples override the primary ('mobile first') styles. Modify as content requires. ========================================================================== */ @media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition */ } @media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices */ } /* ========================================================================== Print styles. Inlined to avoid the additional HTTP request: http://www.phpied.com/delay-loading-your-print-css/ ========================================================================== */ @media print { *, *:before, *:after, *:first-letter, *:first-line { background: transparent !important; color: #000 !important; /* Black prints faster: http://www.sanbeiji.com/archives/953 */ box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } /* * Don't show links that are fragment identifiers, * or use the `javascript:` pseudo protocol */ a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } /* * Printing Tables: * http://css-discuss.incutio.com/wiki/Printing_Tables */ 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; } }
public/Windows 10 x64 (19042.610)/tagSWITCH_CONTEXT_ATTRIBUTE.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (19042.610)</h4><br> <h2>tagSWITCH_CONTEXT_ATTRIBUTE</h2> <font face="arial"> +0x000 ulContextUpdateCounter : Uint8B<br> +0x008 fAllowContextUpdate : Int4B<br> +0x00c fEnableTrace : Int4B<br> +0x010 EtwHandle : Uint8B<br> </font></body></html>
plugins/api/api/static/css/nitroshare.css
nitroshare/nitroshare-desktop
body { color: #333; font-family: sans-serif; margin: 0; } code, pre { background-color: #EEF5FB; } header, footer { background-color: #406080; color: #fff; } header { border-bottom: 8px solid #669ACD; padding: 20px 0; } header h1 { font-weight: normal; margin: 0; } footer { border-top: 8px solid #669ACD; font-size: 85%; margin-top: 60px; padding: 60px 0; } h2, h3{ color: #468; font-weight: normal; } p { text-align: justify; } pre { border: 1px solid #669acd; border-radius: 3px; padding: 10px; } .container { margin: 0 auto; padding: 0 20px; max-width: 800px; }
www/templates/search/search.html
james-logan/ionic-weather
<ion-view view-title="Search"> <ion-content> <div class="list list-inset"> <label class="item item-input"> <i class="icon ion-search placeholder-icon"></i> <input type="search" placeholder="Search location..." ng-model="$parent.query" ng-change="queryChanged()" /> </label> <label class="item" ng-repeat="item in results"> <h2>{{item.formatted_address}}</h2> </label> </div> </ion-content> </ion-view>
templates/requestbooks/update.html
vuonghv/brs
{% extends 'layout/base.html' %} {% block 'css' %} {% endblock %} {% block 'content' %} <div class="content-box"> <h2 class="page-heading">Update Request New Book</h2> <form method="post" id="submit-form" class="pexeto-contact-form" action="{% url 'requests:update' object.pk %}"> {% csrf_token %} <div class="error-box error-message">{{ form.errors }}</div> <div class="info-box sent-message"></div> <div class="contact-form-input contact-input-wrapper {% if form.categories.errors %} invalid {% endif %}"> <label class="contact-label"> Categories <span class="mandatory">*</span> </label> <select class="" name="{{ form.categories.name }}" multiple="multiple" data-placeholder="Select category" style="width: 100%;"> {% for category in list_category %} <option {% if category.id in form.categories.value %} selected="selected" {% endif %} value="{{ category.id }}">{{ category.name }}</option> } {% endfor %} </select> <span class="help-block">{{ form.categories.errors }}</span> </div> <div class="contact-form-input contact-input-wrapper {% if form.title.errors %} invalid {% endif %}"> <label class="contact-label"> Title <span class="mandatory">*</span> </label> <input name="title" value="{{ form.title.value|default_if_none:'' }}" class="required" type="text" placeholder="Enter title"> <span class="help-block">{{ form.title.errors }}</span> </div> <div class="contact-form-textarea contact-input-wrapper {% if form.description.errors %} invalid {% endif %}"> <label class="contact-label">Description</label> <textarea name="description">{{ form.description.value }}</textarea> <span class="help-block">{{ form.description.errors }}</span> </div> <button class="button send-button" type="submit"> <span>Save</span> </button> <a href="/requests" class="button">Cancel</a> <div class="contact-loader"></div> <div class="clear"></div> </form> </div> {% endblock %} {% block 'js' %} {% endblock %}
Documentation/templates/content/content.css
j-paterson/vr-drone-interface
.content { display:block; max-width:800px; margin:auto; padding: 25px; } .content p{ text-align: justify; } .content h4{ margin-bottom:5px; margin-top:0px; font-size: 1em; font-family: 'OpenSansSemiBold'; } .list-box, .text-box, .table-box{ margin: 0 0 1.5em 0; } .list-box ul li:before, .doc-box ul li:before { content: "\f138"; font-family: 'FontAwesome'; margin-right: 5px; } /* Table */ :host table { width: 100%; } :host th { background: #C2C2C2 !important; } :host .even { background: #F6F5F1; } :host td, :host th { text-align: left; } :host td{ padding: 5px !important; border-top: 1px solid #DADADA !important; } :host thead td{ padding: 0 5px !important; } :host td p { margin: 0; } :host thead, :host th{ background: none repeat scroll 0 0 #f6f5f1; border-top: 1px solid #DADADA !important; font-family: OpenSansLight !important; } :host .iconColumn { width: 15px; } #disqus_thread{ margin-top: 25px; margin-bottom: 15px; }
blog-post/c1-chefs-kitchen.html
kaylorburdell/get-out-bape
<!DOCTYPE html> <!DOCTYPE html> <html> <head> <title>cultural blog one</title> <link rel="stylesheet" type="text/css" href="stylesheets/blog-stylesheet.css"> <body> <header> <h1>cultural blog one: chef's kitchen</h1> <h2>TODAYS DATE WILL EVENTUALLY HERE</h2> </header> <article> <h2> What I think about DBC so far...</h2> <p> Originally I was a lot more nervous about DBC than I care to admit. The past few years havent exactly been overwhelming (or even whelming but whatever) so I was trying not to get my hopes up or get too invested in whatever I was planning to do next. This mentality was a mistake. Everybody I've met from DBC and everything I've seen has a very unique glow to it. It's so fascinating to see such a transparent, motivated group of people who really buy into the idea of being the rawest kind of awesome. I'm still anxious about workload, moving to NY and being thrown into a completely new environment, but seeing how highly everybody seems to regard the ethich and style of work done with DBC I've got 100% confidence that all I need to do is listen and work hard and things will end up fine. I look forward to meeting everbody in person and swan diving into all of this incredible experience.</p> </article> <footer> <h2> Follow <a href="http://twitter.com/masonarium">@masonarium</a></h2> </footer> </body> </head> </html>
demo/index.html
FiveElements/air-fetch
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> <title>air-fetch demo</title> <script src="../../webcomponentsjs/webcomponents-lite.js"></script> <link rel="import" href="../../iron-demo-helpers/demo-pages-shared-styles.html"> <link rel="import" href="../../iron-demo-helpers/demo-snippet.html"> <link rel="import" href="../../polymer/lib/elements/dom-bind.html"> <link rel="import" href="../../polymer/lib/elements/dom-repeat.html"> <link rel="import" href="../air-fetch.html"> <custom-style> <style is="custom-style" include="demo-pages-shared-styles"> </style> </custom-style> </head> <body> <div class="vertical-section-container centered"> <h3>Basic air-fetch demo</h3> <demo-snippet> <dom-bind> <template> <div>ajaxResponse: <p>[[ajaxResponse]]</p></div> <air-fetch url="https://www.googleapis.com/youtube/v3/search?type=video&part=snippet&q=polymer&key=AIzaSyAuecFZ9xJXbGDkQYWBmYrtzOGJD-iDIgI" params='{"part":"snippet", "q":"polymer", "key": "AIzaSyAuecFZ9xJXbGDkQYWBmYrtzOGJD-iDIgI", "type": "video"}' response="{{ajaxResponse}}"> </air-fetch> <template is="dom-repeat" items="[[ajaxResponse.items]]"> <div class="horizontal-section"> <h2><a href="[[url(item.id.videoId)]]" target="_blank">[[item.snippet.title]]</a></h2> <iron-image src="[[item.snippet.thumbnails.high.url]]" width="256" height="256" sizing="cover" preload fade></iron-image> <p>[[item.snippet.description]]</p> </div> </template> </template> </dom-bind> </demo-snippet> </div> </body> </html>
docs/Autogenerated AccName 1.1 Testable Statements - W3C/Name text-label-embedded-combobox.html
accdc/w3c-alternative-text-computation
<!DOCTYPE html> <html lang="en"> <head> <title>Name text-label-embedded-combobox</title> <style type="text/css"> #fieldDiv { display: table; width: 80%; margin: 100px 10%; } .hidden { display: none; } </style> </head> <body> <div class="pageContainer"> <div id="fieldDiv"><!-- Start of W3C ARIA test case code. --> <input type="text" id="test" /> <label for="test">Flash the screen <div role="combobox"> <div role="textbox"></div> <ul role="listbox" style="list-style-type: none;"> <li role="option" aria-selected="true">1</li> <li role="option">2</li> <li role="option">3</li> </ul> </div> times. </label> <!-- End of W3C ARIA test case code. --></div> </div> <br /><br /><br /> <div> <button onclick="(function(){var a=document.createElement('script');a.type='text/javascript';a.src='https://accdc.github.io/visual-aria/visual-aria/roles.js';document.head.appendChild(a)})()"> Load Visual ARIA </button> <button onclick="document.getElementById('calcTextStr').innerHTML = getNames(document.getElementById('test'));"> Calculate Accessible Name and Description </button> <br /> <textarea id="calcTextStr" readonly aria-label="Accessible Name and Description Calculation" title="Accessible Name and Description Calculation" style="width: 100%; height: 60px;"></textarea> </div> <script type="text/javascript" src="../Sample JavaScript Recursion Algorithm/recursion.js"></script> </body> </html>
tests/snapshots/index_test_two/index.html
tightenco/jigsaw
<!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 http-equiv="x-ua-compatible" content="ie=edge"> <link rel="stylesheet" href="http://jigsaw.test/css/main.css"> </head> <body class="border-t-3 border-primary full-height"> <nav class="navbar navbar-brand"> <div class="container"> <div class="navbar-content"> <div> <a class="link-plain text-xxl flex-y-center" href="http://jigsaw.test"> <strong>Jigsaw Collections Demo</strong> </a> </div> </div> </div> </nav> <div class="container m-xs-b-6"> <div class="row"> <div class="col-xs-4"> <nav class="nav-list"> <a class="nav-list-item " href="http://jigsaw.test/posts"> <icon></icon>Posts </a> <a class="nav-list-item " href="http://jigsaw.test/pagination"> <icon></icon>Pagination </a> <a class="nav-list-item " href="http://jigsaw.test/categories/news"> <icon></icon>Categories </a> <a class="nav-list-item " href="http://jigsaw.test/people"> <icon></icon>People </a> <a class="nav-list-item " href="http://jigsaw.test/variables"> <icon></icon>Variables </a> <a class="nav-list-item " href="http://jigsaw.test/json-test.json"> <icon></icon>JSON </a> <a class="nav-list-item " href="http://jigsaw.test/text-test.txt"> <icon></icon>Text </a> </nav> <div class="panel m-xs-t-6"> <div class="panel-heading"> <h4 class="text-sm wt-light text-uppercase text-brand">Page meta</h4> </div> <div class="panel-body"> <div class="p-xs-b-4 border-b"> <p class="text-xs text-dark-soft text-uppercase">Filename:</p> <p class="p-xs-l-2 text-sm">index_test_two</p> </div> <div class="p-xs-y-4 border-b"> <p class="text-xs text-dark-soft text-uppercase">Extension:</p> <p class="p-xs-l-2 text-sm">md</p> </div> <div class="p-xs-y-4 border-b"> <p class="text-xs text-dark-soft text-uppercase">Path:</p> <p class="p-xs-l-2 text-sm">/index_test_two</p> </div> <div class="p-xs-y-4 border-b"> <p class="text-xs text-dark-soft text-uppercase">Base URL:</p> <p class="p-xs-l-2 text-sm">http://jigsaw.test</p> </div> <div class="p-xs-y-4 border-b"> <p class="text-xs text-dark-soft text-uppercase">URL:</p> <p class="p-xs-l-2 text-sm">http://jigsaw.test/index_test_two</p> </div> <div class="p-xs-t-4"> <p class="text-xs text-dark-soft text-uppercase">Global Variable:</p> <p class="p-xs-l-2 text-sm">some global variable</p> </div> </div> </div> </div> <div class="col-xs-8 demo-page"> <h2>Features</h2> <h3>Enhanced permalink support</h3> <ul> <li>Permalinks for collection items can be configured with the optional <code>path</code> key in <code>collections.php</code></li> <li>If <code>path</code> is not specified, permalinks will default to slugified filename</li> <li>Global <code>slugify()</code> helper added for easy use in permalink or helper functions</li> <li><p>Shorthand for easily specifying common permalink structures:</p> <ul> <li><code>path</code> key can be a string rather than a closure; if it's a string, any bracketed parameters like <code>{filename}</code> will be replaced with values</li> <li>prepending a separator to a parameter name will slugify that parameter, using that separator (e.g. <code>{+filename}</code> will yield <code>the+slugified+filename</code>)</li> <li>any dates from YAML front matter can be formatted using PHP date formatting codes, by following the parameter name with a pipe: <code>{date|Y/m/d}</code>, for example, yields <code>2016/08/29</code>.</li> <li><p>if no parameters are included, the slugified filename will be appended by default. This allows users to simply specify a collection subdirectory: <code>'path' =&gt; 'posts'</code> will yield item URLs like <code>/posts/the-slugified-filename</code>.</p></li> <li><p><strong>Examples of</strong> <code>path</code> <strong>shorthand syntax:</strong></p></li> <li><p><code>'people'</code> yields <code>/people/the-slugified-filename</code></p></li> <li><code>'people/{+filename}'</code> yields <code>./people/the+slugified+filename</code></li> <li><code>'{collection}/{date|Y}/{title}'</code> yields <code>./people/2016/The Item Title</code></li> <li><code>'{collection}/{date|Y/m/d}/{+title}'</code> yields <code>./people/2016/08/29/the+item+title</code></li> </ul></li> </ul> <hr /> <h3>Default frontmatter variables</h3> <ul> <li>Default frontmatter variables at the collection level can be specified with the <code>variables</code> key in <code>collections.php</code>:</li> </ul> <pre><code>'posts' =&gt; [ 'variables' =&gt; [ 'author' =&gt; 'Editorial Staff' ], ... </code></pre> <hr /> <h3>Sorting collections</h3> <ul> <li>Collections can be sorted by one or more criteria specified in <code>collections.php</code>.</li> <li><code>sort</code> can contain a single variable name, or an array of multiple variables for a hierarchical sort.</li> <li>Sort order defaults to ascending; variable names can optionally be prepended with <code>+</code>.</li> <li>Variable names can be prepended with <code>-</code> for a descending sort order.</li> </ul> <pre><code>'posts' =&gt; [ 'sort' =&gt; '-date', ... </code></pre> <p>or</p> <pre><code>'posts' =&gt; [ 'sort' =&gt; ['-date', '+author'], ... </code></pre> <hr /> <h3>Collection items contain a reference to other collection items</h3> <ul> <li><code>$items</code> can reference other collection items using <code>getNext()</code>, <code>getPrevious()</code>, <code>getFirst()</code>, <code>getLast()</code></li> <li>Next/previous collection items are based on collection's default sort order</li> <li>e.g. <code>$item-&gt;getNext()-&gt;title</code> or <code>$item-&gt;getPrevious()-&gt;path</code></li> </ul> <hr /> <h3>Collections can exist without templates</h3> <ul> <li>The <code>extends</code> directive can be omitted from the YAML front matter of a collection's items, allowing for collections that aren't tied to a particular template. See the "People" collection for an example.</li> </ul> <hr /> <h3>Access Jigsaw collections as Illuminate collections</h3> <ul> <li>For example, <code>@foreach ($people-&gt;sortBy('age') as $person)</code> or <code>$products-&gt;sum('price')</code></li> <li>Can even use helper functions defined in <code>config.php</code> or <code>collections.php</code>:</li> </ul> <pre><code>@foreach ($products-&gt;sortByDesc(function ($data) { return $data-&gt;priceWithTax(); }) </code></pre> <ul> <li>Content of a collection item can be referenced with <code>getContent()</code>.</li> </ul> <hr /> <h3>Additional pagination variables</h3> <ul> <li><code>$pagination-&gt;first</code>, <code>last</code>, <code>currentPage</code>, <code>totalPages</code></li> <li><code>$pagination-&gt;pages</code> can be iterated over to build numeric page links (<code>1</code> | <code>2</code> | <code>3</code>), or individual pages can be referenced as <code>$pagination-&gt;pages[1]</code></li> </ul> <hr /> <h3>Helper functions</h3> <ul> <li>Any helper functions defined in <code>collections.php</code> under the <code>helpers =&gt; []</code> key are available within Blade templates for a collection item; previously, they were only available in an index template when iterating over a collection.</li> <li>Helper functions can also be defined globally in <code>config.php</code> and referenced in any Blade template as <code>$functionName($parameter)</code></li> </ul> <hr /> <h3>Metadata</h3> <ul> <li>available in Blade templates for all pages (including collection items and regular pages)</li> <li><code>filename</code> displays current page's filename (without extension)</li> <li><code>extension</code> displays current page's file extension (e.g. <code>md</code>, <code>blade.php</code>, etc.)</li> <li><code>path</code> is path to current page, relative to site root</li> <li><code>url</code> concatenates the site base url (if specified in <code>config.php</code>) with <code>path</code> for fully-qualified url to current page</li> <li>for collection items, <code>collection</code> displays the name of the collection an item belongs to</li> </ul> <hr /> <h3>Enhanced Blade and Markdown support</h3> <ul> <li>Collection items can now be Blade files, in addition to Markdown</li> <li>Blade files (whether they are items in a collection, or not) can include YAML frontmatter variables</li> <li>Markdown files can use Blade syntax in them—for displaying data, control structures, etc. Files with a <code>.blade.md</code> extension will be processed first by Blade, before the markdown is parsed.</li> <li>Blade templates can <code>@include</code> markdown files as partials (which will be parsed). Addresses feature request https://github.com/tighten/jigsaw/issues/62</li> </ul> <hr /> <h3>Blade support for other file types</h3> <ul> <li>Like the <code>.blade.md</code> support described above, other non-HTML, text-type files can be processed with Blade first, including <code>.blade.js</code>, <code>.blade.json</code>, <code>.blade.xml</code>, <code>.blade.rss</code>, <code>.blade.txt</code>, and <code>.blade.text</code>. After the file is first processed by Blade, the resulting file will maintain its filetype extension in the URL (e.g. <code>some-file.blade.xml</code> will become the URL <code>/some-file.xml</code>).</li> <li>Addresses feature request https://github.com/tighten/jigsaw/issues/56</li> </ul> <hr /> <h3>Support for multiple parent templates</h3> <ul> <li>Collection items can extend multiple parent templates, by specifying them in the <code>extends</code> parameter in the YAML front matter. This creates one URL for each template, allowing, for example, a collection item to have <code>/web/item</code> and a <code>/api/item</code> endpoints, or <code>/summary</code> and <code>/detail</code> views.</li> <li>In <code>collections.php</code>, permalink structures can be specified uniquely for each template type:</li> </ul> <pre><code> 'path' =&gt; [ 'web' =&gt; 'people/{date|Y-m-d}/{+filename}', 'api' =&gt; 'people/api/{date|Y-m-d}/{+filename}' ] </code></pre> <hr /> <h3>Updates to variable referencing</h3> <ul> <li>Globally-available variables and helper functions that are defined in <code>config.php</code> are accessed with the <code>$config-&gt;</code> namespace, e.g. <code>$config-&gt;some_variable</code> or <code>$config-&gt;someFunction()</code></li> <li>Collections defined in <code>collections.php</code> are referenced by their name, with no prefix. A collection named <code>posts</code> would be referenced as <code>$posts</code>, e.g. <code>$posts-&gt;first()-&gt;path</code></li> <li>Collection items and their variables/functions are referenced by <code>$item</code>, e.g. <code>$item-&gt;author</code> or <code>$item-&gt;excerpt()</code></li> <li>For better readability in templates, collection items can also be referenced automatically by the singular version of the collection name, <em>if</em> the collection name is plural. So the items of a collection of <code>people</code> can be referenced as <code>$person-&gt;first_name</code>. <code>$person-&gt;first_name</code> and <code>$item-&gt;first_name</code> will return the same thing. (If a collection name's plural and singular are the same, this shorthand won't be available; so a collection of <code>$sheep</code> is out of luck.)</li> </ul> <hr /> <h3>5.3 Update</h3> <ul> <li>Illuminate dependencies have been updated to version 5.3</li> <li>The code for allowing a custom <code>bootstrap.php</code> file, providing the ability to customize bindings (for extending the markdown parser, for instance) has been updated (from https://github.com/tighten/jigsaw/pull/68)</li> </ul> </div> </div> </div> </body> </html> <!DOCTYPE html>
_includes/amp-social-share.html
Craboo/edwh
<div> <amp-social-share type="twitter" width="60" height="44"> </amp-social-share> <amp-social-share type="gplus" width="60" height="44"></amp-social-share> <amp-social-share type="email" width="60" height="44"></amp-social-share> <amp-social-share type="pinterest" width="60" height="44"></amp-social-share> <amp-social-share type="linkedin" width="60" height="44"></amp-social-share> <amp-social-share type="facebook" width="60" height="44"></amp-social-share> </div>
doc/me/ultimate/ArenaAPI/Objects/class-use/Arena.html
PaulBGD/ArenaAPI
<!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_21) on Thu Aug 29 20:36:35 CDT 2013 --> <title>Uses of Class me.ultimate.ArenaAPI.Objects.Arena</title> <meta name="date" content="2013-08-29"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class me.ultimate.ArenaAPI.Objects.Arena"; } //--> </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="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.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?me/ultimate/ArenaAPI/Objects/class-use/Arena.html" target="_top">Frames</a></li> <li><a href="Arena.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 me.ultimate.ArenaAPI.Objects.Arena" class="title">Uses of Class<br>me.ultimate.ArenaAPI.Objects.Arena</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="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</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="#me.ultimate.ArenaAPI">me.ultimate.ArenaAPI</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="me.ultimate.ArenaAPI"> <!-- --> </a> <h3>Uses of <a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</a> in <a href="../../../../../me/ultimate/ArenaAPI/package-summary.html">me.ultimate.ArenaAPI</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../me/ultimate/ArenaAPI/package-summary.html">me.ultimate.ArenaAPI</a> that return types with arguments of type <a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</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 java.util.List&lt;<a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</a>&gt;</code></td> <td class="colLast"><span class="strong">ArenaAPI.</span><code><strong><a href="../../../../../me/ultimate/ArenaAPI/ArenaAPI.html#getArenas()">getArenas</a></strong>()</code> <div class="block">Gets a list of all arenas.</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="../../../../../me/ultimate/ArenaAPI/package-summary.html">me.ultimate.ArenaAPI</a> with parameters of type <a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</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>void</code></td> <td class="colLast"><span class="strong">ArenaEventHandler.</span><code><strong><a href="../../../../../me/ultimate/ArenaAPI/ArenaEventHandler.html#addArenaListener(me.ultimate.ArenaAPI.Objects.Arena, me.ultimate.ArenaAPI.ArenaEvents.ArenaListener, org.bukkit.plugin.Plugin)">addArenaListener</a></strong>(<a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</a>&nbsp;arena, <a href="../../../../../me/ultimate/ArenaAPI/ArenaEvents/ArenaListener.html" title="class in me.ultimate.ArenaAPI.ArenaEvents">ArenaListener</a>&nbsp;l, org.bukkit.plugin.Plugin&nbsp;p)</code> <div class="block">Adds the arena listener.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ArenaEventHandler.</span><code><strong><a href="../../../../../me/ultimate/ArenaAPI/ArenaEventHandler.html#callEvent(me.ultimate.ArenaAPI.Objects.Arena, org.bukkit.event.Event)">callEvent</a></strong>(<a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</a>&nbsp;arena, org.bukkit.event.Event&nbsp;event)</code> <div class="block">Call event.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><span class="strong">ArenaAPI.</span><code><strong><a href="../../../../../me/ultimate/ArenaAPI/ArenaAPI.html#registerArena(me.ultimate.ArenaAPI.Objects.Arena)">registerArena</a></strong>(<a href="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Arena</a>&nbsp;arena)</code> <div class="block">Register a new arena.</div> </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="../../../../../me/ultimate/ArenaAPI/Objects/Arena.html" title="class in me.ultimate.ArenaAPI.Objects">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.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?me/ultimate/ArenaAPI/Objects/class-use/Arena.html" target="_top">Frames</a></li> <li><a href="Arena.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 ======= --> </body> </html>
_includes/header.html
peter-murach/finite_machine.github.io
<header class="site-header"> <div class="wrapper"> <h1 class="logo"> <a href="{{site.baseurl}}"></a> </h1> <nav class="actions"> <a href="//github.com/piotrmurach/finite_machine#contents">documentation</a> <a href="//github.com/piotrmurach/finite_machine">github</a> </nav> </div> </header>
place/norway/weather/index.html
okfn/opendataindex-2015
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="Open Knowledge"> <meta name="description" content="The state of government open data in Norway for Weather forecast in 2015 "> <meta name="keywords" content="Norway, Weather forecast, 2015, Open Government, Open Data, Government Transparency, Open Knowledge "> <meta property="og:type" content="website"/> <meta property="og:title" content="Open Data Index - Open Knowledge"/> <meta property="og:site_name" content="Open Data Index"/> <meta property="og:description" content="The state of government open data in Norway for Weather forecast in 2015"/> <meta property="og:image" content="/static/images/favicon.ico"/> <title>Norway / Weather forecast | Global Open Data Index by Open Knowledge</title> <base href="/"> <!--[if lt IE 9]> <script src="/static/vendor/html5shiv.min.js"></script> <![endif]--> <link rel="stylesheet" href="/static/css/site.css"> <link rel="icon" href="/static/images/favicon.ico"> <script> var siteUrl = ''; </script> </head> <body class="place_dataset"> <div class="fixed-ok-panel"> <div id="ok-panel" class="closed"> <iframe src="http://assets.okfn.org/themes/okfn/okf-panel.html" scrolling="no"></iframe> </div> <a class="ok-ribbon"><img src="http://okfnlabs.org/ok-panel/assets/images/ok-ribbon.png" alt="Open Knowledge"></a> </div> <header id="header"> <nav class="navbar navbar-default" role="navigation"> <div class="container"> <div> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <div class="logo"> <a href="/"> <img src="/static/images/logo2.png"> <span>Global<br/>Open Data Index</span> </a> </div> </div> <div class="collapse navbar-collapse" id="navbar-collapse"> <ul class="nav navbar-nav" style="margin-right: 132px;"> <li> <a href="/place/" title="About the Open Data Index project"> Places </a> </li> <li> <a href="/dataset/" title="About the Open Data Index project"> Datasets </a> </li> <li> <a href="/download/" title="Download Open Data Index data"> Download </a> </li> <li> <a href="/insights/" title="Insights"> Insights </a> </li> <li> <a href="/methodology/" title="The methodology behind the Open Data Index"> Methodology </a> </li> <li> <a href="/about/" title="About the Open Data Index project"> About </a> </li> <li> <a href="/press/" title="Press information for the Open Data Index"> Press </a> </li> </ul> </div> </div> </div> </nav> </header> <div class="container"> <div class="content"> <div class="row"> <div class="col-md-12"> <ol class="breadcrumb"> <li> <a href="/">Home</a> </li> <li><a href="/place">Places</a></li> <li><a href="/place/norway/">Norway</a></li> <li class="active">Weather forecast</li> </ol> <section id="data-header"> <div class="row"> <div class="col-md-6"> <h1> <a href="/dataset/weather/" title="See more data on Weather forecast in the Open Data Index">Weather forecast</a> <span class="place-openness" data-score="100">100% open</span> </h1> <h3> <a href="/place/norway/" title="See more data on Norway in the Open Data Index">Norway</a> <div class="open-badge"><img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" /></div> </h3> <!--div class="col-md-12 place-rank statistics"> <span class="">Norway is ranked #1 for this dataset</span> </div> <div class="row relative"> </div--> <div class="row navigate"> <div class="col-md-12"> <h4 class="inline">See other years</h4> <div class=" inline"> <a class="" href="/place/norway/weather/2014/" title="2014">2014</a> <a class="" href="/place/norway/weather/2013/" title="2013">2013</a> </div> </div> <div class="col-md-12"> <h4>Share or embed this page</h4> <div class="btn-group"> <a href="" class="btn btn-default embed" data-toggle="modal" data-target="#embed-instructions"> <i class="fa fa-code"></i> Embed </a> <a href="http://twitter.com/share?url=/place/norway/weather/&text=Check out this data from the Global Open Data Index" class="btn btn-default twitter" target="_blank"> <i class="fa fa-twitter"></i> Twitter </a> <a href="http://www.facebook.com/sharer/sharer.php?u=/place/norway/weather/" class="btn btn-default facebook" target="_blank"> <i class="fa fa-facebook"></i> Facebook </a> <a href="https://plus.google.com/share?url=/place/norway/weather/" class="btn btn-default google-plus" target="_blank"> <i class="fa fa-google-plus"></i> Google+ </a> </div> <div class="modal fade" id="embed-instructions" tabindex="-1" role="dialog" aria-labelledby="embedLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button> <h4 class="modal-title" id="embedLabel">Map embed code</h4> </div> <div class="modal-body"> <p> Use the following code to embed the map visualisation into your own website. </p> <xmp contenteditable="true"><iframe width="100%" height="360px" src="/vis/map/embed/?embed_width=100%&embed_height=360px&filter_year=2015&filter_dataset=weather&panel_tools=false&panel_share=false&embed_title=Norway ; Weather forecast ; 2015&map_place=no" frameBorder="0"></iframe></xmp> <p> If you are a developer, you can read more about the embed options here: <a href="https://github.com/okfn/opendataindex/#choropleth-map" title="Embed options">Embed options</a> </p> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-6"> <div id="map-container"> <iframe width="100%" height="360px" src="/vis/map/embed/?embed_width=100%&embed_height=360px&filter_year=2015&filter_dataset=weather&panel_tools=false&panel_share=false&embed_title=Norway ; Weather forecast ; 2015&map_place=no" frameBorder="0"></iframe> </div> </div> </div> </section> <hr /> <section class="dataset-about"> <div class="row"> <div class="col-md-12"> <h3>What data is expected?</h3> <p>5 days forecast of temperature, precipitation and wind as well as recorded data for temperature, wind and precipitation for the past year. In order to satisfy the minimum requirements for this category, data submitted should meet the following criteria:</p> <ul> <li>5 days forecast of temperature updated daily</li> <li>5 days forecast of wind updated daily</li> <li>5 days forecast of precipitation updated daily</li> <li>Historical temperature data for the past year</li> </ul> </div> </div> <div class="row"> <div class="col-md-12"> <h3>What data is available</h3> </div> <div class="col-md-6"> <ul class="availability-single"> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Openly licensed? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;The licence must comply with the Open Definition which allows data to be freely used, reused and redistributed. The Open Definition provides a list of conformant licences. If the data uses one of these licences, it is openly licensed.&lt;/p&gt; &lt;p&gt;Licences are commonly found in:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;the web page footer&lt;/li&gt; &lt;li&gt;a link to Terms &amp;amp; Conditions&lt;/li&gt; &lt;li&gt;the About section&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Some licences may allow re-use and redistribution but have not been assessed as conformant with the Open Definition. In this case, seek feedback on the Open Data Index discussion forum&lt;/p&gt;" data-placement="right"> <i class="fa fa-unlock-alt pointer" title="Click for more information"></i>&nbsp; Openly licensed? Yes(<a href="http://om.yr.no/info/datapolicy/">Here</a>) </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Is the data available for free? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;The data is free if you don’t have to pay for it.&lt;/p&gt;" data-placement="right"> <i class="fa fa-dollar pointer" title="Click for more information"></i>&nbsp; Is the data available for free? Yes </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Is the data machine readable? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;All files are digital, but not all can be processed or parsed easily by a computer. In order to answer this question, you would need to look at the file type of the dataset. As a rule of thumb the following file types are machine readable:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;XLS&lt;/li&gt; &lt;li&gt;CSV&lt;/li&gt; &lt;li&gt;JSON&lt;/li&gt; &lt;li&gt;XML&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;The following formats are NOT machine readable:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;HTML&lt;/li&gt; &lt;li&gt;PDF&lt;/li&gt; &lt;li&gt;DOC&lt;/li&gt; &lt;li&gt;JIF&lt;/li&gt; &lt;li&gt;JPEG&lt;/li&gt; &lt;li&gt;PPT&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;If you have a different file type and you don’t know if it’s machine readable or not, ask in the Open Data Census forum&lt;/p&gt;" data-placement="right"> <i class="fa fa-keyboard-o pointer" title="Click for more information"></i>&nbsp; Is the data machine readable? Yes (XML) </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Available in bulk? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Data is available in bulk if the whole dataset can be downloaded easily. It is considered non-bulk if the citizens are limited to getting parts of the dataset through an online interface.&lt;/p&gt; &lt;p&gt;For example, if restricted to querying a web form and retrieving a few results at a time from a very large database.&lt;/p&gt;" data-placement="right"> <i class="fa fa-copy pointer" title="Click for more information"></i>&nbsp; Available in bulk? Yes </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Is the data provided on a timely and up to date basis? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Is the data current for the census year? You can determine or estimate when the data was last updated and its update frequency by reviewing:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;the metadata displayed for the data in an open data portal or web page&lt;/li&gt; &lt;li&gt;the dataset title or filename e.g. Budget 2013-14 or Election_4July2015.csv&lt;/li&gt; &lt;li&gt;metadata tags embedded in the web page that contains the data&lt;/li&gt; &lt;li&gt;date values within the data to find the most recent date value&lt;/li&gt; &lt;li&gt;the timestamp on the data file (although this may not be accurate)&lt;/li&gt; &lt;li&gt;Some data is not updated on a regular basis. e.g. Pollutant emissions may be updated daily - while postal codes may not change for many years. &lt;/li&gt; &lt;/ul&gt; &lt;p&gt;You may need to use your judgement to determine if the data is timely and up to date. Document your rationale in the comments section.&lt;/p&gt; &lt;p&gt;If you cannot determine a date, answer, &amp;quot;NO&amp;quot; i.e. the data is not timely or up-to-date.&lt;/p&gt;" data-placement="right"> <i class="fa fa-clock-o pointer" title="Click for more information"></i>&nbsp; Is the data provided on a timely and up to date basis? Yes </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Publicly available? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Can the data be accessed by the public without restrictions? Data is considered publicly available when:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;It can be accessed online without the need for a password or permissions.&lt;/li&gt; &lt;li&gt;If the data is in paper form, can be accessed by the public, and there is no restrictions on the number of photocopies that can be made.&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Data is &lt;strong&gt;NOT&lt;/strong&gt; publicly available when:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;It is only made available after making a request.&lt;/li&gt; &lt;li&gt;It was availiable because of FOIA. &lt;/li&gt; &lt;li&gt;It can only be accessed by government officials.&lt;/li&gt; &lt;/ul&gt;" data-placement="right"> <i class="fa fa-eye pointer" title="Click for more information"></i>&nbsp; Publicly available? Yes(as Met.no provides free weather data through APIs and services. Forecasts are also available via yr.no - a joint service with NRK - the norwegian national brodcasting corportation (http://www.nrk.no/) published by Norwegian Meteorological Institute (met.no)</a>) </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Is data in digital form? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Data can be in a digital format, but not accessible online. For example: A country budget can be stored on a spreadsheet or otherwise on a private government network, but not on the Internet. This means that the data is digital, but not publicly available. If you know that the data is digital somewhere inside the government (e.g. a government official tells you so), then you should answer “YES” to this question and note in the comment section how you discovered the data is in digital form.&lt;/p&gt;" data-placement="right"> <i class="fa fa-save pointer" title="Click for more information"></i>&nbsp; Is data in digital form? Yes </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Is the data available online? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Data is online if it can be accessed via the Internet (e.g. a website or open data portal). If the data has been emailed to you but is not accessible via the Internet, it is not considered to be available online.&lt;/p&gt;" data-placement="right"> <i class="fa fa-download pointer" title="Click for more information"></i>&nbsp; Is the data available online? Yes (<a href="http://www.met.no/?module=Articles;action=Article.publicShow;ID=620">Here</a>) </li> <li class="yes" data-toggle="popover" title="&lt;h4&gt;&lt;p&gt;Does the data exist? &lt;/p&gt;&lt;/h4&gt;" data-content="&lt;p&gt;Data must come from an official resource either issued directly by the government or by a third party officially representing the government. Data offered by companies, citizen initiatives or any non-governmental organisation do not count for the Index.&lt;/p&gt; &lt;p&gt;If the government has given the right to publish the data to third parties, a submission with a link a to third party site is allowed. The third-party site must explicitly state that the data has been commissioned by the government. Check if the organization has an agreement with the government to be the official source and make a note in the comment section.&lt;/p&gt;" data-placement="right"> <i class="fa fa-file-o pointer" title="Click for more information"></i>&nbsp; Does the data exist? Yes </li> </ul> </div> <div class="col-md-6"> <h4><strong>Details</strong></h4> <p>Qa review- The license indicates that there is data in a machine readable format. I found the data in XML format and changed the submission. </p> <p>Submission 2015-11-23: - Changed publisher to the meteorological institute, in stead of yr.no, which re-use their data. - Changed bulk-download from "Unsure" to "Yes". - Changed link to data to point to the Norwegian Meteorological Institute's web page about open data. From that page, there's links to api.met.no and yr.no for weather forecasts and to other services for bulk-downloads and historical data.</p> <p>See previous comment for more details: <a href="http://global.census.okfn.org/submission/b136b239-d962-437f-9bb9-69de95a2296a#comments">http://global.census.okfn.org/submission/b136b239-d962-437f-9bb9-69de95a2296a#comments</a></p> <h4><strong>Reviewer comments</strong></h4> <p>Data is available in bulk. Submission accepted.</p> </div> </div> </section> <section id="place-contributors"> <div class="row"> <h2>Contributors</h2> <div class="col-md-6"> <h4>Reviewers</h4> <ul> <li>Mor Rubinstein</li> </ul> </div> <div class="col-md-6"> <h4>Submitters</h4> <ul> <li>Bergheimivar L</li> </ul> </div> </div> </section> </div> </div> </div> </div> <footer id="footer"> <div class="container"> <div class="row"> <div class="footer-main col-md-8"> <div class="footer-attribution"> <p> <a href="http://opendefinition.org/ossd/" title="Open Online Software Service"> <img src="http://assets.okfn.org/images/ok_buttons/os_80x15_orange_grey.png" alt="" border=""/> </a> <a href="http://opendefinition.org/okd/" title="Open Online Software Service"> <img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" alt="" border=""/> </a> <a href="http://opendefinition.org/okd/" title="Open Content"> <img src="http://assets.okfn.org/images/ok_buttons/oc_80x15_blue.png" alt="" border=""/> </a> &ndash; <a href="http://creativecommons.org/licenses/by/3.0/" title="Content Licensed under a CC Attribution"></a> <a href="http://opendatacommons.org/licenses/pddl/1.0" title="Data License (Public Domain)">Data License (Public Domain)</a> </p> </div> <div class="footer-meta"> <p> This service is run by <a href="https://okfn.org/" title="Open Knowledge">Open Knowledge</a> </p> <a class="naked" href="http://okfn.org/" title="Open Knowledge"><img src="http://assets.okfn.org/p/okfn/img/okfn-logo-landscape-black-s.png" alt="" height="28"></a> </div> </div> <div class="footer-links col-md-2"> <li><a href="http://okfn.org/" title="Open Knowledge">Open Knowledge</a></li> <li><a href="http://okfn.org/opendata/" title="What is Open Data?">What is Open Data?</a></li> <li><a href="http://census.okfn.org/" title="Run your own Index">Run your own Index</a></li> <li><a href="https://github.com/okfn/opendataindex" title="The source code for Open Data Index">Source Code</a></li> </div> <div class="footer-links col-md-2"> <li><a href="/" title="Open Data Index home">Home</a></li> <li><a href="/download/" title="Download data">Download</a></li> <li><a href="/methodology/" title="The methodology behind the Open Data Index">Methodology</a></li> <li><a href="/faq/" title=" Open Data Index FAQ">FAQ</a></li> <li><a href="/about/" title="About the Open Data Index">About</a></li> <li><a href="/about/" title="Contact us">Contact</a></li> <li><a href="/press/" title="Press">Press</a></li> </div> </div> </div> </footer> <script data-main="/static/scripts/site" src="/static/scripts/require.js"></script> </body> </html>
joequery/static/css/style.css
joequery/joequery.me
* { margin:0; padding:0 } body { font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif; font-weight:300; font-size:14px; background:#eee; color:#666 } h1 { font-size:1.8em } h2 { font-size:1.5em } h3 { font-size:1.3em } h4 { margin-top: 30px; } a { text-decoration:none; outline-width:0; color:#258fb8 } article h1 a{ text-decoration:underline; } a.streaming{ color:#800517; text-decoration:underline; } .left { float:left } .right { float:right } .clear { clear:both } .inner { width:1000px; margin:0 auto } @media screen and (max-width:1030px) { body { margin:0 30px } .inner { width:100% } } @media screen and (max-width:600px) { body { font-size:13px } } header { height:30px; padding:30px 0; border-bottom:1px solid #ddd; line-height:30px } header a { color:#666; } header a:hover { color:#258fb8 } header h1 { font-weight:300; font-size:30px } header nav { margin-left:30px } header nav>ul>li { display:inline-block; margin-left:50px; position:relative } header nav>ul>li:hover>a { color:#258fb8 } header nav>ul>li>a:only-child { padding-right:0; background:none } header nav>ul ul { position:absolute; top:60px; left:-15px; z-index:10; white-space:nowrap; background:#ddd; border:1px solid #ccc; -moz-border-radius:0 0 5px 5px; -webkit-border-radius:0 0 5px 5px; -o-border-radius:0 0 5px 5px; -ms-border-radius:0 0 5px 5px; -khtml-border-radius:0 0 5px 5px; border-radius:0 0 5px 5px; box-shadow:0 4px 8px #ddd; list-style:none; display:none } header nav>ul ul li { border-top:1px solid #eee; border-bottom:1px solid #ccc } header nav>ul ul li:hover { background:#d5d5d5 } header nav>ul ul li:first-of-type { border-top:none } header nav>ul ul li:last-of-type { border-bottom:none } header nav>ul ul li a { display:block; padding:5px 15px; width:100% } header nav>ul ul li a:hover { color:#666 } header nav>ul li:hover>ul { display:block } header nav select { display:none; margin-bottom:10px } header .search input[type="text"] { background:url('images/search.png') 10px center no-repeat #f2f2f2; color:#999; border:1px solid #ddd; -moz-border-radius:15px; -webkit-border-radius:15px; -o-border-radius:15px; -ms-border-radius:15px; -khtml-border-radius:15px; border-radius:15px; font:13px "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif; padding:6px 15px 6px 35px; width:100px; } header .search input[type="text"]:focus,header .search input[type="text"]:active { background:url('images/search.png') 10px center no-repeat #fff; width:150px; border-top:1px solid #ccc; color:#666; outline:none } header .social { margin-right:15px } header .social a { -moz-border-radius:50%; -webkit-border-radius:50%; -o-border-radius:50%; -ms-border-radius:50%; -khtml-border-radius:50%; border-radius:50%; display:inline-block; text-indent:-9999px; margin-right:15px; opacity:0.5; width:28px; height:28px; } header .social a:hover { opacity:1 } header .social a.facebook { background:url('images/facebook.png') center no-repeat #3b5998; border:1px solid #3B5998 } header .social a.facebook:hover { border:1px solid #2d4373 } header .social a.google { background:url('images/google.png') center no-repeat #c83d20; border:1px solid #C83D20 } header .social a.google:hover { border:1px solid #9c3019 } header .social a.twitter { background:url('images/twitter.png') center no-repeat #55cff8; border:1px solid #55CFF8 } header .social a.twitter:hover { border:1px solid #24c1f6 } header .social a.rss { background:url('images/rss.png') center no-repeat #ef7522; border:1px solid #EF7522 } header .social a.rss:hover { border:1px solid #cf5d0f } @media screen and (max-width:1030px) { header { height:auto; position:relative; padding-bottom:10px } header h1 { float:none !important } header nav { margin-left:0; margin-top:15px; float:none !important } header nav>ul>li { margin-left:0; margin-right:25px } header nav>ul>li:last-of-type { margin-right:0 } header nav>ul>li>a { padding:15px 30px 15px 0 } header nav>ul>li>a:only-child { padding-right:0 } header nav>ul ul { top:40px } header>.right { position:absolute; top:30px; right:0 } } @media screen and (max-width:600px) { header nav>ul { } header nav select { display:block } header .social { display:none } header .search input[type="text"] { width:60px } header .search input[type="text"]:focus,header .search input[type="text"]:active { width:100px } } #pagenavi { padding:20px 0; height:20px; line-height:20px; position:relative; border-top:1px solid #fff; border-bottom:1px solid #ddd } #pagenavi a:hover { text-decoration:underline } #pagenavi .prev,#pagenavi .next { position:absolute } #pagenavi .prev { background:url('images/back.png') 0 center no-repeat; padding-left:30px; left:0 } #pagenavi .next { background:url('images/more.png') right center no-repeat; padding-right:30px; right:0 } #pagenavi .center { text-align:center; width:100%; display:block } article { border-bottom:1px solid #ddd; border-top:1px solid #fff; padding:30px 0; position:relative } article h1.title { font-weight:300; line-height:35px; margin-bottom:20px } article h1.title a { color:#666 } article h1.title a:hover{ text-decoration: underline; } article .entry { line-height:2; text-align:justify } article .entry a:hover { text-decoration:underline } article .entry .more-link { display:block; margin-top:20px; padding-left:30px; background:url('images/more.png') 0 center no-repeat } article .entry strong { font-weight:bold } article .entry ol,article .entry ul { margin-left:20px; margin-top:10px } article .entry ol ol,article .entry ol ul,article .entry ul ol,article .entry ul ul { margin-top:0 } article .entry p { margin-top:10px } article .entry h2 { font-weight:300; margin-top:10px; border-bottom:1px solid #ddd; position:relative } article .entry h2:before { content:""; position:absolute; bottom:-2px; width:100% } article .entry h3 { margin-top:30px } article .entry img,article .entry video { max-width:100%; height:auto } article .entry blockquote { background:#ddd; border-left:5px solid #ccc; padding:15px 20px; margin-top:10px } article .entry blockquote>p:first-of-type { margin-top:0 } article .entry iframe { margin-top:10px; border:none } article .entry ol code,article .entry ul code,article .entry p code,article .entry blockquote code { background:#ddd; border:1px solid #ccc; padding:1px 3px; margin:0 3px; -moz-border-radius:5px; -webkit-border-radius:5px; -o-border-radius:5px; -ms-border-radius:5px; -khtml-border-radius:5px; border-radius:5px } article .entry code { font:0.9em "Consolas",Monaco,Courier New,Courier,monospace } article .entry>pre { background:#ddd; padding:5px 15px; margin-top:10px; border:1px solid #ccc; line-height:1.5; overflow-x:auto; font:0.9em/1.5 "Consolas",Monaco,Courier New,Courier,monospace; -moz-border-radius:5px; -webkit-border-radius:5px; -o-border-radius:5px; -ms-border-radius:5px; -khtml-border-radius:5px; border-radius:5px; } article .entry .caption { background:url('images/caption.png') 0 4px no-repeat; display:block; font-size:0.9em; color:#999; padding-left:25px } article .entry .video-container { position:relative; padding-bottom:56.25%; padding-top:30px; height:0; overflow:hidden } article .entry .video-container iframe,article .entry .video-container object,article .entry .video-container embed { position:absolute; top:0; left:0; width:100%; height:100% } .share { padding:15px 0; border-top:1px solid #fff; border-bottom:1px solid #ddd } @media screen and (max-width:800px) { article { padding-bottom:15px } } @media screen and (max-width:600px) { article { padding:15px 0 } } .post h1.title,.post .entry { margin-left:200px } .post .meta { position:absolute; top:85px; line-height:2; font-size:0.9em; color:#999; width:170px } .post .meta a { color:#999; } .post .meta a:hover { color:#666 } .post .meta .date,.post .meta .tags,.post .meta .comments { padding-left:30px } .post .meta .date { background:url('images/date.png') 0 center no-repeat } .post .meta .tags { background:url('images/tags.png') 0 center no-repeat } .post .meta .comments { background:url('images/comments.png') 0 center no-repeat } @media screen and (max-width:800px) { .post h1.title,.post .entry { margin-left:0 } .post .meta { margin-top:15px; position:static; width:auto } .post .meta .date,.post .meta .tags,.post .meta .comments { display:inline-block; margin-right:30px } } section.archive { position:relative } section.archive:first-of-type { border-top:1px solid #fff } section.archive:first-of-type article.archive { border-top:none } section.archive:first-of-type h1.archive-title { border-top:none } section.archive:first-of-type h1.archive-title:before { border-top:none } section.archive:last-of-type { border-bottom:1px solid #ddd } section.archive:last-of-type article.archive { border-bottom:none } section.archive h1.archive-title { line-height:35px; width:200px; position:absolute; top:0; padding-top:30px; border-top:1px solid #fff } section.archive h1.archive-title:before { content:""; position:absolute; top:-2px; width:100%; border-top:1px solid #ddd } section.archive article.archive { margin-left:200px } section.archive article.archive h1 { margin-bottom:0 } section.archive article.archive .meta { color:#999; line-height:2; margin-top:15px } section.archive article.archive .meta span { margin-right:30px; padding-left:30px; display:inline-block } section.archive article.archive .meta a { color:#999; } section.archive article.archive .meta a:hover { color:#666 } section.archive article.archive .meta .date { background:url('images/date.png') 0 center no-repeat } section.archive article.archive .meta .tags { background:url('images/tags.png') 0 center no-repeat } section.archive article.archive .meta .comments { background:url('images/comments.png') 0 center no-repeat } @media screen and (max-width:600px) { section.archive h1.archive-title { position:relative; width:100% } section.archive h1.archive-title+article.archive { border-top:none } section.archive h1.archive-title+article.archive h1 { padding-top:15px } section.archive article.archive { margin-left:0; padding:15px 0 } section.archive article.archive .meta { display:none } } #comment { padding:30px 0; border-top:1px solid #fff; border-bottom:1px solid #ddd } #comment h1.title { font-size:25px; font-weight:300; line-height:35px; margin-bottom:20px } footer { padding:15px 0; border-top:1px solid #fff; text-align:center; font-size:1.0em } footer a{ color: #666; text-decoration: underline; } figure.code { background:#ddd; padding:5px 15px; margin-top:10px; border:1px solid #ccc; line-height:1.5; overflow-x:auto; -moz-border-radius:5px; -webkit-border-radius:5px; -o-border-radius:5px; -ms-border-radius:5px; -khtml-border-radius:5px; border-radius:5px } figure.code figcaption { font-size:0.9em; position:relative } figure.code figcaption span { margin:-5px -15px 0; padding:5px 15px; display:block; background:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#cccccc),color-stop(100%,#dddddd)); background:-webkit-linear-gradient(top,#cccccc,#dddddd); background:-moz-linear-gradient(top,#cccccc,#dddddd); background:-o-linear-gradient(top,#cccccc,#dddddd); background:-ms-linear-gradient(top,#cccccc,#dddddd); background:linear-gradient(top,#cccccc,#dddddd) } figure.code figcaption span:empty { display:none } figure.code figcaption a { position:absolute; top:5px; right:0 } figure.code .line-numbers { border-right:1px solid #ccc; color:#000; padding-right:15px } figure.code td.code { width:100%; padding-left:15px; overflow-x:auto } .entry .gist { background:#ddd; color:#666; padding:30px 15px 5px; margin-top:10px; border:1px solid #ccc; position:relative; overflow:hidden; -moz-border-radius:5px; -webkit-border-radius:5px; -o-border-radius:5px; -ms-border-radius:5px; -khtml-border-radius:5px; border-radius:5px } .entry .gist .gist-file { margin:0 } .entry .gist .gist-file .gist-data { background:none; border:none } .entry .gist .gist-file .gist-data pre { font:0.9em "Consolas",Monaco,Courier New,Courier,monospace; line-height:1.5 } .entry .gist .gist-file .gist-meta { font:300 0.9em "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif; line-height:1.5; margin:0 -16px -6px; padding:5px 15px; background:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#dddddd),color-stop(100%,#cccccc)); background:-webkit-linear-gradient(top,#dddddd,#cccccc); background:-moz-linear-gradient(top,#dddddd,#cccccc); background:-o-linear-gradient(top,#dddddd,#cccccc); background:-ms-linear-gradient(top,#dddddd,#cccccc); background:linear-gradient(top,#dddddd,#cccccc) } .entry .gist .gist-file .gist-meta a { color:#258fb8 } .entry .gist .gist-file .gist-meta a:first-of-type { position:absolute; top:5px; right:15px; z-index:1 } .entry .gist .gist-file .gist-meta a:nth-of-type(2) { position:absolute; top:0; left:0; padding:5px 15px; width:100%; background:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0%,#cccccc),color-stop(100%,#dddddd)); background:-webkit-linear-gradient(top,#cccccc,#dddddd); background:-moz-linear-gradient(top,#cccccc,#dddddd); background:-o-linear-gradient(top,#cccccc,#dddddd); background:-ms-linear-gradient(top,#cccccc,#dddddd); background:linear-gradient(top,#cccccc,#dddddd) } figure.code .c,.gist-highlight .c { color:#93a1a1 !important; font-style:italic !important } figure.code .cm,.gist-highlight .cm { color:#93a1a1 !important; font-style:italic !important } figure.code .cp,.gist-highlight .cp { color:#93a1a1 !important; font-style:italic !important } figure.code .c1,.gist-highlight .c1 { color:#93a1a1 !important; font-style:italic !important } figure.code .cs,.gist-highlight .cs { color:#93a1a1 !important; font-weight:bold !important; font-style:italic !important } figure.code .err,.gist-highlight .err { color:#dc322f !important; background:none !important } figure.code .k,.gist-highlight .k { color:#cb4b16 !important } figure.code .o,.gist-highlight .o { color:#586e75 !important; font-weight:bold !important } figure.code .p,.gist-highlight .p { color:#586e75 !important } figure.code .ow,.gist-highlight .ow { color:#2aa198 !important; font-weight:bold !important } figure.code .gd,.gist-highlight .gd { color:#586e75 !important; background-color:#f4c5b6 !important; display:inline-block } figure.code .gd .x,.gist-highlight .gd .x { color:#586e75 !important; background-color:#f1b1a4 !important; display:inline-block } figure.code .ge,.gist-highlight .ge { color:#586e75 !important; font-style:italic !important } figure.code .gh,.gist-highlight .gh { color:#93a1a1 !important } figure.code .gi,.gist-highlight .gi { color:#586e75 !important; background-color:#e5e3b5 !important; display:inline-block } figure.code .gi .x,.gist-highlight .gi .x { color:#586e75 !important; background-color:#cdd088 !important; display:inline-block } figure.code .gs,.gist-highlight .gs { color:#586e75 !important; font-weight:bold !important } figure.code .gu,.gist-highlight .gu { color:#6c71c4 !important } figure.code .kc,.gist-highlight .kc { color:#859900 !important; font-weight:bold !important } figure.code .kd,.gist-highlight .kd { color:#268bd2 !important } figure.code .kp,.gist-highlight .kp { color:#cb4b16 !important; font-weight:bold !important } figure.code .kr,.gist-highlight .kr { color:#d33682 !important; font-weight:bold !important } figure.code .kt,.gist-highlight .kt { color:#2aa198 !important } figure.code .n,.gist-highlight .n { color:#268bd2 !important } figure.code .na,.gist-highlight .na { color:#268bd2 !important } figure.code .nb,.gist-highlight .nb { color:#859900 !important } figure.code .nc,.gist-highlight .nc { color:#d33682 !important } figure.code .no,.gist-highlight .no { color:#b58900 !important } figure.code .nl,.gist-highlight .nl { color:#859900 !important } figure.code .ne,.gist-highlight .ne { color:#268bd2 !important; font-weight:bold !important } figure.code .nf,.gist-highlight .nf { color:#268bd2 !important; font-weight:bold !important } figure.code .nn,.gist-highlight .nn { color:#b58900 !important } figure.code .nt,.gist-highlight .nt { color:#268bd2 !important; font-weight:bold !important } figure.code .nx,.gist-highlight .nx { color:#b58900 !important } figure.code .vg,.gist-highlight .vg { color:#268bd2 !important } figure.code .vi,.gist-highlight .vi { color:#268bd2 !important } figure.code .nv,.gist-highlight .nv { color:#268bd2 !important } figure.code .mf,.gist-highlight .mf { color:#2aa198 !important } figure.code .m,.gist-highlight .m { color:#2aa198 !important } figure.code .mh,.gist-highlight .mh { color:#2aa198 !important } figure.code .mi,.gist-highlight .mi { color:#2aa198 !important } figure.code .s,.gist-highlight .s { color:#2aa198 !important } figure.code .sd,.gist-highlight .sd { color:#2aa198 !important } figure.code .s2,.gist-highlight .s2 { color:#2aa198 !important } figure.code .se,.gist-highlight .se { color:#dc322f !important } figure.code .si,.gist-highlight .si { color:#268bd2 !important } figure.code .sr,.gist-highlight .sr { color:#2aa198 !important } figure.code .s1,.gist-highlight .s1 { color:#2aa198 !important } /* fancyBox v2.0.4 fancyapps.com | fancyapps.com/fancybox/#license */.fancybox-tmp iframe,.fancybox-tmp object { vertical-align:top; padding:0; margin:0 } .fancybox-wrap { position:absolute; top:0; left:0; z-index:1002 } .fancybox-outer { padding:0; margin:0; background:#f9f9f9; color:#444; text-shadow:none; -moz-border-radius:4px; -webkit-border-radius:4px; -o-border-radius:4px; -ms-border-radius:4px; -khtml-border-radius:4px; border-radius:4px } .fancybox-opened { z-index:1003 } .fancybox-opened .fancybox-outer { -moz-box-shadow:0 10px 25px rgba(0,0,0,0.5); -webkit-box-shadow:0 10px 25px rgba(0,0,0,0.5); -o-box-shadow:0 10px 25px rgba(0,0,0,0.5); box-shadow:0 10px 25px rgba(0,0,0,0.5) } .fancybox-inner { width:100%; height:100%; padding:0; margin:0; position:relative; outline:none; overflow:hidden } .fancybox-error { color:#444; font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; margin:0; padding:10px } .fancybox-image,.fancybox-iframe { display:block; width:100%; height:100%; border:0; padding:0; margin:0; vertical-align:top } .fancybox-image { max-width:100%; max-height:100% } #fancybox-loading { position:fixed; top:50%; left:50%; margin-top:-21px; margin-left:-21px; width:42px; height:42px; background:url('images/fancybox/fancybox_loading.gif'); opacity:0.8; cursor:pointer; z-index:1010 } .fancybox-close,.fancybox-prev span,.fancybox-next span { background-image:url('images/fancybox/fancybox_sprite.png') } .fancybox-close { position:absolute; top:-18px; right:-18px; width:36px; height:36px; cursor:pointer; z-index:1004 } .fancybox-prev,.fancybox-next { position:absolute; top:0; width:40%; height:100%; cursor:pointer; background:transparent url('images/fancybox/blank.gif'); z-index:1003 } .fancybox-prev { left:0 } .fancybox-next { right:0 } .fancybox-prev span,.fancybox-next span { position:absolute; top:50%; left:-9999px; width:36px; height:36px; margin-top:-18px; cursor:pointer; z-index:1003 } .fancybox-prev span { background-position:0 -36px } .fancybox-next span { background-position:0 -72px } .fancybox-prev:hover,.fancybox-next:hover { visibility:visible } .fancybox-prev:hover span { left:20px } .fancybox-next:hover span { left:auto; right:20px } .fancybox-tmp { position:absolute; top:-9999px; left:-9999px; padding:0; overflow:visible; visibility:hidden } #fancybox-overlay { position:absolute; top:0; left:0; overflow:hidden; display:none; z-index:1001; background:#000 } .fancybox-title { visibility:hidden; font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; position:relative; text-shadow:none; z-index:1005 } .fancybox-opened .fancybox-title { visibility:visible } .fancybox-title-float-wrap { position:absolute; bottom:0; right:50%; margin-bottom:-35px; z-index:1003; text-align:center } .fancybox-title-float-wrap .child { display:inline-block; margin-right:-100%; padding:2px 20px; background:transparent; background:rgba(0,0,0,0.8); text-shadow:0 1px 2px #222; color:#FFF; font-weight:bold; line-height:24px; white-space:nowrap; -moz-border-radius:15px; -webkit-border-radius:15px; -o-border-radius:15px; -ms-border-radius:15px; -khtml-border-radius:15px; border-radius:15px } .fancybox-title-outside-wrap { position:relative; margin-top:10px; color:#fff } .fancybox-title-inside-wrap { margin-top:10px } .fancybox-title-over-wrap { position:absolute; bottom:0; left:0; color:#fff; padding:10px; background:#000; background: rgba(0,0,0,0.8) } /* Other */ .gallery{ width: 100%; margin-top: 10px; } .gallery a{ width: 25%; display: inline-block; line-height: 1; overflow: hidden; } .gallery img{ width: 100%; border: 5px solid #eee; border-width: 0 5px; } .gallery small{ width: 100%; text-align: right; } .gallery small a{ width: 100%; } th{ padding-right: 20px; } td{ padding: 10px; } .ov{ text-decoration: overline; } a.toggle{ cursor: pointer; } .hireme{ padding: 20px; }
javadoc/3.8/org/robolectric/shadows/ShadowAccessibilityManager.html
robolectric/robolectric.github.io
<!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 (1.8.0_112-google-v7) on Fri Mar 16 11:21:55 PDT 2018 --> <title>ShadowAccessibilityManager</title> <meta name="date" content="2018-03-16"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ShadowAccessibilityManager"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":9,"i5":10,"i6":10,"i7":10,"i8":9,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/robolectric/shadows/ShadowAccessibilityEvent.html" title="class in org.robolectric.shadows"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/robolectric/shadows/ShadowAccessibilityNodeInfo.html" title="class in org.robolectric.shadows"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/robolectric/shadows/ShadowAccessibilityManager.html" target="_top">Frames</a></li> <li><a href="ShadowAccessibilityManager.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&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.robolectric.shadows</div> <h2 title="Class ShadowAccessibilityManager" class="title">Class ShadowAccessibilityManager</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.robolectric.shadows.ShadowAccessibilityManager</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre><a href="../../../org/robolectric/annotation/Implements.html" title="annotation in org.robolectric.annotation">@Implements</a>(<a href="../../../org/robolectric/annotation/Implements.html#value--">value</a>=android.view.accessibility.AccessibilityManager.class) public class <span class="typeNameLabel">ShadowAccessibilityManager</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#ShadowAccessibilityManager--">ShadowAccessibilityManager</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#addAccessibilityStateChangeListener-android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener-">addAccessibilityStateChangeListener</a></span>(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener&nbsp;listener)</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>java.util.List&lt;android.content.pm.ServiceInfo&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#getAccessibilityServiceList--">getAccessibilityServiceList</a></span>()</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#getEnabledAccessibilityServiceList-int-">getEnabledAccessibilityServiceList</a></span>(int&nbsp;feedbackTypeFlags)</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#getInstalledAccessibilityServiceList--">getInstalledAccessibilityServiceList</a></span>()</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>static android.view.accessibility.AccessibilityManager</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#getInstance-android.content.Context-">getInstance</a></span>(android.content.Context&nbsp;context)</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#isEnabled--">isEnabled</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#isTouchExplorationEnabled--">isTouchExplorationEnabled</a></span>()</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#removeAccessibilityStateChangeListener-android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener-">removeAccessibilityStateChangeListener</a></span>(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener&nbsp;listener)</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>static void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#reset--">reset</a></span>()</code>&nbsp;</td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#setAccessibilityServiceList-java.util.List-">setAccessibilityServiceList</a></span>(java.util.List&lt;android.content.pm.ServiceInfo&gt;&nbsp;accessibilityServiceList)</code>&nbsp;</td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#setEnabled-boolean-">setEnabled</a></span>(boolean&nbsp;enabled)</code>&nbsp;</td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#setEnabledAccessibilityServiceList-java.util.List-">setEnabledAccessibilityServiceList</a></span>(java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;enabledAccessibilityServiceList)</code>&nbsp;</td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#setInstalledAccessibilityServiceList-java.util.List-">setInstalledAccessibilityServiceList</a></span>(java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;installedAccessibilityServiceList)</code>&nbsp;</td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/robolectric/shadows/ShadowAccessibilityManager.html#setTouchExplorationEnabled-boolean-">setTouchExplorationEnabled</a></span>(boolean&nbsp;touchExplorationEnabled)</code>&nbsp;</td> </tr> </table> <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"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ShadowAccessibilityManager--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ShadowAccessibilityManager</h4> <pre>public&nbsp;ShadowAccessibilityManager()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="reset--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reset</h4> <pre><a href="../../../org/robolectric/annotation/Resetter.html" title="annotation in org.robolectric.annotation">@Resetter</a> public static&nbsp;void&nbsp;reset()</pre> </li> </ul> <a name="getInstance-android.content.Context-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getInstance</h4> <pre><a href="../../../org/robolectric/annotation/HiddenApi.html" title="annotation in org.robolectric.annotation">@HiddenApi</a> <a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public static&nbsp;android.view.accessibility.AccessibilityManager&nbsp;getInstance(android.content.Context&nbsp;context) throws java.lang.Exception</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Exception</code></dd> </dl> </li> </ul> <a name="addAccessibilityStateChangeListener-android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>addAccessibilityStateChangeListener</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;boolean&nbsp;addAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener&nbsp;listener)</pre> </li> </ul> <a name="removeAccessibilityStateChangeListener-android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>removeAccessibilityStateChangeListener</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;boolean&nbsp;removeAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener&nbsp;listener)</pre> </li> </ul> <a name="getAccessibilityServiceList--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getAccessibilityServiceList</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;java.util.List&lt;android.content.pm.ServiceInfo&gt;&nbsp;getAccessibilityServiceList()</pre> </li> </ul> <a name="setAccessibilityServiceList-java.util.List-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setAccessibilityServiceList</h4> <pre>public&nbsp;void&nbsp;setAccessibilityServiceList(java.util.List&lt;android.content.pm.ServiceInfo&gt;&nbsp;accessibilityServiceList)</pre> </li> </ul> <a name="getEnabledAccessibilityServiceList-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getEnabledAccessibilityServiceList</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;getEnabledAccessibilityServiceList(int&nbsp;feedbackTypeFlags)</pre> </li> </ul> <a name="setEnabledAccessibilityServiceList-java.util.List-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setEnabledAccessibilityServiceList</h4> <pre>public&nbsp;void&nbsp;setEnabledAccessibilityServiceList(java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;enabledAccessibilityServiceList)</pre> </li> </ul> <a name="getInstalledAccessibilityServiceList--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getInstalledAccessibilityServiceList</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;getInstalledAccessibilityServiceList()</pre> </li> </ul> <a name="setInstalledAccessibilityServiceList-java.util.List-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setInstalledAccessibilityServiceList</h4> <pre>public&nbsp;void&nbsp;setInstalledAccessibilityServiceList(java.util.List&lt;android.accessibilityservice.AccessibilityServiceInfo&gt;&nbsp;installedAccessibilityServiceList)</pre> </li> </ul> <a name="isEnabled--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isEnabled</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;boolean&nbsp;isEnabled()</pre> </li> </ul> <a name="setEnabled-boolean-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setEnabled</h4> <pre>public&nbsp;void&nbsp;setEnabled(boolean&nbsp;enabled)</pre> </li> </ul> <a name="isTouchExplorationEnabled--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isTouchExplorationEnabled</h4> <pre><a href="../../../org/robolectric/annotation/Implementation.html" title="annotation in org.robolectric.annotation">@Implementation</a> public&nbsp;boolean&nbsp;isTouchExplorationEnabled()</pre> </li> </ul> <a name="setTouchExplorationEnabled-boolean-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>setTouchExplorationEnabled</h4> <pre>public&nbsp;void&nbsp;setTouchExplorationEnabled(boolean&nbsp;touchExplorationEnabled)</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> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <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"><script type="text/javascript" src="../../../highlight.pack.js"></script> <script type="text/javascript"><!-- hljs.initHighlightingOnLoad(); //--></script></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/robolectric/shadows/ShadowAccessibilityEvent.html" title="class in org.robolectric.shadows"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/robolectric/shadows/ShadowAccessibilityNodeInfo.html" title="class in org.robolectric.shadows"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/robolectric/shadows/ShadowAccessibilityManager.html" target="_top">Frames</a></li> <li><a href="ShadowAccessibilityManager.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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><a href="#constructor.summary">Constr</a>&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><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
demos/leaflet_wms_geojson/missions.html
geopicardie/geopicardie-simple-web-apps
<!DOCTYPE html> <html> <head> <title>Géo2France - WMS &amp; GeoJSON</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Favicon --> <link rel="shortcut icon" href="https://www.geo2france.fr/portail/themes/custom/geo2france/favicon.ico" type="image/vnd.microsoft.icon"> <!-- Bootstrap styles --> <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen"> <!-- Leaflet styles --> <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.css" /> <link rel="stylesheet" href="popup.css" /> <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.ie.css" /><![endif]--> <!-- Bootstrap library --> <script src="bootstrap/js/bootstrap.min.js"></script> <!-- Leaflet library --> <script src="http://cdn.leafletjs.com/leaflet-0.6.4/leaflet.js"></script> <script src="leaflet_oms/oms.min.js"></script> <!-- JQuery library --> <script src="jquery/jquery.min.js"></script> <!-- Custom Leaflet application --> <script type="text/javascript"> var mapLayersOptions = { layers: [ /*{ name: 'osm_layer', title: 'Carte OpenStreetMap', baseLayer: true, type: 'WMS', url: 'http://www.geopicardie.fr/geoserver/wms?', wmsLayers: 'autres:basemaps_google', format: 'image/jpeg', attribution: 'OpenStreetMap - Géo2France', addToLayerControl: true }, */{ name: 'osm_layer', title: 'Carte OpenStreetMap', baseLayer: true, type: 'WMS', url: 'http://geobretagne.fr/wmsouvert?', wmsLayers: 'imposm-default', format: 'image/jpeg', attribution: 'OpenStreetMap', addToLayerControl: true }, { name: 'ortho_layer', title: 'Orthophotographies 2001-2002 - GéoPicardie', baseLayer: true, type: 'WMS', url: 'http://www.geopicardie.fr/geoserver/wms?', wmsLayers: 'reg22:picardie_ortho_2002', format: 'image/jpeg', attribution: 'OpenStreetMap - Géo2France', addToLayerControl: true }, { name: 'marker_layer', title: 'Sites de la Grande Guerre', baseLayer: false, type: 'GeoJSON/Simple URL', url: './data/missions_regionales.js', attribution: 'Conseil régional de Picardie', addToLayerControl: false, markerCluster: { on: true, distance: 25, color: '', thickness: 2 }, icons: [ { id: 'default', filter: '', urls: { normal: '', cluster: '', active: '', } } ], popupContentTemplate: '' } ] }; $(document).ready(function() { var map = L.map('map').setView([49.8, 2.7], 6); var defaultSubsetName = "Toutes"; var subsetsOfFeatures = {}; subsetsOfFeatures[defaultSubsetName] = new Array(); var subsetDefaultWidth = 0.002; // in degrees var markerLayer = null; scan25_layer = L.tileLayer.wms("http://www.geopicardie.fr/geoserver/wms?", { layers: 'geopicardie:picardie_scan25', format: 'image/jpeg', transparent: false, attribution: "Scan25 - IGN" }); ortho_layer = L.tileLayer.wms("http://www.geopicardie.fr/geoserver/wms?", { layers: 'reg22:picardie_ortho_2002', format: 'image/jpeg', transparent: true, attribution: "Orthophotographies 2001-2002 - GéoPicardie" }); osm_layer = L.tileLayer.wms("http://www.geopicardie.fr/geoserver/wms?", { layers: 'autres:osm_geo2france_bright', format: 'image/png', transparent: true, attribution: "OpenStreetMap - Géo2France" }); var baseMaps = { "Scan25": scan25_layer, "OpenStreetMap - Géo2France": osm_layer, "Photographies aériennes": ortho_layer }; scan25_layer.addTo(map); L.control.layers(baseMaps).addTo(map); var lightIcon = L.Icon.Default.extend({options: { iconUrl: 'images/marker_crp_small.png', iconSize: [46, 51], iconAnchor: [23, 48]}}); var normalIcon = L.Icon.Default.extend({options: {iconUrl: 'images/marker_crp_small.png', iconSize: [46, 51], iconAnchor: [23, 48]}}); var darkIcon = L.Icon.Default.extend({options: {iconUrl: 'images/marker_crp_small.png', iconSize: [46, 51], iconAnchor: [23, 48]}}); var oms = new OverlappingMarkerSpiderfier(map, {keepSpiderfied: true, nearbyDistance: 25}); $.getJSON('data/missions_regionales.js', function(data) { var bounds = new L.LatLngBounds(); $.each( data.features, function( i, feature ) { var loc = new L.LatLng(feature.geometry.coordinates[1], feature.geometry.coordinates[0]); bounds.extend(loc); subsetsOfFeatures[defaultSubsetName].push(feature); }); map.fitBounds(bounds); updateLeftMenu(); selectFirstMenuItem(); }) .fail(function( jqxhr, textStatus, error ) { console.log( textStatus + ', ' + error); // console.log( jqxhr.responseText); }) function nameOfFeature(feature) { name = ((feature.properties.Toponyme == null) ? feature.properties.VILLE + " - " + feature.properties.Type + " - " + feature.properties.ID : feature.properties.Toponyme); return name; } function featureSorfFunction(a, b) { nameA = nameOfFeature(a).toLowerCase(); nameB = nameOfFeature(b).toLowerCase(); return ((nameA < nameB) ? -1 : ((nameA > nameB) ? 1 : 0)); } function updateLeftMenu() { var features = subsetsOfFeatures[defaultSubsetName].sort(featureSorfFunction); $.each( features, function( i, feature ) { // Add a menu item for the subset name var menuItemId = "nav-feature-" + feature.properties.ID; var htmlCode = '<li><a id="' + menuItemId + '" href="#">' + nameOfFeature(feature) + '</a></li>'; $("#feature-list").append(htmlCode); // Set the function to be called by the click event on the menu item $("#"+menuItemId).on("click", function(e) { e.preventDefault(); zoomToFeature(feature); }); }); } function zoomToFeature(feature){ // Remove the active class to all the menu items var menuItemId = "nav-feature-" + feature.properties.id; $("#feature-list li").removeClass("active"); $("#" + menuItemId).parent().addClass("active"); if( markerLayer !== null) { // Remove the marker / layer map.removeLayer(markerLayer); } // Add the marker / layer var featureLoc = new L.LatLng(feature.geometry.coordinates[1], feature.geometry.coordinates[0]); markerLayer = new L.Marker(featureLoc, {icon: new lightIcon()}); map.addLayer(markerLayer); // Update the description $("#site-name").text(nameOfFeature(feature)); $("#site-type").text(feature.properties.Type); $("#site-id").text(feature.properties.ID); if(feature.properties.ADRESSE != null && feature.properties.CP != null && feature.properties.VILLE != null) { $("#site-address1").text(feature.properties.ADRESSE); } else { $("#site-address1").text(""); }; if(feature.properties.ADRESSE != null && feature.properties.CP != null && feature.properties.VILLE != null) { $("#site-address2").text(feature.properties.CP + " " + feature.properties.VILLE); } else { $("#site-address2").text(""); }; // Center the map on the feature location var newBounds = new L.LatLngBounds(); var nw = new L.LatLng(feature.geometry.coordinates[1] + subsetDefaultWidth, feature.geometry.coordinates[0] - subsetDefaultWidth); var se = new L.LatLng(feature.geometry.coordinates[1] - subsetDefaultWidth, feature.geometry.coordinates[0] + subsetDefaultWidth); newBounds.extend(nw); newBounds.extend(se); console.log(newBounds); console.log(subsetDefaultWidth); map.fitBounds(newBounds); }; function selectFirstMenuItem(){ zoomToFeature(subsetsOfFeatures[defaultSubsetName][0]); }; }); </script> </head> <body> <div class="container"> <div class="masthead"> <h3 class="muted">Géo2France - Leaflet, flux WMS et GeoJSON</h3> <p class="lead">Quelques exemples d'intégration des flux de données produits par le portail de Géo2France.</p> <div class="navbar"> <div class="navbar-inner"> <div class="container"> <ul class="nav"> <li><a href="gastronomie.html">Gastronomie</a></li> <li><a href="grande_guerre.html">Grande guerre</a></li> <li><a href="grande_guerre_details.html">Détails grande guerre</a></li> <li class="active"><a href="missions.html">Missions régionales du CR Picardie</a></li> <li><a href="amiens.html">Amiens</a></li> </ul> </div> </div> </div><!-- /.navbar --> </div> <div class="row"> <div class="span4"> <div class="well" style="padding: 8px 0;"> <ul id="feature-list" class="nav nav-list"> <li class="nav-header">Liste des sites</li> </ul> </div> </div> <div class="span7"> <div class="row"> <div class="span8"> <div class="well" style="padding: 10; height: 350px"> <div class="well" style="height: 250px; width: 250px; padding:2px; float: right;"> <div id="map" style="height: 250px; width: 250px"></div> </div> <h4 id="site-name">Nom du site</h4> <p id="site-type">Type du site</p> <p> <span id="site-address1">Adresse1</span><br/> <span id="site-address2">Adresse2</span> </p> </div> </div> </div> </div> </div> </div> </body> </html>
src/themes/shelloid/about.html
shelloid/shelloid-prelaunch-signup
<!DOCTYPE html> <html> <head> <title>About - Open source, extensible web application platform for building real-time IoT-enabled applications. </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <link rel="stylesheet" href="http://cdn2.editmysite.com/css/sites.css?buildTime=1234" type="text/css" /><link rel='stylesheet' type='text/css' href='http://cdn1.editmysite.com/editor/libraries/fancybox/fancybox.css?1234' /> <link rel='stylesheet' type='text/css' href='files/main_style.css?1421353982' title='wsite-theme-css' /> <link href='http://fonts.googleapis.com/css?family=Roboto:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' /> <style type='text/css'> .wsite-elements.wsite-not-footer div.paragraph, .wsite-elements.wsite-not-footer p, .wsite-elements.wsite-not-footer .product-block .product-title, .wsite-elements.wsite-not-footer .product-description, .wsite-elements.wsite-not-footer .wsite-form-field label, .wsite-elements.wsite-not-footer .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {} #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {} .wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{} .wsite-elements.wsite-not-footer h2, .wsite-elements.wsite-not-footer .product-long .product-title, .wsite-elements.wsite-not-footer .product-large .product-title, .wsite-elements.wsite-not-footer .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {} #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {} .wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{} #wsite-title {} .wsite-menu-default a {} .wsite-menu a {} .wsite-image div, .wsite-caption {} .galleryCaptionInnerText {} .fancybox-title {} .wslide-caption-text {} .wsite-phone {} .wsite-headline {} .wsite-headline-paragraph {} .wsite-button-inner {} .wsite-not-footer blockquote, #wsite-com-product-tab blockquote {} .wsite-footer blockquote {} .blog-header h2 a {} #wsite-content h2.wsite-product-title {} .wsite-product .wsite-product-price a {} </style> <script><!-- var STATIC_BASE = '//cdn1.editmysite.com/'; var STYLE_PREFIX = 'wsite'; //--> </script> <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script> <script src='http://cdn2.editmysite.com/js/site/main.js?buildTime=1234'></script> <script>_W.relinquish && _W.relinquish()</script> <script type='text/javascript'><!-- var IS_ARCHIVE=1; (function(jQuery){ function initFlyouts(){initPublishedFlyoutMenus([{"id":"728740534118580326","title":"Home","url":"index.html","target":""},{"id":"878885430355214105","title":"About","url":"about.html","target":""},{"id":"559965336946061335","title":"Blog","url":"blog.html","target":""},{"id":"622461769913262019","title":"Learn More","url":"learn-more.html","target":""},{"id":"871983640860946207","title":"Contact","url":"contact.html","target":""}],"878885430355214105","<li><a href=\"#\" data-membership-required=\"\" >{{title}}<\/a><\/li>",'active',false)} if (jQuery) { jQuery(document).ready(function() { jQuery(initFlyouts); }); }else{ if (Prototype.Browser.IE) window.onload = initFlyouts; else document.observe('dom:loaded', initFlyouts); } })(window._W && _W.jQuery) //--> </script> </head> <body class='short-header-page wsite-theme-light wsite-page-about'> <div id="banner-wrap" class="wsite-background"> <div id="banner-cover"> <div id="header-wrap"> <div class="container"> <table id="header"> <tr> <td id="logo"><span class='wsite-logo'><a href='index.html'><img src='images/shelloid-logo-transparent.png' /></a></span></td> <td id="header-right"> <div id="nav"> <ul class='wsite-menu-default'> <li id='pg728740534118580326'><a href="index.html" data-membership-required="0" >Home</a></li> <li id="active"><a href="about.html">About</a></li> <li id='pg622461769913262019'><a href="/learn-more.html#install" data-membership-required="0" >Install Shelloid</a></li> <!--<li id='pg622461769913262019'><a href="http://verify.shelloid.com" data-membership-required="0" >Shelloid Verify</a></li> --> <!--<li id='pg559965336946061335'><a href="http://shelloid.org" target="_new" data-membership-required="0" >Community</a></li>--> <li id='pg622461769913262019'><a href="learn-more.html" data-membership-required="0" >Learn More</a></li> </ul> </div> </td> </tr> </table> </div><!-- end container --> </div><!-- end header-wrap --> <div class="container"> <div id="banner"> <div class="wsite-header"></div> <div id="bannerright" class="landing-banner-outer"> <div class="landing-banner-mid"> <div class="landing-banner-inner"> <h2><span class='wsite-text wsite-headline'>About us</span></h2> </div><!-- end banner inner --> </div><!-- end banner mid --> </div><!-- end banner-right --> <div style="clear:both;"></div> </div><!-- end banner --> </div><!-- end container --> </div> </div><!-- end banner-wrap --> <div id="main-wrap"> <div class="container"> <div id='wsite-content' class='wsite-elements wsite-not-footer'> <h2 class="wsite-content-title" style="text-align:left;"><span style='text-decoration:none; font-style:normal; font-weight:200; color:rgb(43, 43, 43); '><span style="text-decoration:none; font-style:normal; font-weight:200; color:rgb(43, 43, 43); "><span style="text-decoration:none; font-style:normal; font-weight:200; color:rgb(43, 43, 43); "><span style="text-decoration:none; font-style:normal; font-weight:200; color:rgb(43, 43, 43); "><span style="text-decoration:none; font-style:normal; font-weight:200; color:rgb(43, 43, 43); "><span style="text-decoration:none; font-style:normal; font-weight:600; color:rgb(51, 51, 51); "><span style="text-decoration:none; font-style:normal; font-weight:600; color:rgb(51, 51, 51); "><span style="text-decoration:none; font-style:normal; font-weight:600; color:rgb(51, 51, 51); "><span style="text-decoration:none; font-style:normal; font-weight:600; color:rgb(51, 51, 51); "><font size="5"><span style="font-weight: normal;"> Shelloid Systems is a company formed by experienced developers with a passion for web, cloud, security, and IoT. Our vision is to create enabling technologies for building real-time, robust and secure IoT-enabled web applications and web services. <br/> <br/> We bring our years of expertise in cloud, mobile, network protocols, web, security, and embedded systems, to help you build dependable and secure web applications and services.<br/> <br/> We believe in contributing back to the community. Hence we have made our IoT application platform open source. The company offers cloud and enterprise services for the Shelloid IoT application platform including consultancy, training, and priority email support. <br/><br/> For consultancy, training, and enterprise support services for the Shelloid application server, you may write to us at contact&nbsp;AT&nbsp;shelloid DOT&nbsp;com.<br /></span></span></span></span></span></span></span></span></span></span></h2></div> </div><!-- end container --> </div><!-- end main-wrap --> <div id="footer-wrap"> <div class="container"> <div class='wsite-elements wsite-footer'> <div class="wsite-spacer" style="height:50px;"></div></div> </div><!-- end container --> </div><!-- end footer-wrap --> <!-- JavaScript --> <script type="text/javascript" src="files/theme/jquery.jqtransform.js" ></script> <script language="javascript"> jQuery(function() { var $ = jQuery; $('body').addClass('postload'); $('#main-wrap .wsite-form-radio-container, .wsite-com-product-option-dropdown, .wsite-com-product-option-radio').jqTransform(); $('body').waypoint(function() { $('#header-wrap').toggleClass('stuck'); }, { offset: -5 }); }); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-54343495-1', 'auto'); ga('send', 'pageview'); </script></body> </html>
index.html
dougalcorn/decent_exposure_pres
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Decent Exposure</title> <meta name="description" content="A helper for creating declarative interfaces in Rails controllers"> <meta name="author" content="Doug Alcorn"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <script type="text/javascript" src="//use.typekit.net/ono5mit.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <link rel="stylesheet" href="css/reveal.css"> <link rel="stylesheet" href="css/theme/default.css" id="theme"> <!-- <link rel="stylesheet" href="http://gaslight.dev/assets/application.css"> --> <!-- For syntax highlighting --> <link rel="stylesheet" href="lib/css/zenburn.css"> <style type="text/css"> body { font-family: 'ff-din-web', Times, 'Times New Roman', serif; font-size: 36px; font-weight: 200; letter-spacing: -0.02em; background: url(http://gaslight.co/assets/home/background.jpg); -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } .reveal .slides { margin-top: -340px; } .reveal code { padding-left: .5em; } .reveal .slides section { background-color: rgba(255, 255, 255, 0.5); padding: 2em; box-sizing: border-box; box-shadow: 0px 10px 30px #bbb; } .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, body { color: rgba(30, 30, 30, 0.85); font-family: 'ff-din-web', 'League Gothic', Impact, sans-serif; } .reveal h1, .reveal h2 { font-family: 'League Gothic', Impact, sans-serif; text-transform: uppercase; text-shadow: none; } .reveal h3, .reveal h4, .reveal h5, .reveal h6 { text-transform: none; letter-spacing: -2px; line-height: 1.1em; } .reveal h3 { color: rgba(55, 55, 55, 0.9); font-size: 140%; } .reveal h4 { color: rgba(55, 55, 55, 0.9); font-size: 80%; } #bars { width: 100%; position: absolute; top: 0; height: 15px; overflow: visible; margin: 0; padding: 0; } /* line 33, ../../app/assets/stylesheets/application.css.scss */ #bars li { width: 33.333%; float: left; height: 100%; list-style: none; -webkit-transition-property: height; -moz-transition-property: height; -o-transition-property: height; transition-property: height; -webkit-transition-duration: 0.25s; -moz-transition-duration: 0.25s; -o-transition-duration: 0.25s; transition-duration: 0.25s; -webkit-transition-timing-function: ease-in-out; -moz-transition-timing-function: ease-in-out; -o-transition-timing-function: ease-in-out; transition-timing-function: ease-in-out; } /* line 38, ../../app/assets/stylesheets/application.css.scss */ #bars li.brand1 { background: #d63f31; } /* line 39, ../../app/assets/stylesheets/application.css.scss */ #bars li.brand2 { background: #60b6e4; } /* line 40, ../../app/assets/stylesheets/application.css.scss */ #bars li.brand3 { background: #ebd018; } /* line 41, ../../app/assets/stylesheets/application.css.scss */ #bars li.active { height: 160%; } #logo { position: absolute; right: 1em; top: 1em; } #logo img { max-width: 100px; opacity: 0.5; -webkit-filter: grayscale(0.6); } </style> <!-- If the query includes 'print-pdf', use the PDF print sheet --> <script> document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' ); </script> <!--[if lt IE 9]> <script src="lib/js/html5shiv.js"></script> <![endif]--> </head> <body> <ul id='bars'> <li class='brand1'></li> <li class='brand2'></li> <li class='brand3'></li> </ul> <div class="reveal"> <!-- Any section element inside of this container is displayed as a slide --> <div class="slides"> <section> <h1>A Brief Introduction to Decent Exposure</h1> <h3>A helper for creating declarative interfaces in Rails controllers</h3> <h4>Doug Alcorn, doug@gaslight.co</h4> </section> <section> <h2>Scaffolding</h2> <pre><code class="ruby"> class EmployeesController < ApplicationController before_filter :get_company def index @employees = @company.employees.all end private def get_company @company = Company.find(params[:company_id]) end end </code></pre> <aside class="notes"> Here we have a before filter setting an instance variable used by the entire controller. We're further assigning an instance variable in the action. Before filters are somewhat hard to test and are easily forgotten. Also, you'll eventually find yourself scoping filters with :only or :except; which is yucky. </aside> </section> <section> <h2>Instance Variables in Views</h2> <pre><code> Hi, <%= @employee.name %> </code></pre> <blockquote cite="http://www.stephencelis.com/2008/09/06/rails-controllers-views-and-variables.html"> In object-oriented programming, an object uses instance variables to store private information. If you want to access an object’s instance variables, those variables should only be accessible through instance methods. At least, this is the expectation. </blockquote> </section> <section> <h2>Declarative Helper Methods</h2> <pre><code> class EmployeesController < ApplicationController helper_method :employees, :company def index; end protected def company @company ||= Company.find(params[:company_id]) end def employees @employees ||= company.employees.all end end </code></pre> <aside class="notes"> Here we have two helper methods that encapsulate how to initialize the needed instance variables. They are cached so that the SQL only happens on the first access. In the view you can just call <code>company</code> or <code>employees</code> to access those instances rather than the <code>@company</code> instance variable. The really good news here is that if you decide to refactor how the employees are accessed (like scoping it to "active" employees), it's easy to change in just one place. Also, since the helper methods do all the initialization, there's no actual code needed in the index action and it can go away. Finally, these helper methods are easy to stub out in testing to avoid hitting the database during controller specs. </aside> </section> <section> <h2>Trickier Example</h2> <pre><code> def employee @employee ||= if params[:id] Employee.find params[:id] else Employee.new params[:employee] end end </code></pre> <aside class="notes"> Here we see that the singular instance of employee is either initialized with it's id if it's passed in as a param (as in the show action) or it's newed up with passed in attributes (as in the create attribute). What we can see is there there are lots of corner cases that need to be thought through. </aside> </section> <section> <h2>Decent Exposure</h2> <pre><code> class EmployeesController < ApplicationController expose(:company) expose(:employees) { company.employees.all } expose(:employee) end </code></pre> <aside class="notes"> Here we're using decent exposure's <code>expose</code> method to create helper methods similar to our hand rolled helpers. Without any arguments, they do a pretty "decent" job of guessing what it should do to load the resource. With an optional block you can specify how the resource should be defined. </aside> </section> <section> <h2>More Info</h2> <ul> <li>These slides are at <a href="http://dougalcorn.github.com/decent_exposure_pres">dougalcorn.github.com/decent_exposure_pres</a></li> <li>Decent Exposure officially lives at <a href="https://github.com/voxdolo/decent_exposure">github.com/voxdolo/decent_exposure</a></li> <li>A <a href="http://asciicasts.com/episodes/259-decent-exposure">Rails Cast on Decent Exposure</a></li> </ul> </section> </div> </div> <div id="logo"> <img src="http://gaslight.co/assets/home/logo.png" /> </div> <script src="lib/js/head.min.js"></script> <script src="js/reveal.min.js"></script> <script> // Full list of configuration options available here: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ controls: true, progress: true, history: true, theme: Reveal.getQueryHash().theme, // available themes are in /css/theme transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/none // Optional libraries used to extend on reveal.js dependencies: [ { src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } }, { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, { src: 'plugin/zoom-js/zoom.js', condition: function() { return !!document.body.classList; } }, { src: '/socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } }, { src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } } ] }); </script> </body> </html>
lib/assets/css/css_compiled/@{photonImagePath}plugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/jquery.flot.resize.js.html
user-tony/photon-rails
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Login Page - Photon Admin Panel Theme</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"> <link rel="shortcut icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/favicon.ico"/> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/iosicon.png"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/> <!--[if IE]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" /> <![endif]--> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" /> <script type="text/javascript" src="js/plugins/excanvas.js"></script> <script type="text/javascript" src="js/plugins/html5shiv.js"></script> <script type="text/javascript" src="js/plugins/respond.min.js"></script> <script type="text/javascript" src="js/plugins/fixFontIcons.js"></script> <![endif]--> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/js/common.js"></script> </head> <body class="body-login"> <div class="nav-fixed-topright" style="visibility: hidden"> <ul class="nav nav-user-menu"> <li class="user-sub-menu-container"> <a href="javascript:;"> <i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i> </a> <ul class="nav user-sub-menu"> <li class="light"> <a href="javascript:;"> <i class='icon-photon stop'></i>Light Version </a> </li> <li class="dark"> <a href="javascript:;"> <i class='icon-photon stop'></i>Dark Version </a> </li> </ul> </li> <li> <a href="javascript:;"> <i class="icon-photon mail"></i> </a> </li> <li> <a href="javascript:;"> <i class="icon-photon comment_alt2_stroke"></i> <div class="notification-count">12</div> </a> </li> </ul> </div> <script> $(function(){ setTimeout(function(){ $('.nav-fixed-topright').removeAttr('style'); }, 300); $(window).scroll(function(){ if($('.breadcrumb-container').length){ var scrollState = $(window).scrollTop(); if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released'); else $('.nav-fixed-topright').removeClass('nav-released') } }); $('.user-sub-menu-container').on('click', function(){ $(this).toggleClass('active-user-menu'); }); $('.user-sub-menu .light').on('click', function(){ if ($('body').is('.light-version')) return; $('body').addClass('light-version'); setTimeout(function() { $.cookie('themeColor', 'light', { expires: 7, path: '/' }); }, 500); }); $('.user-sub-menu .dark').on('click', function(){ if ($('body').is('.light-version')) { $('body').removeClass('light-version'); $.cookie('themeColor', 'dark', { expires: 7, path: '/' }); } }); }); </script> <div class="container-login"> <div class="form-centering-wrapper"> <div class="form-window-login"> <div class="form-window-login-logo"> <div class="login-logo"> <img src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/css/css_compiled/js/plugins/js/plugins/prettify/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="jquery.flot.resize.js.html#">Sign Up &#187;</a> <a href="jquery.flot.resize.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a> </div> <div class="login-or">Or</div> <div class="login-input-area"> <form method="POST" action="dashboard.php"> <span class="help-block">Login With Your Photon Account</span> <input type="text" name="email" placeholder="Email"> <input type="password" name="password" placeholder="Password"> <button type="submit" class="btn btn-large btn-success btn-login">Login</button> </form> <a href="jquery.flot.resize.js.html#" class="forgot-pass">Forgot Your Password?</a> </div> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1936460-27']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
_layouts/post.html
ilivewithian/theoldsewingfactory.com
--- layout: layout --- <section class="content"> <h1> <a href="{{ page.url }}">{{ page.title }}</a> </h1> <section class="byline"> {{ page.date | date: "%B %e, %Y" }} </section> {{ content }} <section class="meta"> <h3>Discussion, links, and tweets</h3> <div id="disqus_thread"></div> <script type="text/javascript"> (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'https://theoldsewingfactory.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> <section class="copy"> <a href="https://twitter.com/ilivewithian" target="_blank"> <img src="{{ site.gravatar_url }}?s=142" height="50" width="50" /> </a> <p> I'm a developer at Purplebricks and I sporadicaly tweet <a href="https://twitter.com/ilivewithian" target="_blank">here</a>. These posts in no way represent the views of my employeer. </p> <a href="http://twitter.com/share" class="twitter-share-button" data-count="none" data-via="ilivewithian">Tweet</a> <a href="http://twitter.com/ilivewithian" class="twitter-follow-button" data-show-count="false">Follow @ilivewithian</a> <script src="https://platform.twitter.com/widgets.js" type="text/javascript"></script> </section> </section> </section>
index-multiple.html
camsjams/puremvc-js-util-statemachine-demo-locks
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <link type="text/css" rel="stylesheet" href="css/reset.css" /> <link type="text/css" rel="stylesheet" href="css/demo.css" /> <title>PureMVC JavaScript Utility: State Machine Demo - Locks</title> </head> <body> <div id="LockApp_v1"> <div class="container featured"> <div class="content"> <img src="images/cat.jpg" alt="a cat picture" title="sup cat" /> </div> <div class="accessControl locked"> <div class="icon"></div> </div> </div><!-- .container.featured --> <div class="container"> <h1 class="title">Loading ...</h1> <form action="#"> What is the password? <input type="text" name="password" id="password" /> <input type="submit" name="submit" value="unlock image" /> <br /> <div class="hints"> <ol> <li class="hint hint1"> <strong>[Hint] complete this quote</strong>: <br /> <em>Wait a minute. Wait a minute, Doc. Ah... Are you telling me that you built a time machine... out of a </em><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>? </li> <li class="hint hint2"> If you have the word right, make sure to upper camel case it! </li> <li class="hint hint3"> Last Chance: It rhymes with <strong>MeLorean</strong> ... </li> </ol> </div> <p class="attempts"></p> </form> </div><!-- .container --> </div><!-- #LockApp_v1 --> <div id="LockApp_v2"> <div class="container featured"> <div class="content"> <img src="images/cat-jazz.jpg" alt="another cat picture with jazz hands" title="new cat" /> </div> <div class="accessControl locked"> <div class="icon"></div> </div> </div><!-- .container.featured --> <div class="container"> <h1 class="title">Loading ...</h1> <form action="#"> What is the password? <input type="text" name="password" id="password" /> <input type="submit" name="submit" value="unlock image" /> <br /> <div class="hints"> <ol> <li class="hint hint1"> <strong>[Hint] complete this quote</strong>: <br /> <em>Wait a minute. Wait a minute, Doc. Ah... Are you telling me that you built a time machine... out of a </em><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span>? </li> <li class="hint hint2"> If you have the word right, make sure to upper camel case it! </li> <li class="hint hint3"> Last Chance: It rhymes with <strong>MeLorean</strong> ... </li> </ol> </div> <p class="attempts"></p> </form> </div><!-- .container --> </div><!-- #LockApp_v2 --> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <!-- START: puremvc core files --> <script type="text/javascript" src="puremvc-js-util-statemachine/lib-multicore/puremvc-1.0.1.min.js"></script> <script type="text/javascript" src="puremvc-js-util-statemachine/bin/puremvc.utility.statemachine-1.0.1.min.js"></script> <!-- END: puremvc core files --> <!------- START: LockApp files -------> <!-- APPLICATION CONSTANTS --> <script type="text/javascript" src="js/AppConstants.js"></script> <script type="text/javascript" src="js/model/type/StateMachineType.js"></script> <script type="text/javascript" src="js/model/type/NotificationTypes.js"></script> <script type="text/javascript" src="js/view/events/ViewEvents.js"></script> <!-- VIEW COMPONENTS --> <script type="text/javascript" src="js/view/component/LockForm.js"></script> <!-- MEDIATORS --> <script type="text/javascript" src="js/view/mediator/AccessControlMediator.js"></script> <!-- COMMANDS --> <script src="js/controller/StartupCommand.js"></script> <script src="js/controller/states/StartingCommand.js"></script> <script src="js/controller/states/FailingCommand.js"></script> <script src="js/controller/states/LockedCommand.js"></script> <script src="js/controller/states/ExitingLockedCommand.js"></script> <script src="js/controller/states/UnlockedCommand.js"></script> <script src="js/controller/states/InjectFSMCommand.js"></script> <!-- MAIN APPLICATION --> <script type="text/javascript" src="js/lockApp.js"></script> <!------- END: LockApp files -------> <!-- START THE APPLICATION --> <script> document.addEventListener('DOMContentLoaded', function() { var app1 = new lockApp.Application('_v1'), app2 = new lockApp.Application('_v2'); }); </script> </body> </html>
agda/static/css/bootstrap-responsive.min.css
BILS/agda
/*! * Bootstrap Responsive v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ @ -ms-viewport { width: device-width } .clearfix { *zoom: 1 } .clearfix:before,.clearfix:after { display: table; line-height: 0; content: "" } .clearfix:after { clear: both } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0 } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .visible-phone { display: none !important } .visible-tablet { display: none !important } .hidden-desktop { display: none !important } .visible-desktop { display: inherit !important } @media ( min-width :768px) and (max-width:979px) { .hidden-desktop { display: inherit !important } .visible-desktop { display: none !important } .visible-tablet { display: inherit !important } .hidden-tablet { display: none !important } } @media ( max-width :767px) { .hidden-desktop { display: inherit !important } .visible-desktop { display: none !important } .visible-phone { display: inherit !important } .hidden-phone { display: none !important } } @media ( min-width :1200px) { .row { margin-left: -30px; *zoom: 1 } .row:before,.row:after { display: table; line-height: 0; content: "" } .row:after { clear: both } [class*="span"] { float: left; min-height: 1px; margin-left: 30px } .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container { width: 1170px } .span12 { width: 1170px } .span11 { width: 1070px } .span10 { width: 970px } .span9 { width: 870px } .span8 { width: 770px } .span7 { width: 670px } .span6 { width: 570px } .span5 { width: 470px } .span4 { width: 370px } .span3 { width: 270px } .span2 { width: 170px } .span1 { width: 70px } .offset12 { margin-left: 1230px } .offset11 { margin-left: 1130px } .offset10 { margin-left: 1030px } .offset9 { margin-left: 930px } .offset8 { margin-left: 830px } .offset7 { margin-left: 730px } .offset6 { margin-left: 630px } .offset5 { margin-left: 530px } .offset4 { margin-left: 430px } .offset3 { margin-left: 330px } .offset2 { margin-left: 230px } .offset1 { margin-left: 130px } .row-fluid { width: 100%; *zoom: 1 } .row-fluid:before,.row-fluid:after { display: table; line-height: 0; content: "" } .row-fluid:after { clear: both } .row-fluid [class*="span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.564102564102564%; *margin-left: 2.5109110747408616%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .row-fluid [class*="span"]:first-child { margin-left: 0 } .row-fluid .controls-row [class*="span"]+[class*="span"] { margin-left: 2.564102564102564% } .row-fluid .span12 { width: 100%; *width: 99.94680851063829% } .row-fluid .span11 { width: 91.45299145299145%; *width: 91.39979996362975% } .row-fluid .span10 { width: 82.90598290598291%; *width: 82.8527914166212% } .row-fluid .span9 { width: 74.35897435897436%; *width: 74.30578286961266% } .row-fluid .span8 { width: 65.81196581196582%; *width: 65.75877432260411% } .row-fluid .span7 { width: 57.26495726495726%; *width: 57.21176577559556% } .row-fluid .span6 { width: 48.717948717948715%; *width: 48.664757228587014% } .row-fluid .span5 { width: 40.17094017094017%; *width: 40.11774868157847% } .row-fluid .span4 { width: 31.623931623931625%; *width: 31.570740134569924% } .row-fluid .span3 { width: 23.076923076923077%; *width: 23.023731587561375% } .row-fluid .span2 { width: 14.52991452991453%; *width: 14.476723040552828% } .row-fluid .span1 { width: 5.982905982905983%; *width: 5.929714493544281% } .row-fluid .offset12 { margin-left: 105.12820512820512%; *margin-left: 105.02182214948171% } .row-fluid .offset12:first-child { margin-left: 102.56410256410257%; *margin-left: 102.45771958537915% } .row-fluid .offset11 { margin-left: 96.58119658119658%; *margin-left: 96.47481360247316% } .row-fluid .offset11:first-child { margin-left: 94.01709401709402%; *margin-left: 93.91071103837061% } .row-fluid .offset10 { margin-left: 88.03418803418803%; *margin-left: 87.92780505546462% } .row-fluid .offset10:first-child { margin-left: 85.47008547008548%; *margin-left: 85.36370249136206% } .row-fluid .offset9 { margin-left: 79.48717948717949%; *margin-left: 79.38079650845607% } .row-fluid .offset9:first-child { margin-left: 76.92307692307693%; *margin-left: 76.81669394435352% } .row-fluid .offset8 { margin-left: 70.94017094017094%; *margin-left: 70.83378796144753% } .row-fluid .offset8:first-child { margin-left: 68.37606837606839%; *margin-left: 68.26968539734497% } .row-fluid .offset7 { margin-left: 62.393162393162385%; *margin-left: 62.28677941443899% } .row-fluid .offset7:first-child { margin-left: 59.82905982905982%; *margin-left: 59.72267685033642% } .row-fluid .offset6 { margin-left: 53.84615384615384%; *margin-left: 53.739770867430444% } .row-fluid .offset6:first-child { margin-left: 51.28205128205128%; *margin-left: 51.175668303327875% } .row-fluid .offset5 { margin-left: 45.299145299145295%; *margin-left: 45.1927623204219% } .row-fluid .offset5:first-child { margin-left: 42.73504273504273%; *margin-left: 42.62865975631933% } .row-fluid .offset4 { margin-left: 36.75213675213675%; *margin-left: 36.645753773413354% } .row-fluid .offset4:first-child { margin-left: 34.18803418803419%; *margin-left: 34.081651209310785% } .row-fluid .offset3 { margin-left: 28.205128205128204%; *margin-left: 28.0987452264048% } .row-fluid .offset3:first-child { margin-left: 25.641025641025642%; *margin-left: 25.53464266230224% } .row-fluid .offset2 { margin-left: 19.65811965811966%; *margin-left: 19.551736679396257% } .row-fluid .offset2:first-child { margin-left: 17.094017094017094%; *margin-left: 16.98763411529369% } .row-fluid .offset1 { margin-left: 11.11111111111111%; *margin-left: 11.004728132387708% } .row-fluid .offset1:first-child { margin-left: 8.547008547008547%; *margin-left: 8.440625568285142% } input,textarea,.uneditable-input { margin-left: 0 } .controls-row [class*="span"]+[class*="span"] { margin-left: 30px } input.span12,textarea.span12,.uneditable-input.span12 { width: 1156px } input.span11,textarea.span11,.uneditable-input.span11 { width: 1056px } input.span10,textarea.span10,.uneditable-input.span10 { width: 956px } input.span9,textarea.span9,.uneditable-input.span9 { width: 856px } input.span8,textarea.span8,.uneditable-input.span8 { width: 756px } input.span7,textarea.span7,.uneditable-input.span7 { width: 656px } input.span6,textarea.span6,.uneditable-input.span6 { width: 556px } input.span5,textarea.span5,.uneditable-input.span5 { width: 456px } input.span4,textarea.span4,.uneditable-input.span4 { width: 356px } input.span3,textarea.span3,.uneditable-input.span3 { width: 256px } input.span2,textarea.span2,.uneditable-input.span2 { width: 156px } input.span1,textarea.span1,.uneditable-input.span1 { width: 56px } .thumbnails { margin-left: -30px } .thumbnails>li { margin-left: 30px } .row-fluid .thumbnails { margin-left: 0 } } @media ( min-width :768px) and (max-width:979px) { .row { margin-left: -20px; *zoom: 1 } .row:before,.row:after { display: table; line-height: 0; content: "" } .row:after { clear: both } [class*="span"] { float: left; min-height: 1px; margin-left: 20px } .container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container { width: 724px } .span12 { width: 724px } .span11 { width: 662px } .span10 { width: 600px } .span9 { width: 538px } .span8 { width: 476px } .span7 { width: 414px } .span6 { width: 352px } .span5 { width: 290px } .span4 { width: 228px } .span3 { width: 166px } .span2 { width: 104px } .span1 { width: 42px } .offset12 { margin-left: 764px } .offset11 { margin-left: 702px } .offset10 { margin-left: 640px } .offset9 { margin-left: 578px } .offset8 { margin-left: 516px } .offset7 { margin-left: 454px } .offset6 { margin-left: 392px } .offset5 { margin-left: 330px } .offset4 { margin-left: 268px } .offset3 { margin-left: 206px } .offset2 { margin-left: 144px } .offset1 { margin-left: 82px } .row-fluid { width: 100%; *zoom: 1 } .row-fluid:before,.row-fluid:after { display: table; line-height: 0; content: "" } .row-fluid:after { clear: both } .row-fluid [class*="span"] { display: block; float: left; width: 100%; min-height: 30px; margin-left: 2.7624309392265194%; *margin-left: 2.709239449864817%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .row-fluid [class*="span"]:first-child { margin-left: 0 } .row-fluid .controls-row [class*="span"]+[class*="span"] { margin-left: 2.7624309392265194% } .row-fluid .span12 { width: 100%; *width: 99.94680851063829% } .row-fluid .span11 { width: 91.43646408839778%; *width: 91.38327259903608% } .row-fluid .span10 { width: 82.87292817679558%; *width: 82.81973668743387% } .row-fluid .span9 { width: 74.30939226519337%; *width: 74.25620077583166% } .row-fluid .span8 { width: 65.74585635359117%; *width: 65.69266486422946% } .row-fluid .span7 { width: 57.18232044198895%; *width: 57.12912895262725% } .row-fluid .span6 { width: 48.61878453038674%; *width: 48.56559304102504% } .row-fluid .span5 { width: 40.05524861878453%; *width: 40.00205712942283% } .row-fluid .span4 { width: 31.491712707182323%; *width: 31.43852121782062% } .row-fluid .span3 { width: 22.92817679558011%; *width: 22.87498530621841% } .row-fluid .span2 { width: 14.3646408839779%; *width: 14.311449394616199% } .row-fluid .span1 { width: 5.801104972375691%; *width: 5.747913483013988% } .row-fluid .offset12 { margin-left: 105.52486187845304%; *margin-left: 105.41847889972962% } .row-fluid .offset12:first-child { margin-left: 102.76243093922652%; *margin-left: 102.6560479605031% } .row-fluid .offset11 { margin-left: 96.96132596685082%; *margin-left: 96.8549429881274% } .row-fluid .offset11:first-child { margin-left: 94.1988950276243%; *margin-left: 94.09251204890089% } .row-fluid .offset10 { margin-left: 88.39779005524862%; *margin-left: 88.2914070765252% } .row-fluid .offset10:first-child { margin-left: 85.6353591160221%; *margin-left: 85.52897613729868% } .row-fluid .offset9 { margin-left: 79.8342541436464%; *margin-left: 79.72787116492299% } .row-fluid .offset9:first-child { margin-left: 77.07182320441989%; *margin-left: 76.96544022569647% } .row-fluid .offset8 { margin-left: 71.2707182320442%; *margin-left: 71.16433525332079% } .row-fluid .offset8:first-child { margin-left: 68.50828729281768%; *margin-left: 68.40190431409427% } .row-fluid .offset7 { margin-left: 62.70718232044199%; *margin-left: 62.600799341718584% } .row-fluid .offset7:first-child { margin-left: 59.94475138121547%; *margin-left: 59.838368402492065% } .row-fluid .offset6 { margin-left: 54.14364640883978%; *margin-left: 54.037263430116376% } .row-fluid .offset6:first-child { margin-left: 51.38121546961326%; *margin-left: 51.27483249088986% } .row-fluid .offset5 { margin-left: 45.58011049723757%; *margin-left: 45.47372751851417% } .row-fluid .offset5:first-child { margin-left: 42.81767955801105%; *margin-left: 42.71129657928765% } .row-fluid .offset4 { margin-left: 37.01657458563536%; *margin-left: 36.91019160691196% } .row-fluid .offset4:first-child { margin-left: 34.25414364640884%; *margin-left: 34.14776066768544% } .row-fluid .offset3 { margin-left: 28.45303867403315%; *margin-left: 28.346655695309746% } .row-fluid .offset3:first-child { margin-left: 25.69060773480663%; *margin-left: 25.584224756083227% } .row-fluid .offset2 { margin-left: 19.88950276243094%; *margin-left: 19.783119783707537% } .row-fluid .offset2:first-child { margin-left: 17.12707182320442%; *margin-left: 17.02068884448102% } .row-fluid .offset1 { margin-left: 11.32596685082873%; *margin-left: 11.219583872105325% } .row-fluid .offset1:first-child { margin-left: 8.56353591160221%; *margin-left: 8.457152932878806% } input,textarea,.uneditable-input { margin-left: 0 } .controls-row [class*="span"]+[class*="span"] { margin-left: 20px } input.span12,textarea.span12,.uneditable-input.span12 { width: 710px } input.span11,textarea.span11,.uneditable-input.span11 { width: 648px } input.span10,textarea.span10,.uneditable-input.span10 { width: 586px } input.span9,textarea.span9,.uneditable-input.span9 { width: 524px } input.span8,textarea.span8,.uneditable-input.span8 { width: 462px } input.span7,textarea.span7,.uneditable-input.span7 { width: 400px } input.span6,textarea.span6,.uneditable-input.span6 { width: 338px } input.span5,textarea.span5,.uneditable-input.span5 { width: 276px } input.span4,textarea.span4,.uneditable-input.span4 { width: 214px } input.span3,textarea.span3,.uneditable-input.span3 { width: 152px } input.span2,textarea.span2,.uneditable-input.span2 { width: 90px } input.span1,textarea.span1,.uneditable-input.span1 { width: 28px } } @media ( max-width :767px) { body { padding-right: 20px; padding-left: 20px } .navbar-fixed-top,.navbar-fixed-bottom,.navbar-static-top { margin-right: -20px; margin-left: -20px } .container-fluid { padding: 0 } .dl-horizontal dt { float: none; width: auto; clear: none; text-align: left } .dl-horizontal dd { margin-left: 0 } .container { width: auto } .row-fluid { width: 100% } .row,.thumbnails { margin-left: 0 } .thumbnails>li { float: none; margin-left: 0 } [class*="span"],.uneditable-input[class*="span"],.row-fluid [class*="span"] { display: block; float: none; width: 100%; margin-left: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .span12,.row-fluid .span12 { width: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .row-fluid [class*="offset"]:first-child { margin-left: 0 } .input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box } .input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"] { display: inline-block; width: auto } .controls-row [class*="span"]+[class*="span"] { margin-left: 0 } .modal { position: fixed; top: 20px; right: 20px; left: 20px; width: auto; margin: 0 } .modal.fade { top: -100px } .modal.fade.in { top: 20px } } @media ( max-width :480px) { .nav-collapse { -webkit-transform: translate3d(0, 0, 0) } .page-header h1 small { display: block; line-height: 20px } input[type="checkbox"],input[type="radio"] { border: 1px solid #ccc } .form-horizontal .control-label { float: none; width: auto; padding-top: 0; text-align: left } .form-horizontal .controls { margin-left: 0 } .form-horizontal .control-list { padding-top: 0 } .form-horizontal .form-actions { padding-right: 10px; padding-left: 10px } .media .pull-left,.media .pull-right { display: block; float: none; margin-bottom: 10px } .media-object { margin-right: 0; margin-left: 0 } .modal { top: 10px; right: 10px; left: 10px } .modal-header .close { padding: 10px; margin: -10px } .carousel-caption { position: static } } @media ( max-width :979px) { body { padding-top: 0 } .navbar-fixed-top,.navbar-fixed-bottom { position: static } .navbar-fixed-top { margin-bottom: 20px } .navbar-fixed-bottom { margin-top: 20px } .navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner { padding: 5px } .navbar .container { width: auto; padding: 0 } .navbar .brand { padding-right: 10px; padding-left: 10px; margin: 0 0 0 -5px } .nav-collapse { clear: both } .nav-collapse .nav { float: none; margin: 0 0 10px } .nav-collapse .nav>li { float: none } .nav-collapse .nav>li>a { margin-bottom: 2px } .nav-collapse .nav>.divider-vertical { display: none } .nav-collapse .nav .nav-header { color: #777; text-shadow: none } .nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a { padding: 9px 15px; font-weight: bold; color: #777; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px } .nav-collapse .btn { padding: 4px 10px 4px; font-weight: normal; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px } .nav-collapse .dropdown-menu li+li a { margin-bottom: 2px } .nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover { background-color: #f2f2f2 } .navbar-inverse .nav-collapse .nav>li>a,.navbar-inverse .nav-collapse .dropdown-menu a { color: #999 } .navbar-inverse .nav-collapse .nav>li>a:hover,.navbar-inverse .nav-collapse .dropdown-menu a:hover { background-color: #111 } .nav-collapse.in .btn-group { padding: 0; margin-top: 5px } .nav-collapse .dropdown-menu { position: static; top: auto; left: auto; display: none; float: none; max-width: none; padding: 0; margin: 0 15px; background-color: transparent; border: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none } .nav-collapse .open>.dropdown-menu { display: block } .nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after { display: none } .nav-collapse .dropdown-menu .divider { display: none } .nav-collapse .nav>li>.dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after { display: none } .nav-collapse .navbar-form,.nav-collapse .navbar-search { float: none; padding: 10px 15px; margin: 10px 0; border-top: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1) } .navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search { border-top-color: #111; border-bottom-color: #111 } .navbar .nav-collapse .nav.pull-right { float: none; margin-left: 0 } .nav-collapse,.nav-collapse.collapse { height: 0; overflow: hidden } .navbar .btn-navbar { display: block } .navbar-static .navbar-inner { padding-right: 10px; padding-left: 10px } } @media ( min-width :980px) { .nav-collapse.collapse { height: auto !important; overflow: visible !important } }
packages/vue/demo/index.ejs.html
plantain-00/schema-based-json-editor
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" href="../../core/demo/css/dragula.min.css"> <link rel="stylesheet" href="../../core/demo/css/highlightjs/default.css"> <link rel="stylesheet" href="../../core/demo/css/markdown-tip.css"> <link rel="stylesheet" href="../../core/demo/css/gh-fork-ribbon.css"> <link rel="stylesheet" href="../../core/demo/css/select2.min.css"> <link rel="stylesheet" href="../../core/demo/css/file-uploader.min.css"> <link rel="stylesheet" data-name="vs/editor/editor.main" href="../../core/demo/vs/editor/editor.main.css"> <style> * { -webkit-font-smoothing: antialiased; } input, textarea { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } .github-fork-ribbon { position: fixed; } .custom-class-string > label { font-weight: 700; color: green; } .monaco-editor * { font-family: unset; } </style> </head> <body> <a class="github-fork-ribbon right-bottom" href="https://github.com/plantain-00/schema-based-json-editor" data-ribbon="Fork me on GitHub" title="Fork me on GitHub" target="_blank" rel="noopener">Fork me on GitHub</a> <div id="container"></div> <script>var require = { paths: { 'vs': '../../core/demo/vs' } };</script> <script src="../../core/demo/vs/loader.js"></script> <script src="../../core/demo/vs/editor/editor.main.nls.js"></script> <script src="../../core/demo/vs/editor/editor.main.js"></script> <script src="./<%=vueDemoVendorBundleJs %>" crossOrigin="anonymous" integrity="<%=sri.vueDemoVendorBundleJs %>"></script> <script src="./<%=vueDemoIndexBundleJs %>" crossOrigin="anonymous" integrity="<%=sri.vueDemoIndexBundleJs %>"></script> </body> </html>
src/templates/updateDeliveryCost.html
BlueRabbits/bluerabbit-admin
<div class="row" ng-controller="MasterCtrl"> <div ng-show="loadingIcon" style="text-align:center; text-align: left; background-color: rgba(128, 128, 128, 0.2); height: 100%; top: 4%; width: 100%; position: absolute; z-index: 20;" class="loader-style"> <img src="img/loader.gif" class="loading-Indicator" /> </div> <div class="col-lg-4"> <form ng-submit="updateDeliveryCost()"> <div class="form-group"> <label for="exampleInputEmail1">Minimum Order Value</label> <input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" ng-model="minimumCost" placeholder="Enter Minimum Order Value" required> </div> <div class="form-group"> <label for="exampleInputEmail1">Delivery Charges</label> <input type="text" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" ng-model="deliveryCost" placeholder="Enter Delivery Charges" required> </div> <button type="submit" class="btn" style="background-color: #e40046;color:white;">Update</button> </form> </div> <div class="col-lg-4"> <table class="table table-bordered"> <thead> <tr> <!-- <th></th> --> <!-- <th></th> --> <!-- <th> ID</th> --> <th>Minimum Order Value</th> <th>Delivery Charges</th> </tr> </thead> <tbody> <tr ng-repeat="deliveryCost in getDeliveryCost"> <!-- <td><button class="btn btn-xs" style="background-color: #e40046;" ng-click="deleteBanner(bannerList._id)">Delete</button></td> --> <!-- <td><button class="btn btn-xs btn-success"ng-click="editTodayDeals(todayDealsList._id,todayDealsList.fromDate,todayDealsList.fromTime,todayDealsList.toDate,todayDealsList.toTime,todayDealsList.product._id)">Edit</button></td> --> <td>{{deliveryCost.minimumOrderAmount}}</td> <td>{{deliveryCost.deliveryOrderAmount}}</td> <!-- <td>{{todayDealsList.product.cat}}</td> --> </tr> </tbody> </table> </div> </div>
invoices/templates/assigned_to_email_template.html
MicroPyramid/Django-CRM
{% extends 'root_email_template_new.html' %} {% block heading %} Hello {{ user }} {% endblock heading %} {% block content_body %} {{invoice_created_by}} shared an invoice with you - {{invoice_title}} {% endblock content_body %} {% block button_link %} <div style="margin-bottom:20px"> <a href="{{url}}" style="display:inline-block;width:170px;background:#38abdd;padding:10px;text-align:center;color:#fff;font-size:1rem;font-weight:600;margin:0px auto;margin-bottom:20px;border-radius:5px;text-decoration:none;display:block">Click Here</a> </div> {% endblock button_link %}
test/fixtures/inlinesrc/base.css
xiaokaike/grunt-inline-data
body{ color:#fff; margin: 0; padding: 0; } .box{ color: #eee; display: block; }
example/templates/stats.html
Project-EPIC/crowdrouter
<!doctype html> <head> {% block title %}<title>SimpleCrowdRouter</title>{% endblock title %} <link rel="stylesheet" href="{{ url_for('static', filename='css/basscss.min.css')}}" type="text/css"></link> <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css')}}" type="text/css"></link> <script src="{{ url_for('static', filename='js/jquery.min.js')}}" type="text/javascript"></script> {% block js %} {% endblock js %} </head> <body style="padding:20px;"> {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'success' %} <div class="bold center p2 white bg-green rounded"> {{ message }}</div> {% else %} <div class="bold center p2 mb2 white bg-red rounded"> {{ message }}</div> {% endif %} {% endfor %} {% endif %} {% endwith %} {% block body %} <h1> SimpleCrowdRouter Statistix </h1> <h3> Here are the numbers...</h3> <a href="/" class="btn btn-primary">Go Back</a> {% if report %} {% for workflow_name in report['task_counts'].keys() %} <br/> <h4>{{ workflow_name }}</h4> <table class="table-light overflow-hidden bg-white rounded" style="margin:10px; width:1000px;"> <thead class="bg-darken-1"> <th style="width:200px;">Name</th> <th style="width:400px;"># GET Requests</th> <th style="width:400px;"># POST Requests</th> </thead> <tbody> {% for task_name in report.task_counts[workflow_name].keys() %} <tr> <td>{{ task_name }}</td> <td>{{ report.task_counts[workflow_name][task_name]['GET'] }}</td> <td>{{ report.task_counts[workflow_name][task_name]['POST'] }}</td> </tr> {% endfor %} </tbody> </table> {% endfor %} {% else %} <h4> Nothing to report on yet!</h4> {% endif %} {% endblock body %} <a href="/" class="btn btn-primary">Go Back</a> </body> </html>
app/dpscalc/dpscalc.html
Xezz/poetools
<div> Initial DPS calc page <br/> <form name="calcForm"> <div class="row"> <span class="col-xs-1">Quality</span> <input name="quality" ng-model="lowerStats.quality" type="number" class="col-xs-1"> </div> <div class="row"> <span class="col-xs-1">Physical Damage min</span> <input name="minDamage" ng-model="upperStats.minPhysDamage" type="number" class="col-xs-1"> <span class="col-xs-1">-</span> <input name="maxDamage" ng-model="upperStats.maxPhysDamage" type="number" class="col-xs-1"> <span class="col-xs-1">max</span> </div> <div class="row"> <span class="col-xs-1">Critical Strike Chance</span> <input name="attackSpeed" ng-model="upperStats.critChance" type="number" step="any" class="col-xs-1"> </div> <div class="row"><span class="col-xs-1">Attacks per Second</span> <input name="attackSpeed" ng-model="upperStats.attackSpeed" type="number" step="any" class="col-xs-1"> </div> <div class="row"> <span class="col-xs-1">Inc. % Physical Damage</span> <input name="enhancedDamage" ng-model="lowerStats.enhancedDamage" type="number" class="col-xs-1"> </div> <div class="row"> <span class="col-xs-1">Adds min Damage</span> <input name="extraDamageMin" ng-model="lowerStats.minPhysDamage" type="number" class="col-xs-1"> <span class="col-xs-1">-</span> <input name="extraDamageMax" ng-model="lowerStats.maxPhysDamage" type="number" class="col-xs-1"> <span class="col-xs-1">max Damage</span> </div> <button type="button" class="btn btn-primary" ng-click="calculateDamage()">Calc</button> <div class="row"> <select ng-options="item.name for item in categories" ng-model="selectedCategory" ng-change="updateCategorySelection()" class="col-xs-1"></select> <select ng-options="items.name for items in selectedCategory.data" ng-model="selectedSubCategory" ng-change="calculateDamage()" class="col-xs-1"></select> </div> </form> <div>{{calculatedStats.dps}}</div> <div>{{selectedCategory.name}}</div> <div>crafted dps: {{calculatedStats.craftedDps}}</div> <textarea ng-model="unparsedText"> </textarea> </div>
realflow_plugins/sdk/doc/doxygen/html/hy__mesh__vdb_8h.html
madoodia/codeLab
<!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>RF_SDK: E:/Projects/NextLimit/RealFlow/RFSdk/include/rf_sdk/sdk/hy_mesh_vdb.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.4 --> <div id="top"> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">RF_SDK&#160;<span id="projectnumber">9.0</span></div> </td> </tr> </tbody> </table> </div> <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> </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> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">E:/Projects/NextLimit/RealFlow/RFSdk/include/rf_sdk/sdk/hy_mesh_vdb.h File Reference</div> </div> </div> <div class="contents"> <div class="textblock"><code>#include &lt;core/nl_basic.h&gt;</code><br/> <code>#include &quot;rf_sdk/rf_sdkdefs.h&quot;</code><br/> <code>#include &quot;<a class="el" href="rfnodetype_8h_source.html">rf_sdk/sdk/rfnodetype.h</a>&quot;</code><br/> <code>#include &quot;<a class="el" href="rfsdklibdefs_8h_source.html">rf_sdk/sdk/rfsdklibdefs.h</a>&quot;</code><br/> </div> <p><a href="hy__mesh__vdb_8h_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="nested-classes"></a> Classes</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classnextlimit_1_1rf__sdk_1_1_h_y___mesh___v_d_b.html">nextlimit::rf_sdk::HY_Mesh_VDB</a></td></tr> <tr><td colspan="2"><h2><a name="namespaces"></a> Namespaces</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacenextlimit.html">nextlimit</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacenextlimit_1_1realflow.html">nextlimit::realflow</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacenextlimit_1_1realflow_1_1fluid__wrapper.html">nextlimit::realflow::fluid_wrapper</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacenextlimit_1_1rf__sdk.html">nextlimit::rf_sdk</a></td></tr> </table> </div> <hr class="footer"/><address class="footer"><small>Generated on Fri Jul 24 2015 13:59:57 for RF_SDK by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address> </body> </html>
archives/2014/index.html
timqian/timqian.github.io
<!DOCTYPE html> <html> <head><meta name="generator" content="Hexo 3.8.0"> <!-- so meta --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="HandheldFriendly" content="True"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta property="og:type" content="website"> <meta property="og:title" content="timqian"> <meta property="og:url" content="https://timqian.com/archives/2014/index.html"> <meta property="og:site_name" content="timqian"> <meta property="og:locale" content="default"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="timqian"> <link rel="shortcut icon" href="/images/favicon.ico"> <link rel="icon" type="image/png" href="/images/favicon-192x192.png" sizes="192x192"> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png"> <!-- title --> <title>Writing: 2014</title> <!-- styles --> <link rel="stylesheet" href="/css/style.css"> <!-- persian styles --> <link rel="stylesheet" href="/css/rtl.css"> <!-- rss --> </head> <body class="max-width mx-auto px3 ltr"> <div class="content index py4"> <header id="header"> <a href="/"> <div id="logo" style="background-image: url(/images/logo.png);"></div> <div id="title"> <h1>timqian</h1> </div> </a> <div id="nav"> <ul> <li class="icon"> <a href="#"><i class="fas fa-bars fa-2x"></i></a> </li> <li><a href="/">Home</a></li> <li><a href="/about/">About</a></li> <li><a href="/archives/">Writing</a></li> <li><a href="/search/">Search</a></li> </ul> </div> </header> <div id="archive"> <ul class="post-list"> <h2>2014</h2> <li class="post-item"> <div class="meta"> <time datetime="2014-12-01T16:00:00.000Z" itemprop="datePublished">2014-12-02</time> </div> <span> <a class="" href="/2014/12/02/second_quantization/">解决多体问题的二次量子化方法(专注费米子)</a> </span> </li> <li class="post-item"> <div class="meta"> <time datetime="2014-03-04T16:00:00.000Z" itemprop="datePublished">2014-03-05</time> </div> <span> <a class="" href="/2014/03/05/hello-world/">Hexo commands</a> </span> </li> </ul> </div> <footer id="footer"> <div class="footer-left"> Copyright &copy; 2019 timqian </div> <div class="footer-right"> <nav> <ul> <li><a href="/">Home</a></li> <li><a href="/about/">About</a></li> <li><a href="/archives/">Writing</a></li> <li><a href="/search/">Search</a></li> </ul> </nav> </div> </footer> </div> <!-- styles --> <link rel="stylesheet" href="/lib/font-awesome/css/all.min.css"> <link rel="stylesheet" href="/lib/justified-gallery/css/justifiedGallery.min.css"> <!-- jquery --> <script src="/lib/jquery/jquery.min.js"></script> <script src="/lib/justified-gallery/js/jquery.justifiedGallery.min.js"></script> <script src="/js/main.js"></script> <!-- search --> <!-- Google Analytics --> <!-- Baidu Analytics --> <!-- Disqus Comments --> <script type="text/javascript"> var disqus_shortname = 'timqian'; (function(){ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/count.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); }()); </script> </body> </html>
packages/rocketchat_theme/client/imports/components/userInfo.css
pkgodara/Rocket.Chat
.rc-user-info { z-index: 1; display: flex; flex-direction: column; margin-bottom: var(--default-padding); align-items: center; &-container { position: absolute; top: 0; right: 0; left: 0; display: flex; flex-direction: column; background-color: var(--color-white); &.animated { transition: transform 0.45s cubic-bezier(0.5, 0, 0, 1), opacity 0.125s ease-out 0.1s, -webkit-transform 0.45s cubic-bezier(0.5, 0, 0, 1); } &.animated-hidden { transform: translateX(100%); opacity: 0; } } &-wrapper { overflow-y: auto; flex: 1 1; } &__banner { position: absolute; z-index: 1; bottom: 50px; display: flex; width: 132px; height: 32px; margin: 0 -6px; color: #ffffff; border-radius: 3px; background: #1d74f5; align-items: center; -webkit-justify-content: center; } &__avatar { position: relative; width: 120px; height: 120px; margin: var(--default-padding); border-radius: 2px; .archived & > .avatar { opacity: 0.8; filter: blur(1px); } } &__name { width: 100%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 500; line-height: 28px; } &__username { color: var(--color-gray); font-size: 14px; } &__scroll { overflow-x: hidden; overflow-y: auto; margin: 0 -1.5rem; padding: 0 1.5rem; &.archived .rc-user-info__name, &.archived .rc-user-info__label { color: #9ea2a8; } } &__flex { display: flex; & > .rc-button { flex: 1; margin: 0 5px; &:first-child { margin-left: 0; } &:last-child { margin-right: 0; } } } &__block { margin: 47px 0; padding: 28px 0; border-top: 1px solid #d7d7d7; border-bottom: 1px solid #d7d7d7; } &__row { flex-direction: row; padding: 15px 0; & > .rc-switch { flex: 1; color: #a1a1a1; & > .rc-switch__label > .rc-switch__text { flex: 1; } } &--separator { margin: 14px 0; border-bottom: 1px solid #d7d7d7; } } &__label { display: block; margin-bottom: 37px; font-size: 15px; font-weight: 400; } &__description { padding: 8px 0; color: #9ea2a8; } &-action { display: flex; overflow: hidden; margin-bottom: var(--default-padding); justify-content: center; &__item { overflow: hidden; margin: 0 8px; white-space: nowrap; text-overflow: ellipsis; } &__icon { font-size: 20px; } } &-details { margin-bottom: calc(var(--default-small-padding) * -1); padding: var(--default-padding); background-color: #f7f8fa; &__item:not(:last-child) { margin-bottom: var(--default-small-padding); } &__label { display: inline-block; margin-bottom: var(--default-small-padding); color: var(--color-gray); font-size: 10px; } &__info { overflow: hidden; text-overflow: ellipsis; color: var(--color-dark); font-size: 16px; line-height: 18px; } &__item { display: flex; flex-direction: column; } } &__config { &-header { display: flex; align-items: center; } &-label { margin: 0 0.75rem; font-size: 0.75rem; font-weight: 600; } &-icon { font-size: 1.25rem; } &-content { display: flex; margin: 0.75rem 2rem; align-items: flex-end; &-icon { color: #444444; font-size: 1.25rem; } & .icon-play-circled { cursor: pointer; } } &-name, &-value { font-size: 0.75rem; font-weight: 600; } &-name { color: #777777; } &-value { display: flex; margin: 0 0.25rem; cursor: pointer; text-transform: capitalize; color: #1d73f3; align-items: flex-end; } } } .rc-switch-double { display: flex; width: 100%; word-break: break-word; color: #444444; &__description { margin: 5px 2px; font-size: 13px; } &__label { flex: 1 1 100%; font-size: 16px; &:first-child { text-align: right; } &:last-child { text-align: left; } &.disabled { opacity: 0.3; } } & .rc-switch { flex: 0 0; margin: 0 23px; & .rc-switch__button { margin: 0; } } }
assets/css/style.css
syifakha/4GIS
body{ font-family: Bariol; } .sidebar{ background-color: #fff; height: 100%; } #map{ height: 610px; width: 100%; margin-left: 50%; } .tabs .tab a{ color: #00bfa5; } .tab a.active{ border-bottom: 2px solid #00bfa5; z-index: 99; position: relative; } .tabs .tab a:hover { color: #80cbc4; } .tabs .indicator{ background-color: #80cbc4; } .side-nav.fixed a:hover{ background-color: #fff; } .side-nav a, .side-nav.fixed a{ padding: 0px; } input.form-search{ border: 2px solid #00bfa5; border-radius: 25px; height: 2.5rem; padding-left: 40px; } .header{ margin: 20px; } .btn{ height: 2.5rem; border-radius: 25px; background-color: #00bfa5; color: #fff; margin-left: -25px; text-transform: none; margin: 6px; line-height: 32px; padding: 0px 1rem; } .photo-h, .photo-v, .photo { position: relative; width: 360px; height: 200px; overflow: hidden; float: left; } .photo-h, .photo img { opacity: 1; filter: alpha(opacity=100); position: absolute; left: 50%; top: 50%; height: 100%; width: auto; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); margin: 0px !important; } .photo-v img { opacity: 1; filter: alpha(opacity=100); position: absolute; left: 50%; top: 50%; width: 100%; width: auto; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); margin: 0px !important; } #dist{ margin-top: 16px; font-size: 18px; text-align: right; } @font-face{ font-family: "Bariol"; src: url('../font/Bariol_Regular.otf'); }
assets/css/m_menu_bar.css
dawyda/betor
@charset "utf-8"; /* CSS Document */ #top-head{ position:relative; background:black; min-height:125px; display:inline-block; } @media screen and (min-width: 960px) { #top-head{ background:url(/betor/assets/img/top_bg.png) repeat-x; min-width:960px; } } @media screen and (max-width: 740px) { #top-head{ max-width:700px; } } @media screen and (min-width: 960px) { #top-nav{ position:relative; margin-bottom:5px; } #top-nav ul{ position:relative; margin-top:5px; left:50px; font-size:9.2pt; display:inline-block; } #top-nav ul li{ float:left; list-style:none; text-align:center; } #top-nav ul li a{ display:block; max-width:60pt; height:15px; color:#23ff0c; text-decoration:none; border-right:1px solid #23ff0c; margin:2px; padding:0px 5px 5px 0px; } } @media screen and (max-width: 740px) { #top-nav{ position:relative; margin-bottom:5pt; } #top-nav ul{ position:relative; margin-top:5pt; left:10px; font-size:9.2pt; display:block; } #top-nav ul li{ list-style:none; text-align:center; } } #top-nav{ position:relative; margin-bottom:5px; } #top-nav ul{ position:relative; margin-top:5px; font-size:9.2pt; display:inline-block; } #top-nav ul li{ float:left; list-style:none; text-align:center; } #top-nav ul li a{ display:block; max-width:60pt; height:15px; color:#23ff0c; text-decoration:none; border-right:1px solid #23ff0c; margin:2px; padding:0px 5px 5px 0px; } #top-nav ul li a:hover{ text-decoration:underline; } @media screen and (min-width: 700px){ #main-nav{ position:relative; bottom:13px; background:url(/betor/assets/img/menu_nav_bg.png) repeat-x; max-width:840px; min-height:48px; border:1px solid #b81902; border-top-right-radius:6px; border-bottom-right-radius:6px; box-shadow:1px 1px 2px #0F0F0F; margin-top:30pt; } #main-nav ul{ position:relative; top:0px; left:-16px; height:inherit; } #main-nav ul li{ list-style:none; height:inherit; float:left; padding-left:15px; padding-right:15px; } #main-nav ul li a{ display:block; width:auto; height:35px; padding:13px 5px 0px 5px; text-decoration:none; font-size:16px; color:#ffff00; text-shadow:1px 1px 1px #141414; outline:none; } #main-nav ul li a:hover{ background:#6f1001; padding:14px 5px 0px 5px; height:34px; transition:background 300ms ease-out; } } @media screen and (max-width: 699px){ #main-nav{ position:relative; max-width:720px; min-height:48px; border:1px solid #b81902; border-top-right-radius:6px; border-bottom-right-radius:6px; box-shadow:1px 1px 2px #0F0F0F; display:inline-block; margin-top:25pt; /**csss bg gradient **/ background: #ff1c11; /* Old browsers */ background: -moz-linear-gradient(top, #ff1c11 0%, #d20401 100%); /* FF3.6-15 */ background: -webkit-linear-gradient(top, #ff1c11 0%,#d20401 100%); /* Chrome10-25,Safari5.1-6 */ background: linear-gradient(to bottom, #ff1c11 0%,#d20401 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff1c11', endColorstr='#d20401',GradientType=0 ); } #main-nav ul{ position:relative; margin-left:5px; } #main-nav ul li{ list-style:none; height:30pt; min-width:300px; border-bottom:1px solid #BF6249; } #main-nav ul li a{ padding:13px 5px 0px 5px; text-decoration:none; display:block; height:20pt; font-size:13pt; color:#ffff00; text-shadow:1px 1px 1px #141414; outline:none; } #main-nav ul li a:hover{ background:#6f1001; transition:background 300ms ease-out; } } .clear{ clear:both; } @media screen and (max-width: 740px) { #login{ position:relative; margin:5pt; font-family:Arial, Helvetica, sans-serif; font-size:12pt; } #login #email{ position:relative; padding:2px; width:155px; color:#333; border-radius:4pt; border:1px solid #24ff0e; } #login #password{ position:relative; padding:2px; width:115px; border-radius:4pt; border:1px solid #24ff0e; } #login #submit{ position:relative; padding:2pt; width:24pt; height:25pt; font-size:11pt; font-weight:bold; } } @media screen and (min-width: 960px) { #login{ position:absolute; right:3px; top:2px; min-width:200px; } #login #email{ position:relative; padding:2px; width:155px; font-size:13px; font-family:Arial, Helvetica, sans-serif; color:#333; border-radius:4px; border:1px solid #24ff0e; } #login #password{ position:relative; padding:2px; width:115px; font-size:13px; font-family:Arial, Helvetica, sans-serif; border-radius:4px; border:1px solid #24ff0e; } #login #submit{ position:relative; padding:2px; width:24px; height:25px; font-size:12px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; } } .log-hold{ display:inline-block; margin:0pt 5pt 5pt 0pt; } #login_form input.txt:focus{ background:#EFEFEF; box-shadow:1px 1px 2px #24ff0e; }
examples/colorpicker/index.html
atatanasov/gijgo
<ul> <li><a href="ColorPicker.Base.uiLibrary.MaterialDesign.html">ColorPicker.Base.uiLibrary.MaterialDesign</a></li> <li><a href="ColorPicker.Base.uiLibrary.Bootstrap.3.html">ColorPicker.Base.uiLibrary.Bootstrap.3</a></li> <li><a href="ColorPicker.Base.uiLibrary.Bootstrap.4.html">ColorPicker.Base.uiLibrary.Bootstrap.4</a></li> <li><a href="ColorPicker.Base.value.Javascript.html">ColorPicker.Base.value.Javascript</a></li> <li><a href="ColorPicker.Base.value.HTML.html">ColorPicker.Base.value.HTML</a></li> <li><a href="ColorPicker.Base.change.sample.html">ColorPicker.Base.change.sample</a></li> <li><a href="ColorPicker.Base.select.sample.html">ColorPicker.Base.select.sample</a></li> <li><a href="ColorPicker.Base.open.sample.html">ColorPicker.Base.open.sample</a></li> <li><a href="ColorPicker.Base.close.sample.html">ColorPicker.Base.close.sample</a></li> <li><a href="ColorPicker.Base.value.Get.html">ColorPicker.Base.value.Get</a></li> <li><a href="ColorPicker.Base.value.Set.html">ColorPicker.Base.value.Set</a></li> <li><a href="ColorPicker.Base.destroy.sample.html">ColorPicker.Base.destroy.sample</a></li> <li><a href="ColorPicker.Base.open.sample.html">ColorPicker.Base.open.sample</a></li> <li><a href="ColorPicker.Base.close.sample.html">ColorPicker.Base.close.sample</a></li> </ul>
tag/5040/index.html
OctavioMaia/octaviomaia.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>5040 - Octávio&#x27;s Blog</title> <meta name="description" content="" /> <meta name="HandheldFriendly" content="True" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="shortcut icon" href="https://OctavioMaia.github.io/favicon.ico"> <link rel="stylesheet" type="text/css" href="//OctavioMaia.github.io/themes/casper/assets/css/screen.css?v=1510588089156" /> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" /> <link rel="canonical" href="https://OctavioMaia.github.io/https://OctavioMaia.github.io/tag/5040/" /> <meta name="referrer" content="origin" /> <meta property="og:site_name" content="Octávio&#x27;s Blog" /> <meta property="og:type" content="website" /> <meta property="og:title" content="5040 - Octávio&#x27;s Blog" /> <meta property="og:url" content="https://OctavioMaia.github.io/https://OctavioMaia.github.io/tag/5040/" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:title" content="5040 - Octávio&#x27;s Blog" /> <meta name="twitter:url" content="https://OctavioMaia.github.io/https://OctavioMaia.github.io/tag/5040/" /> <script type="application/ld+json"> null </script> <meta name="generator" content="HubPress" /> <link rel="alternate" type="application/rss+xml" title="Octávio&#x27;s Blog" href="https://OctavioMaia.github.io/rss/" /> </head> <body class="tag-template tag-5040 nav-closed"> <div class="site-wrapper"> <header class="main-header tag-head " style="background-image: url(http://i.imgur.com/p9xyIhS.jpg)"> <nav class="main-nav overlay clearfix"> </nav> <div class="vertical"> <div class="main-header-content inner"> <h1 class="page-title">5040</h1> <h2 class="page-description"> A 1-post collection </h2> </div> </div> </header> <main class="content" role="main"> <div class="extra-pagination inner"> <nav class="pagination" role="navigation"> <span class="page-number">Page 1 of 1</span> </nav> </div> <article class="post tag-DAL tag-Cyclone tag-prop tag-5040 tag-freestyle"> <header class="post-header"> <h2 class="post-title"><a href="https://OctavioMaia.github.io/2017/11/13/DAL-Pop-Cyclone-T5040C-Review.html">DALProp Cyclone T5040C - Review</a></h2> </header> <section class="post-excerpt"> <p>Overview The Cyclone 5040 is the new addition to the vast Cyclone fleet of propellers. The first generation 5045C was renowed as being one of the <a class="read-more" href="https://OctavioMaia.github.io/2017/11/13/DAL-Pop-Cyclone-T5040C-Review.html">&raquo;</a></p> </section> <footer class="post-meta"> <img class="author-thumb" src="https://avatars1.githubusercontent.com/u/11216766?v&#x3D;4" alt="Octávio Maia" nopin="nopin" /> <a href="https://OctavioMaia.github.io/author/OctavioMaia/">Octávio Maia</a> on <a href="https://OctavioMaia.github.io/tag/DAL/">DAL</a>, <a href="https://OctavioMaia.github.io/tag/Cyclone/"> Cyclone</a>, <a href="https://OctavioMaia.github.io/tag/prop/"> prop</a>, <a href="https://OctavioMaia.github.io/tag/5040/"> 5040</a>, <a href="https://OctavioMaia.github.io/tag/freestyle/"> freestyle</a> <time class="post-date" datetime="2017-11-13">13 November 2017</time> </footer> </article> <nav class="pagination" role="navigation"> <span class="page-number">Page 1 of 1</span> </nav> </main> <footer class="site-footer clearfix"> <section class="copyright"><a href="https://OctavioMaia.github.io">Octávio&#x27;s Blog</a> &copy; 2017</section> <section class="poweredby">Proudly published with <a href="http://hubpress.io">HubPress</a></section> </footer> </div> <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js?v="></script> <script type="text/javascript"> jQuery( document ).ready(function() { // change date with ago jQuery('ago.ago').each(function(){ var element = jQuery(this).parent(); element.html( moment(element.text()).fromNow()); }); }); hljs.initHighlightingOnLoad(); </script> <script type="text/javascript" src="//OctavioMaia.github.io/themes/casper/assets/js/jquery.fitvids.js?v=1510588089156"></script> <script type="text/javascript" src="//OctavioMaia.github.io/themes/casper/assets/js/index.js?v=1510588089156"></script> </body> </html>
src/curves.html
sundayliu/logomaker
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <!--<noscript>r = a(1-sin"theta")</noscript>--> <canvas id="cardioid" width="600" height="600" style="background: lightblue"> 您的浏览器不支持canvas! </canvas> <script> var cr = document.getElementById("cardioid"); var W = cr.width/2, H = cr.height/3, R = 150; var c = cr.getContext("2d"); var G = 360, g = 0, T = Math.PI*2, t = T/G; c.save(); c.translate(W, H); c.rotate(-T/4); //c.fillStyle = "red"; while(g < G){ c.save();//c.translate(W, H); c.rotate(g*t); c.beginPath(); c.arc(0, -R*(1-Math.sin(++g*t)), 13, 0, 360, false); c.closePath(); c.fill(); c.restore(); } c.restore(); g = 0; (function draw(){ if(g < G){ c.save(); c.translate(W, H); c.rotate(-T/4 + g*t); c.fillStyle = "yellow"; c.beginPath(); c.arc(0, -R*(1-Math.sin(++g*t)), 5, 0, 360, false); c.closePath(); c.fill(); c.restore(); } setTimeout(draw, 1); })(); </script> </body> </html>
Desktop/Processing.app/Contents/Java/modes/java/reference/split_.html
sylviawan/oop_assignment1
<!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" lang="en"> <head> <title>split() \ Language (API) \ Processing 2+</title> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="Author" content="Processing Foundation" /> <meta name="Publisher" content="Processing Foundation" /> <meta name="Keywords" content="Processing, Sketchbook, Programming, Coding, Code, Art, Design" /> <meta name="Description" content="Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. Since 2001, Processing has promoted software literacy within the visual arts and visual literacy within technology." /> <meta name="Copyright" content="All contents copyright the Processing Foundation, Ben Fry, Casey Reas, and the MIT Media Laboratory" /> <script src="javascript/modernizr-2.6.2.touch.js" type="text/javascript"></script> <link href="css/style.css" rel="stylesheet" type="text/css" /> </head> <body id="Langauge-en" onload="" > <!-- ==================================== PAGE ============================ --> <div id="container"> <!-- ==================================== HEADER ============================ --> <div id="ribbon"> <ul class="left"> <li class="highlight"><a href="http://processing.org/">Processing</a></li> <li><a href="http://p5js.org/">p5.js</a></li> <li><a href="http://py.processing.org/">Processing.py</a></li> <li><a href="http://android.processing.org/">Processing for Android</a></li> </ul> <ul class="right"> <li><a href="https://processingfoundation.org/">Processing Foundation</a></li> </ul> <div class="clear"></div> </div> <div id="header"> <a href="/" title="Back to the Processing cover."><div class="processing-logo no-cover" alt="Processing cover"></div></a> <form name="search" method="get" action="//www.google.com/search"> <p><input type="hidden" name="as_sitesearch" value="processing.org" /> <input type="text" name="as_q" value="" size="20" class="text" /> <input type="submit" value=" " /></p> </form> </div> <a id="TOP" name="TOP"></a> <div id="navigation"> <div class="navBar" id="mainnav"> <a href="index.html" class='active'>Language</a><br> <a href="libraries/index.html" >Libraries</a><br> <a href="tools/index.html">Tools</a><br> <a href="environment/index.html">Environment</a><br> </div> <script> document.querySelectorAll(".processing-logo")[0].className = "processing-logo"; </script> </div> <!-- ==================================== CONTENT - Headers ============================ --> <div class="content"> <p class="ref-notice">This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, <a href="https://github.com/processing/processing-docs/issues?state=open">please let us know</a>. If you prefer a more technical reference, visit the <a href="http://processing.github.io/processing-javadocs/core/">Processing Core Javadoc</a> and <a href="http://processing.github.io/processing-javadocs/libraries/">Libraries Javadoc</a>.</p> <table cellpadding="0" cellspacing="0" border="0" class="ref-item"> <tr class="name-row"> <th scope="row">Name</th> <td><h3>split()</h3></td> </tr> <tr class=""> <tr class=""><th scope="row">Examples</th><td><div class="example"><pre > String men = "Chernenko,Andropov,Brezhnev"; String[] list = split(men, ','); // list[0] is now "Chernenko", list[1] is "Andropov"... </pre></div> <hr class="noshade" noshade="noshade" size="1"> <div class="example"><pre > String numbers = "8 67 5 309"; int[] nums = int(split(numbers, ' ')); // nums[0] is now 8, nums[1] is now 67... </pre></div> <hr class="noshade" noshade="noshade" size="1"> <div class="example"><pre > String men = "Chernenko ] Andropov ] Brezhnev"; String[] list = split(men, " ] "); // list[0] is now "Chernenko", list[1] is "Andropov"... </pre></div> </td></tr> <tr class=""> <th scope="row">Description</th> <td> The <b>split()</b> function breaks a String into pieces using a character or string as the delimiter. The <b>delim</b> parameter specifies the character or characters that mark the boundaries between each piece. A String[] array is returned that contains each of the pieces. <br /> <br /> If the result is a set of numbers, you can convert the String[] array to to a float[] or int[] array using the datatype conversion functions <b>int()</b> and <b>float()</b>. (See the second example above.) <br /> <br /> The <b>splitTokens()</b> function works in a similar fashion, except that it splits using a range of characters instead of a specific character or sequence. <!-- <br /><br /> This function uses regular expressions to determine how the <b>delim</b> parameter divides the <b>str</b> parameter. Therefore, if you use characters such parentheses and brackets that are used with regular expressions as a part of the <b>delim</b> parameter, you'll need to put two blackslashes (\) in front of the character (see example above). You can read more about <a href="http://en.wikipedia.org/wiki/Regular_expression">regular expressions</a> and <a href="http://en.wikipedia.org/wiki/Escape_character">escape characters</a> on Wikipedia. --> </td> </tr> <tr class=""><th scope="row">Syntax</th><td><pre>split(<kbd>value</kbd>, <kbd>delim</kbd>)</pre></td></tr> <tr class=""> <th scope="row">Parameters</th><td><table cellpadding="0" cellspacing="0" border="0"><tr class=""> <th scope="row" class="code">value</th> <td>String: the String to be split</td> </tr> <tr class=""> <th scope="row" class="code">delim</th> <td>char: the character or String used to separate the data</td> </tr></table></td> </tr> <tr class=""><th scope="row">Returns</th><td class="code">String[]</td></tr> </table> Updated on July 30, 2016 04:31:57am EDT<br /><br /> <!-- Creative Commons License --> <div class="license"> <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border: none" src="http://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a> </div> <!-- <?xpacket begin='' id=''?> <x:xmpmeta xmlns:x='adobe:ns:meta/'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <rdf:Description rdf:about='' xmlns:xapRights='http://ns.adobe.com/xap/1.0/rights/'> <xapRights:Marked>True</xapRights:Marked> </rdf:Description> <rdf:Description rdf:about='' xmlns:xapRights='http://ns.adobe.com/xap/1.0/rights/' > <xapRights:UsageTerms> <rdf:Alt> <rdf:li xml:lang='x-default' >This work is licensed under a &lt;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;&gt;Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License&lt;/a&gt;.</rdf:li> <rdf:li xml:lang='en' >This work is licensed under a &lt;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;&gt;Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License&lt;/a&gt;.</rdf:li> </rdf:Alt> </xapRights:UsageTerms> </rdf:Description> <rdf:Description rdf:about='' xmlns:cc='http://creativecommons.org/ns#'> <cc:license rdf:resource='http://creativecommons.org/licenses/by-nc-sa/4.0/'/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end='r'?> --> </div> <!-- ==================================== FOOTER ============================ --> <div id="footer"> <div id="copyright">Processing is an open project intiated by <a href="http://benfry.com/">Ben Fry</a> and <a href="http://reas.com">Casey Reas</a>. It is developed by a <a href="http://processing.org/about/people/">team of volunteers</a>.</div> <div id="colophon"> <a href="copyright.html">&copy; Info</a> </div> </div> </div> <script src="javascript/jquery-1.9.1.min.js"></script> <script src="javascript/site.js" type="text/javascript"></script> </body> </html>
sample/app/templates/main.html
teabow/aero.js
<main> <h1><%=title%></h1> <section id="subContent"></section> <button class="btnHi">Say hi!</button> <button class="btnSecondPage">Go to second page</button> <ul></ul> </main> <footer> </footer>
public/Windows 10 x64 (18362.329)/_DIRTY_PAGE_THRESHOLDS.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18362.329)</h4><br> <h2>_DIRTY_PAGE_THRESHOLDS</h2> <font face="arial"> +0x000 DirtyPageThreshold : Uint8B<br> +0x008 DirtyPageThresholdTop : Uint8B<br> +0x010 DirtyPageThresholdBottom : Uint8B<br> +0x018 DirtyPageTarget : Uint4B<br> +0x020 AggregateAvailablePages : Uint8B<br> +0x028 AggregateDirtyPages : Uint8B<br> +0x030 AvailableHistory : Uint4B<br> </font></body></html>
assets/css/screen.css
eliso1219/Casper
/* ========================================================================== Table of Contents ========================================================================== */ /* 0. Normalize 1. Icons 2. General 3. Utilities 4. General 5. Single Post 6. Author Profile 7. Read More 8. Third Party Elements 9. Pagination 10. Subscribe 11. Footer 12. Media Queries (Tablet) 13. Media Queries (Mobile) 14. Animations */ /* ========================================================================== 0. normalize.css v3.0.3 | MIT License | git.io/normalize | (minified) ========================================================================== */ 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, main, menu, 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-color: 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 { 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; } 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; } /* ========================================================================== 1. Icons - Sets up the icon font and respective classes ========================================================================== */ /* Import the font file with the icons in it */ @font-face { font-family: "iconfont"; src:url("../fonts/iconfont.eot?v=1"); src:url("../fonts/iconfont.eot?v=1#iefix") format("embedded-opentype"), url("../fonts/iconfont.woff?v=1") format("woff"), url("../fonts/iconfont.ttf?v=1") format("truetype"), url("../fonts/iconfont.svg?v=1#iconfont") format("svg"); font-weight: normal; font-style: normal; } .iconfont{ font-family:"iconfont" !important; font-size:12px;font-style:normal; -webkit-font-smoothing: antialiased; -webkit-text-stroke-width: 0.2px; -moz-osx-font-smoothing: grayscale; display: inline-block; margin-right: 3px; } .iconshare{ font-size: 22px; } .iconshare:hover{ color: rgb(74, 74, 74); } /* IMPORTANT: When making any changes to the icon font, be sure to increment the version number by 1 in the @font-face rule. `?v=1` becomes `?v=2` This forces browsers to download the new font file. */ /* ========================================================================== 2. General - Setting up some base styles ========================================================================== */ html { height: 100%; max-height: 100%; font-size: 62.5%; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { height: 100%; max-height: 100%; font-family: "Merriweather", serif; letter-spacing: 0.01rem; font-size: 1.8rem; line-height: 1.75em; color: #3A4145; -webkit-font-feature-settings: 'kern' 1; -moz-font-feature-settings: 'kern' 1; -o-font-feature-settings: 'kern' 1; text-rendering: geometricPrecision; } ::-moz-selection { background: #D6EDFF; } ::selection { background: #D6EDFF; } h1, h2, h3, h4, h5, h6 { -webkit-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -moz-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; -o-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1; color: #2E2E2E; line-height: 1.15em; margin: 0 0 0.4em 0; text-rendering: geometricPrecision; } h1 { font-size: 5rem; letter-spacing: -2px; text-indent: -3px; } h2 { font-size: 3.6rem; letter-spacing: -1px; } h3 { font-size: 3rem; letter-spacing: -0.6px; } h4 { font-size: 2.5rem; } h5 { font-size: 2rem; } h6 { font-size: 2rem; } a { color: #4A4A4A; transition: color 0.3s ease; } a:hover { color: #111; } p, ul, ol, dl { -webkit-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1; -moz-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1; -o-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1; margin: 0 0 1.75em 0; text-rendering: geometricPrecision; } ol, ul { padding-left: 3rem; } ol ol, ul ul, ul ol, ol ul { margin: 0 0 0.4em 0; padding-left: 2em; } dl dt { float: left; width: 180px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; font-weight: 700; margin-bottom: 1em; } dl dd { margin-left: 200px; margin-bottom: 1em } li { margin: 0.4em 0; } li li { margin: 0; } li > p:last-of-type { margin-bottom: 0; } hr { display: block; height: 1px; border: 0; border-top: #EFEFEF 1px solid; margin: 3.2em 0; padding: 0; } blockquote { -moz-box-sizing: border-box; box-sizing: border-box; margin: 1.75em 0 1.75em -2.2em; padding: 0 0 0 1.75em; border-left: #4A4A4A 0.4em solid; } blockquote p { margin: 0.8em 0; font-style: italic; } blockquote small { display: inline-block; margin: 0.8em 0 0.8em 1.5em; font-size: 0.9em; color: #CCC; } blockquote small:before { content: "\2014 \00A0"; } blockquote cite { font-weight: 700; } blockquote cite a { font-weight: normal; } mark { background-color: #fdffb6; } code, tt { padding: 1px 3px; font-family: Inconsolata, monospace, sans-serif; font-size: 0.85em; white-space: pre-wrap; border: #E3EDF3 1px solid; background: #F7FAFB; border-radius: 2px; -webkit-font-feature-settings: "liga" 0; -moz-font-feature-settings: "liga" 0; font-feature-settings: "liga" 0; } pre { -moz-box-sizing: border-box; box-sizing: border-box; margin: 0 0 1.75em 0; border: #E3EDF3 1px solid; width: 100%; padding: 10px; font-family: Inconsolata, monospace, sans-serif; font-size: 0.9em; white-space: pre; overflow: auto; background: #F7FAFB; border-radius: 3px; } pre code, pre tt { font-size: inherit; white-space: pre-wrap; background: transparent; border: none; padding: 0; } kbd { display: inline-block; margin-bottom: 0.4em; padding: 1px 8px; border: #CCC 1px solid; color: #666; text-shadow: #FFF 0 1px 0; font-size: 0.9em; font-weight: 700; background: #F4F4F4; border-radius: 4px; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 0 0 #fff inset; } table { -moz-box-sizing: border-box; box-sizing: border-box; margin: 1.75em 0; width: 100%; max-width: 100%; background-color: transparent; } table th, table td { padding: 8px; line-height: 20px; text-align: left; vertical-align: top; border-top: #EFEFEF 1px solid; } table th { color: #000; } table caption + thead tr:first-child th, table caption + thead tr:first-child td, table colgroup + thead tr:first-child th, table colgroup + thead tr:first-child td, table thead:first-child tr:first-child th, table thead:first-child tr:first-child td { border-top: 0; } table tbody + tbody { border-top: #EFEFEF 2px solid; } table table table { background-color: #FFF; } table tbody > tr:nth-child(odd) > td, table tbody > tr:nth-child(odd) > th { background-color: #F6F6F6; } table.plain tbody > tr:nth-child(odd) > td, table.plain tbody > tr:nth-child(odd) > th { background: transparent; } iframe, .fluid-width-video-wrapper { display: block; margin: 1.75em 0; } /* When a video is inside the fitvids wrapper, drop the margin on the iframe, cause it breaks stuff. */ .fluid-width-video-wrapper iframe { margin: 0; } textarea, select, input { width: 260px; padding: 6px 9px; margin: 0 0 5px 0; outline: 0; font-family: 'Open Sans', sans-serif; font-size: 1.6rem; font-weight: 100; line-height: 1.4em; background: #fff; border: #e7eef2 1px solid; border-radius: 4px; box-shadow: none; -webkit-appearance: none; } textarea { width: 100%; max-width: 340px; min-width: 250px; height: auto; min-height: 80px; } input[type="text"]:focus, input[type="email"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, textarea:focus { border: #bbc7cc 1px solid; background: #fff; outline: none; outline-width: 0; } select { width: 270px; height: 30px; line-height: 30px; } button { min-height: 35px; width: auto; display: inline-block; padding: 0.1rem 1.5rem; cursor: pointer; outline: none; text-decoration: none; color: #fff; font-family: 'Open Sans', sans-serif; font-size: 11px; /* Hacks targeting Firefox. */ line-height: 13px; /* Hacks targeting Firefox. */ font-weight: 300; text-align: center; letter-spacing: 1px; text-transform: uppercase; text-shadow: none; border-radius: 0.3rem; border: rgba(0,0,0,0.05) 0.1em solid; background: #5ba4e5; } /* ========================================================================== 3. Utilities - These things get used a lot ========================================================================== */ /* Clears shit */ .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .clearfix { zoom: 1; } /* Hides shit */ .hidden { text-indent: -9999px; visibility: hidden; display: none; } /* Creates a responsive wrapper that makes our content scale nicely */ .inner { position: relative; width: 80%; max-width: 710px; margin: 0 auto; } /* Centres vertically yo. (IE8+) */ .vertical { display: table-cell; vertical-align: middle; } /* Wraps the main content & footer */ .site-wrapper { position: relative; z-index: 10; min-height: 100%; background: #fff; -webkit-transition: -webkit-transform 0.5s ease; transition: transform 0.5s ease; } body.nav-opened .site-wrapper { overflow-x: hidden; -webkit-transform: translate3D(-240px, 0, 0); -ms-transform: translate3D(-240px, 0, 0); transform: translate3D(-240px, 0, 0); -webkit-transition: -webkit-transform 0.3s ease; transition: transform 0.3s ease; } /* ========================================================================== 4. General - The main styles for the the theme ========================================================================== */ /* Big cover image on the home page */ .main-header { position: relative; display: table; width: 100%; height: 55vh; margin-bottom: 5rem; text-align: center; background-color: #222; background-repeat: no-repeat;s -webkit-background-size: cover; background-size: cover; overflow: hidden; } .main-header .inner { width: 80%; } .main-nav { position: relative; padding: 35px 40px; margin: 0 0 30px 0; } .main-nav a { text-decoration: none; font-family: 'Open Sans', sans-serif; } /* Navigation */ body.nav-opened .nav-cover { position: fixed; top: 0; left: 0; right: 240px; bottom: 0; z-index: 200; } .nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 5; width: 240px; opacity: 0; background: #111; margin-bottom: 0; text-align: left; overflow-y: auto; -webkit-transition: -webkit-transform 0.5s ease, opacity 0.3s ease 0.7s; transition: transform 0.5s ease, opacity 0.3s ease 0.7s; } body.nav-closed .nav { -webkit-transform: translate3D(97px, 0, 0); -ms-transform: translate3D(97px, 0, 0); transform: translate3D(97px, 0, 0); } body.nav-opened .nav { opacity: 1; -webkit-transition: -webkit-transform 0.3s ease, opacity 0s ease 0s; transition: transform 0.3s ease, opacity 0s ease 0s; -webkit-transform: translate3D(0, 0, 0); -ms-transform: translate3D(0, 0, 0); transform: translate3D(0, 0, 0); } .nav-title { position: absolute; top: 45px; left: 30px; font-size: 16px; font-weight: 100; text-transform: uppercase; color: #fff; } .nav-close { position: absolute; top: 38px; right: 25px; width: 20px; height: 20px; padding: 0; font-size: 10px; } .nav-close:focus { outline: 0; } .nav-close:before, .nav-close:after { content: ''; position: absolute; top: 0; width: 20px; height: 1px; background: rgb(150,150,150); top: 15px; -webkit-transition: background 0.15s ease; transition: background 0.15s ease; } .nav-close:before { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .nav-close:after { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } .nav-close:hover:before, .nav-close:hover:after { background: rgb(255,255,255); } .nav ul { padding: 90px 9% 5%; list-style: none; counter-reset: item; } .nav li { margin: 0; } .nav li a { text-decoration: none; line-height: 1.4; font-size: 1.4rem; display: block; padding: 0.6rem 4%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .nav a:link, .nav a:visited { color: #B8B8B8; } .nav li.nav-current a, .nav a:hover, .nav a:active, .nav a:focus { color: #fff; } .subscribe-button { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block; position: absolute; bottom: 30px; left: 30px; right: 30px; height: 38px; padding: 0 20px; color: #111 !important; /* Overides `.nav a:link, .nav a:visited` colour */ text-align: center; font-size: 12px; font-family: "Open Sans", sans-serif; text-transform: uppercase; text-decoration: none; line-height: 35px; border-radius: 3px; background: #fff; transition: all ease 0.3s; } .subscribe-button:before { font-size: 9px; margin-right: 6px; } /* Put a semi-opaque radial gradient behind the icon to make it more visible on photos which happen to have a light background. */ .home-template .main-header:after { display: block; content: " "; width: 150px; height: 130px; border-radius: 100%; position: absolute; bottom: 0; left: 50%; margin-left: -75px; background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%); } /* Hide when there's no cover image or on page2+ */ .no-cover.main-header:after, .paged .main-header:after { display: none } /* Appears in the top left corner of your home page */ .blog-logo { display: block; float: left; background: none !important; /* Makes sure there is never a background */ border: none !important; /* Makes sure there is never a border */ } .blog-logo img { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block; height: 38px; padding: 1px 0 5px 0; width: auto; border-radius: 50%; } .menu-button { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: inline-block; float: right; height: 38px; padding: 0 15px; border-style: solid; border-width: 1px; opacity: 1; text-align: center; font-size: 12px; text-transform: uppercase; line-height: 35px; white-space: nowrap; border-radius: 3px; transition: all 0.5s ease; } .menu-button:before { font-size: 12px; font-weight: bold; margin-right: 6px; position: relative; top: 1px; } .menu-button:hover { background: #fff; } .menu-button:focus { outline: 0; } /* When the navigation is closed */ .nav-closed .menu-button { color: #fff; border-color: rgba(255, 255, 255, 0.6); } .nav-closed .menu-button:hover { color: #222; } /* When the navigation is closed and there is no cover image */ .nav-closed .no-cover .menu-button { border-color: #BFC8CD; color: #9EABB3; } .nav-closed .no-cover .menu-button:hover { border-color: #555; color: #555; } /* When the navigation is opened */ .nav-opened .menu-button { padding: 0 12px; background: #111; border-color: #111; color: #fff; -webkit-transform: translate3D(94px, 0, 0); -ms-transform: translate3D(94px, 0, 0); transform: translate3D(94px, 0, 0); transition: all 0.3s ease; } .nav-opened .menu-button .word { opacity: 0; transition: all 0.3s ease; } /* Special styles when overlaid on an image*/ .main-nav.overlay { position: absolute; top: 0; left: 0; right: 0; height: 70px; border: none; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); } .no-cover .main-nav.overlay { background: none; } /* The details of your blog. Defined in ghost/settings/ */ .page-title { margin: 10px 0 10px 0; font-size: 5rem; letter-spacing: -1px; font-weight: 700; font-family: "Open Sans", sans-serif; color: #fff; } .page-description { margin: 0; font-size: 2rem; line-height: 1.5em; font-weight: 400; font-family: "Merriweather", serif; letter-spacing: 0.01rem; color: rgba(255,255,255,0.8); } .no-cover.main-header { min-height: 160px; max-height: 50vh; background: #f5f8fa; } .no-cover .page-title { color: rgba(0,0,0,0.8); } .no-cover .page-description { color: rgba(0,0,0,0.5); } /* Add subtle load-in animation for content on the home page */ .home-template .page-title { -webkit-animation: fade-in-down 0.6s; animation: fade-in-down 0.6s both; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } .home-template .page-description { -webkit-animation: fade-in-down 0.9s; animation: fade-in-down 0.9s both; -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } /* Every post, on every page, gets this style on its <article> tag */ .post { position: relative; width: 80%; max-width: 710px; margin: 4rem auto; padding-bottom: 4rem; word-wrap: break-word; } .post-content a{ color: #88beec; text-decoration: none; } /* Add a little circle in the middle of the border-bottom on our .post just for the lolz and stylepoints. */ body:not(.post-template) .post-title { font-size: 3.6rem; } body.page-template .post-title { font-size: 5rem; } .post-title a { text-decoration: none; } .post-excerpt p { margin: 0; font-size: 0.9em; line-height: 1.7em; max-height: 8.5em; overflow: hidden; } .post-meta { display: block; margin: 1.75rem 0 0 0; font-family: "Open Sans", sans-serif; font-size: 1.5rem; line-height: 2.2rem; color: #9EABB3; } .author-thumb { width: 24px; height: 24px; float: left; margin-right: 9px; border-radius: 100%; } .post-meta a { color: #9EABB3; text-decoration: none; } .post-meta a:hover { text-decoration: underline; } .user-meta { position: relative; padding: 0.3rem 40px 0 100px; min-height: 77px; } .post-date { display: inline-block; padding-left: 20px; padding-right: 20px; text-transform: uppercase; font-size: 1.3rem; white-space: nowrap; } .user-image { position: absolute; top: 0; left: 0; } .user-name { display: block; font-weight: 700; } .user-bio { display: block; max-width: 440px; font-size: 1.4rem; line-height: 1.5em; } .publish-meta { position: absolute; top: 0; right: 0; padding: 4.3rem 0 4rem 0; text-align: right; } .publish-heading { display: block; font-weight: 700; } .publish-date { display: block; font-size: 1.4rem; line-height: 1.5em; } /* ========================================================================== 5. Single Post - When you click on an individual post ========================================================================== */ .post-template .post-header, .page-template .post-header { margin-bottom: 3.4rem; } .post-template .post-title, .page-template .post-title { margin-bottom: 0; } .post-template .post-date, .page-template .post-date { padding: 0; margin-right: 15px; } /* Stop elements, such as img wider than the post content, from creating horizontal scroll - slight hack due to imperfections with browser width % calculations and rounding */ .post-template .content, .page-template .content { overflow: hidden; } /* Tweak the .post wrapper style */ .post-template .post, .page-template .post { margin-top: 0; border-bottom: none; padding-bottom: 0; } /* Kill that stylish little circle that was on the border, too */ .post-template .post:after, .page-template .post:after { display: none; } /* Keep images centered, and allow images wider than the main text column to break out. */ .post-content img { display: block; max-width: 110%; height: auto; padding: 0.6em 0; /* Centers an image by (1) pushing its left edge to the center of its container and (2) shifting the entire image in the opposite direction by half its own width. Works for images that are larger than their containers. */ position: relative; left: 50%; -webkit-transform: translateX(-50%); /* for Safari and iOS */ -ms-transform: translateX(-50%); /* for IE9 */ transform: translateX(-50%); } .footnotes { font-style: italic; font-size: 1.3rem; line-height: 1.6em; } .footnotes li { margin: 0.6rem 0; } .footnotes p { margin: 0; } .footnotes p a:last-child { text-decoration: none; } /* The author credit area after the post */ .post-footer { position: relative; margin: 6rem 0 0 0; padding: 3rem 0 0 0; } .post-footer h4 { font-size: 1.8rem; margin: 0; } .post-footer p { margin: 1rem 0; font-size: 1.4rem; line-height: 1.75em; } /* list of author links - location / url */ .author-meta { padding: 0; margin: 0; list-style: none; font-size: 1.4rem; line-height: 1; font-style: italic; color: #9EABB3; } .author-meta a { color: #9EABB3; } .author-meta a:hover { color: #111; } /* Create some space to the right for the share links */ .post-footer .author { margin-right: 180px; } .post-footer h4 a { color: #2e2e2e; text-decoration: none; } .post-footer h4 a:hover { text-decoration: underline; } /* Drop the share links in the space to the right. Doing it like this means it's easier for the author bio to be flexible at smaller screen sizes while the share links remain at a fixed width the whole time */ .post-footer .share { position: absolute; top: 3rem; right: 0; width: 140px; } .post-footer .share a { font-size: 1.8rem; display: inline-block; margin: 1rem 1.6rem 1.6rem 0; color: #BBC7CC; text-decoration: none; } .post-footer .share .icon-twitter:hover { color: #55acee; } .post-footer .share .icon-facebook:hover { color: #3b5998; } .post-footer .share .icon-google-plus:hover { color: #dd4b39; } /* ========================================================================== 6. Author profile ========================================================================== */ .post-head.main-header { height: 55vh; min-height: 180px; } .no-cover.post-head.main-header { height: 85px; min-height: 0; margin-bottom: 0; background: transparent; } .tag-head.main-header { height: 50vh; min-height: 180px; } .author-head.main-header { height: 50vh; min-height: 180px; } .no-cover.author-head.main-header { height: 10vh; min-height: 100px; background: transparent; } .author-profile { padding: 0 15px 5rem 15px; border-bottom: #EBF2F6 1px solid; text-align: center; } /* Add a little circle in the middle of the border-bottom */ .author-profile:after { display: block; content: ""; width: 7px; height: 7px; border: #E7EEF2 1px solid; position: absolute; bottom: -5px; left: 50%; margin-left: -5px; background: #FFF; border-radius: 100%; box-shadow: #FFF 0 0 0 5px; } .author-image { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block; position: absolute; top: -40px; left: 50%; margin-left: -40px; width: 80px; height: 80px; border-radius: 100%; overflow: hidden; padding: 6px; background: #fff; z-index: 2; box-shadow: #E7EEF2 0 0 0 1px; } .author-image .img { position: relative; display: block; width: 100%; height: 100%; background-size: cover; background-position: center center; border-radius: 100%; } .author-profile .author-image { position: relative; left: auto; top: auto; width: 120px; height: 120px; padding: 3px; margin: -100px auto 0 auto; box-shadow: none; } .author-title { margin: 1.5rem 0 1rem; } .author-bio { font-size: 1.8rem; line-height: 1.5em; font-weight: 200; color: #50585D; letter-spacing: 0; text-indent: 0; } .author-meta { margin: 1.6rem 0; } /* Location, website, and link */ .author-profile .author-meta { margin: 2rem 0; font-family: "Merriweather", serif; letter-spacing: 0.01rem; font-size: 1.7rem; } .author-meta p { margin: 0.5sem; } .author-meta span { display: inline-block; margin: 0 2rem 1rem 0; word-wrap: break-word; } .author-meta a { text-decoration: none; } /* Turn off meta for page2+ to make room for extra pagination prev/next links */ .paged .author-profile .author-meta { display: none; } /* ========================================================================== 7. Read More - Next/Prev Post Links ========================================================================== */ .read-next { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; margin-top: 10rem; } .read-next-story { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -webkit-flex-grow: 1; -ms-flex-positive: 1; flex-grow: 1; min-width: 50%; text-decoration: none; position: relative; text-align: center; color: #fff; background: #222 no-repeat center center; background-size: cover; overflow: hidden; } .read-next-story:hover:before { background: rgba(0,0,0,0.8); transition: all 0.2s ease; } .read-next-story:hover .post:before { color: #222; background: #fff; transition: all 0.2s ease; } .read-next-story:before { content: ""; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.7); transition: all 0.5s ease; } .read-next-story .post { padding-top: 6rem; padding-bottom: 6rem; } .read-next-story h2 { margin-top: 1rem; color: #fff; } .read-next-story p { margin: 0; color: rgba(255,255,255,0.8); } /* Special styles for posts with no cover images */ .read-next-story.no-cover { background: #f5f8fa; } .read-next-story.no-cover:before { display: none; } .read-next-story.no-cover .post:before { color: rgba(0,0,0,0.5); border-color: rgba(0,0,0,0.2); } .read-next-story.no-cover h2 { color: rgba(0,0,0,0.8); } .read-next-story.no-cover p { color: rgba(0,0,0,0.5); } /* if there are two posts without covers, put a border between them */ .read-next-story.no-cover + .read-next-story.no-cover { border-left: rgba(0,0,100,0.04) 1px solid; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* Correctly position site-footer when next to the .read-next container */ .read-next + .site-footer { position: absolute; bottom: 0; left: 0; right: 0; margin: 0; } /* ========================================================================== 8. Third Party Elements - Embeds from other services ========================================================================== */ /* Github */ .gist table { margin: 0; font-size: 1.4rem; text-rendering: auto; } .gist td { line-height: 1.4; } .gist .line-number { min-width: 25px; } /* Pastebin */ .content .embedPastebin { margin-bottom: 1.75em; } /* ========================================================================== 9. Pagination - Tools to let you flick between pages ========================================================================== */ /* The main wrapper for our pagination links */ .pagination { position: relative; width: 80%; max-width: 710px; margin: 4rem auto; font-family: "Open Sans", sans-serif; font-size: 1.3rem; color: #9EABB3; text-align: center; } .pagination a { color: #9EABB3; transition: all 0.2s ease; } /* Push the previous/next links out to the left/right */ .older-posts, .newer-posts { position: absolute; display: inline-block; padding: 0 15px; border: #bfc8cd 1px solid; text-decoration: none; border-radius: 4px; transition: border 0.3s ease; } .older-posts { right: 0; } .page-number { display: inline-block; } .newer-posts { left: 0; } .older-posts:hover, .newer-posts:hover { color: #889093; border-color: #98a0a4; } .extra-pagination { display: none; border-bottom: #EBF2F6 1px solid; } .extra-pagination:after { display: block; content: ""; width: 7px; height: 7px; border: #E7EEF2 1px solid; position: absolute; bottom: -5px; left: 50%; margin-left: -5px; background: #FFF; border-radius: 100%; box-shadow: #FFF 0 0 0 5px; } .extra-pagination .pagination { width: auto; } /* On page2+ make all the headers smaller */ .paged .main-header { max-height: 50vh; } /* On page2+ show extra pagination controls at the top of post list */ .paged .extra-pagination { display: block; } /* ========================================================================== 10. Subscribe - Generate those email subscribers ========================================================================== */ .gh-subscribe { border: #e7eef2 1px solid; padding: 3rem; margin-top: 3rem; text-align: center; background: #f5f8fa; border-radius: 5px; } .gh-subscribe-title { margin-bottom: 0; font-size: 2.4rem } .gh-subscribe p { margin-top: 0; font-size: 1.5rem; } .gh-subscribe form { display: flex; justify-content: center; margin: 20px 0 0 0; } .gh-subscribe .form-group { flex-grow: 1; max-width: 300px; } .gh-subscribe .subscribe-email { box-sizing: border-box; width: 100%; margin: 0; border-radius: 4px 0 0 4px; transition: all ease 0.5s; } .gh-subscribe .subscribe-email:focus { border: #5ba4e5 1px solid; transition: all ease 0.2s; } .gh-subscribe button { margin-left: -1px; border-radius: 0 4px 4px 0; } .gh-subscribe-rss { font-family: 'Open Sans', sans-serif; font-size: 1.2rem; line-height: 1.4em; } /* ========================================================================== 11. Footer - The bottom of every page ========================================================================== */ .site-footer { position: relative; margin: 8rem 0 0 0; padding: 1rem 15px; font-family: "Open Sans", sans-serif; font-size: 1rem; line-height: 1.75em; color: #BBC7CC; } .site-footer a { color: #BBC7CC; text-decoration: none; font-weight: bold; } .site-footer a:hover { border-bottom: #bbc7cc 1px solid; } .poweredby { display: block; width: 45%; float: right; text-align: right; } .copyright { display: block; width: 45%; float: left; } /* ========================================================================== 12. Media Queries - Smaller than 900px ========================================================================== */ @media only screen and (max-width: 900px) { blockquote { margin-left: 0; } .main-header { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; min-height: 240px; padding: 15% 0; height: auto; } .home-template .main-header:after { display: none; } .paged .main-header { min-height: 180px; padding: 10% 0; } .blog-logo img { padding: 4px 0; } .page-title { font-size: 4rem; letter-spacing: -1px; } .page-description { font-size: 1.8rem; line-height: 1.5em; } .post { font-size: 0.95em } body:not(.post-template) .post-title { font-size: 3.2rem; } body.page-template .post-title { font-size: 4.5rem; } hr { margin: 2.4em 0; } ol, ul { padding-left: 2em; } h1 { font-size: 4.5rem; text-indent: -2px; } h2 { font-size: 3.6rem; } h3 { font-size: 3.1rem; } h4 { font-size: 2.5rem; } h5 { font-size: 2.2rem; } h6 { font-size: 1.8rem; } .author-profile { padding-bottom: 4rem; } .author-profile .author-bio { font-size: 1.6rem; } .author-meta s { margin: 1.5rem 1rem; } .post-head.main-header { height:45vh; } .tag-head.main-header, .author-head.main-header { height: 30vh; } .no-cover.post-head.main-header { height: 55px; padding: 0; } .no-cover.author-head.main-header { padding: 0; } .gh-subscribe { padding: 2rem; } .gh-subscribe-title { font-size: 2rem } .gh-subscribe p { font-size: 1.4rem; } .read-next { -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; margin-top: 4rem; } .read-next p { display: none; } .read-next-story.no-cover + .read-next-story.no-cover { border-top: rgba(0,0,100,0.06) 1px solid; border-left: none; } } /* ========================================================================== 13. Media Queries - Smaller than 500px ========================================================================== */ @media only screen and (max-width: 500px) { .main-header { margin-bottom: 15px; height: auto; } .no-cover.main-header { height: 30vh; } .paged .main-header { max-height: 20vh; min-height: 160px; padding: 10% 0; } .main-nav { padding: 5px; margin-bottom: 2rem; } .blog-logo { padding: 5px; } .blog-logo img { height: 30px; } .menu-button { padding: 0 5px; border-radius: 0; border-width: 0; color: #2e2e2e; background: transparent; } .menu-button:hover { color: #2e2e2e; border-color: transparent; background: none; } body.nav-opened .menu-button { background: none; border: transparent; } .main-nav.overlay a:hover { color: #fff; border-color: transparent; background: transparent; } .no-cover .main-nav.overlay { background: none; } .no-cover .main-nav.overlay .menu-button { border: none; } .main-nav.overlay .menu-button { border-color: transparent; } .nav-title { top: 25px; } .nav-close { position: absolute; top: 18px; } .nav ul { padding: 60px 9% 5%; } .inner, .pagination { width: auto; margin: 2rem auto; } .post { width: auto; margin-top: 2rem; margin-bottom: 2rem; margin-left: 16px; margin-right: 16px; padding-bottom: 2rem; line-height: 1.65em; } .post-template .post-header, .page-template .post-header { margin-bottom: 2rem; } .post-template .post-date, .page-template .post-date { display: inline-block; } .page-number{ display: none; } hr { margin: 1.75em 0; } p, ul, ol, dl { font-size: 0.95em; margin: 0 0 2.5rem 0; } .page-title { font-size: 3rem; } .post-excerpt p { font-size: 0.85em; } .page-description { font-size: 1.6rem; } h1, h2, h3, h4, h5, h6 { margin: 0 0 0.3em 0; } h1 { font-size: 2.8rem; letter-spacing: -1px; } h2 { font-size: 2.4rem; letter-spacing: 0; } h3 { font-size: 2.1rem; } h4 { font-size: 1.9rem; } h5 { font-size: 1.8rem; } h6 { font-size: 1.8rem; } body:not(.post-template) .post-title { font-size: 2.5rem; } body.page-template .post-title { font-size: 2.8rem; } .post-template .site-footer, .page-template .site-footer { margin-top: 0; } .post-content img { padding: 0; width: calc(100% + 32px); /* expand with to image + margins */ min-width: 0; max-width: 112%; /* fallback when calc doesn't work */ } .post-meta { font-size: 1.3rem; margin-top: 1rem; } .post-footer { padding: 5rem 0 3rem 0; text-align: center; } .post-footer .author { margin: 0 0 2rem 0; padding: 0 0 1.6rem 0; border-bottom: #EBF2F6 1px dashed; } .post-footer .share { position: static; width: auto; } .post-footer .share a { margin: 1.4rem 0.8rem 0 0.8rem; } .author-meta li { float: none; margin: 0; line-height: 1.75em; } .author-meta li:before { display: none; } .older-posts, .newer-posts { position: static; margin: 10px 0; } .site-footer { margin-top: 3rem; } .author-profile { padding-bottom: 2rem; } .post-head.main-header { height: 30vh; } .tag-head.main-header, .author-head.main-header { height: 20vh; } .post-footer .author-image { top: -60px; } .author-profile .author-image { margin-top: -70px; } .paged .main-header .page-description { display: none; } .gh-subscribe { padding: 15px; } .gh-subscribe form { margin-top: 10px; } .read-next { margin-top: 2rem; margin-bottom: -37px; } .read-next .post { width: 100%; } } /* ========================================================================== 14. Animations ========================================================================== */ /* Used to fade in title/desc on the home page */ @-webkit-keyframes fade-in-down { 0% { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } @keyframes fade-in-down { 0% { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } } /* ========================================================================== End of file. Animations should be the last thing here. Do not add stuff below this point, or it will probably fuck everything up. ========================================================================== */
docs/docs_source/_static/custom.css
aguilarsoto/Office-Online-Test-Tools-and-Documentation
/* override table width restrictions */ .wy-table-responsive table td, .wy-table-responsive table th { /* !important prevents the common CSS stylesheets from overriding this as on RTD they are loaded after this stylesheet */ white-space: normal !important; } .wy-table-responsive { overflow: visible !important; } .rst-content .admonition { padding: 12px !important; line-height: 24px !important; margin-bottom: 24px !important; } .rst-content .admonition p:last-child { margin-bottom: 0 !important; } .rst-content .admonition-excel-online-note { background-color: #d3f0e0 !important; } .rst-content .admonition-onenote-online-note { background-color: #975d93 !important; color: #fff !important; } .rst-content .admonition-onenote-online-note a:link, .rst-content .admonition-onenote-online-note a:visited { color: #d9d9d9 !important; } .rst-content .admonition-onenote-online-note a:hover { color: #fff !important; } .rst-content .admonition-excel-online-note .admonition-title { background-color: #207144 !important; } .rst-content .admonition-onenote-online-note .admonition-title { background-color: #80397b !important; } .rst-content table.field-list td { padding-top: 8px !important; } .rst-content p.caption { font-size: 16px !important; } span.caption-number { font-weight: bold; } span.caption-number:after { content: "- "; } span.menuselection, span.guilabel { font-style: italic; } dl.glossary dt a.def-link { font-size: small; font-family: FontAwesome !important; visibility: hidden !important; margin-left: 5px !important; } dl.glossary dt:hover a.def-link, dl.glossary dt a.def-link:hover { visibility: visible !important; } div.versionadded, div.versionchanged, div.deprecated { margin-bottom: 24px; } /* label styles */ .label { display: inline; padding: .2em .6em .3em; font-size: 85%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em } a.label:hover, a.label:focus { color: #fff; text-decoration: none; cursor: pointer } .label:empty { display: none } .btn .label { position: relative; top: -1px } .label-default { background-color: #777 } .label-default[href]:hover, .label-default[href]:focus { background-color: #5e5e5e } .label-primary { background-color: #337ab7 } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #286090 } .label-success { background-color: #5cb85c } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44 } .label-info { background-color: #5bc0de } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5 } .label-warning { background-color: #f0ad4e } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f } .label-danger { background-color: #d9534f } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c }
modules/JC.AutoSelect/0.2/_demo/demo.crm.agent.html
openjavascript/NewJC
<!doctype html> <html> <head> <meta charset=utf-8 /> <title>360 75 team</title> <style type='text/css'> body{ margin: 20px 80px 20px; } dl.def > dd{ margin: 10px 0; } </style> <script src="../../../../lib.js"></script> <script src="../../../../config.js"></script> <script> var agentLicense = [[1,"\u4e3b\u4f53\u8d44\u8d28",0],[2,"\u53ef\u9009\u8d44\u8d28",0]]; /*[id,label,parent]*/ var agentLicenseExt = [ [ 101, "个体工商户营业执照", 1 ], [ 102, "企业法人营业执照", 1 ], [ 103, "大陆事业单位类客户", 1 ], [ 104, "大陆个人类客户", 1 ], [ 105, "香港企业类客户", 1 ], [ 106, "香港个人类客户", 1 ], [ 107, "澳门企业类客户", 1 ], [ 108, "澳门个人类客户", 1 ], [ 109, "台湾企业类客户", 1 ], [ 110, "台湾个人类客户", 1 ], [ 111, "国外企业类客户", 1 ], [ 112, "国外个人类客户", 1 ], [ 113, "民办非企业类客户", 1 ], [ 114, "社会团体类客户", 1 ], [ 115, "学校类客户", 1 ], [ 116, "特殊主体类客户", 1 ], [ 117, "机关企事业单位类客户", 1 ], [ 118, "大陆个人类", 1 ], [ 400, "其他", 1 ], [ 1, "网购、商城类", 2 ], [ 2, "信息平台类", 2 ], [ 3, "招商加盟类", 2 ], [ 4, "旅游服务类", 2 ], [ 5, "网络游戏类", 2 ], [ 6, "出国留学类", 2 ], [ 7, "一般化妆品类", 2 ], [ 8, "特殊用途化妆品类", 2 ], [ 9, "搬家类", 2 ], [ 10, "物流类", 2 ], [ 11, "汽车租赁类", 2 ], [ 12, "食品及食品添加剂生产类", 2 ], [ 13, "法律服务类", 2 ], [ 14, "拍卖行类", 2 ], [ 15, "医疗药品销售(包括各类经营销售方式", 2 ], [ 16, "医药研究、药品研发类用户", 2 ], [ 17, "药品信息类", 2 ], [ 18, "药品生产类", 2 ], [ 19, "医疗衍生产品(非药品)代理、授权经销类", 2 ], [ 20, "保健品类", 2 ], [ 21, "成人用品类", 2 ], [ 22, "兽药生产销售类", 2 ], [ 23, "兽药信息平台类", 2 ], [ 24, "消毒产品类", 2 ], [ 25, "普通医疗机构", 2 ], [ 26, "计划生育服务", 2 ], [ 27, "戒毒机构类", 2 ], [ 28, "美容服务类(涉及手术方式的营利性美容医院)", 2 ], [ 29, "美容服务类(非手术方式美容机构)", 2 ], [ 30, "司法鉴定机构", 2 ], [ 31, "医疗器械及相关器械", 2 ], [ 32, "假肢及假肢矫形器生产装配类", 2 ], [ 33, "股票类", 2 ], [ 34, "基金类", 2 ], [ 35, "期货类", 2 ], [ 36, "证劵投资类", 2 ], [ 37, "贷款类", 2 ], [ 38, "担保类", 2 ], [ 39, "保险类", 2 ], [ 40, "公积金代办类", 2 ], [ 41, "典当类", 2 ], [ 42, "外汇类", 2 ], [ 43, "银行类", 2 ], [ 44, "第三方支付平台类", 2 ], [ 45, "机票代理销售类", 2 ], [ 46, "航空公司类", 2 ], [ 47, "开锁类", 2 ], [ 48, "宗教用品销售类", 2 ], [ 49, "家电维修类", 2 ], [ 50, "按摩类", 2 ], [ 51, "认证类", 2 ], [ 52, "保安、安保类", 2 ], [ 53, "市场调查类", 2 ], [ 54, "刻章类", 2 ], [ 55, "回收类", 2 ], [ 56, "旧机动车交易类", 2 ], [ 57, "火车票销售类", 2 ], [ 58, "人才中介服务类", 2 ], [ 59, "危险化学品类", 2 ], [ 60, "公证处类", 2 ], [ 61, "娱乐场所类", 2 ], [ 62, "贵金属交易平台类", 2 ], [ 63, "Tmall商城类", 2 ], [ 64, "数码产品类", 2 ], [ 65, "警用装备类", 2 ], [ 67, "环境评测类", 2 ], [ 68, "淘宝类", 2 ], [ 69, "P2P网贷类", 2 ], [ 500, "其他", 2 ] ]; JC.debug = true; requirejs( [ 'JC.AutoSelect', 'plugins.json2', 'Bizs.CommonModify' ], function( AutoSelect ){ }); function AgentLicenseChange(){ return agentLicense; } function AgentLicenseChangeExt(_id){ var _d = []; for( var i = 0, len = agentLicenseExt.length; i < len; i++ ){ agentLicenseExt[i][2] == _id && _d.push(agentLicenseExt[i] ); } return _d; } function cauDisplayLabelCallbackUrlAptitude( json, label, value ){ var prefix = '/ka/qualification/showImg/?imgurl={0}'; value = printf(prefix, value ); label = printf( '<a href="{0}" class="green js_auLink" target="_blank">{1}</a>' + '&nbsp;<a href="javascript:;" class="btn btn-cls2 js_delUploadAptFile"></a>', value, label); return label; } $(document).delegate( 'a.js_delUploadAptFile', 'click', function( _evt ){ var selector = $(this); var parent = getJqParent( selector, 'td' ), upSelector = parent ? parent.find( 'input.js_compAjaxUpload' ) : null, ins = JC.AjaxUpload.getInstance( upSelector ); ins && ins.update(); }); </script> </head> <body> <div class="tit-3 mb10"> 代理公司资质信息 </div><!--end tit-1--> <table class="table_agentlicense" width="100%"> <tbody> <tr> <td style="padding-right:5px;"> <input type="hidden" name="qualification_id[]" value="380"/> <select class="sel sel-w90 sel_licenseType" name="q_type[]" selectparentid="0" selectvalue="1" defaultselect selectdatacb="AgentLicenseChange" selecttarget="(td select.sel_licenseList" reqmsg="资质类型" validemdisplaytype="block" emel="/em.error" minvalue="0" datatype="n" > <option value="" defaultoption>资质类型</option> </select> <select class="sel sel-w126 sel_licenseList" name="q_type_id[]" selectvalue="103" selectdatacb="AgentLicenseChangeExt" reqmsg="资质类型" validemdisplaytype="block" emel="/em.error" minvalue="0" datatype="n" > <option value="" defaultoption>请选择</option> </select> <em class="error"></em> </td> <td style="padding-right:10px;"> <em class="red">*</em>资质主体名称:<input class="ipt" name="q_main_name[]" type="text" value="1111111111" reqmsg="资质主体名称" validemdisplaytype="block"/> </td> <td> <em class="red">*</em>资质编号:<input class="ipt" type="text" name="q_number[]" value="1111111111" reqmsg="资质编号" validemdisplaytype="block"/> </td> <td> <em class="red">*</em>失效日期:<input class="ipt" type="text" name="q_fail_date[]" value="2014-05-28" datatype="date" reqmsg="失效日期" emel="/em.error" validemdisplaytype="block" /> <em class="error"></em> </td> <td> <div class="js_fileLabel"> <a target="_blank" class="green js_auLink" href="/ka/qualification/showImg/?imgurl=L2FnZW5jeV9xdWFsaWZpY2F0aW9uLzIwMDg0MTQ5NDUzMTEwMV8yLmpwZw%3D%3D">200841494531101_2.jpg</a>&nbsp;<a class="btn btn-cls2 js_delUploadAptFile" href="javascript:;"></a> </div> <div class="js_statusLabel" style="display:none">文件上传中, 请稍候...</div> <input type="hidden" class="js_compAjaxUpload" value="L2FnZW5jeV9xdWFsaWZpY2F0aW9uLzIwMDg0MTQ5NDUzMTEwMV8yLmpwZw%3D%3D" name="q_file[]" cauStyle="g1" cauButtonText="上传文件" cauUrl="/ka/updown/agencyQualification" cauFileExt=".jpg, .jpeg, .png, .gif" cauFileName="file" cauLabelKey="name" cauValueKey="url" cauStatusLabel="/div.js_statusLabel" cauDisplayLabel="/div.js_fileLabel" caudisplaylabelcallback="cauDisplayLabelCallbackUrlAptitude" reqmsg="请上传文件" validemdisplaytype="block" emel="/em.error" subdatatype="hidden" /> <em class="error"></em> </td> <td> <a href="javascript:" class="green js_autoCommonModify" cmtemplate="#AgentLicenseTpl" cmitem="table.table_agentlicense tr" cmaction="add" >+添加</a> </td> </tr> </tbody> </table> <script type="text/template" id="AgentLicenseTpl"> <tr> <td style="padding-right:5px;"> <select class="sel sel-w90 sel_licenseType" name="q_type[]" defaultselect="defaultselect" selectdatacb="AgentLicenseChange" selecttarget="(td select.sel_licenseList" reqmsg="资质类型" validemdisplaytype="block" emel="/em.error" minvalue="0" datatype="n" > <option value="0" defaultoption>资质类型</option> </select> <select class="sel sel-w126 sel_licenseList" name="q_type_id[]" selectdatacb="AgentLicenseChangeExt" reqmsg="资质类型" validemdisplaytype="block" emel="/em.error" minvalue="0" datatype="n" > <option value="" defaultoption>请选择</option> </select> <em class="error"></em> </td> <td style="padding-right:10px;"> <em class="red">*</em>资质主体名称:<input class="ipt" type="text" name="q_main_name[]" reqmsg="资质主体名称" validemdisplaytype="block"/> </td> <td> <em class="red">*</em>资质编号:<input class="ipt" type="text" name="q_number[]" reqmsg="资质编号" validemdisplaytype="block"/> </td> <td> <em class="red">*</em>失效日期:<input class="ipt" type="text" name="q_fail_date[]" datatype="date" reqmsg="失效日期" emel="/em.error" validemdisplaytype="block" /> <em class="error"></em> </td> <td> <div class="js_fileLabel" style="display:none"></div> <div class="js_statusLabel" style="display:none">文件上传中, 请稍候...</div> <input type="hidden" class="js_compAjaxUpload" value="" name="q_file[]" cauStyle="g1" cauButtonText="上传文件" cauUrl="/ka/updown/agencyQualification" cauFileExt=".jpg, .jpeg, .png, .gif" cauFileName="file" cauLabelKey="name" cauValueKey="url" cauStatusLabel="/div.js_statusLabel" cauDisplayLabel="/div.js_fileLabel" caudisplaylabelcallback="cauDisplayLabelCallbackUrlAptitude" reqmsg="请上传文件" validemdisplaytype="block" emel="/em.error" subdatatype="hidden" /> </td> <td> <a href="javascript:;" class="red js_autoCommonModify" cmitem="(tr" cmaction="del">-删除</a> </td> </tr> </script> </body> </html>
src/main/webapp/upLoad.html
xiezhjinbu/reeco
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link rel="stylesheet" href="css/bootstrap.min.css" /> <script type="text/javascript" src="js/jquery-1.11.0.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript" src="js/jquery.form.js"></script> </head> <body> <form class="form-horizontal" role="form" action="fileUpload/fileUpload" method="post" enctype="multipart/form-data"> <input type="hidden" name="productId" value="12345678902138264921" /> <div class="form-group"> <label for="exampleInputFile" class="col-sm-2 control-label">文件上传</label> <div class="col-sm-10"> <input type="file" id="exampleInputFile" name="file"> </div> </div> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <input type="submit" class="btn btn-default" id="btn_items">提交</input> </div> </div> </form> </body> </html>
docs/css/example.css
thingsym/flexbox-grid-mixins
.grid { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid .grid__col { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--null { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--auto { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--equal { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--fixed { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--none { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--initial { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--positive { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 0 0px; flex: 1 0 0; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--positive-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 2; -ms-flex: 2 0 0px; flex: 2 0 0; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--positive-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 3; -ms-flex: 3 0 0px; flex: 3 0 0; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid .grid__col--positive-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 4; -ms-flex: 4 0 0px; flex: 4 0 0; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-7 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 56.3333333333%; flex: 0 0 56.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-8 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 64.6666666667%; flex: 0 0 64.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-9 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-10 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 81.3333333333%; flex: 0 0 81.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-11 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 89.6666666667%; flex: 0 0 89.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid > .grid__col-12 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-3-columns { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid-3-columns > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-3-columns > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 64.6666666667%; flex: 0 0 64.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-3-columns > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid-24-columns > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 2.1666666667%; flex: 0 0 2.1666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 10.5%; flex: 0 0 10.5%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 18.8333333333%; flex: 0 0 18.8333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-7 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 27.1666666667%; flex: 0 0 27.1666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-8 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-9 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 35.5%; flex: 0 0 35.5%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-10 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-11 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 43.8333333333%; flex: 0 0 43.8333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-12 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-13 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 52.1666666667%; flex: 0 0 52.1666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-14 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 56.3333333333%; flex: 0 0 56.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-15 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 60.5%; flex: 0 0 60.5%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-16 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 64.6666666667%; flex: 0 0 64.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-17 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 68.8333333333%; flex: 0 0 68.8333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-18 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-19 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 77.1666666667%; flex: 0 0 77.1666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-20 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 81.3333333333%; flex: 0 0 81.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-21 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 85.5%; flex: 0 0 85.5%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-22 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 89.6666666667%; flex: 0 0 89.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-23 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 93.8333333333%; flex: 0 0 93.8333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid-24-columns > .grid__col-24 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; margin-left: -1%; margin-right: -1%; } .grid--multi-line .grid__col { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-7 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 56.3333333333%; flex: 0 0 56.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-8 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 64.6666666667%; flex: 0 0 64.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-9 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-10 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 81.3333333333%; flex: 0 0 81.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-11 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 89.6666666667%; flex: 0 0 89.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line > .grid__col-12 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } ul.grid { margin: 0; padding: 0; -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; margin-left: -1%; margin-right: -1%; } ul.grid li { list-style: none; padding: 2em; } .grid--no-gutter { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; } .grid--no-gutter .grid__col { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; } .grid--no-gutter > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; } .grid--no-gutter > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; } .grid--no-gutter > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; } .grid--no-gutter > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; } .grid--no-gutter > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; } .grid--no-gutter > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; } .grid--no-gutter > .grid__col-7 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; } .grid--no-gutter > .grid__col-8 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; } .grid--no-gutter > .grid__col-9 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; } .grid--no-gutter > .grid__col-10 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; } .grid--no-gutter > .grid__col-11 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; } .grid--no-gutter > .grid__col-12 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; } .grid--row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; margin-left: -1%; margin-right: -1%; } .grid--row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--row-reverse { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; margin-left: -1%; margin-right: -1%; } .grid--row-reverse > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--row-reverse > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--row-reverse > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1%; margin-right: -1%; } .grid--column > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; width: 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column-reverse { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; margin-left: -1%; margin-right: -1%; } .grid--column-reverse > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; width: 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column-reverse > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--column-reverse > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-null { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid--wrap-null > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-null > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-null > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-nowrap { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; margin-left: -1%; margin-right: -1%; } .grid--wrap-nowrap > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-nowrap > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-nowrap > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-left: -1%; margin-right: -1%; } .grid--wrap > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-reverse { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; margin-left: -1%; margin-right: -1%; } .grid--wrap-reverse > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-reverse > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--wrap-reverse > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--left-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; margin-left: -1%; margin-right: -1%; } .grid--left-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--left-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--left-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-left: -1%; margin-right: -1%; } .grid--center-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; margin-left: -1%; margin-right: -1%; } .grid--right-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-between-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin-left: -1%; margin-right: -1%; } .grid--space-between-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-between-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-between-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-around-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; margin-left: -1%; margin-right: -1%; } .grid--space-around-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-around-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-around-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-evenly-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: space-evenly; -ms-flex-pack: space-evenly; justify-content: space-evenly; margin-left: -1%; margin-right: -1%; } .grid--space-evenly-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-evenly-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--space-evenly-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--top-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; margin-left: -1%; margin-right: -1%; } .grid--top-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--top-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--top-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--middle-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: -1%; margin-right: -1%; } .grid--middle-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--middle-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--middle-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--bottom-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; margin-left: -1%; margin-right: -1%; } .grid--bottom-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--bottom-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--bottom-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--stretch-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1%; margin-right: -1%; } .grid--stretch-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--stretch-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--stretch-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--baseline-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: baseline; -ms-flex-align: baseline; align-items: baseline; margin-left: -1%; margin-right: -1%; } .grid--baseline-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--baseline-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--baseline-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--baseline-row > .grid__col-2 { padding: 30px 0; } .grid--centered-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--centered-row > .grid__col-centered { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--items-row-alignment { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid--items-row-alignment > .grid__col { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-auto { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: auto; align-self: auto; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-top { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: start; align-self: flex-start; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-middle { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: center; align-self: center; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-bottom { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: end; align-self: flex-end; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-stretch { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: stretch; align-self: stretch; margin-left: 1%; margin-right: 1%; } .grid--items-row-alignment > .grid__col-baseline { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 0px; flex: 1 1 0; -ms-flex-item-align: baseline; align-self: baseline; margin-left: 1%; margin-right: 1%; } .grid--left-column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; margin-left: -1%; margin-right: -1%; } .grid--left-column > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; width: 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--left-column > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--left-column > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: -1%; margin-right: -1%; } .grid--center-column > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; width: 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-column > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--center-column > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; margin-left: -1%; margin-right: -1%; } .grid--right-column > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; width: 6.3333333333%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-column > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--right-column > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--centered-column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--centered-column > .grid__col-centered { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; width: 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--items-column-alignment { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1%; margin-right: -1%; } .grid--items-column-alignment > .grid__col { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--items-column-alignment > .grid__col-auto { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -ms-flex-item-align: auto; align-self: auto; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--items-column-alignment > .grid__col-top { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -ms-flex-item-align: start; align-self: flex-start; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--items-column-alignment > .grid__col-middle { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -ms-flex-item-align: center; align-self: center; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--items-column-alignment > .grid__col-bottom { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -ms-flex-item-align: end; align-self: flex-end; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--order-row { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid--order-row > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-row > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-row > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-row > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-row > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-column { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1%; margin-right: -1%; } .grid--order-column > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-column > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-column > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-column > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--order-column > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; width: 14.6666666667%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--multi-line-top { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: start; align-content: flex-start; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-top > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-top > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-top > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-top > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-top > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-top > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: center; align-content: center; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-middle > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-middle > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: end; align-content: flex-end; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-bottom > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-bottom > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: justify; align-content: space-between; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-space-between > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-between > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: distribute; align-content: space-around; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-space-around > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-space-around > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-line-pack: stretch; align-content: stretch; margin-left: -1%; margin-right: -1%; height: 18em; } .grid--multi-line-stretch > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--multi-line-stretch > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--width { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid--width > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--width > .grid__col-100 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; max-width: 100px; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--width > .grid__col-200 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; max-width: 200px; min-width: 100px; margin-left: 1%; margin-right: 1%; margin-bottom: 2%; } .grid--condense { -webkit-box-sizing: border-box; box-sizing: border-box; display: -webkit-box; display: -ms-flexbox; display: flex; margin-left: -1%; margin-right: -1%; } .grid--condense > .grid__col-1 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 6.3333333333%; flex: 0 0 6.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-2 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 14.6666666667%; flex: 0 0 14.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-3 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 23%; flex: 0 0 23%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-4 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 31.3333333333%; flex: 0 0 31.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-5 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 39.6666666667%; flex: 0 0 39.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-6 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 48%; flex: 0 0 48%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-7 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 56.3333333333%; flex: 0 0 56.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-8 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 64.6666666667%; flex: 0 0 64.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-9 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 73%; flex: 0 0 73%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-10 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 81.3333333333%; flex: 0 0 81.3333333333%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-11 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 89.6666666667%; flex: 0 0 89.6666666667%; margin-left: 1%; margin-right: 1%; } .grid--condense > .grid__col-12 { -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 0; -ms-flex: 0 0 98%; flex: 0 0 98%; margin-left: 1%; margin-right: 1%; }
rmiapp/rmiapp/ClientHandler.html
pitpitman/GraduateWork
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc on Sun Oct 31 21:46:11 CST 1999 --> <TITLE> : Class ClientHandler </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <!-- ========== START OF NAVBAR ========== --> <A NAME="navbar_top"><!-- --></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="package-summary.html"><FONT ID="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" ID="NavBarCell1Rev"> &nbsp;<FONT ID="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="package-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../index-all.html"><FONT ID="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../help-doc.html"><FONT ID="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" ID="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../rmiapp/Course.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" ID="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ClientHandler.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> </TR> <TR> <TD VALIGN="top" ID="NavBarCell3"><FONT SIZE="-2"> SUMMARY: &nbsp;INNER&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" ID="NavBarCell3"><FONT SIZE="-2"> DETAIL: &nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <!-- =========== END OF NAVBAR =========== --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> rmiapp</FONT> <BR> Class ClientHandler</H2> <PRE> java.lang.Object | +--<B>rmiapp.ClientHandler</B> </PRE> <HR> <DL> <DT>public class <B>ClientHandler</B><DT>extends java.lang.Object</DL> <P> ClientHandler performs all functions for the client application. <P> <HR> <P> <!-- ======== INNER CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" ID="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#ClientHandler()">ClientHandler</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" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" ID="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#createCourse(java.lang.String[], rmiapp.Registration)">createCourse</A></B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;createCourse functions just as createStudent only with Course objects</TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#createStudent(java.lang.String[], rmiapp.Registration)">createStudent</A></B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;createStudent takes arguments from the command line and the remote server reference createStudent creates a Student object and sets data according to command line arguments createStudent passes the Student object to the remote server for storage</TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#printCourseReport(java.lang.String[], rmiapp.Registration)">printCourseReport</A></B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printCourseReport prints a Course report for students registered including student ID, name, and major</TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#printStudentReport(java.lang.String[], rmiapp.Registration)">printStudentReport</A></B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;printStudentReport prints a report of Student ID and courses, including course description, instructor, meeting time, and location</TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../rmiapp/ClientHandler.html#register(java.lang.String[], rmiapp.Registration)">register</A></B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;register takes arguments from command line and remote server reference register calls register method on remote server passing arguments</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#EEEEFF" ID="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" ID="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" ID="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="ClientHandler()"><!-- --></A><H3> ClientHandler</H3> <PRE> public <B>ClientHandler</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" ID="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="createStudent(java.lang.String[], rmiapp.Registration)"><!-- --></A><H3> createStudent</H3> <PRE> public void <B>createStudent</B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient) throws java.rmi.RemoteException</PRE> <DL> <DD>createStudent takes arguments from the command line and the remote server reference createStudent creates a Student object and sets data according to command line arguments createStudent passes the Student object to the remote server for storage</DL> <HR> <A NAME="createCourse(java.lang.String[], rmiapp.Registration)"><!-- --></A><H3> createCourse</H3> <PRE> public void <B>createCourse</B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient) throws java.rmi.RemoteException</PRE> <DL> <DD>createCourse functions just as createStudent only with Course objects</DL> <HR> <A NAME="register(java.lang.String[], rmiapp.Registration)"><!-- --></A><H3> register</H3> <PRE> public void <B>register</B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient) throws java.rmi.RemoteException</PRE> <DL> <DD>register takes arguments from command line and remote server reference register calls register method on remote server passing arguments</DL> <HR> <A NAME="printStudentReport(java.lang.String[], rmiapp.Registration)"><!-- --></A><H3> printStudentReport</H3> <PRE> public void <B>printStudentReport</B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient) throws java.rmi.RemoteException</PRE> <DL> <DD>printStudentReport prints a report of Student ID and courses, including course description, instructor, meeting time, and location</DL> <HR> <A NAME="printCourseReport(java.lang.String[], rmiapp.Registration)"><!-- --></A><H3> printCourseReport</H3> <PRE> public void <B>printCourseReport</B>(java.lang.String[]&nbsp;args, <A HREF="../rmiapp/Registration.html">Registration</A>&nbsp;regClient) throws java.rmi.RemoteException</PRE> <DL> <DD>printCourseReport prints a Course report for students registered including student ID, name, and major</DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ========== START OF NAVBAR ========== --> <A NAME="navbar_bottom"><!-- --></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="package-summary.html"><FONT ID="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" ID="NavBarCell1Rev"> &nbsp;<FONT ID="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="package-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../index-all.html"><FONT ID="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" ID="NavBarCell1"> <A HREF="../help-doc.html"><FONT ID="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" ID="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../rmiapp/Course.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" ID="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ClientHandler.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD> </TR> <TR> <TD VALIGN="top" ID="NavBarCell3"><FONT SIZE="-2"> SUMMARY: &nbsp;INNER&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" ID="NavBarCell3"><FONT SIZE="-2"> DETAIL: &nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <!-- =========== END OF NAVBAR =========== --> <HR> </BODY> </HTML>
doc/deprecated.html
chemisus/slinpins
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.8.0" /> <title>Deprecated | slinpins</title> <script type="text/javascript" src="resources/combined.js?1145318285"></script> <script type="text/javascript" src="elementlist.js?2018968845"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" /> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Packages</h3> <ul> <li><a href="package-PHP.html">PHP</a> </li> <li><a href="package-Slinpins.html">Slinpins<span></span></a> <ul> <li><a href="package-Slinpins.Test.html">Test</a> </li> </ul></li> </ul> </div> <hr /> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Closure.html">Closure</a></li> <li><a href="class-MockTest.html">MockTest</a></li> <li><a href="class-ReflectionFunction.html">ReflectionFunction</a></li> <li><a href="class-ReflectionFunctionAbstract.html">ReflectionFunctionAbstract</a></li> <li><a href="class-ReflectionMethod.html">ReflectionMethod</a></li> <li><a href="class-Scope.html">Scope</a></li> <li><a href="class-ScopeTest.html">ScopeTest</a></li> </ul> <h3>Interfaces</h3> <ul> <li><a href="class-Reflector.html">Reflector</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="text" /> <input type="submit" value="Search" /> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <span>Package</span> </li> <li> <span>Class</span> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> <li class="active"> <span>Deprecated</span> </li> <li> <a href="todo.html" title="Todo list"><span>Todo</span></a> </li> </ul> <ul> <li> <a href="slinpins-api-documentation.zip" title="Download documentation as ZIP archive"><span>Download</span></a> </li> </ul> </div> <div id="content"> <h1>Deprecated</h1> </div> <div id="footer"> slinpins API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </div> </div> </div> </body> </html>
css/main.css
dracher/dracher.github.io
:root { --body-bg-color: #eee; --content-bg-color: #fff; --card-bg-color: #f5f5f5; --text-color: #555; --blockquote-color: #666; --link-color: #555; --link-hover-color: #222; --brand-color: #fff; --brand-hover-color: #fff; --table-row-odd-bg-color: #f9f9f9; --table-row-hover-bg-color: #f5f5f5; --menu-item-bg-color: #f5f5f5; --btn-default-bg: #fff; --btn-default-color: #555; --btn-default-border-color: #555; --btn-default-hover-bg: #222; --btn-default-hover-color: #fff; --btn-default-hover-border-color: #222; --highlight-background: #f0f0f0; --highlight-foreground: #444; --highlight-gutter-background: #dedede; --highlight-gutter-foreground: #555; } html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } body { margin: 0; } main { display: block; } h1 { font-size: 2em; margin: 0.67em 0; } hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } a { background: transparent; } abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } b, strong { font-weight: bolder; } code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } img { border-style: none; } button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } button, input { /* 1 */ overflow: visible; } button, select { /* 1 */ text-transform: none; } button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; } button::-moz-focus-inner, [type='button']::-moz-focus-inner, [type='reset']::-moz-focus-inner, [type='submit']::-moz-focus-inner { border-style: none; padding: 0; } button:-moz-focusring, [type='button']:-moz-focusring, [type='reset']:-moz-focusring, [type='submit']:-moz-focusring { outline: 1px dotted ButtonText; } fieldset { padding: 0.35em 0.75em 0.625em; } legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } progress { vertical-align: baseline; } textarea { overflow: auto; } [type='checkbox'], [type='radio'] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } [type='number']::-webkit-inner-spin-button, [type='number']::-webkit-outer-spin-button { height: auto; } [type='search'] { outline-offset: -2px; /* 2 */ -webkit-appearance: textfield; /* 1 */ } [type='search']::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { font: inherit; /* 2 */ -webkit-appearance: button; /* 1 */ } details { display: block; } summary { display: list-item; } template { display: none; } [hidden] { display: none; } ::selection { background: #262a30; color: #eee; } html, body { height: 100%; } body { background: var(--body-bg-color); color: var(--text-color); font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif; font-size: 1em; line-height: 2; min-height: 100%; position: relative; transition: all 0.2s ease-in-out; } h1, h2, h3, h4, h5, h6 { font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif; font-weight: bold; line-height: 1.5; margin: 20px 0 15px; } h1 { font-size: 1.5em; } h2 { font-size: 1.375em; } h3 { font-size: 1.25em; } h4 { font-size: 1.125em; } h5 { font-size: 1em; } h6 { font-size: 0.875em; } p { margin: 0 0 20px; } a { border-bottom: 1px solid #999; color: var(--link-color); cursor: pointer; outline: 0; text-decoration: none; overflow-wrap: break-word; } a:hover { border-bottom-color: var(--link-hover-color); color: var(--link-hover-color); } iframe, img, video, embed { display: block; margin-left: auto; margin-right: auto; max-width: 100%; } hr { background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px); border: 0; height: 3px; margin: 40px 0; } blockquote { border-left: 4px solid #ddd; color: var(--blockquote-color); margin: 0; padding: 0 15px; } blockquote cite::before { content: '-'; padding: 0 5px; } dt { font-weight: bold; } dd { margin: 0; padding: 0; } .table-container { overflow: auto; } table { border-collapse: collapse; border-spacing: 0; font-size: 0.875em; margin: 0 0 20px; width: 100%; } tbody tr:nth-of-type(odd) { background: var(--table-row-odd-bg-color); } tbody tr:hover { background: var(--table-row-hover-bg-color); } caption, th, td { padding: 8px; } th, td { border: 1px solid #ddd; border-bottom: 3px solid #ddd; } th { font-weight: 700; padding-bottom: 10px; } td { border-bottom-width: 1px; } .btn { background: var(--btn-default-bg); border: 2px solid var(--btn-default-border-color); border-radius: 2px; color: var(--btn-default-color); display: inline-block; font-size: 0.875em; line-height: 2; padding: 0 20px; transition: background-color 0.2s ease-in-out; } .btn:hover { background: var(--btn-default-hover-bg); border-color: var(--btn-default-hover-border-color); color: var(--btn-default-hover-color); } .btn + .btn { margin: 0 0 8px 8px; } .btn .fa-fw { text-align: left; width: 1.285714285714286em; } .toggle { line-height: 0; } .toggle .toggle-line { background: #fff; display: block; height: 2px; left: 0; position: relative; top: 0; transition: all 0.4s; width: 100%; } .toggle .toggle-line:not(:first-child) { margin-top: 3px; } .toggle.toggle-arrow .toggle-line:first-child { left: 50%; top: 2px; transform: rotate(45deg); width: 50%; } .toggle.toggle-arrow .toggle-line:last-child { left: 50%; top: -2px; transform: rotate(-45deg); width: 50%; } .toggle.toggle-close .toggle-line:nth-child(2) { opacity: 0; } .toggle.toggle-close .toggle-line:first-child { top: 5px; transform: rotate(45deg); } .toggle.toggle-close .toggle-line:last-child { top: -5px; transform: rotate(-45deg); } /* Original highlight.js style (c) Ivan Sagalaev <maniac@softwaremaniacs.org> */ .hljs { display: block; overflow-x: auto; padding: 0.5em; background: #F0F0F0; } /* Base color: saturation 0; */ .hljs, .hljs-subst { color: #444; } .hljs-comment { color: #888888; } .hljs-keyword, .hljs-attribute, .hljs-selector-tag, .hljs-meta-keyword, .hljs-doctag, .hljs-name { font-weight: bold; } /* User color: hue: 0 */ .hljs-type, .hljs-string, .hljs-number, .hljs-selector-id, .hljs-selector-class, .hljs-quote, .hljs-template-tag, .hljs-deletion { color: #880000; } .hljs-title, .hljs-section { color: #880000; font-weight: bold; } .hljs-regexp, .hljs-symbol, .hljs-variable, .hljs-template-variable, .hljs-link, .hljs-selector-attr, .hljs-selector-pseudo { color: #BC6060; } /* Language color: hue: 90; */ .hljs-literal { color: #78A960; } .hljs-built_in, .hljs-bullet, .hljs-code, .hljs-addition { color: #397300; } /* Meta color: hue: 200 */ .hljs-meta { color: #1f7199; } .hljs-meta-string { color: #4d99bf; } /* Misc effects */ .hljs-emphasis { font-style: italic; } .hljs-strong { font-weight: bold; } code, kbd, figure.highlight, pre { background: var(--highlight-background); color: var(--highlight-foreground); } figure.highlight, pre { line-height: 1.6; margin: 0 auto 20px; } pre, code { font-family: consolas, Menlo, monospace, 'PingFang SC', 'Microsoft YaHei'; } code { border-radius: 3px; font-size: 0.875em; padding: 2px 4px; overflow-wrap: break-word; } kbd { border: 2px solid #ccc; border-radius: 0.2em; box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1); font-family: inherit; padding: 0.1em 0.3em; white-space: nowrap; } figure.highlight { position: relative; } figure.highlight pre { border: 0; margin: 0; padding: 10px 0; } figure.highlight table { border: 0; margin: 0; width: auto; } figure.highlight td { border: 0; padding: 0; } figure.highlight figcaption, pre .caption, pre figcaption { background: var(--highlight-gutter-background); color: var(--highlight-foreground); display: flow-root; font-size: 0.875em; line-height: 1.2; padding: 0.5em; } figure.highlight figcaption a, pre .caption a, pre figcaption a { color: var(--highlight-foreground); float: right; } figure.highlight figcaption a:hover, pre .caption a:hover, pre figcaption a:hover { border-bottom-color: var(--highlight-foreground); } figure.highlight .gutter { -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; user-select: none; } figure.highlight .gutter pre { background: var(--highlight-gutter-background); color: var(--highlight-gutter-foreground); padding-left: 10px; padding-right: 10px; text-align: right; } figure.highlight .code pre { padding-left: 10px; width: 100%; } pre .caption, pre figcaption { margin-bottom: 10px; } .gist table { width: auto; } .gist table td { border: 0; } pre { overflow: auto; padding: 10px; position: relative; } pre code { background: none; padding: 0; text-shadow: none; } .blockquote-center { border-left: none; margin: 40px 0; padding: 0; position: relative; text-align: center; } .blockquote-center::before, .blockquote-center::after { left: 0; line-height: 1; opacity: 0.6; position: absolute; width: 100%; } .blockquote-center::before { border-top: 1px solid #ccc; text-align: left; top: -20px; content: '\f10d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; } .blockquote-center::after { border-bottom: 1px solid #ccc; bottom: -20px; text-align: right; content: '\f10e'; font-family: 'Font Awesome 5 Free'; font-weight: 900; } .blockquote-center p, .blockquote-center div { text-align: center; } .group-picture { margin-bottom: 20px; } .group-picture .group-picture-row { display: flex; gap: 3px; margin-bottom: 3px; } .group-picture .group-picture-column { flex: 1; } .group-picture .group-picture-column img { height: 100%; margin: 0; object-fit: cover; width: 100%; } .post-body .label { color: #555; padding: 0 2px; } .post-body .label.default { background: #f0f0f0; } .post-body .label.primary { background: #efe6f7; } .post-body .label.info { background: #e5f2f8; } .post-body .label.success { background: #e7f4e9; } .post-body .label.warning { background: #fcf6e1; } .post-body .label.danger { background: #fae8eb; } .post-body .link-grid { display: grid; grid-gap: 1.5rem 1.5rem; gap: 1.5rem 1.5rem; grid-template-columns: 1fr 1fr; margin-bottom: 20px; padding: 1rem; } @media (max-width: 767px) { .post-body .link-grid { grid-template-columns: 1fr; } } .post-body .link-grid .link-grid-container { border: solid #ddd; box-shadow: 1rem 1rem 0.5rem rgba(0,0,0,0.5); min-height: 5rem; min-width: 0; padding: 0.5rem; position: relative; transition: background 0.3s; } .post-body .link-grid .link-grid-container:hover { animation: next-shake 0.5s; background: var(--card-bg-color); } .post-body .link-grid .link-grid-container:active { box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5); transform: translate(0.2rem, 0.2rem); } .post-body .link-grid .link-grid-container .link-grid-image { background-clip: content-box; background-origin: content-box; background-size: cover; border: 1px solid #ddd; border-radius: 50%; box-sizing: border-box; height: 5rem; padding: 3px; position: absolute; width: 5rem; } .post-body .link-grid .link-grid-container p { margin: 0 1rem 0 6rem; } .post-body .link-grid .link-grid-container p:first-of-type { font-size: 1.2em; } .post-body .link-grid .link-grid-container p:last-of-type { font-size: 0.8em; line-height: 1.3rem; opacity: 0.7; } .post-body .link-grid .link-grid-container a { border: 0; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } @-moz-keyframes next-shake { 0% { transform: translate(1pt, 1pt) rotate(0deg); } 10% { transform: translate(-1pt, -2pt) rotate(-1deg); } 20% { transform: translate(-3pt, 0pt) rotate(1deg); } 30% { transform: translate(3pt, 2pt) rotate(0deg); } 40% { transform: translate(1pt, -1pt) rotate(1deg); } 50% { transform: translate(-1pt, 2pt) rotate(-1deg); } 60% { transform: translate(-3pt, 1pt) rotate(0deg); } 70% { transform: translate(3pt, 1pt) rotate(-1deg); } 80% { transform: translate(-1pt, -1pt) rotate(1deg); } 90% { transform: translate(1pt, 2pt) rotate(0deg); } 100% { transform: translate(1pt, -2pt) rotate(-1deg); } } @-webkit-keyframes next-shake { 0% { transform: translate(1pt, 1pt) rotate(0deg); } 10% { transform: translate(-1pt, -2pt) rotate(-1deg); } 20% { transform: translate(-3pt, 0pt) rotate(1deg); } 30% { transform: translate(3pt, 2pt) rotate(0deg); } 40% { transform: translate(1pt, -1pt) rotate(1deg); } 50% { transform: translate(-1pt, 2pt) rotate(-1deg); } 60% { transform: translate(-3pt, 1pt) rotate(0deg); } 70% { transform: translate(3pt, 1pt) rotate(-1deg); } 80% { transform: translate(-1pt, -1pt) rotate(1deg); } 90% { transform: translate(1pt, 2pt) rotate(0deg); } 100% { transform: translate(1pt, -2pt) rotate(-1deg); } } @-o-keyframes next-shake { 0% { transform: translate(1pt, 1pt) rotate(0deg); } 10% { transform: translate(-1pt, -2pt) rotate(-1deg); } 20% { transform: translate(-3pt, 0pt) rotate(1deg); } 30% { transform: translate(3pt, 2pt) rotate(0deg); } 40% { transform: translate(1pt, -1pt) rotate(1deg); } 50% { transform: translate(-1pt, 2pt) rotate(-1deg); } 60% { transform: translate(-3pt, 1pt) rotate(0deg); } 70% { transform: translate(3pt, 1pt) rotate(-1deg); } 80% { transform: translate(-1pt, -1pt) rotate(1deg); } 90% { transform: translate(1pt, 2pt) rotate(0deg); } 100% { transform: translate(1pt, -2pt) rotate(-1deg); } } @keyframes next-shake { 0% { transform: translate(1pt, 1pt) rotate(0deg); } 10% { transform: translate(-1pt, -2pt) rotate(-1deg); } 20% { transform: translate(-3pt, 0pt) rotate(1deg); } 30% { transform: translate(3pt, 2pt) rotate(0deg); } 40% { transform: translate(1pt, -1pt) rotate(1deg); } 50% { transform: translate(-1pt, 2pt) rotate(-1deg); } 60% { transform: translate(-3pt, 1pt) rotate(0deg); } 70% { transform: translate(3pt, 1pt) rotate(-1deg); } 80% { transform: translate(-1pt, -1pt) rotate(1deg); } 90% { transform: translate(1pt, 2pt) rotate(0deg); } 100% { transform: translate(1pt, -2pt) rotate(-1deg); } } .post-body .tabs { margin-bottom: 20px; } .post-body .tabs, .tabs-comment { padding-top: 10px; } .post-body .tabs ul.nav-tabs, .tabs-comment ul.nav-tabs { display: flex; display: flex; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; } @media (max-width: 413px) { .post-body .tabs ul.nav-tabs, .tabs-comment ul.nav-tabs { display: block; margin-bottom: 5px; } } .post-body .tabs ul.nav-tabs li.tab, .tabs-comment ul.nav-tabs li.tab { border-bottom: 1px solid #ddd; border-left: 1px solid transparent; border-right: 1px solid transparent; border-radius: 0 0 0 0; border-top: 3px solid transparent; flex-grow: 1; list-style-type: none; } @media (max-width: 413px) { .post-body .tabs ul.nav-tabs li.tab, .tabs-comment ul.nav-tabs li.tab { border-bottom: 1px solid transparent; border-left: 3px solid transparent; border-right: 1px solid transparent; border-top: 1px solid transparent; } } @media (max-width: 413px) { .post-body .tabs ul.nav-tabs li.tab, .tabs-comment ul.nav-tabs li.tab { border-radius: 0; } } .post-body .tabs ul.nav-tabs li.tab a, .tabs-comment ul.nav-tabs li.tab a { border-bottom: initial; display: block; line-height: 1.8; padding: 0.25em 0.75em; text-align: center; transition: all 0.2s ease-out; } .post-body .tabs ul.nav-tabs li.tab a i, .tabs-comment ul.nav-tabs li.tab a i { width: 1.285714285714286em; } .post-body .tabs ul.nav-tabs li.tab.active, .tabs-comment ul.nav-tabs li.tab.active { border-bottom-color: transparent; border-left-color: #ddd; border-right-color: #ddd; border-top-color: #fc6423; } @media (max-width: 413px) { .post-body .tabs ul.nav-tabs li.tab.active, .tabs-comment ul.nav-tabs li.tab.active { border-bottom-color: #ddd; border-left-color: #fc6423; border-right-color: #ddd; border-top-color: #ddd; } } .post-body .tabs ul.nav-tabs li.tab.active a, .tabs-comment ul.nav-tabs li.tab.active a { cursor: default; } .post-body .tabs .tab-content, .tabs-comment .tab-content { border: 1px solid #ddd; border-radius: 0 0 0 0; border-top-color: transparent; } @media (max-width: 413px) { .post-body .tabs .tab-content, .tabs-comment .tab-content { border-radius: 0; border-top-color: #ddd; } } .post-body .tabs .tab-content .tab-pane, .tabs-comment .tab-content .tab-pane { padding: 20px 20px 0; } .post-body .tabs .tab-content .tab-pane:not(.active), .tabs-comment .tab-content .tab-pane:not(.active) { display: none; } .post-body .note { border-radius: 3px; margin-bottom: 20px; padding: 1em; position: relative; border: 1px solid #eee; border-left-width: 5px; } .post-body .note summary { cursor: pointer; outline: 0; } .post-body .note summary p { display: inline; } .post-body .note h2, .post-body .note h3, .post-body .note h4, .post-body .note h5, .post-body .note h6 { border-bottom: initial; margin: 0; padding-top: 0; } .post-body .note p:first-child, .post-body .note ul:first-child, .post-body .note ol:first-child, .post-body .note table:first-child, .post-body .note pre:first-child, .post-body .note blockquote:first-child, .post-body .note img:first-child { margin-top: 0; } .post-body .note p:last-child, .post-body .note ul:last-child, .post-body .note ol:last-child, .post-body .note table:last-child, .post-body .note pre:last-child, .post-body .note blockquote:last-child, .post-body .note img:last-child { margin-bottom: 0; } .post-body .note.default { border-left-color: #777; } .post-body .note.default h2, .post-body .note.default h3, .post-body .note.default h4, .post-body .note.default h5, .post-body .note.default h6 { color: #777; } .post-body .note.primary { border-left-color: #6f42c1; } .post-body .note.primary h2, .post-body .note.primary h3, .post-body .note.primary h4, .post-body .note.primary h5, .post-body .note.primary h6 { color: #6f42c1; } .post-body .note.info { border-left-color: #428bca; } .post-body .note.info h2, .post-body .note.info h3, .post-body .note.info h4, .post-body .note.info h5, .post-body .note.info h6 { color: #428bca; } .post-body .note.success { border-left-color: #5cb85c; } .post-body .note.success h2, .post-body .note.success h3, .post-body .note.success h4, .post-body .note.success h5, .post-body .note.success h6 { color: #5cb85c; } .post-body .note.warning { border-left-color: #f0ad4e; } .post-body .note.warning h2, .post-body .note.warning h3, .post-body .note.warning h4, .post-body .note.warning h5, .post-body .note.warning h6 { color: #f0ad4e; } .post-body .note.danger { border-left-color: #d9534f; } .post-body .note.danger h2, .post-body .note.danger h3, .post-body .note.danger h4, .post-body .note.danger h5, .post-body .note.danger h6 { color: #d9534f; } .pagination .prev, .pagination .next, .pagination .page-number, .pagination .space { display: inline-block; margin: -1px 10px 0; padding: 0 10px; } @media (max-width: 767px) { .pagination .prev, .pagination .next, .pagination .page-number, .pagination .space { margin: 0 5px; } } .pagination { border-top: 1px solid #eee; margin: 120px 0 0; text-align: center; } .pagination .prev, .pagination .next, .pagination .page-number { border-bottom: 0; border-top: 1px solid #eee; transition: border-color 0.2s ease-in-out; } .pagination .prev:hover, .pagination .next:hover, .pagination .page-number:hover { border-top-color: var(--link-hover-color); } @media (max-width: 767px) { .pagination { border-top: 0; } .pagination .prev, .pagination .next, .pagination .page-number { border-bottom: 1px solid #eee; border-top: 0; } .pagination .prev:hover, .pagination .next:hover, .pagination .page-number:hover { border-bottom-color: var(--link-hover-color); } } .pagination .space { margin: 0; padding: 0; } .pagination .page-number.current { background: #ccc; border-color: #ccc; color: var(--content-bg-color); } .comments { margin-top: 60px; overflow: hidden; } .comment-button-group { display: flex; display: flex; flex-wrap: wrap; justify-content: center; justify-content: center; margin: 1em 0; } .comment-button-group .comment-button { margin: 0.1em 0.2em; } .comment-button-group .comment-button.active { background: var(--btn-default-hover-bg); border-color: var(--btn-default-hover-border-color); color: var(--btn-default-hover-color); } .comment-position { display: none; } .comment-position.active { display: block; } .tabs-comment { margin-top: 4em; padding-top: 0; } .tabs-comment .comments { margin-top: 0; padding-top: 0; } .headband { background: #222; height: 3px; } @media (max-width: 991px) { .headband { display: none; } } .header { background: transparent; } .header-inner { margin: 0 auto; width: calc(100% - 20px); } @media (min-width: 1200px) { .header-inner { width: 1160px; } } @media (min-width: 1600px) { .header-inner { width: 73%; } } .site-brand-container { display: flex; flex-shrink: 0; padding: 0 10px; } .use-motion .header, .use-motion .site-brand-container .toggle { opacity: 0; } .site-meta { flex-grow: 1; text-align: center; } @media (max-width: 767px) { .site-meta { text-align: center; } } .custom-logo-image { margin-top: 20px; } @media (max-width: 991px) { .custom-logo-image { display: none; } } .brand { border-bottom: 0; color: var(--brand-color); display: inline-block; padding: 0 40px; } .brand:hover { color: var(--brand-hover-color); } .site-title { font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif; font-size: 1.375em; font-weight: normal; margin: 0; } .site-subtitle { color: #ddd; font-size: 0.8125em; margin: 10px 0; } .use-motion .site-title, .use-motion .site-subtitle, .use-motion .custom-logo-image { opacity: 0; position: relative; top: -10px; } .site-nav-toggle, .site-nav-right { display: none; } @media (max-width: 767px) { .site-nav-toggle, .site-nav-right { display: flex; flex-direction: column; justify-content: center; } } .site-nav-toggle .toggle, .site-nav-right .toggle { color: var(--text-color); padding: 10px; width: 22px; } .site-nav-toggle .toggle .toggle-line, .site-nav-right .toggle .toggle-line { background: var(--text-color); border-radius: 1px; } @media (max-width: 767px) { .site-nav { display: none; } } .site-nav-on .site-nav { display: block; } .menu { margin: 0; padding: 1em 0; text-align: center; } .menu-item { display: inline-block; list-style: none; margin: 0 10px; } @media (max-width: 767px) { .menu-item { display: block; margin-top: 10px; } .menu-item.menu-item-search { display: none; } } .menu-item a { border-bottom: 0; display: block; font-size: 0.8125em; transition: border-color 0.2s ease-in-out; } .menu-item a:hover, .menu-item a.menu-item-active { background: var(--menu-item-bg-color); } .menu-item .fa, .menu-item .fab, .menu-item .far, .menu-item .fas { margin-right: 8px; } .menu-item .badge { display: inline-block; font-weight: bold; line-height: 1; margin-left: 0.35em; margin-top: 0.35em; text-align: center; white-space: nowrap; } @media (max-width: 767px) { .menu-item .badge { float: right; margin-left: 0; } } .use-motion .menu-item { visibility: hidden; } .sidebar-inner { color: #999; padding: 18px 10px; text-align: center; } .site-overview-item:not(:first-child) { margin-top: 10px; } .cc-license .cc-opacity { border-bottom: 0; opacity: 0.7; } .cc-license .cc-opacity:hover { opacity: 0.9; } .cc-license img { display: inline-block; } .site-author-image { border: 1px solid #eee; max-width: 120px; padding: 2px; border-radius: 50%; } .site-author-name { color: var(--text-color); font-weight: 600; margin: 0; } .site-description { color: #999; font-size: 0.8125em; margin-top: 0; } .links-of-author a { font-size: 0.8125em; } .links-of-author .fa, .links-of-author .fab, .links-of-author .far, .links-of-author .fas { margin-right: 2px; } .sidebar .sidebar-button:not(:first-child) { margin-top: 15px; } .sidebar .sidebar-button a { border: 1px solid #fc6423; border-radius: 4px; color: #fc6423; display: inline-block; padding: 0 15px; } .sidebar .sidebar-button a .fa, .sidebar .sidebar-button a .fab, .sidebar .sidebar-button a .far, .sidebar .sidebar-button a .fas { margin-right: 5px; } .sidebar .sidebar-button a:hover { background: #fc6423; border: 1px solid #fc6423; color: #fff; } .sidebar .sidebar-button a:hover .fa, .sidebar .sidebar-button a:hover .fab, .sidebar .sidebar-button a:hover .far, .sidebar .sidebar-button a:hover .fas { color: #fff; } .links-of-blogroll { font-size: 0.8125em; } .links-of-blogroll-title { font-size: 0.875em; font-weight: 600; margin-top: 0; } .links-of-blogroll-list { list-style: none; margin: 0; padding: 0; } .sidebar-dimmer { display: none; } @media (max-width: 991px) { .sidebar-dimmer { background: #000; display: block; height: 100%; left: 0; opacity: 0; position: fixed; top: 0; transition: visibility 0.4s, opacity 0.4s; visibility: hidden; width: 100%; z-index: 1100; } .sidebar-active .sidebar-dimmer { opacity: 0.7; visibility: visible; } } .sidebar-nav { display: none; margin: 0; padding-bottom: 20px; padding-left: 0; } .sidebar-nav-active .sidebar-nav { display: block; } .sidebar-nav li { border-bottom: 1px solid transparent; color: var(--text-color); cursor: pointer; display: inline-block; font-size: 0.875em; } .sidebar-nav li.sidebar-nav-overview { margin-left: 10px; } .sidebar-nav li:hover { color: #fc6423; } .sidebar-toc-active .sidebar-nav-toc, .sidebar-overview-active .sidebar-nav-overview { border-bottom-color: #fc6423; color: #fc6423; } .sidebar-toc-active .sidebar-nav-toc:hover, .sidebar-overview-active .sidebar-nav-overview:hover { color: #fc6423; } .sidebar-panel-container { max-height: var(--sidebar-wrapper-height); overflow-x: hidden; overflow-y: auto; } .sidebar-panel { display: none; } .sidebar-overview-active .site-overview-wrap { display: flex; flex-direction: column; justify-content: center; } .sidebar-toc-active .post-toc-wrap { display: block; } .sidebar-toggle { bottom: 45px; height: 12px; padding: 6px 5px; width: 14px; background: #222; cursor: pointer; opacity: 0.6; position: fixed; z-index: 1300; right: 30px; } @media (max-width: 991px) { .sidebar-toggle { right: 20px; } } .sidebar-toggle:hover { opacity: 0.8; } @media (max-width: 991px) { .sidebar-toggle { opacity: 0.8; } } .sidebar-toggle:hover .toggle-line { background: #fc6423; } @media (any-hover: hover) { body:not(.sidebar-active) .sidebar-toggle:hover .toggle-line:first-child { left: 50%; top: 2px; transform: rotate(45deg); width: 50%; } body:not(.sidebar-active) .sidebar-toggle:hover .toggle-line:last-child { left: 50%; top: -2px; transform: rotate(-45deg); width: 50%; } } .sidebar-active .sidebar-toggle .toggle-line:nth-child(2) { opacity: 0; } .sidebar-active .sidebar-toggle .toggle-line:first-child { top: 5px; transform: rotate(45deg); } .sidebar-active .sidebar-toggle .toggle-line:last-child { top: -5px; transform: rotate(-45deg); } .post-toc { font-size: 0.875em; } .post-toc ol { list-style: none; margin: 0; padding: 0 2px 5px 10px; text-align: left; } .post-toc ol > ol { padding-left: 0; } .post-toc ol a { transition: all 0.2s ease-in-out; } .post-toc .nav-item { line-height: 1.8; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .post-toc .nav .nav-child { display: none; } .post-toc .nav .active > .nav-child { display: block; } .post-toc .nav .active-current > .nav-child { display: block; } .post-toc .nav .active-current > .nav-child > .nav-item { display: block; } .post-toc .nav .active > a { border-bottom-color: #fc6423; color: #fc6423; } .post-toc .nav .active-current > a { color: #fc6423; } .post-toc .nav .active-current > a:hover { color: #fc6423; } .site-state { display: flex; flex-wrap: wrap; justify-content: center; line-height: 1.4; } .site-state-item { padding: 0 15px; } .site-state-item a { border-bottom: 0; display: block; } .site-state-item-count { display: block; font-size: 1em; font-weight: 600; } .site-state-item-name { color: #999; font-size: 0.8125em; } .footer { color: #999; font-size: 0.875em; padding: 20px 0; } .footer.footer-fixed { bottom: 0; left: 0; position: absolute; right: 0; } .footer-inner { box-sizing: border-box; text-align: center; display: flex; flex-direction: column; justify-content: center; margin: 0 auto; width: calc(100% - 20px); } @media (min-width: 1200px) { .footer-inner { width: 1160px; } } @media (min-width: 1600px) { .footer-inner { width: 73%; } } .use-motion .footer { opacity: 0; } .languages { display: inline-block; font-size: 1.125em; position: relative; } .languages .lang-select-label span { margin: 0 0.5em; } .languages .lang-select { height: 100%; left: 0; opacity: 0; position: absolute; top: 0; width: 100%; } .with-love { color: #ff0000; display: inline-block; margin: 0 5px; } @-moz-keyframes icon-animate { 0%, 100% { transform: scale(1); } 10%, 30% { transform: scale(0.9); } 20%, 40%, 60%, 80% { transform: scale(1.1); } 50%, 70% { transform: scale(1.1); } } @-webkit-keyframes icon-animate { 0%, 100% { transform: scale(1); } 10%, 30% { transform: scale(0.9); } 20%, 40%, 60%, 80% { transform: scale(1.1); } 50%, 70% { transform: scale(1.1); } } @-o-keyframes icon-animate { 0%, 100% { transform: scale(1); } 10%, 30% { transform: scale(0.9); } 20%, 40%, 60%, 80% { transform: scale(1.1); } 50%, 70% { transform: scale(1.1); } } @keyframes icon-animate { 0%, 100% { transform: scale(1); } 10%, 30% { transform: scale(0.9); } 20%, 40%, 60%, 80% { transform: scale(1.1); } 50%, 70% { transform: scale(1.1); } } .back-to-top { font-size: 12px; } .back-to-top span { display: none; } .back-to-top { bottom: -100px; box-sizing: border-box; color: #fff; padding: 0 6px; transition: bottom 0.2s ease-in-out; background: #222; cursor: pointer; opacity: 0.6; position: fixed; z-index: 1300; right: 30px; width: 24px; } @media (max-width: 991px) { .back-to-top { right: 20px; } } .back-to-top:hover { opacity: 0.8; } @media (max-width: 991px) { .back-to-top { opacity: 0.8; } } .back-to-top:hover { color: #fc6423; } .back-to-top.back-to-top-on { bottom: 30px; } .noscript-warning { background-color: #f55; color: #fff; font-family: sans-serif; font-size: 1rem; font-weight: bold; left: 0; position: fixed; text-align: center; top: 0; width: 100%; z-index: 1500; } .rtl.post-body p, .rtl.post-body a, .rtl.post-body h1, .rtl.post-body h2, .rtl.post-body h3, .rtl.post-body h4, .rtl.post-body h5, .rtl.post-body h6, .rtl.post-body li, .rtl.post-body ul, .rtl.post-body ol { direction: rtl; font-family: UKIJ Ekran; } .rtl.post-title { font-family: UKIJ Ekran; } .post-button { margin-top: 40px; text-align: center; } .use-motion .post-block, .use-motion .pagination, .use-motion .comments { visibility: hidden; } .use-motion .post-header { visibility: hidden; } .use-motion .post-body { visibility: hidden; } .use-motion .collection-header { visibility: hidden; } .posts-collapse .post-content { margin-bottom: 35px; margin-left: 35px; position: relative; } @media (max-width: 767px) { .posts-collapse .post-content { margin-left: 0; margin-right: 0; } } .posts-collapse .post-content .collection-title { font-size: 1.125em; position: relative; } .posts-collapse .post-content .collection-title::before { background: #999; border: 1px solid #fff; margin-left: -6px; margin-top: -4px; position: absolute; top: 50%; border-radius: 50%; content: ' '; height: 10px; width: 10px; } .posts-collapse .post-content .collection-year { font-size: 1.5em; font-weight: bold; margin: 60px 0; position: relative; } .posts-collapse .post-content .collection-year::before { background: #bbb; margin-left: -4px; margin-top: -4px; position: absolute; top: 50%; border-radius: 50%; content: ' '; height: 8px; width: 8px; } .posts-collapse .post-content .collection-header { display: block; margin-left: 20px; } .posts-collapse .post-content .collection-header small { color: #bbb; margin-left: 5px; } .posts-collapse .post-content .post-header { border-bottom: 1px dashed #ccc; margin: 30px 2px 0; padding-left: 15px; position: relative; transition: border 0.2s ease-in-out; } .posts-collapse .post-content .post-header::before { background: #bbb; border: 1px solid #fff; left: -6px; position: absolute; top: 0.75em; transition: background 0.2s ease-in-out; border-radius: 50%; content: ' '; height: 6px; width: 6px; } .posts-collapse .post-content .post-header:hover { border-bottom-color: #666; } .posts-collapse .post-content .post-header:hover::before { background: #222; } .posts-collapse .post-content .post-meta-container { display: inline; font-size: 0.75em; margin-right: 10px; } .posts-collapse .post-content .post-title { display: inline; } .posts-collapse .post-content .post-title a { border-bottom: 0; color: var(--link-color); } .posts-collapse .post-content .post-title .fa-external-link-alt { font-size: 0.875em; margin-left: 5px; } .posts-collapse .post-content::before { background: #f5f5f5; content: ' '; height: 100%; margin-left: -2px; position: absolute; top: 1.25em; width: 4px; } .post-body { font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif; overflow-wrap: break-word; } @media (min-width: 1200px) { .post-body { font-size: 1.125em; } } @media (min-width: 992px) { .post-body { text-align: justify; } } @media (max-width: 991px) { .post-body { text-align: justify; } } .post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5, .post-body h6 { padding-top: 10px; } .post-body h1 .header-anchor, .post-body h2 .header-anchor, .post-body h3 .header-anchor, .post-body h4 .header-anchor, .post-body h5 .header-anchor, .post-body h6 .header-anchor, .post-body h1 .headerlink, .post-body h2 .headerlink, .post-body h3 .headerlink, .post-body h4 .headerlink, .post-body h5 .headerlink, .post-body h6 .headerlink { border-bottom-style: none; color: inherit; float: right; font-size: 0.875em; margin-left: 10px; opacity: 0; } .post-body h1 .header-anchor::before, .post-body h2 .header-anchor::before, .post-body h3 .header-anchor::before, .post-body h4 .header-anchor::before, .post-body h5 .header-anchor::before, .post-body h6 .header-anchor::before, .post-body h1 .headerlink::before, .post-body h2 .headerlink::before, .post-body h3 .headerlink::before, .post-body h4 .headerlink::before, .post-body h5 .headerlink::before, .post-body h6 .headerlink::before { content: '\f0c1'; font-family: 'Font Awesome 5 Free'; font-weight: 900; } .post-body h1:hover .header-anchor, .post-body h2:hover .header-anchor, .post-body h3:hover .header-anchor, .post-body h4:hover .header-anchor, .post-body h5:hover .header-anchor, .post-body h6:hover .header-anchor, .post-body h1:hover .headerlink, .post-body h2:hover .headerlink, .post-body h3:hover .headerlink, .post-body h4:hover .headerlink, .post-body h5:hover .headerlink, .post-body h6:hover .headerlink { opacity: 0.5; } .post-body h1:hover .header-anchor:hover, .post-body h2:hover .header-anchor:hover, .post-body h3:hover .header-anchor:hover, .post-body h4:hover .header-anchor:hover, .post-body h5:hover .header-anchor:hover, .post-body h6:hover .header-anchor:hover, .post-body h1:hover .headerlink:hover, .post-body h2:hover .headerlink:hover, .post-body h3:hover .headerlink:hover, .post-body h4:hover .headerlink:hover, .post-body h5:hover .headerlink:hover, .post-body h6:hover .headerlink:hover { opacity: 1; } .post-body .exturl .fa { font-size: 0.875em; margin-left: 4px; } .post-body .image-caption, .post-body .figure .caption { color: #999; font-size: 0.875em; font-weight: bold; line-height: 1; margin: -20px auto 15px; text-align: center; } .post-body iframe, .post-body img, .post-body video, .post-body embed { margin-bottom: 20px; } .post-body .video-container { height: 0; margin-bottom: 20px; overflow: hidden; padding-top: 75%; position: relative; width: 100%; } .post-body .video-container iframe, .post-body .video-container object, .post-body .video-container embed { height: 100%; left: 0; margin: 0; position: absolute; top: 0; width: 100%; } .post-gallery { display: flex; min-height: 200px; } .post-gallery .post-gallery-image { flex: 1; } .post-gallery .post-gallery-image:not(:first-child) { clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%); margin-left: -20px; } .post-gallery .post-gallery-image:not(:last-child) { margin-right: -20px; } .post-gallery .post-gallery-image img { height: 100%; object-fit: cover; opacity: 1; width: 100%; } .posts-expand .post-gallery { margin-bottom: 60px; } .posts-collapse .post-gallery { margin: 15px 0; } .posts-expand .post-header { font-size: 1.125em; margin-bottom: 60px; text-align: center; } .posts-expand .post-title { font-size: 1.5em; font-weight: normal; margin: initial; overflow-wrap: break-word; } .posts-expand .post-title-link { border-bottom: 0; color: var(--link-color); display: inline-block; position: relative; } .posts-expand .post-title-link::before { background: var(--link-color); bottom: 0; content: ''; height: 2px; left: 0; position: absolute; transform: scaleX(0); transition: transform 0.2s ease-in-out; width: 100%; } .posts-expand .post-title-link:hover::before { transform: scaleX(1); } .posts-expand .post-title-link .fa-external-link-alt { font-size: 0.875em; margin-left: 5px; } .post-sticky-flag { display: inline-block; margin-right: 8px; transform: rotate(30deg); } .posts-expand .post-meta-container { color: #999; font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif; font-size: 0.75em; margin-top: 3px; } .posts-expand .post-meta-container .post-description { font-size: 0.875em; margin-top: 2px; } .posts-expand .post-meta-container time { border-bottom: 1px dashed #999; cursor: pointer; } .post-meta { display: flex; flex-wrap: wrap; justify-content: center; } .post-meta-item:not(:first-child)::before { content: '|'; margin: 0 0.5em; } .post-meta-item-icon { margin-right: 3px; } @media (max-width: 991px) { .post-meta-item-text { display: none; } } .post-nav { border-top: 1px solid #eee; display: flex; gap: 30px; justify-content: space-between; margin-top: 1em; padding: 10px 5px 0; } .post-nav-item { flex: 1; } .post-nav-item a { border-bottom: 0; display: block; font-size: 0.875em; line-height: 1.6; } .post-nav-item a:active { top: 2px; } .post-nav-item .fa { font-size: 0.75em; } .post-nav-item:first-child .fa { margin-right: 5px; } .post-nav-item:last-child { text-align: right; } .post-nav-item:last-child .fa { margin-left: 5px; } .post-footer { display: flex; flex-direction: column; justify-content: center; } .post-eof { background: #ccc; height: 1px; margin: 80px auto 60px; width: 8%; } .post-block:last-of-type .post-eof { display: none; } .post-tags { margin-top: 40px; text-align: center; } .post-tags a { display: inline-block; font-size: 0.8125em; } .post-tags a:not(:last-child) { margin-right: 10px; } .post-widgets { border-top: 1px solid #eee; margin-top: 15px; text-align: center; } .wp_rating { height: 20px; line-height: 20px; margin-top: 10px; padding-top: 6px; text-align: center; } .social-like { display: flex; font-size: 0.875em; justify-content: center; text-align: center; } .reward-container { margin: 1em 0 0; padding: 1em 0; text-align: center; } .reward-container button { background: transparent; border: 2px solid #fc6423; border-radius: 2px; color: #fc6423; cursor: pointer; line-height: 2; outline: 0; padding: 0 15px; transition: all 0.2s ease-in-out; vertical-align: text-top; } .reward-container button:hover { background: #fc6423; border: 2px solid transparent; color: #fff; } .post-reward { display: none; padding-top: 20px; } .post-reward.active { display: block; } .post-reward div { display: inline-block; } .post-reward div span { display: block; } .post-reward img { display: inline-block; margin: 0.8em 2em 0; max-width: 100%; width: 180px; } @-moz-keyframes next-roll { from { transform: rotateZ(30deg); } to { transform: rotateZ(-30deg); } } @-webkit-keyframes next-roll { from { transform: rotateZ(30deg); } to { transform: rotateZ(-30deg); } } @-o-keyframes next-roll { from { transform: rotateZ(30deg); } to { transform: rotateZ(-30deg); } } @keyframes next-roll { from { transform: rotateZ(30deg); } to { transform: rotateZ(-30deg); } } .category-all-page .category-all-title { text-align: center; } .category-all-page .category-all { margin-top: 20px; } .category-all-page .category-list { list-style: none; margin: 0; padding: 0; } .category-all-page .category-list-item { margin: 5px 10px; } .category-all-page .category-list-count { color: #bbb; } .category-all-page .category-list-count::before { content: ' ('; } .category-all-page .category-list-count::after { content: ') '; } .category-all-page .category-list-child { padding-left: 10px; } .event-list hr { background: #222; margin: 20px 0 45px; } .event-list hr::after { background: #222; color: #fff; content: 'NOW'; display: inline-block; font-weight: bold; padding: 0 5px; } .event-list .event { --event-background: #222; --event-foreground: #bbb; --event-title: #fff; background: var(--event-background); padding: 15px; } .event-list .event .event-summary { border-bottom: 0; color: var(--event-title); margin: 0; padding: 0 0 0 35px; position: relative; } .event-list .event .event-summary::before { animation: dot-flash 1s alternate infinite ease-in-out; background: var(--event-title); left: 0; margin-top: -6px; position: absolute; top: 50%; border-radius: 50%; content: ' '; height: 12px; width: 12px; } .event-list .event:nth-of-type(odd) .event-summary::before { animation-delay: 0.5s; } .event-list .event:not(:last-child) { margin-bottom: 20px; } .event-list .event .event-relative-time { color: var(--event-foreground); display: inline-block; font-size: 12px; font-weight: normal; padding-left: 12px; } .event-list .event .event-details { color: var(--event-foreground); display: block; line-height: 18px; padding: 6px 0 6px 35px; } .event-list .event .event-details::before { color: var(--event-foreground); display: inline-block; margin-right: 9px; width: 14px; font-family: 'Font Awesome 5 Free'; font-weight: 900; } .event-list .event .event-details.event-location::before { content: '\f041'; } .event-list .event .event-details.event-duration::before { content: '\f017'; } .event-list .event .event-details.event-description::before { content: '\f024'; } .event-list .event-past { --event-background: #f5f5f5; --event-foreground: #999; --event-title: #222; } @-moz-keyframes dot-flash { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.8); } } @-webkit-keyframes dot-flash { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.8); } } @-o-keyframes dot-flash { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.8); } } @keyframes dot-flash { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.8); } } ul.breadcrumb { font-size: 0.75em; list-style: none; margin: 1em 0; padding: 0 2em; text-align: center; } ul.breadcrumb li { display: inline; } ul.breadcrumb li:not(:first-child)::before { content: '/\00a0'; font-weight: normal; padding: 0.5em; } ul.breadcrumb li:last-child { font-weight: bold; } .tag-cloud { text-align: center; } .tag-cloud a { display: inline-block; margin: 10px; } .tag-cloud-0 { border-bottom-color: #aaa; color: #aaa; } .tag-cloud-1 { border-bottom-color: #9a9a9a; color: #9a9a9a; } .tag-cloud-2 { border-bottom-color: #8b8b8b; color: #8b8b8b; } .tag-cloud-3 { border-bottom-color: #7c7c7c; color: #7c7c7c; } .tag-cloud-4 { border-bottom-color: #6c6c6c; color: #6c6c6c; } .tag-cloud-5 { border-bottom-color: #5d5d5d; color: #5d5d5d; } .tag-cloud-6 { border-bottom-color: #4e4e4e; color: #4e4e4e; } .tag-cloud-7 { border-bottom-color: #3e3e3e; color: #3e3e3e; } .tag-cloud-8 { border-bottom-color: #2f2f2f; color: #2f2f2f; } .tag-cloud-9 { border-bottom-color: #202020; color: #202020; } .tag-cloud-10 { border-bottom-color: #111; color: #111; } .search-active { overflow: hidden; } .search-pop-overlay { background: rgba(0,0,0,0); display: flex; height: 100%; left: 0; position: fixed; top: 0; transition: visibility 0.4s, background 0.4s; visibility: hidden; width: 100%; z-index: 1400; } .search-active .search-pop-overlay { background: rgba(0,0,0,0.3); visibility: visible; } .search-popup { background: var(--card-bg-color); border-radius: 5px; height: 80%; margin: auto; transform: scale(0); transition: transform 0.4s; width: 700px; } .search-active .search-popup { transform: scale(1); } @media (max-width: 767px) { .search-popup { border-radius: 0; height: 100%; width: 100%; } } .search-popup .search-icon, .search-popup .popup-btn-close { color: #999; font-size: 18px; padding: 0 10px; } .search-popup .popup-btn-close { cursor: pointer; } .search-popup .popup-btn-close:hover .fa { color: #222; } .search-popup .search-header { background: #eee; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; padding: 5px; } .search-popup input.search-input { background: transparent; border: 0; outline: 0; width: 100%; } .search-popup input.search-input::-webkit-search-cancel-button { display: none; } .search-popup .search-result-container { height: calc(100% - 55px); overflow: auto; padding: 5px 25px; } .search-popup .search-result-container hr { margin: 5px 0 10px; } .search-popup .search-result-container hr:first-child { display: none; } .search-popup .search-result-list { margin: 0 5px; padding: 0; } .search-popup a.search-result-title { font-weight: bold; } .search-popup p.search-result { border-bottom: 1px dashed #ccc; padding: 5px 0; } .search-popup .search-input-container { flex-grow: 1; padding: 2px; } .search-popup .no-result { display: flex; } .search-popup .search-result-list { width: 100%; } .search-popup .search-result-icon { color: #ccc; margin: auto; } mark.search-keyword { background: transparent; border-bottom: 1px dashed #ff2a2a; color: #ff2a2a; font-weight: bold; } .use-motion .animated { animation-fill-mode: none; visibility: inherit; } .use-motion .sidebar .animated { animation-fill-mode: both; } .header-inner { background: var(--content-bg-color); border-radius: initial; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12); width: 240px; } @media (max-width: 991px) { .header-inner { border-radius: initial; width: auto; } } .main { align-items: stretch; display: flex; justify-content: space-between; margin: 0 auto; width: calc(100% - 20px); } @media (min-width: 1200px) { .main { width: 1160px; } } @media (min-width: 1600px) { .main { width: 73%; } } @media (max-width: 991px) { .main { display: block; width: auto; } } .main-inner { border-radius: initial; box-sizing: border-box; width: calc(100% - 252px); } @media (max-width: 991px) { .main-inner { border-radius: initial; width: 100%; } } .footer-inner { padding-left: 252px; } @media (max-width: 991px) { .footer-inner { padding-left: 0; padding-right: 0; width: auto; } } .site-brand-container { background: #222; } @media (max-width: 991px) { .site-nav-on .site-brand-container { box-shadow: 0 0 16px rgba(0,0,0,0.5); } } .site-meta { padding: 20px 0; } .brand { padding: 0; } .site-subtitle { margin: 10px 10px 0; } @media (min-width: 768px) and (max-width: 991px) { .site-nav-toggle, .site-nav-right { display: flex; flex-direction: column; justify-content: center; } } .site-nav-toggle .toggle, .site-nav-right .toggle { color: #fff; } .site-nav-toggle .toggle .toggle-line, .site-nav-right .toggle .toggle-line { background: #fff; } @media (min-width: 768px) and (max-width: 991px) { .site-nav { display: none; } } .menu .menu-item { display: block; margin: 0; } .menu .menu-item a { padding: 5px 20px; position: relative; text-align: left; transition-property: background-color; } @media (max-width: 991px) { .menu .menu-item.menu-item-search { display: none; } } .menu .menu-item .badge { background: #ccc; border-radius: 10px; color: var(--content-bg-color); float: right; padding: 2px 5px; text-shadow: 1px 1px 0 rgba(0,0,0,0.1); } .main-menu .menu-item-active::after { background: #bbb; border-radius: 50%; content: ' '; height: 6px; margin-top: -3px; position: absolute; right: 15px; top: 50%; width: 6px; } .sub-menu { margin: 0; padding: 6px 0; } .sub-menu .menu-item { display: inline-block; } .sub-menu .menu-item a { background: transparent; margin: 5px 10px; padding: initial; } .sub-menu .menu-item a:hover { background: transparent; color: #fc6423; } .sub-menu .menu-item-active { border-bottom-color: #fc6423; color: #fc6423; } .sub-menu .menu-item-active:hover { border-bottom-color: #fc6423; } .sidebar { margin-top: 12px; position: -webkit-sticky; position: sticky; top: 12px; width: 240px; visibility: hidden; } @media (max-width: 991px) { .sidebar { display: none; } } .sidebar-toggle { display: none; } .sidebar-inner { background: var(--content-bg-color); border-radius: initial; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12), 0 -1px 0.5px 0 rgba(0,0,0,0.09); box-sizing: border-box; color: var(--text-color); } .site-state-item { padding: 0 10px; } .sidebar .sidebar-button { border-bottom: 1px dotted #ccc; border-top: 1px dotted #ccc; } .sidebar .sidebar-button a { border: 0; color: #fc6423; display: block; } .sidebar .sidebar-button a:hover { background: none; border: 0; color: #e34603; } .sidebar .sidebar-button a:hover .fa, .sidebar .sidebar-button a:hover .fab, .sidebar .sidebar-button a:hover .far, .sidebar .sidebar-button a:hover .fas { color: #e34603; } .links-of-author { display: flex; flex-wrap: wrap; justify-content: center; } .links-of-author-item { margin: 5px 0 0; width: 50%; } .links-of-author-item a { box-sizing: border-box; display: inline-block; max-width: 100%; overflow: hidden; padding: 0 5px; text-overflow: ellipsis; white-space: nowrap; } .links-of-author-item a { border-bottom: 0; border-radius: 4px; display: block; } .links-of-author-item a:hover { background: var(--body-bg-color); } .main-inner > .sub-menu, .main-inner > .post-block, .main-inner > .tabs-comment, .main-inner > .comments, .main-inner > .pagination { background: var(--content-bg-color); border-radius: initial; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12); } .main-inner > .sub-menu:not(:first-child):not(.sub-menu), .main-inner > .post-block:not(:first-child):not(.sub-menu), .main-inner > .tabs-comment:not(:first-child):not(.sub-menu), .main-inner > .comments:not(:first-child):not(.sub-menu), .main-inner > .pagination:not(:first-child):not(.sub-menu) { border-radius: initial; box-shadow: 0 2px 2px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.06), 0 1px 5px 0 rgba(0,0,0,0.12), 0 -1px 0.5px 0 rgba(0,0,0,0.09); margin-top: 12px; } @media (min-width: 768px) and (max-width: 991px) { .main-inner > .sub-menu:not(:first-child):not(.sub-menu), .main-inner > .post-block:not(:first-child):not(.sub-menu), .main-inner > .tabs-comment:not(:first-child):not(.sub-menu), .main-inner > .comments:not(:first-child):not(.sub-menu), .main-inner > .pagination:not(:first-child):not(.sub-menu) { margin-top: 10px; } } @media (max-width: 767px) { .main-inner > .sub-menu:not(:first-child):not(.sub-menu), .main-inner > .post-block:not(:first-child):not(.sub-menu), .main-inner > .tabs-comment:not(:first-child):not(.sub-menu), .main-inner > .comments:not(:first-child):not(.sub-menu), .main-inner > .pagination:not(:first-child):not(.sub-menu) { margin-top: 8px; } } .post-block, .comments { padding: 40px; } .post-eof { display: none; } .pagination { border-top: initial; padding: 10px 0; } .post-body h1, .post-body h2 { border-bottom: 1px solid #eee; } .post-body h3 { border-bottom: 1px dotted #eee; } @media (min-width: 768px) and (max-width: 991px) { .main-inner { padding: 10px; } .posts-expand .post-button { margin-top: 20px; } .post-block { padding: 20px; } .comments { padding: 10px 20px; } } @media (max-width: 767px) { .main-inner { padding: 8px; } .posts-expand .post-button { margin: 12px 0; } .post-block { padding: 12px; } .comments { padding: 10px 12px; } }
public/js/jqzoom_ev/css/jquery.jqzoom.css
ducngoc110/web-ban-hang
.zoomPad{ position:relative; float:left; z-index:99; cursor:crosshair; } .zoomPreload{ -moz-opacity:0.8; opacity: 0.8; filter: alpha(opacity = 80); color: #333; font-size: 12px; font-family: Tahoma; text-decoration: none; border: 1px solid #CCC; background-color: white; padding: 8px; text-align:center; background-image: url(../images/zoomloader.gif); background-repeat: no-repeat; background-position: 43px 30px; z-index:110; width:90px; height:43px; position:absolute; top:0px; left:0px; * width:100px; * height:49px; } .zoomPup{ overflow:hidden; background-color: #FFF; -moz-opacity:0.6; opacity: 0.6; filter: alpha(opacity = 60); z-index:120; position:absolute; border:1px solid #CCC; z-index:101; cursor:crosshair; } .zoomOverlay{ position:absolute; left:0px; top:0px; background:#FFF; /*opacity:0.5;*/ z-index:5000; width:100%; height:100%; display:none; z-index:101; } .zoomWindow{ position:absolute; left:110%; top:40px; background:#FFF; z-index:6000; height:auto; z-index:10000; z-index:110; } .zoomWrapper{ position:relative; border:1px solid #999; z-index:110; } .zoomWrapperTitle{ display:block; background:#999; color:#FFF; height:18px; line-height:18px; width:100%; overflow:hidden; text-align:center; font-size:10px; position:absolute; top:0px; left:0px; z-index:120; -moz-opacity:0.6; opacity: 0.6; filter: alpha(opacity = 60); } .zoomWrapperImage{ display:block; position:relative; overflow:hidden; z-index:110; } .zoomWrapperImage img{ border:0px; display:block; position:absolute; z-index:101; } .zoomIframe{ z-index: -1; filter:alpha(opacity=0); -moz-opacity: 0.80; opacity: 0.80; position:absolute; display:block; } ul#thumblist{display:block;} ul#thumblist li{float:left;margin-right:2px;list-style:none;} ul#thumblist li a{display:block;border:1px solid #CCC;} ul#thumblist li a.zoomThumbActive{ border:1px solid red; } ul#thumblist li a img { width:50px;height:50px; } .jqzoom{ text-decoration:none; /*float:left;*/ } /********************************************************* / When clicking on thumbs jqzoom will add the class / "zoomThumbActive" on the anchor selected /*********************************************************/
Reports/de/developersdo.dataannotations.1.0.1/DevelopersDo.Validator-net40.html
kuhlenh/port-to-core
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; f2e427ac-1d24-4919-90d4-cbf3f73c8477 </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#DevelopersDo.Validator">DevelopersDo.Validator</a></strong></td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">100.00 %</td> </tr> </tbody> </table> </div> <div id="details"> </div> </div> </body> </html>
web/css/style.css
chyzas/kapietums
.login { margin: 0 auto; width: 600px; /* Whatever exact width you are looking for (not bound by preset bootstrap widths) */ border: double; }
src/index.html
cesalberca/Portfolio
<!doctype html> <html class="no-js" lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Portfolio - César Alberca</title> <meta name="description" content="Personal portfolio for César Alberca"> <meta name="viewport" content="width=device-width, initial-scale=1"> <base href="" target="_blank"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <link rel='shortcut icon' type='image/x-icon' href='./favicon.ico' /> <link rel="stylesheet" href="css/main.css"> </head> <body> <!--[if lte IE 9]> <p class="browserupgrade">Estás usando un navegador <strong>desactualizado</strong>. Por favor <a href="http://browsehappy.com/">actualizar tu navegador</a> para mejorar la experiencia de navegación y la seguridad.</p> <![endif]--> <iframe id="project-showcase" frameborder="0"></iframe> <nav class="nav box-shadow--1"> <a class="nav__links centered" target="_self" href="./index.html"> <img class="nav__logo" src="./img/logo.gif" alt="Logo César Alberca"> <span class="nav__title"><strong class="text-color--dark">César Alberca</strong></span> </a> <a class="nav__links" target="_self" href="#proyectos">Proyectos</a> <a class="nav__links" target="_self" href="#contacto">Contacto</a> <a class="nav__links" href="http://cesalberca.es">Blog</a> </nav> <main class="wrapper"> <section class="hero"> <div class="container"> <p class="hero__description" id="my-description">Soy <strong>César Alberca</strong> y soy un <strong>front end developer</strong>.<br/>Soy alguien <em>apasionado</em>, <em>entusiasta</em> y <em>autodidacta.</em></p> </div> <h1 class="hero__title no-margin">#CODE</h1> </section> <section class="container background-color--primary"> <a name="proyectos"><h1 class="text-color--primary text-shadow--5">Mis proyectos</h1></a> <div class="grid"> <div class="grid__row"> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" target="_self" title="DailyPlanner. Agenda para organizar el día usando Javascript y Drag and Drop." data-scroll-to data-project-src="DailyPlanner/src/index.html"> <h4 class="project-frame__title text-shadow--5">DailyPlanner</h4> </a> <div class="project-frame__tags"> <span class="tag">Javascript</span> <span class="tag">Drag and drop</span> </div> </div> <img class="project-frame__media" src="./img/dailyPlanner-hero.png"/> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" data-scroll-to data-project-src="Arkanoid/index.html"> <h4 class="project-frame__title text-shadow--5">Arkanoid</h4> </a> <div class="project-frame__tags"> <span class="tag">Javascript</span> <span class="tag">Canvas</span> </div> </div> <img class="project-frame__media" src="./img/arkanoid-hero.png"/> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" data-scroll-to data-project-src="blog-ciencia/index.html"> <h4 class="project-frame__title text-shadow--5">Blog de ciencia</h4> </a> <div class="project-frame__tags"> <span class="tag">Html</span> <span class="tag">Css</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/blog-ciencia-hero.png"/> </div> </div> </div> </div> <div class="grid__row"> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" data-scroll-to data-project-src="star-generator/index.html"> <h4 class="project-frame__title text-shadow--5">Star generator</h4> </a> <div class="project-frame__tags"> <span class="tag">Javascript</span> <span class="tag">Canvas</span> </div> </div> <iframe class="project-frame__media project-frame__media--2x" src="./projects/star-generator/index.html"></iframe> </div> </div> </div> <div class="grid__box"> <div class="grid__box__content"> <div class="grid__row grid__row--horizontal grid__row--gutter-in-between"> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://deltawolves.com"> <h4 class="project-frame__title text-shadow--5">Delta Wolves</h4> </a> <div class="project-frame__tags"> <span class="tag">Html</span> <span class="tag">Css</span> <span class="tag">Bower</span> </div> </div> <img class="project-frame__media" src="./img/deltawolves-hero.png"/> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://laminastratamientocristal.es"> <h4 class="project-frame__title text-shadow--5">LTC</h4> </a> <div class="project-frame__tags"> <span class="tag">Html</span> <span class="tag">Css</span> <span class="tag">Bower</span> </div> </div> <img class="project-frame__media" src="./img/ltc-hero.png"/> </div> </div> </div> </div> </div> </div> </div> <div class="grid__row"> <div class="grid__box"> <div class="grid__box__content"> <div class="card card--transparent centered"> <div class="card__content"> <a id="contacto"></a> <div><h2 class="no-margin text-color--primary text-shadow--5">Contacto</h2></div> <div><a href="http://github.com/cesalberca">Github</a></div> <div><a href="http://codepen.io/cesalberca">Codepen</a></div> <div><a href="http://twitter.com/cesalberca">Twitter</a></div> <div><a href="mailto:cesalberca@gmail.com">Email</a></div> </div> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://cesalberca.es"> <h4 class="project-frame__title text-shadow--5">Blog</h4> </a> <div class="project-frame__tags"> <span class="tag">Html</span> <span class="tag">Css</span> <span class="tag">Ruby</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/cesalberca-hero.png"/> </div> </div> </div> </div> <div class="grid__row"> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://github.com/cesalberca/mvccalculator"> <h4 class="project-frame__title text-shadow--5">MVCCalculator</h4> </a> <div class="project-frame__tags"> <span class="tag">Java</span> <span class="tag">MVC</span> <span class="tag">Observer</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/mvcalculator-hero.png"/> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://github.com/cesalberca/mercato"> <h4 class="project-frame__title text-shadow--5">Mercato</h4> </a> <div class="project-frame__tags"> <span class="tag">Java</span> <span class="tag">Sqlite</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/mercato-hero.png"/> </div> </div> </div> </div> <div class="grid__row"> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://codepen.io/collection/AvKwjb/"> <h4 class="project-frame__title text-shadow--5">UI</h4> </a> <div class="project-frame__tags"> <span class="tag">Html</span> <span class="tag">Css</span> <span class="tag">Sass</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/ui-hero.png"/> </div> </div> </div> <div class="grid__box box-shadow--5"> <div class="grid__box__content"> <div class="project-frame"> <div class="project-frame__meta"> <a class="project-frame__link" href="http://codepen.io/collection/nedMMy/"> <h4 class="project-frame__title text-shadow--5">Experimentos</h4> </a> <div class="project-frame__tags"> <span class="tag">Javascript</span> <span class="tag">ES6</span> </div> </div> <img class="project-frame__media project-frame__media--centered" src="./img/markov-it-hero.png"/> </div> </div> </div> <div class="grid__box"> <div class="grid__box__content"> <button class="btn btn--full" data-scroll-to>Volver arriba ⬆</button> </div> </div> </div> </div> </section> </main> <footer class="footer"> <h1 class="centered no-margin text-color--primary text-shadow--5">Ahora mismo acepto ofertas de empleo</h1> </footer> <script src="js/index.js"></script> <script> window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date; ga('create','UA-XXXXX-Y','auto');ga('send','pageview') </script> <script src="https://www.google-analytics.com/analytics.js" async defer></script> </body> </html>
docs/interfaces/seng_event_lib_isomorphicbaseevent.eventoptions.html
mediamonks/seng-event
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>EventOptions | seng-event</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">seng-event</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-externals" checked /> <label class="tsd-widget" for="tsd-filter-externals">Externals</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="../modules/seng_event_lib_isomorphicbaseevent.html">seng-event/lib/IsomorphicBaseEvent</a> </li> <li> <a href="seng_event_lib_isomorphicbaseevent.eventoptions.html">EventOptions</a> </li> </ul> <h1>Interface EventOptions</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-comment"> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Options object as passed to <a href="../modules/seng_event.html#createisomorphiceventclass">createIsomorphicEventClass</a></p> </div> </div> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">EventOptions</span> </li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section "> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-interface"><a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#bubbles" class="tsd-kind-icon">bubbles</a></li> <li class="tsd-kind-property tsd-parent-kind-interface"><a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#cancelable" class="tsd-kind-icon">cancelable</a></li> <li class="tsd-kind-property tsd-parent-kind-interface"><a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#settimestamp" class="tsd-kind-icon">set<wbr>Time<wbr>Stamp</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"> <a name="bubbles" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagOptional">Optional</span> bubbles</h3> <div class="tsd-signature tsd-kind-icon">bubbles<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">true</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mediamonks/seng-event/blob/98d7e85/src/lib/IsomorphicBaseEvent.ts#L12">lib/IsomorphicBaseEvent.ts:12</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"> <a name="cancelable" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagOptional">Optional</span> cancelable</h3> <div class="tsd-signature tsd-kind-icon">cancelable<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">true</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mediamonks/seng-event/blob/98d7e85/src/lib/IsomorphicBaseEvent.ts#L13">lib/IsomorphicBaseEvent.ts:13</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"> <a name="settimestamp" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagOptional">Optional</span> set<wbr>Time<wbr>Stamp</h3> <div class="tsd-signature tsd-kind-icon">set<wbr>Time<wbr>Stamp<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">false</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">true</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mediamonks/seng-event/blob/98d7e85/src/lib/IsomorphicBaseEvent.ts#L14">lib/IsomorphicBaseEvent.ts:14</a></li> </ul> </aside> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/seng_event.html">seng-<wbr>event</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/seng_event_lib_baseevent.html">seng-<wbr>event/lib/<wbr>Base<wbr>Event</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/seng_event_lib_eventtypings.html">seng-<wbr>event/lib/<wbr>Event<wbr>Typings</a> </li> <li class="current tsd-kind-external-module"> <a href="../modules/seng_event_lib_isomorphicbaseevent.html">seng-<wbr>event/lib/<wbr>Isomorphic<wbr>Base<wbr>Event</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/seng_event_lib_eventhastype.html">seng-<wbr>event/lib/event<wbr>Has<wbr>Type</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-class tsd-parent-kind-external-module tsd-has-type-parameter"> <a href="../classes/seng_event_lib_isomorphicbaseevent.isomorphicbaseevent.html" class="tsd-kind-icon">Isomorphic<wbr>Base<wbr>Event</a> </li> </ul> <ul class="current"> <li class="current tsd-kind-interface tsd-parent-kind-external-module"> <a href="seng_event_lib_isomorphicbaseevent.eventoptions.html" class="tsd-kind-icon">Event<wbr>Options</a> <ul> <li class=" tsd-kind-property tsd-parent-kind-interface"> <a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#bubbles" class="tsd-kind-icon">bubbles</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface"> <a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#cancelable" class="tsd-kind-icon">cancelable</a> </li> <li class=" tsd-kind-property tsd-parent-kind-interface"> <a href="seng_event_lib_isomorphicbaseevent.eventoptions.html#settimestamp" class="tsd-kind-icon">set<wbr>Time<wbr>Stamp</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
_layouts/post.html
Apex95/apex95.github.io
--- layout: default --- <article class="post" itemscope itemtype="http://schema.org/BlogPosting"> <header class="post-header"> <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1> <div class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time> <div id="reading-time">{% assign words = content | strip_html | number_of_words %} {{ words | divided_by: 180 | plus: 1 }} min. read</div> </div> </header> <div class="post-content" itemprop="articleBody"> {{ content }} </div> <div class="post-tags"> {% for tag in page.tags %} <a class="category-link" href="/tag/{{tag}}">{{tag}}</a>{% endfor; %} </div> {% include author.html %} </article>
www/templates/search.html
wgbn/agenda-academica-cimatec
<ion-view view-title="Search"> <ion-content> <h1>Search</h1> <input kendo-date-picker/> <button class="k-primary">botão</button> </ion-content> </ion-view>
gwern_maff/1383493754540_865/index_files/rs=AItRSTMfTyaqT01rTKlH1eTro5b8vfhQGg.css
runn1ng/runn1ng.github.io
/* Effective stylesheet produced by snapshot save */ .b-c { border-radius: 2px 2px 2px 2px; cursor: default; font-size: 12px; font-weight: bold; text-align: center; white-space: nowrap; margin-right: 16px; height: 28px; line-height: 28px; min-width: 54px; outline: 0px none; padding: 0px 8px; } .b-c-Ba { box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05); background-color: rgb(83, 169, 63); background-image: -moz-linear-gradient(center top , transparent, transparent); border: 1px solid transparent; color: rgb(255, 255, 255); text-shadow: none; } .b-c-Ba:focus { box-shadow: none; border: 1px solid transparent; outline: 4px solid rgb(199, 220, 252); } .b-c-Ba:active { box-shadow: 0px 1px 0px rgb(47, 97, 36) inset; background: none repeat scroll 0% 0% rgb(62, 128, 47); border-right: 1px solid transparent; border-width: 1px; border-style: solid; border-color: rgb(47, 97, 36) transparent transparent; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; } .b-c-R { box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05); background-color: rgb(255, 255, 255); background-image: -moz-linear-gradient(center top , transparent, transparent); color: rgb(64, 64, 64); border: 1px solid rgba(0, 0, 0, 0.15); } .b-c-R:active, .b-c-R.b-c-u:active { box-shadow: 0px 2px 0px rgb(221, 221, 221) inset; background: none repeat scroll 0% 0% rgb(229, 229, 229); color: rgb(38, 38, 38); } .b-c-R:focus { border: 1px solid rgb(217, 217, 217); outline: 4px solid rgb(199, 220, 252); } .Vzc { font: 13px Roboto,arial,sans-serif; margin: 0px; } .Rzc { padding: 118px 0px; font: 16px Roboto,arial,sans-serif; color: rgb(170, 170, 170); text-align: center; background-color: rgb(229, 229, 229); } .Tzc { height: 32px; width: 32px; margin: 0px auto; } .Szc { padding-top: 40px; } .sib { position: relative; } #notify-widget-pane { pointer-events: none; position: fixed; width: 100%; z-index: 1111; } .Uv { background-image: url("urn:not-loaded:https://ssl.gstatic.com/ui/v1/activityindicator/loading_16.gif"); background-position: left center; background-repeat: no-repeat; border: 0px none; display: inline-block; height: 16px; padding-left: 20px; } .PA { color: rgb(204, 204, 204); display: block; text-align: center; padding: 10px 0px; } .d-s, .o-U-s { color: rgb(66, 127, 237); cursor: pointer; } .d-s:hover, .o-U-s:hover { text-decoration: underline; } .Mb .d-s, .Mb .d-s-I { outline: medium none; } button, input, select, textarea { font-family: inherit; } a { color: rgb(66, 127, 237); cursor: pointer; text-decoration: none; } a:hover, a:active { text-decoration: underline; } @keyframes dropoff { 0% { transform: translate3d(0px, 0px, 0px); } 90% { opacity: 1; } 100% { opacity: 0; transform: translate3d(0px, 1500px, 0px); } } @keyframes slideup { 0% { transform: translate3d(0px, 500px, 0px); opacity: 0; } 100% { transform: translate3d(0px, 0px, 0px); opacity: 1; } } @keyframes slidein { 0% { transform: translate3d(410px, 0px, 300px) rotateY(-30deg); } 15.789% { transform: translate3d(252px, 0px, 150px) rotateY(-18.38deg); } 31.579% { transform: translate3d(143px, 0px, 43px) rotateY(-7.574deg); } 47.368% { transform: translate3d(72px, 0px, 2px) rotateY(-0.649deg); } 63.158% { transform: translate3d(31px, 0px, 0px) rotateY(0deg); } 78.947% { transform: translate3d(9px, 0px, 0px) rotateY(0deg); } 94.737% { transform: translate3d(1px, 0px, 0px) rotateY(0deg); } 100% { transform: translate3d(0px, 0px, 0px) rotateY(0deg); } } .uta .Spa:nth-child(1) { animation-delay: 0.1s; } .uta .Spa:nth-child(2) { animation-delay: 0.2s; } .uta .Spa:nth-child(3) { animation-delay: 0.3s; } .uta .Spa:nth-child(4) { animation-delay: 0.4s; } .uta .Spa:nth-child(5) { animation-delay: 0.5s; } .uta .Spa:nth-child(6) { animation-delay: 0.6s; } .uta .Spa:nth-child(7) { animation-delay: 0.7s; } .uta .Spa:nth-child(8) { animation-delay: 0.8s; } .uta .Spa:nth-child(9) { animation-delay: 0.9s; } @keyframes slideInAndOut { 0% { transform: translate3d(-334px, 0px, 0px); } 17% { transform: translate3d(0px, 0px, 0px); } 33% { transform: translate3d(334px, 0px, 0px); } 100% { transform: translate3d(334px, 0px, 0px); } } .aac { background-color: rgb(229, 229, 229); outline: medium none; padding-bottom: 20px; } .rTvtwe, .y9fV { padding-bottom: 0px; } .Nac { color: rgb(64, 64, 64); font: 13px Roboto,arial,sans-serif; height: 40px; overflow: visible; padding: 4px 20px; width: 360px; } .i4a { opacity: 0.27; cursor: pointer; float: right; } .i4a:hover { opacity: 0.55; } .xQb { display: inline-block; line-height: 40px; margin-left: 40px; text-align: center; width: 280px; vertical-align: top; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .Pac { color: rgb(64, 64, 64); font: 13px Roboto,arial,sans-serif; } .yQb, .PNc, .i4a { display: inline-block; padding: 12px; position: relative; } .jPa { position: relative; top: -40px; visibility: hidden; } .jPa .Uv { text-indent: -10000px; } .h4a { overflow: hidden; } .jac { border-bottom: 1px solid rgba(0, 0, 0, 0.05); color: rgb(153, 153, 153); cursor: default; line-height: 1px; margin: 20px; text-align: center; } .kac { background-color: rgb(229, 229, 229); font-size: 11px; padding: 0px 30px; } .iac { overflow: auto; } .lac { height: 4px; position: relative; width: 364px; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12); z-index: 1; left: -2px; } .Mb .FGdvQc { outline: medium none; } .HZhOCd { box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12); height: 4px; left: 18px; position: absolute; top: 44px; width: 364px; z-index: 1; } .FGdvQc { overflow-x: hidden; overflow-y: auto; min-height: 200px; } .HEAp2c { padding-bottom: 20px; } .MNn0h { border-radius: 3px 3px 0px 0px; background: none repeat scroll 0% 0% rgb(235, 235, 235); cursor: pointer; line-height: 14px; margin: 0px 0px 0px 20px; padding: 16px 0px; text-align: center; width: 360px; } .YGETNc { color: rgb(115, 115, 115); font-size: 13px; } .MNn0h.RATVS, .MNn0h:hover { background: none repeat scroll 0% 0% rgb(241, 241, 241); } .MNn0h:hover .YGETNc, .MNn0h.RATVS .YGETNc, .y9fV .YGETNc { color: rgb(38, 38, 38); } .y9fV .MNn0h { border-radius: 0px 0px 0px 0px; background: none repeat scroll 0% 0% transparent; } .Mb .MNn0h { outline: medium none; } .o6V5ne { opacity: 0.55; display: inline-block; margin: 0px 0px 0px 10px; vertical-align: bottom; } .MNn0h:hover .o6V5ne, .MNn0h.RATVS .o6V5ne, .y9fV .o6V5ne { opacity: 0.7; } .wac { height: 40px; padding: 4px 20px; } .Jac { float: right; } .ihb { padding: 12px; } .vac { line-height: 40px; } .Kac { box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12); height: 4px; left: -2px; position: relative; width: 364px; z-index: 1; } .Kub .vwa { opacity: 0.27; transition: opacity 0.2s ease 0s; visibility: visible; } .Kub .vwa:hover { opacity: 0.55; } .vwa { opacity: 0; transition: opacity 0.2s ease 0s; cursor: pointer; display: inline-block; position: relative; vertical-align: middle; visibility: hidden; } .jQb { opacity: 0; transition: opacity 0.2s ease 0s; border-right: 1px solid rgb(0, 0, 0); display: inline-block; height: 20px; vertical-align: middle; visibility: hidden; } .Kub .jQb { opacity: 0.05; visibility: visible; } .nfe { background-color: rgb(229, 229, 229); outline: medium none; padding-bottom: 15px; } .ipd { overflow-x: hidden; overflow-y: auto; } .shb { background: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg-63ca186dad116900233bf5802f18fc81.png") no-repeat scroll -18px -66px transparent; height: 16px; width: 16px; } .khb { background: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg-63ca186dad116900233bf5802f18fc81.png") no-repeat scroll 0px -84px transparent; height: 16px; width: 16px; } .Qgb { background: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg-63ca186dad116900233bf5802f18fc81.png") no-repeat scroll -408px -82px transparent; display: inline-block; height: 20px; vertical-align: -5px; width: 20px; } .whb, .aby1qf { height: 32px; width: 32px; margin: 0px auto; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/notifications/spinner_32_041dcfce66a2d43215abb96b38313ba0.gif"); } .Ygb { background: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg-63ca186dad116900233bf5802f18fc81.png") no-repeat scroll -266px -164px transparent; height: 16px; width: 16px; } .jPa .Uv { background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/notifications/spinner_16_c173ddb7b3b2688a5b5c5b000d0acb31.gif"); } .NEgqud { background: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg-63ca186dad116900233bf5802f18fc81.png") no-repeat scroll -252px -164px transparent; height: 12px; width: 12px; } @media (min-resolution: 144dpi), not all { .shb { background-color: transparent; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg_2x-a09ee5030a02ef680da595c6a3803ac6.png"); background-repeat: no-repeat; background-attachment: scroll; background-position: -17px -914px; background-clip: border-box; background-origin: padding-box; background-size: 127px 930px; height: 16px; width: 16px; } .khb { background-color: transparent; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg_2x-a09ee5030a02ef680da595c6a3803ac6.png"); background-repeat: no-repeat; background-attachment: scroll; background-position: -81px -462px; background-clip: border-box; background-origin: padding-box; background-size: 127px 930px; height: 16px; width: 16px; } .Qgb { background-color: transparent; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg_2x-a09ee5030a02ef680da595c6a3803ac6.png"); background-repeat: no-repeat; background-attachment: scroll; background-position: -81px -543px; background-clip: border-box; background-origin: padding-box; background-size: 127px 930px; height: 20px; width: 20px; } .whb, .aby1qf { background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/notifications/spinner_64_3f4fa14117c586c002a98cd7c5fbb2d3.gif"); background-size: contain; } .Ygb { background-color: transparent; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg_2x-a09ee5030a02ef680da595c6a3803ac6.png"); background-repeat: no-repeat; background-attachment: scroll; background-position: -64px -202px; background-clip: border-box; background-origin: padding-box; background-size: 127px 930px; height: 16px; width: 16px; } .jPa .Uv { background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/notifications/spinner_32_041dcfce66a2d43215abb96b38313ba0.gif"); background-size: contain; } .NEgqud { background-color: transparent; background-image: url("urn:not-loaded:https://ssl.gstatic.com/s2/oz/images/sprites/notsg_2x-a09ee5030a02ef680da595c6a3803ac6.png"); background-repeat: no-repeat; background-attachment: scroll; background-position: -34px -428px; background-clip: border-box; background-origin: padding-box; background-size: 127px 930px; height: 12px; width: 12px; } } .OUtAY { padding: 70px 0px; text-align: center; } .keVdsb { color: rgb(170, 170, 170); font: 16px Roboto,arial,sans-serif; padding: 40px 0px; position: relative; } .z6vYse { border-radius: 3px 3px 3px 3px; background-color: rgb(229, 229, 229); cursor: pointer; font: 13px Roboto,arial,sans-serif; margin: 0px 20px 8px; padding: 20px; text-align: center; width: 320px; } .Mb .z6vYse { outline: medium none; } .d-k-l { position: relative; display: inline-block; } * html .d-k-l, :first-child + html .d-k-l { display: inline; }
templates/ui-button-fab.html
IIssac/iissac.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="IE=edge" http-equiv="X-UA-Compatible"> <meta content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width" name="viewport"> <title>Buttons: Floating Action Button - Material</title> <!-- css --> <link href="../css/base.min.css" rel="stylesheet"> <link href="../css/project.min.css" rel="stylesheet"> <!-- favicon --> <!-- ... --> </head> <body class="page-brand"> <header class="header header-transparent header-waterfall ui-header"> <ul class="nav nav-list pull-left"> <li> <a data-toggle="menu" href="#ui_menu"> <span class="icon icon-lg">menu</span> </a> </li> </ul> <a class="header-logo header-affix-hide margin-left-no margin-right-no" data-offset-top="213" data-spy="affix" href="index.html">Material</a> <span class="header-logo header-affix margin-left-no margin-right-no" data-offset-top="213" data-spy="affix">FAB</span> <ul class="nav nav-list pull-right"> <li class="dropdown margin-right"> <a class="dropdown-toggle padding-left-no padding-right-no" data-toggle="dropdown"> <span class="access-hide">John Smith</span> <span class="avatar avatar-sm"><img alt="alt text for John Smith avatar" src="../images/users/avatar-001.jpg"></span> </a> <ul class="dropdown-menu dropdown-menu-right"> <li> <a class="padding-right-lg waves-attach" href="javascript:void(0)"><span class="icon icon-lg margin-right">account_box</span>Profile Settings</a> </li> <li> <a class="padding-right-lg waves-attach" href="javascript:void(0)"><span class="icon icon-lg margin-right">add_to_photos</span>Upload Photo</a> </li> <li> <a class="padding-right-lg waves-attach" href="page-login.html"><span class="icon icon-lg margin-right">exit_to_app</span>Logout</a> </li> </ul> </li> </ul> </header> <nav aria-hidden="true" class="menu" id="ui_menu" tabindex="-1"> <div class="menu-scroll"> <div class="menu-content"> <a class="menu-logo" href="index.html">Material</a> <ul class="nav"> <li> <a class="waves-attach" data-toggle="collapse" href="#ui_menu_components">Components</a> <ul class="menu-collapse collapse in" id="ui_menu_components"> <li> <a class="waves-attach" href="ui-button.html">Buttons</a> </li> <li class="active"> <a class="waves-attach" href="ui-button-fab.html">Buttons<small class="margin-left-xs">(Floating Action Button)</small></a> </li> <li> <a class="waves-attach" href="ui-card.html">Cards</a> </li> <li> <a class="waves-attach" href="ui-data-table.html">Data Tables</a> </li> <li> <a class="waves-attach" href="ui-dialog.html">Dialogs</a> </li> <li> <a class="waves-attach" href="ui-dropdown-menu.html">Menus</a> </li> <li> <a class="waves-attach" href="ui-nav-drawer.html">Navigation Drawers</a> </li> <li> <a class="waves-attach" href="ui-picker.html">Pickers</a> </li> <li> <a class="waves-attach" href="ui-progress.html">Progress</a> </li> <li> <a class="waves-attach" href="ui-selection-control.html">Selection Controls</a> </li> <li> <a class="waves-attach" href="ui-snackbar.html">Snackbars</a> </li> <li> <a class="waves-attach" href="ui-stepper.html">Steppers</a> </li> <li> <a class="waves-attach" href="ui-tab.html">Tabs</a> </li> <li> <a class="waves-attach" href="ui-text-field.html">Text Fields</a> </li> <li> <a class="waves-attach" href="ui-toolbar.html">Toolbars</a> </li> </ul> </li> <li> <a class="collapsed waves-attach" data-toggle="collapse" href="#ui_menu_extras">Extras</a> <ul class="menu-collapse collapse" id="ui_menu_extras"> <li> <a class="waves-attach" href="ui-avatar.html">Avatars</a> </li> <li> <a class="waves-attach" href="ui-icon.html">Icons</a> </li> <li> <a class="waves-attach" href="ui-label.html">Labels</a> </li> <li> <a class="waves-attach" href="ui-nav.html">Navs</a> </li> <li> <a class="waves-attach" href="ui-tile.html">Tiles</a> </li> </ul> </li> <li> <a class="collapsed waves-attach" data-toggle="collapse" href="#ui_menu_javascript">Javascript</a> <ul class="menu-collapse collapse" id="ui_menu_javascript"> <li> <a class="waves-attach" href="ui-affix.html">Affix</a> </li> <li> <a class="waves-attach" href="ui-collapse.html">Collapse</a> </li> <li> <a class="waves-attach" href="ui-dropdown-menu.html">Dropdown</a> </li> <li> <a class="waves-attach" href="ui-modal.html">Modals</a> </li> <li> <a class="waves-attach" href="ui-tab.html">Togglable Tabs</a> </li> </ul> </li> <li> <a class="collapsed waves-attach" data-toggle="collapse" href="#ui_menu_samples">Sample Pages</a> <ul class="menu-collapse collapse" id="ui_menu_samples"> <li> <a class="waves-attach" href="page-login.html">Login Page</a> </li> <li> <a class="waves-attach" href="page-picker.html">Picker Page</a> </li> </ul> </li> </ul> </div> </div> </nav> <main class="content"> <div class="content-header ui-content-header"> <div class="container"> <div class="row"> <div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2"> <h1 class="content-heading">Buttons: Floating Action Buttons</h1> </div> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-6 col-lg-offset-3 col-md-8 col-md-offset-2"> <section class="content-inner margin-top-no"> <div class="card"> <div class="card-main"> <div class="card-inner"> <p>Floating action buttons are used for a promoted action. They are distinguished by a circled icon floating above the UI and have motion behaviours that include morphing, launching, and a transferring anchor point.</p> </div> </div> </div> <h2 class="content-sub-heading">Basic FAB</h2> <div class="card"> <div class="card-main"> <div class="card-inner"> <p class="margin-top-no"><a class="fbtn waves-attach waves-circle">F</a></p> <pre> &lt;a class="fbtn waves-attach waves-circle"&gt; ... &lt;/a&gt; </pre> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Brand Colours</h3> </div> </div> <div class="card-inner"> <div class="row"> <div class="col-xx-6"> <p class="margin-top-no"><a class="fbtn fbtn-brand waves-attach waves-circle waves-light">A</a></p> </div> <div class="col-xx-6"> <p class="margin-top-no"><a class="fbtn fbtn-brand-accent waves-attach waves-circle waves-light">B</a></p> </div> </div> <pre> &lt;a class="fbtn fbtn-brand waves-attach waves-circle waves-light"&gt; ... &lt;/a&gt; &lt;a class="fbtn fbtn-brand-accent waves-attach waves-circle waves-light"&gt; ... &lt;/a&gt; </pre> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Colour Palettes</h3> </div> </div> <div class="card-inner"> <div class="row"> <div class="col-xx-4"> <p class="margin-top-no"><a class="fbtn fbtn-green waves-attach waves-circle">F</a></p> <p class="margin-top-no text-center"><code>.fbtn-green</code></p> </div> <div class="col-xx-4"> <p class="margin-top-no"><a class="fbtn fbtn-orange waves-attach waves-circle">A</a></p> <p class="margin-top-no text-center"><code>.fbtn-orange</code></p> </div> <div class="col-xx-4"> <p class="margin-top-no"><a class="fbtn fbtn-red waves-attach waves-circle waves-light">B</a></p> <p class="margin-top-no text-center"><code>.fbtn-red</code></p> </div> </div> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Positioning</h3> </div> </div> <div class="card-inner"> <p>Use <code>.fbtn-container</code> to place FAB at the bottom right corner of a page. Creating a customised wrapper may be required to place FAB somewhere else on a page.</p> <pre> &lt;div class="fbtn-container"&gt; &lt;a class="fbtn"&gt; ... &lt;/a&gt; &lt;/div&gt; </pre> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Sizes</h3> </div> </div> <div class="card-inner"> <p class="margin-top-no"><a class="fbtn fbtn-lg waves-attach waves-circle"><span class="icon">add</span></a></p> <pre> &lt;a class="fbtn fbtn-lg"&gt; ... &lt;/a&gt; </pre> </div> </div> </div> <h2 class="content-sub-heading">Dropdown/Dropup</h2> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Dropdown</h3> </div> </div> <div class="card-inner"> <div class="fbtn-inner"> <a class="fbtn fbtn-lg waves-attach waves-circle" data-toggle="dropdown"><span class="icon">add</span></a> <div class="fbtn-dropdown"> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> </div> </div> <pre> &lt;div class="fbtn-inner"&gt; &lt;a class="fbtn fbtn-lg" data-toggle="dropdown"&gt; ... &lt;/a&gt; &lt;div class="fbtn-dropdown"&gt; &lt;a class="fbtn fbtn-lg"&gt; ... &lt;/a&gt; ... &lt;/div&gt; &lt;/div&gt; </pre> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Dropup</h3> </div> </div> <div class="card-inner"> <div class="fbtn-inner"> <a class="fbtn fbtn-lg waves-attach waves-circle" data-toggle="dropdown"><span class="icon">add</span></a> <div class="fbtn-dropup"> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> </div> </div> <pre> &lt;div class="fbtn-inner"&gt; &lt;a class="fbtn fbtn-lg" data-toggle="dropdown"&gt; ... &lt;/a&gt; &lt;div class="fbtn-dropup"&gt; &lt;a class="fbtn fbtn-lg"&gt; ... &lt;/a&gt; ... &lt;/div&gt; &lt;/div&gt; </pre> </div> </div> </div> <div class="card"> <div class="card-main"> <div class="card-header"> <div class="card-inner"> <h3 class="h5 margin-bottom-no margin-top-no">Transition Animation</h3> </div> </div> <div class="card-inner"> <p>Add meaningful animation to FAB by combining <code>.fbtn-ori</code> and <code>.fbtn-sub</code>. <code>.fbtn-ori</code> displays by default and translates to <code>.fbtn-sub</code> once the dropdown/dropup menu associated with its FAB is being made visible to the user. <code>.fbtn-sub</code> then translates back to the original <code>.fbtn-ori</code> once the associated menu starts to hide from the user.</p> <div class="fbtn-inner"> <a class="fbtn fbtn-lg waves-attach waves-circle" data-toggle="dropdown"><span class="fbtn-ori icon">add</span><span class="fbtn-sub icon">close</span></a> <div class="fbtn-dropdown"> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> <a class="fbtn waves-attach waves-circle" href="javascript:void(0)"><span class="icon">more_horiz</span></a> </div> </div> <pre> &lt;div class="fbtn-inner"&gt; &lt;a class="fbtn fbtn-lg" data-toggle="dropdown"&gt; &lt;span class="fbtn-ori"&gt; ... &lt;/span&gt; &lt;span class="fbtn-sub"&gt; ... &lt;/span&gt; &lt;/a&gt; &lt;div class="fbtn-dropdown"&gt; ... &lt;/div&gt; &lt;/div&gt; </pre> </div> </div> </div> <h2 class="content-sub-heading">Tooltip Text</h2> <div class="card"> <div class="card-main"> <div class="card-inner"> <div class="row"> <div class="col-xx-6"> <a class="fbtn waves-attach waves-circle"><span class="fbtn-text">Tooltip Text (Right)</span><span class="icon">add</span></a> </div> <div class="col-xx-6"> <a class="fbtn waves-attach waves-circle"><span class="fbtn-text fbtn-text-left">Tooltip Text (Left)</span><span class="icon">add</span></a> </div> </div> <pre> &lt;a class="fbtn"&gt; &lt;span class="fbtn-text"&gt; ... &lt;/span&gt; ... &lt;/a&gt; &lt;a class="fbtn"&gt; &lt;span class="fbtn-text fbtn-text-left"&gt; ... &lt;/span&gt; ... &lt;/a&gt; </pre> </div> </div> </div> </section> </div> </div> </div> </main> <footer class="ui-footer"> <div class="container"> <p>Material</p> </div> </footer> <div class="fbtn-container"> <div class="fbtn-inner"> <a class="fbtn fbtn-lg fbtn-brand-accent waves-attach waves-circle waves-light" data-toggle="dropdown"><span class="fbtn-text fbtn-text-left">Links</span><span class="fbtn-ori icon">apps</span><span class="fbtn-sub icon">close</span></a> <div class="fbtn-dropup"> <a class="fbtn waves-attach waves-circle" href="https://github.com/Daemonite/material" target="_blank"><span class="fbtn-text fbtn-text-left">Fork me on GitHub</span><span class="icon">code</span></a> <a class="fbtn fbtn-brand waves-attach waves-circle waves-light" href="https://twitter.com/daemonites" target="_blank"><span class="fbtn-text fbtn-text-left">Follow Daemon on Twitter</span><span class="icon">share</span></a> <a class="fbtn fbtn-green waves-attach waves-circle" href="http://www.daemon.com.au/" target="_blank"><span class="fbtn-text fbtn-text-left">Visit Daemon Website</span><span class="icon">link</span></a> </div> </div> </div> <!-- js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> <script src="../js/base.min.js"></script> <script src="../js/project.min.js"></script> </body> </html>