Sunburst visualization of modal importance aerosol activation experiment results.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fixScroll(handleName) { | |
$timeout(function(){ | |
var sv = $ionicScrollDelegate.$getByHandle(handleName).getScrollView(); | |
var container = sv.__container; | |
var originaltouchStart = sv.touchStart; | |
var originalmouseDown = sv.mouseDown; | |
var originaltouchMove = sv.touchMove; | |
var originalmouseMove = sv.mouseMove; | |
container.removeEventListener('touchstart', sv.touchStart); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="table queue-table"> | |
<thead> | |
<tr> | |
<th class="score-cell col-sm-2">Score</th> | |
<th class="participants-cell col-sm-2">Participants</th> | |
<th class="channel-cell col-sm-1">Channel</th> | |
<th class="excerpt-cell col-sm-6">Excerpt</th> | |
<th class="attachment-cell col-sm-1">Attachment</th> | |
</tr> | |
</thead> |
git clone [email protected]:pivotal-cf/pivotal-ui.git
cd pivotal-ui/library
npm install
cd .. && ./update-styleguide.sh
cd styleguide
gulp dev
- Open http://localhost:8000/ and hack away
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var program = require('commander'); | |
program | |
.command('new-styleguide <stylesheet>') | |
.description('Creates a new Runway styleguide, given a .CSS or .SCSS file. Returns the URL to your styleguide.') | |
.action(newStyleguide); | |
function newStyleguide(cmd) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var program = require('commander'); | |
program | |
.command('new-styleguide <stylesheet>') | |
.description('Creates a new Runway styleguide, given a .CSS or .SCSS file. Returns the URL to your styleguide.') | |
.action(newStyleguide); | |
function generateRandomNumber(min, max) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var program = require('commander'); | |
var colors = require('colors'); | |
var Spinner = require('cli-spinner').Spinner; | |
var spinner = new Spinner('Hot damn, those are some nice styles! Hang tight while we set up your styleguide... %s'); | |
spinner.setSpinnerString('|/-\\'); | |
program | |
.command('new-styleguide <stylesheet>') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
var program = require('commander'); | |
var colors = require('colors'); | |
var Spinner = require('cli-spinner').Spinner; | |
var spinner = new Spinner('Hot damn, those are some nice styles! Hang tight while we set up your styleguide... %s'); | |
spinner.setSpinnerString('|/-\\'); | |
program | |
.command('new-styleguide') |
I hereby claim:
- I am mattrothenberg on github.
- I am mattrothenberg (https://keybase.io/mattrothenberg) on keybase.
- I have a public key whose fingerprint is F7E4 05A6 985E 04C9 7CC5 4C20 9329 272F 2F41 EA0D
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "UTF-8"; | |
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap"); | |
/* Custom Stuff Here */ | |
/*@import url("https://fonts.googleapis.com/css?family=Lato");*/ | |
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"); | |
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap"); | |
/*@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');*/ | |
/*! | |
* Bootstrap v4.1.3 (https://getbootstrap.com/) |
OlderNewer