File size: 760 Bytes
0477c6d
 
 
 
0102cd8
 
0477c6d
 
0102cd8
 
0477c6d
 
 
0102cd8
 
0477c6d
 
0102cd8
 
0477c6d
 
 
0102cd8
0477c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #2d3748;
}

::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Syntax highlighting classes */
.hljs-keyword {
    color: #569cd6;
}

.hljs-string {
    color: #ce9178;
}

.hljs-comment {
    color: #6a9955;
}

.hljs-type {
    color: #4ec9b0;
}

/* Terminal blinking cursor animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #4ade80;
    animation: blink 1s step-end infinite;
}