forked from chrisdone-archive/jquery-console
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjs-console.css
79 lines (62 loc) · 925 Bytes
/
js-console.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
77
78
79
.js-console-typer {
position: absolute;
top: 0;
left: -9999px;
}
.invisible {
visibility: hidden;
}
.hide {
display: none;
}
.fixposition {
position: fixed;
}
.blockdisplay {
display: inline-block;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadein {
animation-name: fadein;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes fadeout {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeout {
animation-name: fadeout;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes uncovertop {
from {
height: 0px;
}
to {
height: 20px;
}
}
.uncovertop {
animation-name: uncovertop;
animation-duration: 1s;
animation-fill-mode: forwards;
}
.defaultcursor {
cursor: default;
}
.halfvisible {
opacity: 50%;
}