-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
117 lines (100 loc) · 2.49 KB
/
style.css
File metadata and controls
117 lines (100 loc) · 2.49 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
105
106
107
108
109
110
111
112
113
114
115
116
117
/* COPYRIGHT 2026 BY NOTHINGBUTTYLER. ALL RIGHTS RESERVED. */
root {
--glow: #00ff41;
--bg: #050505;
--text-main: #e0e0e0;
}
body {
background-color: var(--bg);
color: var(--glow);
margin: 0;
min-height: 100vh;
font-family: 'Segoe UI', sans-serif;
position: relative;
}
/* CRT SCANLINES */
body::after {
content: " "; display: block; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
z-index: 1000; background-size: 100% 2px, 3px 100%; pointer-events: none;
}
.terminal-box {
border: 1px solid var(--glow); background: rgba(0, 255, 65, 0.02); padding: 30px;
margin: 40px auto; max-width: 900px; box-shadow: 0 0 20px rgba(0, 255, 65, 0.05);
animation: glitch-border 5s infinite;
}
.header {
display: flex;
justify-content: space-between; /* This pushes nav to the right */
align-items: center; /* Aligns them vertically */
padding: 20px 40px;
border-bottom: 1px solid var(--glow);
}
.nav-links {
display: flex;
align-items: center;
}
.nav-links a {
color: var(--glow);
text-decoration: none;
margin-left: 20px;
font-size: 13px;
letter-spacing: 1px;
}
.dash-btn {
border: 1px solid var(--glow);
padding: 4px 10px;
background: rgba(0, 255, 65, 0.1);
}
@keyframes glitch-border {
0% {
border-color: var(--glow);
}
95% {
border-color: var(--glow);
}
96% {
border-color: #fff;
}
100% {
border-color: var(--glow);
}
}
.status-indicator {
display: flex;
align-items: center;
font-family: 'Courier New', monospace;
font-size: 12px;
letter-spacing: 1px;
}
.dot {
height: 10px;
width: 10px;
background-color: #444; /* Default to grey */
border-radius: 50%;
margin-right: 10px;
transition: 0.5s;
}
.online {
background-color: #00ff41;
box-shadow: 0 0 10px #00ff41;
}
.offline {
background-color: #ff4444;
box-shadow: 0 0 10px #ff4444;
}
.card {
transition: transform 0.3s, border-color 0.3s;
cursor: crosshair;
}
.card:hover {
transform: translateY(-5px);
border-color: #ffffff; /* Turns white briefly on hover */
background: rgba(0, 255, 65, 0.08);
box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}
.card:hover h3 {
text-shadow: 0 0 10px var(--glow);
color: #fff;
}