-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
69 lines (55 loc) · 1.02 KB
/
site.css
File metadata and controls
69 lines (55 loc) · 1.02 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
body, html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: Roboto;
}
.better-table-flex {
background-color: #eee;
}
.btf-headers {
background-color: #42A5F5;
color: #fff;
font-weight: bold;
}
.btf-header {
background-color: #42A5F5;
}
.btf-toolbar {
background-color: #2196F3;
}
.btf-footer {
background-color: #eee;
border: 1px solid #ddd;
}
.btf-filter {
border-radius: 2px;
background-color: rgba(255, 255, 255, 0.3);
border: none;
color: #fff;
padding: 12px 8px;
outline: none;
flex: 1 1 auto;
max-width: 420px;
transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.2s;
}
.btf-filter:focus {
background-color: rgba(255, 255, 255, 1);
color: rgba(0,0,0,0.8);
}
.btf-filter::-webkit-input-placeholder {
color: #fff;
}
.btf-filter:focus::-webkit-input-placeholder {
color: rgba(0, 0, 0, 0.5);
}
.btf-column-sort.none:after {
content: '';
}
.btf-column-sort.asc:after {
content: 'arrow_upward';
}
.btf-column-sort.desc:after {
content: 'arrow_downward';
}