-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUX.css
76 lines (64 loc) · 1.08 KB
/
UX.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body{
font-family: monospace;
background-image: url(patarn.gif);
}
p{
text-align: center;
}
h3{
text-align: center;
}
ul{
text-align: center;
}
table{
margin-left: auto;
margin-right: auto;
}
.menu{
text-align: center;
}
.text{
animation: flash 0.5s linear infinite;
margin:20px;
font-size:30px;
font-weight: bold;
}
@keyframes flash {
0%,35%,60%,100%{
opacity: 1;
}
25%{
opacity: 1;
color:#7fff00;
}
50%{
opacity: 1;
color:#0091EA;
}
75%{
opacity: 1;
color:#ff1493;
}
}
.scroll {
margin : auto;
width : 96%;
font-size : 300%;
line-height: 2.0em;
text-align : center;
color : #2f01fc;
background : rgba(255, 255, 255, 0);
overflow : hidden;
}
.scroll span{
display : inline-block;
padding-left: 100%;
white-space : nowrap;
line-height : 1em;
animation : scrollAnime 8s linear infinite;
}
@keyframes scrollAnime{
0% { transform: translateX(30)}
100% { transform: translateX(-100%)}
}