-
Notifications
You must be signed in to change notification settings - Fork 0
/
ticker.css
50 lines (49 loc) · 993 Bytes
/
ticker.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
body{
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue','STHeitiTC','Microsoft JhengHei', sans-serif;
}
#tickerContainer{
width: 1920px;
height: 80px;
background: white;
position: absolute;
top:0px;
left: 0px;
overflow: hidden;
color: rgb(34, 34, 34);
box-shadow: 0px 0px 20px darkslategray;
display: flex;
font-size: 48px;
margin-top: 20px;
margin-left: 20px
}
#tickerHeader{
padding: 5px 20px;
font-weight: 700
}
#tickerContent{
padding: 5px 20px;
font-weight: 600
}
.tickerContentText{
height:40px
}
p{
margin:0px 0px 30px 0px
}
.showup{
animation-name: entering;
animation-delay: 0s;
animation-duration: 0.2s;
animation-iteration-count: 1;
animation-timing-function: linear
}
@keyframes entering {
0% {
opacity: 0;
margin-top:30;
}
100% {
opacity: 1;
margin-top:0;
}
}