first commit
This commit is contained in:
8
www/bower_components/c3/docs/css/bootstrap.min.css
vendored
Normal file
8
www/bower_components/c3/docs/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
241
www/bower_components/c3/docs/css/c3.css
vendored
Normal file
241
www/bower_components/c3/docs/css/c3.css
vendored
Normal file
@@ -0,0 +1,241 @@
|
||||
/*-- Chart --*/
|
||||
.c3 svg {
|
||||
font: 10px sans-serif;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.c3 path, .c3 line {
|
||||
fill: none;
|
||||
stroke: #000;
|
||||
}
|
||||
|
||||
.c3 text {
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.c3-legend-item-tile,
|
||||
.c3-xgrid-focus,
|
||||
.c3-ygrid,
|
||||
.c3-event-rect,
|
||||
.c3-bars path {
|
||||
shape-rendering: crispEdges;
|
||||
}
|
||||
|
||||
.c3-chart-arc path {
|
||||
stroke: #fff;
|
||||
}
|
||||
|
||||
.c3-chart-arc rect {
|
||||
stroke: white;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc text {
|
||||
fill: #fff;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/*-- Axis --*/
|
||||
/*-- Grid --*/
|
||||
.c3-grid line {
|
||||
stroke: #aaa;
|
||||
}
|
||||
|
||||
.c3-grid text {
|
||||
fill: #aaa;
|
||||
}
|
||||
|
||||
.c3-xgrid, .c3-ygrid {
|
||||
stroke-dasharray: 3 3;
|
||||
}
|
||||
|
||||
/*-- Text on Chart --*/
|
||||
.c3-text.c3-empty {
|
||||
fill: #808080;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/*-- Line --*/
|
||||
.c3-line {
|
||||
stroke-width: 1px;
|
||||
}
|
||||
|
||||
/*-- Point --*/
|
||||
.c3-circle {
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
.c3-circle._expanded_ {
|
||||
stroke-width: 1px;
|
||||
stroke: white;
|
||||
}
|
||||
|
||||
.c3-selected-circle {
|
||||
fill: white;
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
/*-- Bar --*/
|
||||
.c3-bar {
|
||||
stroke-width: 0;
|
||||
}
|
||||
|
||||
.c3-bar._expanded_ {
|
||||
fill-opacity: 1;
|
||||
fill-opacity: 0.75;
|
||||
}
|
||||
|
||||
/*-- Focus --*/
|
||||
.c3-target.c3-focused {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
|
||||
stroke-width: 2px;
|
||||
}
|
||||
|
||||
.c3-target.c3-defocused {
|
||||
opacity: 0.3 !important;
|
||||
}
|
||||
|
||||
/*-- Region --*/
|
||||
.c3-region {
|
||||
fill: steelblue;
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
.c3-region text {
|
||||
fill-opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Brush --*/
|
||||
.c3-brush .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
|
||||
/*-- Select - Drag --*/
|
||||
/*-- Legend --*/
|
||||
.c3-legend-item {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.c3-legend-item-hidden {
|
||||
opacity: 0.15;
|
||||
}
|
||||
|
||||
.c3-legend-background {
|
||||
opacity: 0.75;
|
||||
fill: white;
|
||||
stroke: lightgray;
|
||||
stroke-width: 1;
|
||||
}
|
||||
|
||||
/*-- Title --*/
|
||||
.c3-title {
|
||||
font: 14px sans-serif;
|
||||
}
|
||||
|
||||
/*-- Tooltip --*/
|
||||
.c3-tooltip-container {
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.c3-tooltip {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
background-color: #fff;
|
||||
empty-cells: show;
|
||||
-webkit-box-shadow: 7px 7px 12px -9px #777777;
|
||||
-moz-box-shadow: 7px 7px 12px -9px #777777;
|
||||
box-shadow: 7px 7px 12px -9px #777777;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.c3-tooltip tr {
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
|
||||
.c3-tooltip th {
|
||||
background-color: #aaa;
|
||||
font-size: 14px;
|
||||
padding: 2px 5px;
|
||||
text-align: left;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.c3-tooltip td {
|
||||
font-size: 13px;
|
||||
padding: 3px 6px;
|
||||
background-color: #fff;
|
||||
border-left: 1px dotted #999;
|
||||
}
|
||||
|
||||
.c3-tooltip td > span {
|
||||
display: inline-block;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.c3-tooltip .value {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/*-- Area --*/
|
||||
.c3-area {
|
||||
stroke-width: 0;
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
/*-- Arc --*/
|
||||
.c3-chart-arcs-title {
|
||||
dominant-baseline: middle;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-background {
|
||||
fill: #e0e0e0;
|
||||
stroke: #FFF;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
|
||||
fill: #000;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-max {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arcs .c3-chart-arcs-gauge-min {
|
||||
fill: #777;
|
||||
}
|
||||
|
||||
.c3-chart-arc .c3-gauge-value {
|
||||
fill: #000;
|
||||
/* font-size: 28px !important;*/
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.c3-chart-arc.c3-target.c3-focused g path {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/*-- Zoom --*/
|
||||
.c3-drag-zoom.enabled {
|
||||
pointer-events: all !important;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.c3-drag-zoom.disabled {
|
||||
pointer-events: none !important;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.c3-drag-zoom .extent {
|
||||
fill-opacity: 0.1;
|
||||
}
|
||||
1
www/bower_components/c3/docs/css/c3.min.css
vendored
Normal file
1
www/bower_components/c3/docs/css/c3.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.c3 svg{font:10px sans-serif;-webkit-tap-highlight-color:transparent}.c3 line,.c3 path{fill:none;stroke:#000}.c3 text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.c3-bars path,.c3-event-rect,.c3-legend-item-tile,.c3-xgrid-focus,.c3-ygrid{shape-rendering:crispEdges}.c3-chart-arc path{stroke:#fff}.c3-chart-arc rect{stroke:#fff;stroke-width:1}.c3-chart-arc text{fill:#fff;font-size:13px}.c3-grid line{stroke:#aaa}.c3-grid text{fill:#aaa}.c3-xgrid,.c3-ygrid{stroke-dasharray:3 3}.c3-text.c3-empty{fill:grey;font-size:2em}.c3-line{stroke-width:1px}.c3-circle{fill:currentColor}.c3-circle._expanded_{stroke-width:1px;stroke:#fff}.c3-selected-circle{fill:#fff;stroke-width:2px}.c3-bar{stroke-width:0}.c3-bar._expanded_{fill-opacity:1;fill-opacity:.75}.c3-target.c3-focused{opacity:1}.c3-target.c3-focused path.c3-line,.c3-target.c3-focused path.c3-step{stroke-width:2px}.c3-target.c3-defocused{opacity:.3!important}.c3-region{fill:#4682b4;fill-opacity:.1}.c3-region text{fill-opacity:1}.c3-brush .extent{fill-opacity:.1}.c3-legend-item{font-size:12px}.c3-legend-item-hidden{opacity:.15}.c3-legend-background{opacity:.75;fill:#fff;stroke:#d3d3d3;stroke-width:1}.c3-title{font:14px sans-serif}.c3-tooltip-container{z-index:10}.c3-tooltip{border-collapse:collapse;border-spacing:0;background-color:#fff;empty-cells:show;-webkit-box-shadow:7px 7px 12px -9px #777;-moz-box-shadow:7px 7px 12px -9px #777;box-shadow:7px 7px 12px -9px #777;opacity:.9}.c3-tooltip tr{border:1px solid #ccc}.c3-tooltip th{background-color:#aaa;font-size:14px;padding:2px 5px;text-align:left;color:#fff}.c3-tooltip td{font-size:13px;padding:3px 6px;background-color:#fff;border-left:1px dotted #999}.c3-tooltip td>span{display:inline-block;width:10px;height:10px;margin-right:6px}.c3-tooltip .value{text-align:right}.c3-area{stroke-width:0;opacity:.2}.c3-chart-arcs-title{dominant-baseline:middle;font-size:1.3em}.c3-chart-arcs .c3-chart-arcs-background{fill:#e0e0e0;stroke:#fff}.c3-chart-arcs .c3-chart-arcs-gauge-unit{fill:#000;font-size:16px}.c3-chart-arcs .c3-chart-arcs-gauge-max{fill:#777}.c3-chart-arcs .c3-chart-arcs-gauge-min{fill:#777}.c3-chart-arc .c3-gauge-value{fill:#000}.c3-chart-arc.c3-target g path{opacity:1}.c3-chart-arc.c3-target.c3-focused g path{opacity:1}.c3-drag-zoom.enabled{pointer-events:all!important;visibility:visible}.c3-drag-zoom.disabled{pointer-events:none!important;visibility:hidden}.c3-drag-zoom .extent{fill-opacity:.1}
|
||||
0
www/bower_components/c3/docs/css/examples.css
vendored
Normal file
0
www/bower_components/c3/docs/css/examples.css
vendored
Normal file
5264
www/bower_components/c3/docs/css/foundation.css
vendored
Normal file
5264
www/bower_components/c3/docs/css/foundation.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
www/bower_components/c3/docs/css/foundation.min.css
vendored
Normal file
1
www/bower_components/c3/docs/css/foundation.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
3
www/bower_components/c3/docs/css/gettingstarted.css
vendored
Normal file
3
www/bower_components/c3/docs/css/gettingstarted.css
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
#chart5_1 .c3-line-data2 {
|
||||
stroke-width: 5px;
|
||||
}
|
||||
0
www/bower_components/c3/docs/css/index.css
vendored
Normal file
0
www/bower_components/c3/docs/css/index.css
vendored
Normal file
423
www/bower_components/c3/docs/css/normalize.css
vendored
Normal file
423
www/bower_components/c3/docs/css/normalize.css
vendored
Normal file
@@ -0,0 +1,423 @@
|
||||
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined in IE 8/9.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9.
|
||||
* Hide the `template` element in IE, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow displayed oddly in IE 9.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari 5.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10.
|
||||
*/
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8+, and Opera
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
||||
21
www/bower_components/c3/docs/css/reference.css
vendored
Normal file
21
www/bower_components/c3/docs/css/reference.css
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
section p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
section h5 {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
section code {
|
||||
padding-left: 0;
|
||||
}
|
||||
.sourcecode {
|
||||
margin-bottom: 1.25rem;
|
||||
padding: 6px 10px;
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
.sourcecode pre {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
.sourcecode pre code {
|
||||
background-color: #f4f4f4;
|
||||
}
|
||||
0
www/bower_components/c3/docs/css/samples/api_axis_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_axis_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_axis_range.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_axis_range.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_data_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_data_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_data_name.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_data_name.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_flow.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_flow.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_grid_x.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_grid_x.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_resize.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/api_resize.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_label_position.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_label_position.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_rotated.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_rotated.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_localtime.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_localtime.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_count.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_count.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_culling.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_culling.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_fit.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_fit.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_rotate.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_rotate.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_values.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_x_tick_values.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y2.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y2.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_padding.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_padding.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_range.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_range.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_tick_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/axes_y_tick_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/categorized.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/categorized.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_area.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_area.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_area_stacked.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_area_stacked.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar_negative.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar_negative.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar_stacked.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_bar_stacked.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_combination.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_combination.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_donut.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_donut.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_gauge.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_gauge.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_pie.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_pie.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_scatter.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_scatter.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_spline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_spline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_stanford.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_stanford.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_step.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/chart_step.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_columned.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_columned.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_json.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_json.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_label.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_label_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_label_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_load.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_load.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_name.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_name.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_order.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_order.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_rowed.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_rowed.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_stringx.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_stringx.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_url.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_url.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_xformat.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/data_xformat.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/grid_x_lines.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/grid_x_lines.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/grid_y_lines.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/grid_y_lines.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/interaction_zoom.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/interaction_zoom.css
vendored
Normal file
7
www/bower_components/c3/docs/css/samples/legend_custom.css
vendored
Normal file
7
www/bower_components/c3/docs/css/samples/legend_custom.css
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
.legend span {
|
||||
width: 33.333333%;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
}
|
||||
0
www/bower_components/c3/docs/css/samples/legend_position.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/legend_position.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_color.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_gridline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_gridline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_legend.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_legend.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_padding.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_padding.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_size.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_size.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_subchart.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/options_subchart.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/pie_label_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/pie_label_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/point_show.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/point_show.css
vendored
Normal file
6
www/bower_components/c3/docs/css/samples/region.css
vendored
Normal file
6
www/bower_components/c3/docs/css/samples/region.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
.c3-region.regionY {
|
||||
fill: red;
|
||||
}
|
||||
.c3-region.regionY2 {
|
||||
fill: green;
|
||||
}
|
||||
0
www/bower_components/c3/docs/css/samples/region_timeseries.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/region_timeseries.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_multiple.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_multiple.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_regions.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_regions.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_xy.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_xy.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_xy_multiple.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/simple_xy_multiple.css
vendored
Normal file
18
www/bower_components/c3/docs/css/samples/style_grid.css
vendored
Normal file
18
www/bower_components/c3/docs/css/samples/style_grid.css
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
.c3-xgrid-line line {
|
||||
stroke: blue;
|
||||
}
|
||||
.c3-xgrid-line.grid4 line {
|
||||
stroke: pink;
|
||||
}
|
||||
.c3-xgrid-line.grid4 text {
|
||||
fill: pink;
|
||||
}
|
||||
.c3-ygrid-line line {
|
||||
stroke: red;
|
||||
}
|
||||
.c3-ygrid-line.grid800 line {
|
||||
stroke: green;
|
||||
}
|
||||
.c3-ygrid-line.grid800 text {
|
||||
fill: green;
|
||||
}
|
||||
6
www/bower_components/c3/docs/css/samples/style_region.css
vendored
Normal file
6
www/bower_components/c3/docs/css/samples/style_region.css
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
.c3-region-0 {
|
||||
fill: red;
|
||||
}
|
||||
.c3-region.foo {
|
||||
fill: green;
|
||||
}
|
||||
0
www/bower_components/c3/docs/css/samples/timeseries.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/timeseries.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_format.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_grouped.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_grouped.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_show.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/tooltip_show.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_area.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_area.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_areaspline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_areaspline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_bar.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_bar.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_donut.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_donut.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_line.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_line.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_pie.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_pie.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_scatter.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_scatter.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_spline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transform_spline.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transition_duration.css
vendored
Normal file
0
www/bower_components/c3/docs/css/samples/transition_duration.css
vendored
Normal file
225
www/bower_components/c3/docs/css/style.css
vendored
Normal file
225
www/bower_components/c3/docs/css/style.css
vendored
Normal file
@@ -0,0 +1,225 @@
|
||||
body {
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
footer {
|
||||
text-align: right;
|
||||
}
|
||||
footer hr {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
footer p {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#chart {
|
||||
height: 280px;
|
||||
margin: 0px auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#message {
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#link {
|
||||
margin-top: 18px;
|
||||
float: right;
|
||||
}
|
||||
#link .git-icon {
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.antialiased {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
.container {
|
||||
width: 90%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.container.sidemenu {
|
||||
position: relative;
|
||||
}
|
||||
.container.sidemenu footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 100;
|
||||
background-color: #fdfdfd;
|
||||
}
|
||||
@media only screen and (min-width: 40.063em) {
|
||||
.container.sidemenu .column-menu {
|
||||
position: fixed;
|
||||
overflow: auto;
|
||||
top: 60px;
|
||||
bottom: 0;
|
||||
padding-bottom: 60px;
|
||||
width: 280px;
|
||||
}
|
||||
.container.sidemenu .column-content {
|
||||
padding-left: 10px;
|
||||
padding-top: 20px;
|
||||
padding-bottom: 60px;
|
||||
margin-left: 280px;
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
.container.sidemenu .column-menu .side-bar {
|
||||
position: relative;
|
||||
}
|
||||
.container.sidemenu .column-menu .side-bar li > a {
|
||||
display: inline;
|
||||
padding-left: 12px;
|
||||
}
|
||||
.container.sidemenu .column-menu .side-bar .label {
|
||||
top: -2px;
|
||||
padding: 0.22222rem 0.44444rem 0.33333rem;
|
||||
font-size: 0.5rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.container.sidemenu .column-content section .label {
|
||||
top: -4px;
|
||||
padding: 0.22222rem 0.44444rem 0.33333rem;
|
||||
font-size: 0.61rem;
|
||||
}
|
||||
.container hr.large {
|
||||
margin: 48px 0;
|
||||
}
|
||||
.container hr.medium {
|
||||
margin: 24px 0;
|
||||
}
|
||||
.container hr.small {
|
||||
margin: 12px 0;
|
||||
}
|
||||
.container h3.sub {
|
||||
color: #999;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
h1.title {
|
||||
margin: 16px 0;
|
||||
}
|
||||
|
||||
.top-bar .name h1 {
|
||||
font-size: 0.94444rem;
|
||||
}
|
||||
|
||||
.button {
|
||||
transition: none;
|
||||
}
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-weight: 300;
|
||||
}
|
||||
.row {
|
||||
max-width: 80rem;
|
||||
}
|
||||
|
||||
.chart {
|
||||
margin-top: 42px;
|
||||
}
|
||||
.overview {
|
||||
margin-bottom: 42px;
|
||||
padding: 0 18px;
|
||||
}
|
||||
.features {
|
||||
margin: 42px auto 30px;
|
||||
}
|
||||
|
||||
|
||||
.side-bar {
|
||||
}
|
||||
.side-bar h5 {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.margin-medium-v {
|
||||
margin-top: 24px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.margin-medium-top {
|
||||
margin-top: 24px !important;
|
||||
}
|
||||
.margin-small-h {
|
||||
margin-left: 12px;
|
||||
margin-right: 12px;
|
||||
}
|
||||
.margin-small-bottom {
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
|
||||
.c3-editor {
|
||||
font-size: 1.1em !important;
|
||||
}
|
||||
.sourcecode {
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
.sourcecode h3 {
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
.sourcecode pre {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
padding: 12px 0px;
|
||||
font-size: 1.2em;
|
||||
line-height: 1.428571429;
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.sourcecode pre code {
|
||||
background-color: #fdfdfd;
|
||||
padding: 0;
|
||||
font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
|
||||
font-weight: normal;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
border-left: 4px solid #ccc;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.highlight pre {
|
||||
padding: 0 8px;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
.section .row {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.section > a > h2 {
|
||||
line-height: 1.2em;
|
||||
margin-top: 18px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
span.code {
|
||||
display: inline-block;
|
||||
background-color: #eee;
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
h3 + ul, p + ul {
|
||||
margin-left: 32px;
|
||||
}
|
||||
|
||||
.gray {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
li .label {
|
||||
top: -3px;
|
||||
padding: 0.22222rem 0.44444rem 0.33333rem;
|
||||
font-size: 0.61rem;
|
||||
margin: 0 8px;
|
||||
}
|
||||
|
||||
div.sub-section {
|
||||
padding-top: 4px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
49
www/bower_components/c3/docs/css/tomorrow.css
vendored
Normal file
49
www/bower_components/c3/docs/css/tomorrow.css
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
|
||||
.tomorrow-comment, pre .comment, pre .title {
|
||||
color: #8e908c;
|
||||
}
|
||||
|
||||
.tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
|
||||
/* color: #c82829;*/
|
||||
}
|
||||
|
||||
.tomorrow-orange, pre .number, pre .preprocessor, pre .built_in, pre .literal, pre .params, pre .constant {
|
||||
color: #f5871f;
|
||||
}
|
||||
|
||||
.tomorrow-yellow, pre .class, pre .ruby .class .title, pre .css .rules .attribute {
|
||||
color: #eab700;
|
||||
}
|
||||
|
||||
.tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
|
||||
color: #718c00;
|
||||
}
|
||||
|
||||
.tomorrow-aqua, pre .css .hexcolor {
|
||||
color: #3e999f;
|
||||
}
|
||||
|
||||
.tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
|
||||
color: #4271ae;
|
||||
}
|
||||
|
||||
.tomorrow-purple, pre .keyword, pre .javascript .function {
|
||||
color: #8959a8;
|
||||
}
|
||||
|
||||
pre code {
|
||||
display: block;
|
||||
background: white;
|
||||
color: #4d4d4c;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
pre .coffeescript .javascript,
|
||||
pre .javascript .xml,
|
||||
pre .tex .formula,
|
||||
pre .xml .javascript,
|
||||
pre .xml .vbscript,
|
||||
pre .xml .css,
|
||||
pre .xml .cdata {
|
||||
opacity: 0.5;
|
||||
}
|
||||
Reference in New Issue
Block a user