-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (50 loc) · 848 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
* {
margin: 0;
padding: 0;
}
body {
background: #C2BEB2;
}
.center {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.table {
width: 790px;
height: 150px;
background-color: #d4e5ff;
}
.table .monitor-wrapper {
background: #050321;
width: 770px;
height: 130px;
box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.3);
}
.table .monitor-wrapper .monitor {
width: 700px;
height: 100px;
background-color: #344151;
overflow: hidden;
white-space: nowrap;
box-shadow: inset 0px 5px 10px 2px rgba(0, 0, 0, 0.3);
}
.table .monitor-wrapper .monitor p {
font-family: "VT323", monospace;
font-size: 100px;
position: relative;
display: inline-block;
animation: move 20s infinite linear;
color: #EBB55F;
}
@keyframes move {
from {
left: 800px;
}
to {
left: -4800px;
}
}