-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
60 lines (50 loc) · 903 Bytes
/
style.css
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
.ptbWrapper {
position: relative;
}
.ptbTable {
display: table;
border-collapse: collapse;
border-spacing: 1px;
}
.lineCell {
width: 3em;
height: 1.25em;
padding-left: 0px;
padding-right: 0px;
margin-left: 0px;
margin-right: 0px;
}
.timeCell {
width: 13ch;
}
.directionCell {
max-width: 32ch;
}
.marquee {
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
}
.marquee span {
display: inline-block;
white-space:nowrap;
padding-left: 100%;
text-indent: 0;
animation: marquee 15s linear infinite;
}
.marqueeStop {
animation-play-state: paused
}
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
.centeredTd {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.noPadding {
padding: 0px;
}