Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/core/test/html/grid/style.css
1031 views
1
body {
2
font-family: Helvetica Neue, Arial, sans-serif;
3
font-size: 14px;
4
color: #444;
5
}
6
7
table {
8
border: 2px solid #42b983;
9
border-radius: 3px;
10
background-color: #fff;
11
}
12
13
th {
14
background-color: #42b983;
15
color: rgba(255,255,255,0.66);
16
cursor: pointer;
17
-webkit-user-select: none;
18
-moz-user-select: none;
19
-ms-user-select: none;
20
user-select: none;
21
}
22
23
td {
24
background-color: #f9f9f9;
25
}
26
27
th, td {
28
min-width: 120px;
29
padding: 10px 20px;
30
}
31
32
th.active {
33
color: #fff;
34
}
35
36
th.active .arrow {
37
opacity: 1;
38
}
39
40
.arrow {
41
display: inline-block;
42
vertical-align: middle;
43
width: 0;
44
height: 0;
45
margin-left: 5px;
46
opacity: 0.66;
47
}
48
49
.arrow.asc {
50
border-left: 4px solid transparent;
51
border-right: 4px solid transparent;
52
border-bottom: 4px solid #fff;
53
}
54
55
.arrow.dsc {
56
border-left: 4px solid transparent;
57
border-right: 4px solid transparent;
58
border-top: 4px solid #fff;
59
}
60
61