-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (68 loc) · 1.54 KB
/
style.css
File metadata and controls
77 lines (68 loc) · 1.54 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
:root {
--term-bg: rgba(0, 0, 0, 0.85);
--term-text: #00ff41; /* Classic Hacker Green */
--term-glow: #008f11;
}
body {
margin: 0;
overflow: hidden; /* Hide scrollbars for full immersion */
background: black;
font-family: 'Courier New', Courier, monospace;
}
/* Matrix Canvas behind everything */
canvas {
display: block;
position: absolute;
top: 0;
left: 0;
z-index: 0;
}
/* Centered Terminal Window */
.terminal-window {
position: relative;
z-index: 1;
width: 80%;
max-width: 800px;
height: 60vh;
margin: 10vh auto;
background: var(--term-bg);
border-radius: 8px;
box-shadow: 0 0 20px var(--term-glow);
border: 1px solid #333;
display: flex;
flex-direction: column;
}
.terminal-header {
background: #1a1a1a;
padding: 10px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
display: flex;
align-items: center;
}
.button {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 8px;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.title { color: #999; margin-left: 10px; font-size: 14px; }
.terminal-body {
padding: 20px;
color: var(--term-text);
overflow-y: auto;
font-size: 1.1rem;
text-shadow: 0 0 5px var(--term-glow);
}
.prompt { color: #f0f; margin-right: 10px; } /* Pink prompt for contrast */
/* Blinking Cursor */
.cursor {
animation: blink 1s step-end infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}