22 lines
171 B
Text
22 lines
171 B
Text
|
.faketerm
|
||
|
{
|
||
|
&::before
|
||
|
{
|
||
|
content: "$ ";
|
||
|
}
|
||
|
|
||
|
&::after
|
||
|
{
|
||
|
content: "_";
|
||
|
animation: blink 1.5s step-end infinite;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes blink
|
||
|
{
|
||
|
50%
|
||
|
{
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|