-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestanim.css
More file actions
150 lines (127 loc) · 2.66 KB
/
testanim.css
File metadata and controls
150 lines (127 loc) · 2.66 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body, html {
font-family: Arial, sans-serif;
font-size: 10px;
}
table {
margin-top: 50px;
border-collapse: collapse;
}
td, th {
padding: 2px;
text-align: left;
}
td, th {
width: 90px;
max-width: 90px;
}
.before > tr,
.before > th,
.before > td,
.before > tr[data-tblseg="subtabletitle"] th {
background-color: #fff;
text-align: left;
text-decoration: none;
border: 1px solid #fff;
color: #ddd;
}
button {
margin: 20px 0;
font-size: 12px;
background: #eee;
background-color: #006688;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
}
/* Show subtables */
.before .subtable {
background-color:#fff;
color:#000;
border: 0px solid #fff;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_st tbody.subtable {
background: #bbffbb;
color: #000;
border: 20px solid white;
border-spacing: 20px;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_st thead {
border: 20px solid white;
border-spacing: 20px;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_st tr[data-tblseg="subtabletitle"] th {
background-color: #00ff22;
padding-left: -10px;
text-align: left;
text-decoration: underline;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_st .subtable tr:not([data-tblseg="subtabletitle"]) th[data-role="obslabel"] {
padding-left: 10px;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_st .subtable th[data-role="obslabel"] {
color: #aa3322;
}
table.show_st .subtable tr[data-role="obs"] {
padding-left: 0;
}
/* Show supercolumn headers */
table.show_sc thead th[colspan] {
color: #000;
border-bottom: 3px solid black;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
/* supplemental columns */
td[data-role="supp-obs"],
th[data-role="supp-header"] {
display: none;
}
table.show_cc td[data-role="supp-obs"] {
display: table-cell;
background: #dd2;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
table.show_cc th[data-role="supp-header"] {
display: table-cell;
font-weight: bold;
-webkit-transition: all 1s;
-moz-transition: all 1s;
-o-transition: all 1s;
transition:all 1s;
}
td.cell, th {
border: #eee 2px solid;
}
td.empty {
border: yellow 2px dotted;
}