Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Commit d0324f7

Browse files
committed
Update
1 parent 50fcceb commit d0324f7

File tree

3 files changed

+68
-149
lines changed

3 files changed

+68
-149
lines changed
File renamed without changes.

readme.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,71 @@
11
## Table
22

33
Simple table styles.
4+
5+
## Installation
6+
7+
```
8+
npm install --save css-ui-table
9+
```
10+
## Demo
11+
12+
- https://css-ui.github.io/table/
13+
14+
## Quick start
15+
16+
CSS dependencies.
17+
18+
```html
19+
<link rel="stylesheet" href="path/to/normalize.css">
20+
<link rel="stylesheet" href="path/to/open-sans.css">
21+
<link rel="stylesheet" href="path/to/cssui.css">
22+
```
23+
24+
CSS menu style.
25+
26+
```html
27+
<link rel="stylesheet" href="path/to/style.tables.css">
28+
```
29+
30+
Set font.
31+
32+
```html
33+
<style>
34+
body {
35+
font-family: 'Open Sans', sans-serif;
36+
}
37+
</style>
38+
```
39+
40+
Class:
41+
42+
```default```, ```primary```, ```success``` and ```warning```
43+
44+
Table html.
45+
46+
```html
47+
<table class="full width">
48+
<tr class="default">
49+
<th>#</th>
50+
<th>Username</th>
51+
<th>Email</th>
52+
</tr>
53+
<tr class="default">
54+
<td>1</td>
55+
<td>Root</td>
56+
<td>root@domain.com</td>
57+
</tr>
58+
<tr class="default">
59+
<td>2</td>
60+
<td>Admin</td>
61+
<td>admin@domain.com</td>
62+
</tr>
63+
<tr class="default">
64+
<td>3</td>
65+
<td>User</td>
66+
<td>user@domain.com</td>
67+
</tr>
68+
</table>
69+
```
70+
71+
Enjoy table.

src/index.html

Lines changed: 0 additions & 149 deletions
This file was deleted.

0 commit comments

Comments
 (0)