-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (91 loc) · 2 KB
/
style.css
File metadata and controls
104 lines (91 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@import url("https://fonts.googleapis.com/css?family=Spinnaker");
body {
background: #66b2b2;
color: #ecf0f1;
font-family: lato,sans-serif;
text-align: center;
margin: 10% auto;
display: table;
}
#file-upload {
position: absolute;
left: -9999px;
}
label[for="file-upload"] {
padding: 0.5em;
display: inline-block;
background: #004c4c;
cursor: pointer;
}
label[for="export-data"]{
padding: 0.5em 1em;
display: inline-block;
background: #004c4c;
cursor: pointer;
}
label[for="file-upload"]:hover {
background: #008080;
}
.uploadDiv{
display: -webkit-inline-box;
}
.container{
margin: 30px 0 ;
clear:both;
}
#filename {
padding: 0.5em;
float: left;
width: 150px;
white-space: nowrap;
overflow: hidden;
background: #008080 ;
}
.hidden{
visibility: hidden;
}
/*Theme the Tabulator element*/
#example-table{
/*background-color:blue!important;*/
border: none;
border-color: white;
/*border-radius: 10px;*/
}
/*Theme the header*/
#example-table .tabulator-header {
/*background-color:blue!important;*/
color:#fff;
}
/*Allow column header names to wrap lines*/
#example-table .tabulator-header .tabulator-col,
#example-table .tabulator-header .tabulator-col-row-handle {
white-space: normal;
background-color: #004c4c;
vertical-align: middle;
border-bottom: 2px solid white!important;
padding: 0.5em;
text-align: center;
border: none;
border-color: #004c4c;
/*height: 100px;*/
}
/*Color the table rows*/
#example-table .tabulator-tableHolder .tabulator-table .tabulator-row{
color:#fff;
background-color: #008080;
border-color: white;
}
/*Color even rows*/
#example-table .tabulator-tableHolder .tabulator-table .tabulator-row:nth-child(even) {
background-color: #006666;
border-color: white;
}
.tabulator-row .tabulator-cell {
border-color: white!important;
}
.tabulator .tabulator-header {
border-bottom: none!important;
}
.tabulator-row .tabulator-cell:last-child {
border-right: none!important;
}