-
Notifications
You must be signed in to change notification settings - Fork 2
/
rTerm.css
51 lines (43 loc) · 942 Bytes
/
rTerm.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
.cursor {
animation:1s blinker linear infinite;
-webkit-animation:1s blinker linear infinite;
-moz-animation:1s blinker linear infinite;
text-align: center;
font-size: 14px;
font-family: monospace, sans-serif;
color: #999999;
}
@-moz-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 1.0; }
100% { opacity: 0.0; }
}
@-webkit-keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 1.0; }
100% { opacity: 0.0; }
}
@keyframes blinker {
0% { opacity: 1.0; }
50% { opacity: 1.0; }
51% { opacity: 0.0; }
100% { opacity: 0.0; }
}
.rterm {
display: inline-block;
width:750px;
max-width:750px;
font-size: 14px;
font-family: monospace, sans-serif;
color: #999999;
}
#term {
position: fixed;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
min-height: 10em;
width: 425px;
text-align: left;
}