Skip to content

Commit

Permalink
[update] v0.2 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi authored Mar 8, 2018
1 parent 6f69f31 commit 520ef4d
Show file tree
Hide file tree
Showing 135 changed files with 45,850 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The fastest open-source web component of data table.
[![npm](https://img.shields.io/npm/v/cheetah-grid.svg)](https://www.npmjs.com/package/cheetah-grid)

```html
<script src="https://unpkg.com/cheetah-grid@0.1.x"></script>
<script src="https://unpkg.com/cheetah-grid@0.2.x"></script>
```

### Downloading Cheetah Grid using npm
Expand All @@ -38,10 +38,10 @@ const cheetahGrid = require("cheetah-grid")
### Downloading Cheetah Grid source code
[![npm](https://img.shields.io/npm/v/cheetah-grid.svg)](https://www.npmjs.com/package/cheetah-grid)

[cheetahGrid.es5.min.js](https://unpkg.com/cheetah-grid@0.1.x/dist/cheetahGrid.es5.min.js)
[cheetahGrid.es5.min.js](https://unpkg.com/cheetah-grid@0.2.x/dist/cheetahGrid.es5.min.js)

SourceMap
[cheetahGrid.es5.min.js.map](https://unpkg.com/cheetah-grid@0.1.x/dist/cheetahGrid.es5.min.js.map)
[cheetahGrid.es5.min.js.map](https://unpkg.com/cheetah-grid@0.2.x/dist/cheetahGrid.es5.min.js.map)


### Downloading Cheetah Grid using GitHub
Expand Down
74 changes: 74 additions & 0 deletions docs/0.2/css/highlightjs.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/*
Name: Kimbie (dark)
Author: Jan T. Sott
License: Creative Commons Attribution-ShareAlike 4.0 Unported License
URL: https://github.com/idleberg/Kimbie-highlight.js
*/

/* Kimbie Comment */
.hljs-comment,
.hljs-quote {
color: #d6baad;
}

/* Kimbie Red */
.hljs-variable,
.hljs-template-variable,
.hljs-tag,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-meta {
color: #dc3958;
}

/* Kimbie Orange */
.hljs-number,
.hljs-built_in,
.hljs-builtin-name,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-deletion,
.hljs-link {
color: #f79a32;
}

/* Kimbie Yellow */
.hljs-title,
.hljs-section,
.hljs-attribute {
color: #f06431;
}

/* Kimbie Green */
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
color: #889b4a;
}

/* Kimbie Purple */
.hljs-keyword,
.hljs-selector-tag,
.hljs-function {
color: #98676a;
}

.hljs {
display: block;
overflow-x: auto;
background: #221a0f;
color: #d3af86;
padding: 0.5em;
}

.hljs-emphasis {
font-style: italic;
}

.hljs-strong {
font-weight: bold;
}
163 changes: 163 additions & 0 deletions docs/0.2/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
.primary {
background-color: #284060;
color: #fff;
}

.primary.light,.primary .light {
background-color: #556b8e;
color: #fff;
}

.primary.dark,.primary .dark {
background-color: #001a36;
color: #fff;
}

.warn {
background-color: #fcf8e3;
border-color: #faf2cc;
color: #8a6d3b;
font-weight: bolder;
padding: 5px;
}

nav {
line-height: 80px;
height: 80px;
}
nav ul {
padding-left: 0;
list-style-type: none;
margin: 0;
}
nav ul li {
float: left;
padding: 0;
}
nav ul a {
font-size: 1rem;
display: block;
padding: 0 15px;
cursor: pointer;
text-decoration: none;
}
nav ul li a:hover {
background-color: rgba(0,0,0,0.1);
}

table {
border-collapse: collapse;
margin-bottom: 30px;
}
th {
border-top: solid 1.5px #aaa;
border-bottom: solid 1.5px #aaa;
padding: 5px 10px;
}
td {
border-bottom: solid 1px #aaa;
padding: 5px 10px;
}

code {
border: .1rem solid #E5E5E5;
margin: 0 .3rem;
padding: .2rem .4rem;
background-color: #F4F9F9;
}

.contents h1, .contents h2 {
border-bottom: 1px solid #ddd;
padding-bottom: .1em;
}

.right {
float: right !important;
}

.share-buttons>* {
line-height: 20px;
}

.share-buttons>*>* {
vertical-align: bottom;
}

.share-buttons {
text-align: right;
padding: 5px;
}

.icon-arrow {
display: inline-block;
background: -moz-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg, transparent 0%, transparent 50%, #DDD 51%, #DDD 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
width: 10px;
height: 10px;
transform: rotate(45deg) translateY(-5px);
vertical-align: middle;
}

.nav-dropdown-container {
position: relative;
}

@media screen and (min-width: 500px) {
.mobile-only {
display: none;
}

.nav-dropdown {
display: none;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.nav-dropdown.show {
display:block;
}

.nav-dropdown.right-dropdown {
right: 0;
}

nav ul.nav-dropdown li {
float: none;
line-height: 50px;
white-space: nowrap;
}

}
@media screen and (max-width: 499px) {
.mobile-only {
}

.mobile-nav-dropdown {
display: none;
position: absolute;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.mobile-nav-dropdown.show {
display:block;
}

.mobile-nav-dropdown.right-dropdown {
right: 0;
}

nav ul.mobile-nav-dropdown li {
float: none;
line-height: 50px;
white-space: nowrap;
}
nav ul.mobile-nav-dropdown ul {
padding-left: 5px;
}

}

Loading

0 comments on commit 520ef4d

Please sign in to comment.