-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (127 loc) · 1.76 KB
/
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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{
margin: 0;
padding: 15px 20px;
min-height: 99%;
width: 100%;
min-width: 550px;
font-family: cursor, 'Courier New', Courier, monospace;
overflow-x: hidden;
background: #666565;
}
::selection{
color: #c3b628;
background-color: #c22755;
}
::-moz-selection{
color: #c3b628;
background-color: #ac1e35;
}
textarea{
left: -1000px;
position: absolute;
}
b{
font-weight: bold;
text-decoration: underline;
}
.cursor{
font-family: 'Courier New', Courier, monospace;
font-size: 12px;
color:#211830;
background-color: #c22755;
position: relative;
opacity: 1;
height: 1.5em;
width: 10px;
max-width: 10px;
transform: translateY(4px);
overflow: hidden;
text-indent: -5px;
display: inline-block;
text-decoration: blink;
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50%{
opacity: 0;
}
}
#command
{
cursor: text;
height: 50px;
color: #d41414;
}
#liner{
line-height: 1.3em;
margin-top: -2px;
animation: show 0.5s ease forwards;
animation-delay: 1.2s;
opacity: 0;
}
#liner::before{
color:red;
content: "[email protected]:~$";
}
@keyframes show {
from{
opacity: 0;
}
to{
opacity: 1;
}
}
p {
display: block;
color: #CBA742;
margin: 0;
overflow: hidden;
white-space: nowrap;
line-height: 1.3em;
letter-spacing: -0.02em;
animation: typing 1s steps(30, end);
}
.no-animation {
animation: typing 0 steps(30, end);
}
.margin {
margin-left: 20px;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
.index {
color: #a6a6a6;
}
.color2 {
color: #e2d86a;
}
.command {
color: #d41414;
text-shadow: 0 0 5px #b34343;
}
.error {
color: #B89076;
}
.white {
color: #fff;
}
.inherit,
a {
color: #9C8394;
}
a {
text-decoration: inherit;
}
a:hover {
background: #73ABAD;
color: #211830;
}
a:focus {
outline: 0;
}