| @@ -1,5 +1,7 @@ | |||
| #' Bulma Document Renderer | |||
| #' | |||
| #' TODO Document YAML options here. | |||
| #' | |||
| #' @inheritDotParams rmarkdown::html_document_base | |||
| #' @export | |||
| bulma_document <- function( | |||
| @@ -0,0 +1,123 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Authors • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="pkgdown.css" rel="stylesheet"> | |||
| <script src="pkgdown.js"></script> | |||
| <meta property="og:title" content="Authors" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-authors"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="contents col-md-9"> | |||
| <div class="page-header"> | |||
| <h1>Authors</h1> | |||
| </div> | |||
| <ul class="list-unstyled"> | |||
| <li> | |||
| <p><strong>Garrick Aden-Buie</strong>. Author, maintainer. | |||
| </p> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,85 @@ | |||
| $(function() { | |||
| // register a handler to move the focus to the search bar | |||
| // upon pressing shift + "/" (i.e. "?") | |||
| $(document).on('keydown', function(e) { | |||
| if (e.shiftKey && e.keyCode == 191) { | |||
| e.preventDefault(); | |||
| $("#search-input").focus(); | |||
| } | |||
| }); | |||
| $(document).ready(function() { | |||
| // do keyword highlighting | |||
| /* modified from https://jsfiddle.net/julmot/bL6bb5oo/ */ | |||
| var mark = function() { | |||
| var referrer = document.URL ; | |||
| var paramKey = "q" ; | |||
| if (referrer.indexOf("?") !== -1) { | |||
| var qs = referrer.substr(referrer.indexOf('?') + 1); | |||
| var qs_noanchor = qs.split('#')[0]; | |||
| var qsa = qs_noanchor.split('&'); | |||
| var keyword = ""; | |||
| for (var i = 0; i < qsa.length; i++) { | |||
| var currentParam = qsa[i].split('='); | |||
| if (currentParam.length !== 2) { | |||
| continue; | |||
| } | |||
| if (currentParam[0] == paramKey) { | |||
| keyword = decodeURIComponent(currentParam[1].replace(/\+/g, "%20")); | |||
| } | |||
| } | |||
| if (keyword !== "") { | |||
| $(".contents").unmark({ | |||
| done: function() { | |||
| $(".contents").mark(keyword); | |||
| } | |||
| }); | |||
| } | |||
| } | |||
| }; | |||
| mark(); | |||
| }); | |||
| }); | |||
| /* Search term highlighting ------------------------------*/ | |||
| function matchedWords(hit) { | |||
| var words = []; | |||
| var hierarchy = hit._highlightResult.hierarchy; | |||
| // loop to fetch from lvl0, lvl1, etc. | |||
| for (var idx in hierarchy) { | |||
| words = words.concat(hierarchy[idx].matchedWords); | |||
| } | |||
| var content = hit._highlightResult.content; | |||
| if (content) { | |||
| words = words.concat(content.matchedWords); | |||
| } | |||
| // return unique words | |||
| var words_uniq = [...new Set(words)]; | |||
| return words_uniq; | |||
| } | |||
| function updateHitURL(hit) { | |||
| var words = matchedWords(hit); | |||
| var url = ""; | |||
| if (hit.anchor) { | |||
| url = hit.url_without_anchor + '?q=' + escape(words.join(" ")) + '#' + hit.anchor; | |||
| } else { | |||
| url = hit.url + '?q=' + escape(words.join(" ")); | |||
| } | |||
| return url; | |||
| } | |||
| @@ -0,0 +1,103 @@ | |||
| <!DOCTYPE html> | |||
| <!-- Generated by pkgdown: do not edit by hand --><html> | |||
| <head> | |||
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>What the Package Does (One Line, Title Case) • bulma</title> | |||
| <!-- jquery --><script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script><!-- Bootstrap --><link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script><!-- Font Awesome icons --><link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --><script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script><!-- sticky kit --><script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script><!-- pkgdown --><link href="pkgdown.css" rel="stylesheet"> | |||
| <script src="pkgdown.js"></script><meta property="og:title" content="What the Package Does (One Line, Title Case)"> | |||
| <meta property="og:description" content="What the package does (one paragraph)."> | |||
| <meta name="twitter:card" content="summary"> | |||
| <!-- mathjax --><script src="https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script><!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-home"> | |||
| <header><div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"></ul> | |||
| </div> | |||
| <!--/.nav-collapse --> | |||
| </div> | |||
| <!--/.container --> | |||
| </div> | |||
| <!--/.navbar --> | |||
| </header><div class="row"> | |||
| <div class="contents col-md-9"> | |||
| What the package does (one paragraph). | |||
| </div> | |||
| <div class="col-md-3" id="sidebar"> | |||
| <div class="links"> | |||
| <h2>Links</h2> | |||
| <ul class="list-unstyled"> | |||
| <li>Report a bug at <br><a href="NA">NA</a> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="license"> | |||
| <h2>License</h2> | |||
| <ul class="list-unstyled"> | |||
| <li> | |||
| <a href="https://opensource.org/licenses/mit-license.php">MIT</a> + file <a href="LICENSE-text.html">LICENSE</a> | |||
| </li> | |||
| </ul> | |||
| </div> | |||
| <div class="developers"> | |||
| <h2>Developers</h2> | |||
| <ul class="list-unstyled"> | |||
| <li>Garrick Aden-Buie <br><small class="roles"> Author, maintainer </small> </li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| </div> | |||
| <footer><div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,12 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> | |||
| <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" | |||
| viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve"> | |||
| <style type="text/css"> | |||
| .st0{fill:#75AADB;} | |||
| </style> | |||
| <path class="st0" d="M4,11.3h1.3v1.3H4c-2,0-4-2.3-4-4.7s2.1-4.7,4-4.7h5.3c1.9,0,4,2.3,4,4.7c0,1.9-1.2,3.6-2.7,4.3v-1.5 | |||
| C11.4,10.2,12,9.1,12,8c0-1.7-1.4-3.3-2.7-3.3H4C2.7,4.7,1.3,6.3,1.3,8S2.7,11.3,4,11.3z M16,7.3h-1.3v1.3H16c1.3,0,2.7,1.6,2.7,3.3 | |||
| s-1.4,3.3-2.7,3.3h-5.3C9.4,15.3,8,13.7,8,12c0-1.1,0.6-2.2,1.3-2.8V7.7C7.9,8.4,6.7,10.1,6.7,12c0,2.4,2.1,4.7,4,4.7H16 | |||
| c1.9,0,4-2.3,4-4.7S18,7.3,16,7.3z"/> | |||
| </svg> | |||
| @@ -0,0 +1,232 @@ | |||
| /* Sticky footer */ | |||
| /** | |||
| * Basic idea: https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/ | |||
| * Details: https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css | |||
| * | |||
| * .Site -> body > .container | |||
| * .Site-content -> body > .container .row | |||
| * .footer -> footer | |||
| * | |||
| * Key idea seems to be to ensure that .container and __all its parents__ | |||
| * have height set to 100% | |||
| * | |||
| */ | |||
| html, body { | |||
| height: 100%; | |||
| } | |||
| body > .container { | |||
| display: flex; | |||
| height: 100%; | |||
| flex-direction: column; | |||
| padding-top: 60px; | |||
| } | |||
| body > .container .row { | |||
| flex: 1 0 auto; | |||
| } | |||
| footer { | |||
| margin-top: 45px; | |||
| padding: 35px 0 36px; | |||
| border-top: 1px solid #e5e5e5; | |||
| color: #666; | |||
| display: flex; | |||
| flex-shrink: 0; | |||
| } | |||
| footer p { | |||
| margin-bottom: 0; | |||
| } | |||
| footer div { | |||
| flex: 1; | |||
| } | |||
| footer .pkgdown { | |||
| text-align: right; | |||
| } | |||
| footer p { | |||
| margin-bottom: 0; | |||
| } | |||
| img.icon { | |||
| float: right; | |||
| } | |||
| img { | |||
| max-width: 100%; | |||
| } | |||
| /* Typographic tweaking ---------------------------------*/ | |||
| .contents h1.page-header { | |||
| margin-top: calc(-60px + 1em); | |||
| } | |||
| /* Section anchors ---------------------------------*/ | |||
| a.anchor { | |||
| margin-left: -30px; | |||
| display:inline-block; | |||
| width: 30px; | |||
| height: 30px; | |||
| visibility: hidden; | |||
| background-image: url(./link.svg); | |||
| background-repeat: no-repeat; | |||
| background-size: 20px 20px; | |||
| background-position: center center; | |||
| } | |||
| .hasAnchor:hover a.anchor { | |||
| visibility: visible; | |||
| } | |||
| @media (max-width: 767px) { | |||
| .hasAnchor:hover a.anchor { | |||
| visibility: hidden; | |||
| } | |||
| } | |||
| /* Fixes for fixed navbar --------------------------*/ | |||
| .contents h1, .contents h2, .contents h3, .contents h4 { | |||
| padding-top: 60px; | |||
| margin-top: -40px; | |||
| } | |||
| /* Static header placement on mobile devices */ | |||
| @media (max-width: 767px) { | |||
| .navbar-fixed-top { | |||
| position: absolute; | |||
| } | |||
| .navbar { | |||
| padding: 0; | |||
| } | |||
| } | |||
| /* Sidebar --------------------------*/ | |||
| #sidebar { | |||
| margin-top: 30px; | |||
| } | |||
| #sidebar h2 { | |||
| font-size: 1.5em; | |||
| margin-top: 1em; | |||
| } | |||
| #sidebar h2:first-child { | |||
| margin-top: 0; | |||
| } | |||
| #sidebar .list-unstyled li { | |||
| margin-bottom: 0.5em; | |||
| } | |||
| .orcid { | |||
| height: 16px; | |||
| vertical-align: middle; | |||
| } | |||
| /* Reference index & topics ----------------------------------------------- */ | |||
| .ref-index th {font-weight: normal;} | |||
| .ref-index td {vertical-align: top;} | |||
| .ref-index .alias {width: 40%;} | |||
| .ref-index .title {width: 60%;} | |||
| .ref-index .alias {width: 40%;} | |||
| .ref-index .title {width: 60%;} | |||
| .ref-arguments th {text-align: right; padding-right: 10px;} | |||
| .ref-arguments th, .ref-arguments td {vertical-align: top;} | |||
| .ref-arguments .name {width: 20%;} | |||
| .ref-arguments .desc {width: 80%;} | |||
| /* Nice scrolling for wide elements --------------------------------------- */ | |||
| table { | |||
| display: block; | |||
| overflow: auto; | |||
| } | |||
| /* Syntax highlighting ---------------------------------------------------- */ | |||
| pre { | |||
| word-wrap: normal; | |||
| word-break: normal; | |||
| border: 1px solid #eee; | |||
| } | |||
| pre, code { | |||
| background-color: #f8f8f8; | |||
| color: #333; | |||
| } | |||
| pre code { | |||
| overflow: auto; | |||
| word-wrap: normal; | |||
| white-space: pre; | |||
| } | |||
| pre .img { | |||
| margin: 5px 0; | |||
| } | |||
| pre .img img { | |||
| background-color: #fff; | |||
| display: block; | |||
| height: auto; | |||
| } | |||
| code a, pre a { | |||
| color: #375f84; | |||
| } | |||
| a.sourceLine:hover { | |||
| text-decoration: none; | |||
| } | |||
| .fl {color: #1514b5;} | |||
| .fu {color: #000000;} /* function */ | |||
| .ch,.st {color: #036a07;} /* string */ | |||
| .kw {color: #264D66;} /* keyword */ | |||
| .co {color: #888888;} /* comment */ | |||
| .message { color: black; font-weight: bolder;} | |||
| .error { color: orange; font-weight: bolder;} | |||
| .warning { color: #6A0366; font-weight: bolder;} | |||
| /* Clipboard --------------------------*/ | |||
| .hasCopyButton { | |||
| position: relative; | |||
| } | |||
| .btn-copy-ex { | |||
| position: absolute; | |||
| right: 0; | |||
| top: 0; | |||
| visibility: hidden; | |||
| } | |||
| .hasCopyButton:hover button.btn-copy-ex { | |||
| visibility: visible; | |||
| } | |||
| /* mark.js ----------------------------*/ | |||
| mark { | |||
| background-color: rgba(255, 255, 51, 0.5); | |||
| border-bottom: 2px solid rgba(255, 153, 51, 0.3); | |||
| padding: 1px; | |||
| } | |||
| /* vertical spacing after htmlwidgets */ | |||
| .html-widget { | |||
| margin-bottom: 10px; | |||
| } | |||
| @@ -0,0 +1,110 @@ | |||
| /* http://gregfranko.com/blog/jquery-best-practices/ */ | |||
| (function($) { | |||
| $(function() { | |||
| $("#sidebar") | |||
| .stick_in_parent({offset_top: 40}) | |||
| .on('sticky_kit:bottom', function(e) { | |||
| $(this).parent().css('position', 'static'); | |||
| }) | |||
| .on('sticky_kit:unbottom', function(e) { | |||
| $(this).parent().css('position', 'relative'); | |||
| }); | |||
| $('body').scrollspy({ | |||
| target: '#sidebar', | |||
| offset: 60 | |||
| }); | |||
| $('[data-toggle="tooltip"]').tooltip(); | |||
| var cur_path = paths(location.pathname); | |||
| var links = $("#navbar ul li a"); | |||
| var max_length = -1; | |||
| var pos = -1; | |||
| for (var i = 0; i < links.length; i++) { | |||
| if (links[i].getAttribute("href") === "#") | |||
| continue; | |||
| var path = paths(links[i].pathname); | |||
| var length = prefix_length(cur_path, path); | |||
| if (length > max_length) { | |||
| max_length = length; | |||
| pos = i; | |||
| } | |||
| } | |||
| // Add class to parent <li>, and enclosing <li> if in dropdown | |||
| if (pos >= 0) { | |||
| var menu_anchor = $(links[pos]); | |||
| menu_anchor.parent().addClass("active"); | |||
| menu_anchor.closest("li.dropdown").addClass("active"); | |||
| } | |||
| }); | |||
| function paths(pathname) { | |||
| var pieces = pathname.split("/"); | |||
| pieces.shift(); // always starts with / | |||
| var end = pieces[pieces.length - 1]; | |||
| if (end === "index.html" || end === "") | |||
| pieces.pop(); | |||
| return(pieces); | |||
| } | |||
| function prefix_length(needle, haystack) { | |||
| if (needle.length > haystack.length) | |||
| return(0); | |||
| // Special case for length-0 haystack, since for loop won't run | |||
| if (haystack.length === 0) { | |||
| return(needle.length === 0 ? 1 : 0); | |||
| } | |||
| for (var i = 0; i < haystack.length; i++) { | |||
| if (needle[i] != haystack[i]) | |||
| return(i); | |||
| } | |||
| return(haystack.length); | |||
| } | |||
| /* Clipboard --------------------------*/ | |||
| function changeTooltipMessage(element, msg) { | |||
| var tooltipOriginalTitle=element.getAttribute('data-original-title'); | |||
| element.setAttribute('data-original-title', msg); | |||
| $(element).tooltip('show'); | |||
| element.setAttribute('data-original-title', tooltipOriginalTitle); | |||
| } | |||
| if(Clipboard.isSupported()) { | |||
| $(document).ready(function() { | |||
| var copyButton = "<button type='button' class='btn btn-primary btn-copy-ex' type = 'submit' title='Copy to clipboard' aria-hidden='true' data-toggle='tooltip' data-placement='left auto' data-trigger='hover' data-clipboard-copy><i class='fa fa-copy' aria-hidden='true'></i></button>"; | |||
| $(".examples, div.sourceCode").addClass("hasCopyButton"); | |||
| // Insert copy buttons: | |||
| $(copyButton).prependTo(".hasCopyButton"); | |||
| // Initialize tooltips: | |||
| $('.btn-copy-ex').tooltip({container: 'body'}); | |||
| // Initialize clipboard: | |||
| var clipboardBtnCopies = new Clipboard('[data-clipboard-copy]', { | |||
| text: function(trigger) { | |||
| return trigger.parentNode.textContent; | |||
| } | |||
| }); | |||
| clipboardBtnCopies.on('success', function(e) { | |||
| changeTooltipMessage(e.trigger, 'Copied!'); | |||
| e.clearSelection(); | |||
| }); | |||
| clipboardBtnCopies.on('error', function() { | |||
| changeTooltipMessage(e.trigger,'Press Ctrl+C or Command+C to copy'); | |||
| }); | |||
| }); | |||
| } | |||
| })(window.jQuery || window.$) | |||
| @@ -0,0 +1,5 @@ | |||
| pandoc: 2.3.1 | |||
| pkgdown: 1.1.0 | |||
| pkgdown_sha: ~ | |||
| articles: [] | |||
| @@ -0,0 +1,138 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>bulma: What the Package Does (One Line, Title Case) — bulma-package • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="bulma: What the Package Does (One Line, Title Case) — bulma-package" /> | |||
| <meta property="og:description" content="What the package does (one paragraph)." /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>bulma: What the Package Does (One Line, Title Case)</h1> | |||
| <div class="hidden name"><code>bulma-package.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>What the package does (one paragraph).</p> | |||
| </div> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| </ul> | |||
| <h2>Author</h2> | |||
| <strong>Maintainer</strong>: Garrick Aden-Buie <a href='mailto:g.adenbuie@gmail.com'>g.adenbuie@gmail.com</a> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,171 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Color Helper Classes — bulma_color • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Color Helper Classes — bulma_color" /> | |||
| <meta property="og:description" content="Bulma Color Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Color Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_color.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Color Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_color</span>(<span class='kw'>text</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>background</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>text</th> | |||
| <td><p>One of "white", "black", "light", "dark", "primary", "info", | |||
| "link", "success", "warning", "danger", "black-bis", "black-ter", | |||
| "grey-darker", "grey-dark", "grey", "gre-light", "grey-lighter", | |||
| "white-ter", "white-bis"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>background</th> | |||
| <td><p>One of "white", "black", "light", "dark", "primary", | |||
| "info", "link", "success", "warning", "danger", "black-bis", "black-ter", | |||
| "grey-darker", "grey-dark", "grey", "gre-light", "grey-lighter", | |||
| "white-ter", "white-bis"</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifer classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/color-helpers</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_color</span>(<span class='st'>"white"</span>, <span class='st'>"black"</span>)</div><div class='output co'>#> [1] "has-text-white has-background-black"</div><div class='input'><span class='fu'>bulma_color</span>(<span class='st'>"white"</span>, <span class='st'>"primary"</span>)</div><div class='output co'>#> [1] "has-text-white has-background-primary"</div><div class='input'> | |||
| </div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,167 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Column — bulma_column • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Column — bulma_column" /> | |||
| <meta property="og:description" content="Bulma Column" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Column</h1> | |||
| <div class="hidden name"><code>bulma_column.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Column</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_column</span>(<span class='no'>...</span>, <span class='kw'>size</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>width</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>offset</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>narrow</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>class</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>style</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>size</th> | |||
| <td><p>One of "full", "four-fifths", "three-quarters", "two-thirds", | |||
| "three-fifths", "half", "two-fifths", "one-third", "one-quarter", | |||
| "one-fifth"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>width</th> | |||
| <td><p>Column width in terms of the 12 grid units, i.e. 1-12.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>offset</th> | |||
| <td><p>Column offset, one of `size` or `width`</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>narrow</th> | |||
| <td><p>Use [bulma_column_narrow()] to construct options</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>class</th> | |||
| <td><p>Extra classes that should be applied to the `columns` container.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>style</th> | |||
| <td><p>CSS styles applied to the `columns` container.</p></td> | |||
| </tr> | |||
| </table> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,146 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Narrow Column Helper — bulma_column_narrow • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Narrow Column Helper — bulma_column_narrow" /> | |||
| <meta property="og:description" content="Bulma Narrow Column Helper" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Narrow Column Helper</h1> | |||
| <div class="hidden name"><code>bulma_column_narrow.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Narrow Column Helper</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_column_narrow</span>(<span class='kw'>viewport</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>viewport</th> | |||
| <td><p>One of "mobile", "tablet", "touch", "desktop", "widescreen", | |||
| "fullhd". See <https://bulma.io/documentation/modifiers/responsive-helpers/> | |||
| for more information.</p></td> | |||
| </tr> | |||
| </table> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,191 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Column Options — bulma_column_options • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Column Options — bulma_column_options" /> | |||
| <meta property="og:description" content="Bulma Column Options" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Column Options</h1> | |||
| <div class="hidden name"><code>bulma_column_options.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Column Options</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_column_options</span>(<span class='kw'>size</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>width</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>offset</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>narrow</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>class</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>style</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>size</th> | |||
| <td><p>One of "full", "four-fifths", "three-quarters", "two-thirds", | |||
| "three-fifths", "half", "two-fifths", "one-third", "one-quarter", | |||
| "one-fifth"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>width</th> | |||
| <td><p>Column width in terms of the 12 grid units, i.e. 1-12.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>offset</th> | |||
| <td><p>Column offset, one of `size` or `width`</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>narrow</th> | |||
| <td><p>Use [bulma_column_narrow()] to construct options</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>class</th> | |||
| <td><p>Extra classes that should be applied to the `columns` container.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>style</th> | |||
| <td><p>CSS styles applied to the `columns` container.</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_column_options</span>(<span class='kw'>size</span> <span class='kw'>=</span> <span class='st'>"half"</span>, <span class='kw'>offset</span> <span class='kw'>=</span> <span class='st'>"one-quarter"</span>)</div><div class='output co'>#> $size | |||
| #> [1] "half" | |||
| #> | |||
| #> $width | |||
| #> NULL | |||
| #> | |||
| #> $offset | |||
| #> [1] "one-quarter" | |||
| #> | |||
| #> $narrow | |||
| #> NULL | |||
| #> | |||
| #> $class | |||
| #> NULL | |||
| #> | |||
| #> $style | |||
| #> NULL | |||
| #> | |||
| #> attr(,"class") | |||
| #> [1] "bulma_column_options"</div><div class='input'> | |||
| </div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,171 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Columns — bulma_columns • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Columns — bulma_columns" /> | |||
| <meta property="og:description" content="Bulma Columns" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Columns</h1> | |||
| <div class="hidden name"><code>bulma_columns.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Columns</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_columns</span>(<span class='no'>...</span>, <span class='kw'>breakpoint</span> <span class='kw'>=</span> <span class='st'>"tablet"</span>, <span class='kw'>gap</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>multiline</span> <span class='kw'>=</span> <span class='fl'>TRUE</span>, <span class='kw'>class</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>style</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>column_options</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>breakpoint</th> | |||
| <td><p>By default, columns are only activated from **tablet** | |||
| onwards, meaning that columns are stacked on top of each other on | |||
| **mobile**. Use `breakpoint` to set the point at which columns are spread | |||
| out. See `viewport` option in [bulma_responsive()] for valid options.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>gap</th> | |||
| <td><p>Gap between colums, integer from 0 to 8</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>multiline</th> | |||
| <td><p>Should columns wrap to multiple lines (allows columns whose | |||
| width or size add up to more than the screen width).</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>class</th> | |||
| <td><p>Extra classes that should be applied to the `columns` container.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>style</th> | |||
| <td><p>CSS styles applied to the `columns` container.</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>column_options</th> | |||
| <td><p>Column options to be applied to each column. Use | |||
| [bulma_column_options()] to format.</p></td> | |||
| </tr> | |||
| </table> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,177 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Document Renderer — bulma_document • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Document Renderer — bulma_document" /> | |||
| <meta property="og:description" content="TODO Document YAML options here." /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Document Renderer</h1> | |||
| <div class="hidden name"><code>bulma_document.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>TODO Document YAML options here.</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_document</span>(<span class='no'>...</span>, <span class='kw'>css</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>fig_width</span> <span class='kw'>=</span> <span class='fl'>10</span>, <span class='kw'>fig_height</span> <span class='kw'>=</span> <span class='fl'>7</span>, | |||
| <span class='kw'>fig_retina</span> <span class='kw'>=</span> <span class='fl'>2</span>, <span class='kw'>keep_md</span> <span class='kw'>=</span> <span class='fl'>FALSE</span>, <span class='kw'>dev</span> <span class='kw'>=</span> <span class='st'>"png"</span>, <span class='kw'>pandoc_args</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>extra_dependencies</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>...</th> | |||
| <td><p>Arguments passed on to <code><a href='http://www.rdocumentation.org/packages/rmarkdown/topics/html_document_base'>rmarkdown::html_document_base</a></code></p><dl class='dl-horizontal'> | |||
| <dt>smart</dt><dd><p>Produce typographically correct output, converting straight | |||
| quotes to curly quotes, --- to em-dashes, -- to en-dashes, and ... to | |||
| ellipses.</p></dd> | |||
| <dt>theme</dt><dd><p>Visual theme ("default", "cerulean", "journal", "flatly", | |||
| "readable", "spacelab", "united", "cosmo", "lumen", "paper", "sandstone", | |||
| "simplex", or "yeti"). Pass <code>NULL</code> for no theme (in this case you can | |||
| use the <code>css</code> parameter to add your own styles).</p></dd> | |||
| <dt>self_contained</dt><dd><p>Produce a standalone HTML file with no external | |||
| dependencies, using data: URIs to incorporate the contents of linked | |||
| scripts, stylesheets, images, and videos. Note that even for self contained | |||
| documents MathJax is still loaded externally (this is necessary because of | |||
| its size).</p></dd> | |||
| <dt>lib_dir</dt><dd><p>Directory to copy dependent HTML libraries (e.g. jquery, | |||
| bootstrap, etc.) into. By default this will be the name of the document with | |||
| <code>_files</code> appended to it.</p></dd> | |||
| <dt>mathjax</dt><dd><p>Include mathjax. The "default" option uses an https URL from a | |||
| MathJax CDN. The "local" option uses a local version of MathJax (which is | |||
| copied into the output directory). You can pass an alternate URL or pass | |||
| <code>NULL</code> to exclude MathJax entirely.</p></dd> | |||
| <dt>pandoc_args</dt><dd><p>Additional command line options to pass to pandoc</p></dd> | |||
| <dt>template</dt><dd><p>Pandoc template to use for rendering. Pass "default" to use | |||
| the rmarkdown package default template; pass <code>NULL</code> to use pandoc's | |||
| built-in template; pass a path to use a custom template that you've created. | |||
| Note that if you don't use the "default" template then some features of | |||
| <code>html_document</code> won't be available (see the Templates section below for | |||
| more details).</p></dd> | |||
| <dt>dependency_resolver</dt><dd><p>A dependency resolver</p></dd> | |||
| <dt>copy_resources</dt><dd><p>Copy resources</p></dd> | |||
| <dt>extra_dependencies</dt><dd><p>Extra dependencies</p></dd> | |||
| <dt>bootstrap_compatible</dt><dd><p>Bootstrap compatible</p></dd> | |||
| </dl></td> | |||
| </tr> | |||
| </table> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,177 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Helper Classes — bulma_helper • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Helper Classes — bulma_helper" /> | |||
| <meta property="og:description" content="Bulma Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_helper.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_helper</span>(<span class='kw'>float</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>spacing</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>other</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>float</th> | |||
| <td><p>`clearfix` Fixes an element's floating children</p> | |||
| <p>`pulled-left` Moves an element to the left</p> | |||
| <p>`pulled-right` Moves an element to the right</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>spacing</th> | |||
| <td><p>`marginless` Removes any margin</p> | |||
| <p>`paddingless` Removes any padding</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>other</th> | |||
| <td><p>`overlay` Completely covers the first positioned parent | |||
| `clipped` Adds overflow hidden</p> | |||
| <p>`radiusless` Removes any radius</p> | |||
| <p>`shadowless` Removes any shadow</p> | |||
| <p>`unselectable` Prevents the text from being selectable</p> | |||
| <p>`invisible` Adds visibility hidden</p> | |||
| <p>`sr-only` Hide elements visually but keep the element available to be announced by a screen reader</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifer classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/helpers</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_helper</span>(<span class='kw'>float</span> <span class='kw'>=</span> <span class='st'>"pulled-left"</span>)</div><div class='output co'>#> [1] "is-pulled-left"</div><div class='input'><span class='fu'>bulma_helper</span>(<span class='kw'>spacing</span> <span class='kw'>=</span> <span class='fu'>c</span>(<span class='st'>"marginless"</span>, <span class='st'>"paddingless"</span>))</div><div class='output co'>#> [1] "is-marginless is-paddingless"</div><div class='input'><span class='fu'>bulma_helper</span>(<span class='kw'>other</span> <span class='kw'>=</span> <span class='st'>"clipped"</span>, <span class='kw'>float</span> <span class='kw'>=</span> <span class='st'>"pulled-right"</span>)</div><div class='output co'>#> [1] "is-pulled-right is-clipped"</div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,170 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Level — bulma_level • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Level — bulma_level" /> | |||
| <meta property="og:description" content="Bulma Level" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Level</h1> | |||
| <div class="hidden name"><code>bulma_level.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Level</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_level</span>(<span class='no'>...</span>, <span class='kw'>left</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>right</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>is_mobile</span> <span class='kw'>=</span> <span class='fl'>TRUE</span>, | |||
| <span class='kw'>style</span> <span class='kw'>=</span> <span class='fu'>c</span>(<span class='st'>"item"</span>, <span class='st'>"header"</span>), <span class='kw'>container_tag</span> <span class='kw'>=</span> <span class='fu'>c</span>(<span class='st'>"div"</span>, <span class='st'>"nav"</span>))</pre> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_level</span>(<span class='st'>"Home"</span>, <span class='st'>"Menu"</span>, <span class='st'>"Bulma"</span>, <span class='st'>"Reservations"</span>, <span class='st'>"Contact"</span>)</div><div class='output co'>#> <div class="level is-mobile"> | |||
| #> <div class="level-item">Home</div> | |||
| #> <div class="level-item">Menu</div> | |||
| #> <div class="level-item">Bulma</div> | |||
| #> <div class="level-item">Reservations</div> | |||
| #> <div class="level-item">Contact</div> | |||
| #> </div></div><div class='input'><span class='fu'>bulma_level</span>(<span class='st'>"Tweets"</span> <span class='kw'>=</span> <span class='fl'>3456</span>, <span class='kw'>Following</span> <span class='kw'>=</span> <span class='fl'>123</span>, <span class='kw'>Followers</span> <span class='kw'>=</span> <span class='st'>"456K"</span>, <span class='kw'>Likes</span> <span class='kw'>=</span> <span class='fl'>789</span>, <span class='kw'>style</span> <span class='kw'>=</span> <span class='st'>"header"</span>)</div><div class='output co'>#> <div class="level is-mobile"> | |||
| #> <div class="level-item has-text-centered"> | |||
| #> <div> | |||
| #> <p class="heading ">Tweets</p> | |||
| #> <p class="title ">3456</p> | |||
| #> </div> | |||
| #> </div> | |||
| #> <div class="level-item has-text-centered"> | |||
| #> <div> | |||
| #> <p class="heading ">Following</p> | |||
| #> <p class="title ">123</p> | |||
| #> </div> | |||
| #> </div> | |||
| #> <div class="level-item has-text-centered"> | |||
| #> <div> | |||
| #> <p class="heading ">Followers</p> | |||
| #> <p class="title ">456K</p> | |||
| #> </div> | |||
| #> </div> | |||
| #> <div class="level-item has-text-centered"> | |||
| #> <div> | |||
| #> <p class="heading ">Likes</p> | |||
| #> <p class="title ">789</p> | |||
| #> </div> | |||
| #> </div> | |||
| #> </div></div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,168 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Modifier Classes — bulma_modifier • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Modifier Classes — bulma_modifier" /> | |||
| <meta property="og:description" content="Bulma Modifier Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Modifier Classes</h1> | |||
| <div class="hidden name"><code>bulma_modifier.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Modifier Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_modifier</span>(<span class='kw'>color</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>size</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>state</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>color</th> | |||
| <td><p>"primary", "link", "info", "success", "warning", "danger"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>size</th> | |||
| <td><p>"small", "medium", "large"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>state</th> | |||
| <td><p>"outlined", "loading"</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifer classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/syntax/</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_modifier</span>(<span class='kw'>color</span> <span class='kw'>=</span> <span class='st'>"primary"</span>, <span class='kw'>size</span> <span class='kw'>=</span> <span class='st'>"large"</span>, <span class='kw'>state</span> <span class='kw'>=</span> <span class='st'>"outlined"</span>)</div><div class='output co'>#> [1] "is-primary is-large is-outlined"</div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,166 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Responsive Helper Classes — bulma_responsive • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Responsive Helper Classes — bulma_responsive" /> | |||
| <meta property="og:description" content="Bulma Responsive Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Responsive Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_responsive.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Responsive Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_responsive</span>(<span class='kw'>display</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>viewport</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>only</span> <span class='kw'>=</span> <span class='fl'>FALSE</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>display</th> | |||
| <td><p>One of "block", "flex", "inline", "inline-block", "inline-flex"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>viewport</th> | |||
| <td><p>One of "mobile", "tablet", "touch", "desktop", "widescreen", | |||
| "fullhd". See <https://bulma.io/documentation/modifiers/responsive-helpers/> | |||
| for more information.</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>A string of helper classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/responsive-helpers/</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_responsive</span>(<span class='st'>"flex"</span>, <span class='st'>"tablet"</span>)</div><div class='output co'>#> [1] "is-flex-tablet-"</div><div class='input'><span class='fu'>bulma_responsive</span>(<span class='st'>"flex"</span>, <span class='st'>"widescreen"</span>, <span class='kw'>only</span> <span class='kw'>=</span> <span class='fl'>TRUE</span>)</div><div class='output co'>#> [1] "is-flex-widescreen-only"</div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,172 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Responsive Alignemnt Helper Classes — bulma_responsive_alignment • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Responsive Alignemnt Helper Classes — bulma_responsive_alignment" /> | |||
| <meta property="og:description" content="Bulma Responsive Alignemnt Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Responsive Alignemnt Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_responsive_alignment.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Responsive Alignemnt Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_responsive_alignment</span>(<span class='kw'>alignment</span> <span class='kw'>=</span> <span class='st'>"left"</span>, <span class='kw'>viewport</span> <span class='kw'>=</span> <span class='st'>"desktop"</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>alignment</th> | |||
| <td><p>One of "centered", "justified", "left", "right"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>viewport</th> | |||
| <td><p>One of "mobile", "tablet", "touch", "desktop", "widescreen", | |||
| "fullhd". See <https://bulma.io/documentation/modifiers/responsive-helpers/> | |||
| for more information.</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifier classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/typography-helpers/#responsive-alignment</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_responsive_alignment</span>()</div><div class='output co'>#> [1] "has-text-left-desktop" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_alignment" "bulma" "character" </div><div class='input'><span class='fu'>bulma_responsive_alignment</span>(<span class='st'>"centered"</span>, <span class='st'>"tablet"</span>)</div><div class='output co'>#> [1] "has-text-centered-tablet" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_alignment" "bulma" "character" </div><div class='input'><span class='fu'>bulma_responsive_alignment</span>(<span class='kw'>viewport</span> <span class='kw'>=</span> <span class='st'>"widescreen"</span>)</div><div class='output co'>#> [1] "has-text-left-widescreen" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_alignment" "bulma" "character" </div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,166 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Responsive Size Helper Classes — bulma_responsive_size • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Responsive Size Helper Classes — bulma_responsive_size" /> | |||
| <meta property="og:description" content="Bulma Responsive Size Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Responsive Size Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_responsive_size.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Responsive Size Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_responsive_size</span>(<span class='kw'>size</span> <span class='kw'>=</span> <span class='st'>"1"</span>, <span class='kw'>viewport</span> <span class='kw'>=</span> <span class='st'>"desktop"</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>size</th> | |||
| <td><p>One of 1 through 7 (large to small)</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>viewport</th> | |||
| <td><p>One of "mobile", "tablet", "touch", "desktop", "widescreen", | |||
| "fullhd". See <https://bulma.io/documentation/modifiers/responsive-helpers/> | |||
| for more information.</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifier classes</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'>bulma_responsive_size</span>()</div><div class='output co'>#> [1] "is-size-1-desktop" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_size" "bulma" "character" </div><div class='input'><span class='fu'>bulma_responsive_size</span>(<span class='fl'>2</span>, <span class='st'>"tablet"</span>)</div><div class='output co'>#> [1] "is-size-2-tablet" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_size" "bulma" "character" </div><div class='input'><span class='fu'>bulma_responsive_size</span>(<span class='kw'>viewport</span> <span class='kw'>=</span> <span class='st'>"widescreen"</span>)</div><div class='output co'>#> [1] "is-size-1-widescreen" | |||
| #> attr(,"class") | |||
| #> [1] "responsive_size" "bulma" "character" </div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,191 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Typography Helper Classes — bulma_typography • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Typography Helper Classes — bulma_typography" /> | |||
| <meta property="og:description" content="Bulma Typography Helper Classes" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Typography Helper Classes</h1> | |||
| <div class="hidden name"><code>bulma_typography.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Typography Helper Classes</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>bulma_typography</span>(<span class='kw'>size</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>color</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>responsive_size</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>alignment</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>responsive_alignment</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, | |||
| <span class='kw'>transformation</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>weight</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>font_family</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> | |||
| <table class="ref-arguments"> | |||
| <colgroup><col class="name" /><col class="desc" /></colgroup> | |||
| <tr> | |||
| <th>size</th> | |||
| <td><p>One of 1 through 7 (large to small)</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>responsive_size</th> | |||
| <td><p>See [bulma_responsive_size()].</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>alignment</th> | |||
| <td><p>One of "centered", "justified", "left", "right"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>transformation</th> | |||
| <td><p>One (or more) of "capitalized", "lowercase", "uppercase", "italic"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>weight</th> | |||
| <td><p>One of "light", "normal", "semibold", "bold"</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>font_family</th> | |||
| <td><p>One of "sans-serif", "monospace", "primary", "secondary", "code". | |||
| (Coming in version 0.7.3.)</p></td> | |||
| </tr> | |||
| <tr> | |||
| <th>text</th> | |||
| <td><p>One of "white", "black", "light", "dark", "primary", "info", | |||
| "link", "success", "warning", "danger", "black-bis", "black-ter", | |||
| "grey-darker", "grey-dark", "grey", "gre-light", "grey-lighter", | |||
| "white-ter", "white-bis"</p></td> | |||
| </tr> | |||
| </table> | |||
| <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> | |||
| <p>String of modifer classes</p> | |||
| <h2 class="hasAnchor" id="references"><a class="anchor" href="#references"></a>References</h2> | |||
| <p>https://bulma.io/documentation/modifiers/typography-helpers/</p> | |||
| <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> | |||
| <pre class="examples"><div class='input'><span class='fu'><a href='bulma_color.html'>bulma_color</a></span>(<span class='st'>"white"</span>, <span class='st'>"black"</span>)</div><div class='output co'>#> [1] "has-text-white has-background-black"</div><div class='input'><span class='fu'><a href='bulma_color.html'>bulma_color</a></span>(<span class='st'>"white"</span>, <span class='st'>"primary"</span>)</div><div class='output co'>#> [1] "has-text-white has-background-primary"</div><div class='input'> | |||
| </div></pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#arguments">Arguments</a></li> | |||
| <li><a href="#value">Value</a></li> | |||
| <li><a href="#references">References</a></li> | |||
| <li><a href="#examples">Examples</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,223 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Function reference • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Function reference" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-index"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="contents col-md-9"> | |||
| <div class="page-header"> | |||
| <h1>Reference</h1> | |||
| </div> | |||
| <table class="ref-index"> | |||
| <colgroup> | |||
| <col class="alias" /> | |||
| <col class="title" /> | |||
| </colgroup> | |||
| <tbody> | |||
| <tr> | |||
| <th colspan="2"> | |||
| <h2 id="section-all-functions" class="hasAnchor"><a href="#section-all-functions" class="anchor"></a>All functions</h2> | |||
| <p class="section-desc"></p> | |||
| </th> | |||
| </tr> | |||
| <tr> | |||
| <td> | |||
| <p><code><a href="bulma_color.html">bulma_color()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Color Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_column.html">bulma_column()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Column</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_column_narrow.html">bulma_column_narrow()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Narrow Column Helper</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_column_options.html">bulma_column_options()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Column Options</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_columns.html">bulma_columns()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Columns</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_document.html">bulma_document()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Document Renderer</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_helper.html">bulma_helper()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_level.html">bulma_level()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Level</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_modifier.html">bulma_modifier()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Modifier Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_responsive.html">bulma_responsive()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Responsive Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_responsive_alignment.html">bulma_responsive_alignment()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Responsive Alignemnt Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_responsive_size.html">bulma_responsive_size()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Responsive Size Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="bulma_typography.html">bulma_typography()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Typography Helper Classes</p></td> | |||
| </tr><tr> | |||
| <td> | |||
| <p><code><a href="level_item_header.html">level_item_header()</a></code> </p> | |||
| </td> | |||
| <td><p>Bulma Level Items With Headers</p></td> | |||
| </tr> | |||
| </tbody> | |||
| </table> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| <li><a href="#section-all-functions">All functions</a></li> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,135 @@ | |||
| <!-- Generated by pkgdown: do not edit by hand --> | |||
| <!DOCTYPE html> | |||
| <html> | |||
| <head> | |||
| <meta charset="utf-8"> | |||
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
| <title>Bulma Level Items With Headers — level_item_header • bulma</title> | |||
| <!-- jquery --> | |||
| <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha384-nrOSfDHtoPMzJHjVTdCopGqIqeYETSXhZDFyniQ8ZHcVy08QesyHcnOUpMpqnmWq" crossorigin="anonymous"></script> | |||
| <!-- Bootstrap --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |||
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |||
| <!-- Font Awesome icons --> | |||
| <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> | |||
| <!-- clipboard.js --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.7.1/clipboard.min.js" integrity="sha384-cV+rhyOuRHc9Ub/91rihWcGmMmCXDeksTtCihMupQHSsi8GIIRDG0ThDc3HGQFJ3" crossorigin="anonymous"></script> | |||
| <!-- sticky kit --> | |||
| <script src="https://cdnjs.cloudflare.com/ajax/libs/sticky-kit/1.1.3/sticky-kit.min.js" integrity="sha256-c4Rlo1ZozqTPE2RLuvbusY3+SU1pQaJC0TjuhygMipw=" crossorigin="anonymous"></script> | |||
| <!-- pkgdown --> | |||
| <link href="../pkgdown.css" rel="stylesheet"> | |||
| <script src="../pkgdown.js"></script> | |||
| <meta property="og:title" content="Bulma Level Items With Headers — level_item_header" /> | |||
| <meta property="og:description" content="Bulma Level Items With Headers" /> | |||
| <meta name="twitter:card" content="summary" /> | |||
| <!-- mathjax --> | |||
| <script src='https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> | |||
| <!--[if lt IE 9]> | |||
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> | |||
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |||
| <![endif]--> | |||
| </head> | |||
| <body> | |||
| <div class="container template-reference-topic"> | |||
| <header> | |||
| <div class="navbar navbar-default navbar-fixed-top" role="navigation"> | |||
| <div class="container"> | |||
| <div class="navbar-header"> | |||
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| <span class="icon-bar"></span> | |||
| </button> | |||
| <span class="navbar-brand"> | |||
| <a class="navbar-link" href="../index.html">bulma</a> | |||
| <span class="label label-default" data-toggle="tooltip" data-placement="bottom" title="Released package">0.0.0.9000</span> | |||
| </span> | |||
| </div> | |||
| <div id="navbar" class="navbar-collapse collapse"> | |||
| <ul class="nav navbar-nav"> | |||
| <li> | |||
| <a href="../index.html"> | |||
| <span class="fa fa-home fa-lg"></span> | |||
| </a> | |||
| </li> | |||
| <li> | |||
| <a href="../reference/index.html">Reference</a> | |||
| </li> | |||
| </ul> | |||
| <ul class="nav navbar-nav navbar-right"> | |||
| </ul> | |||
| </div><!--/.nav-collapse --> | |||
| </div><!--/.container --> | |||
| </div><!--/.navbar --> | |||
| </header> | |||
| <div class="row"> | |||
| <div class="col-md-9 contents"> | |||
| <div class="page-header"> | |||
| <h1>Bulma Level Items With Headers</h1> | |||
| <div class="hidden name"><code>level_item_header.Rd</code></div> | |||
| </div> | |||
| <div class="ref-description"> | |||
| <p>Bulma Level Items With Headers</p> | |||
| </div> | |||
| <pre class="usage"><span class='fu'>level_item_header</span>(<span class='no'>...</span>, <span class='kw'>item_class</span> <span class='kw'>=</span> <span class='st'>"has-text-centered"</span>, | |||
| <span class='kw'>heading_class</span> <span class='kw'>=</span> <span class='kw'>NULL</span>, <span class='kw'>title_class</span> <span class='kw'>=</span> <span class='kw'>NULL</span>)</pre> | |||
| </div> | |||
| <div class="col-md-3 hidden-xs hidden-sm" id="sidebar"> | |||
| <h2>Contents</h2> | |||
| <ul class="nav nav-pills nav-stacked"> | |||
| </ul> | |||
| </div> | |||
| </div> | |||
| <footer> | |||
| <div class="copyright"> | |||
| <p>Developed by Garrick Aden-Buie.</p> | |||
| </div> | |||
| <div class="pkgdown"> | |||
| <p>Site built with <a href="http://pkgdown.r-lib.org/">pkgdown</a>.</p> | |||
| </div> | |||
| </footer> | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -44,5 +44,5 @@ more details).} | |||
| }} | |||
| } | |||
| \description{ | |||
| Bulma Document Renderer | |||
| TODO Document YAML options here. | |||
| } | |||