-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsole.css
More file actions
104 lines (101 loc) · 1.9 KB
/
console.css
File metadata and controls
104 lines (101 loc) · 1.9 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.console {
background: #002b36;
width: 100%;
padding: 4px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
}
.line {
display: inline-block;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
border: 0;
margin: 0;
padding: 0;
-webkit-transition: -webkit-transform 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
-moz-transition: -moz-transform 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
-o-transition: -o-transform 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transition: transform 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.char {
color: #839496;
font-family: 'PT Mono', monospace;
font-size: 16px;
font-weight: bold;
}
.text {
font-weight: normal;
}
.inactive {
display: block;
}
.prompt {
padding-right: 10px;
}
.cursor {
font-size: 14px;
-webkit-animation-name: blink;
-webkit-animation-iteration-count: infinite;
-webkit-animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-duration: 1s;
-o-animation-name: blink;
-o-animation-iteration-count: infinite;
-o-animation-duration: 1s;
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 0;
}
}
@-o-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 0;
}
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 0;
}
}
input[type=text] {
background: transparent;
color: transparent;
border: none;
cursor: none;
-webkit-appearance: none;
opacity: 0;
height: 0px;
width: 0px;
}
input[type=text]:focus {
-webkit-appearance: none;
outline: none;
cursor: none;
}
.welcome {
padding: 40px 20px;
}