darkc0de commited on
Commit
d2ba529
·
verified ·
1 Parent(s): 63cb361

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -104
style.css DELETED
@@ -1,104 +0,0 @@
1
- @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
2
-
3
- :root {
4
- --bg-color: #020513;
5
- --window-bg: rgba(5, 10, 31, 0.85);
6
- --neon-cyan: #00e5ff;
7
- --neon-red: #ff003c;
8
- --text-color: #a4b4cc;
9
- }
10
-
11
- body {
12
- margin: 0; overflow: hidden; font-family: 'Share Tech Mono', monospace;
13
- color: var(--text-color);
14
- background-color: #000; /* Fallback */
15
- background-image: url('YOUR_UPLOADED_IMAGE_PATH_HERE.jpg'); /* PUT WALLPAPER HERE */
16
- background-size: cover; background-position: center; background-repeat: no-repeat;
17
- height: 100vh; user-select: none;
18
- }
19
-
20
- /* =========================================
21
- CRT Effect & Boot Screen
22
- ========================================= */
23
- .crt {
24
- position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
25
- background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
26
- linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
27
- background-size: 100% 2px, 3px 100%;
28
- z-index: 9999; /* Keeps scanlines over EVERYTHING */
29
- pointer-events: none; /* Allows clicking through the scanlines */
30
- }
31
-
32
- #boot-screen {
33
- position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
34
- background-color: #020513; z-index: 9000;
35
- padding: 20px; box-sizing: border-box;
36
- display: flex; flex-direction: column; justify-content: flex-end;
37
- transition: opacity 1s ease-out;
38
- }
39
- #boot-text {
40
- color: var(--neon-cyan); text-shadow: 0 0 5px var(--neon-cyan);
41
- font-size: 14px; white-space: pre-wrap; word-wrap: break-word;
42
- overflow-y: hidden;
43
- }
44
-
45
- /* =========================================
46
- Desktop & Windows
47
- ========================================= */
48
- .desktop { padding: 20px; display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1;}
49
- .icon {
50
- width: 80px; text-align: center; cursor: pointer; padding: 10px; border-radius: 5px;
51
- transition: background 0.2s;
52
- }
53
- .icon:hover { background: rgba(0, 229, 255, 0.2); border: 1px solid var(--neon-cyan); }
54
- .icon img { width: 40px; height: 40px; filter: drop-shadow(0 0 5px var(--neon-cyan)); }
55
- .icon span { display: block; margin-top: 5px; font-size: 12px; color: white; text-shadow: 0 0 5px black; }
56
-
57
- .window {
58
- position: absolute; top: 100px; left: 150px; width: 600px; height: 450px;
59
- background: var(--window-bg); border: 1px solid var(--neon-cyan);
60
- box-shadow: 0 0 20px rgba(0, 229, 255, 0.2), inset 0 0 10px rgba(0, 229, 255, 0.1);
61
- backdrop-filter: blur(5px); display: flex; flex-direction: column; z-index: 10;
62
- }
63
- .window-header {
64
- background: linear-gradient(90deg, #0a1930 0%, #050a1f 100%);
65
- border-bottom: 1px solid var(--neon-cyan); padding: 5px 10px;
66
- display: flex; justify-content: space-between; align-items: center;
67
- cursor: grab; color: var(--neon-cyan); font-weight: bold;
68
- }
69
- .window-header:active { cursor: grabbing; }
70
- .window-controls button {
71
- background: none; border: none; color: var(--text-color); cursor: pointer; font-family: inherit; font-size: 16px;
72
- }
73
- .window-controls button:hover { color: var(--neon-red); text-shadow: 0 0 5px var(--neon-red); }
74
- .window-content { flex-grow: 1; overflow-y: auto; display: flex; flex-direction: column; }
75
-
76
- /* =========================================
77
- App Specific Styles
78
- ========================================= */
79
- .system-msg { color: #555; font-style: italic; }
80
- .bot-msg { color: var(--neon-cyan); }
81
- .hacker-input {
82
- background: transparent; border: none; border-bottom: 1px solid var(--neon-cyan);
83
- color: white; width: 100%; font-family: inherit; outline: none; margin-top: auto; padding: 5px 0;
84
- }
85
- #notepad-input {
86
- width: 100%; height: 100%; background: transparent; border: none; color: var(--neon-cyan);
87
- font-family: 'Share Tech Mono', monospace; padding: 15px; box-sizing: border-box; resize: none; outline: none;
88
- }
89
- #snake-canvas { border: 1px solid var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }
90
-
91
- /* =========================================
92
- Taskbar
93
- ========================================= */
94
- .taskbar {
95
- position: absolute; bottom: 0; width: 100%; height: 40px;
96
- background: rgba(5, 10, 31, 0.9); border-top: 1px solid var(--neon-cyan);
97
- display: flex; align-items: center; padding: 0 10px; box-sizing: border-box; z-index: 100;
98
- }
99
- .start-btn {
100
- background: var(--neon-cyan); color: black; border: none; padding: 5px 15px;
101
- font-weight: bold; font-family: inherit; cursor: pointer; text-transform: uppercase;
102
- }
103
- .start-btn:hover { box-shadow: 0 0 10px var(--neon-cyan); }
104
- .clock { margin-left: auto; color: var(--neon-cyan); font-weight: bold; }