This repository was archived by the owner on Sep 5, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +68
-149
lines changed Expand file tree Collapse file tree 3 files changed +68
-149
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1
1
## Table
2
2
3
3
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.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments