-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
183 lines (160 loc) · 3.55 KB
/
style.css
File metadata and controls
183 lines (160 loc) · 3.55 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* Windows 98/Retrowave Theme */
:root {
--win98-gray: #c0c0c0;
--win98-dark: #808080;
--win98-darker: #404040;
--win98-light: #dfdfdf;
--win98-blue: #000080;
--retrowave-pink: #ff00ff;
--retrowave-blue: #00ffff;
--retrowave-purple: #9900ff;
}
/* Global Reset with retro font */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--win98-gray);
font-family: "MS Sans Serif", "Pixelated MS Sans Serif", Arial;
color: var(--win98-darker);
text-shadow: 1px 1px var(--win98-light);
line-height: 1.4;
}
/* Windows 98 Window Styling */
.window {
background: var(--win98-gray);
border: 2px solid;
border-color: var(--win98-light) var(--win98-darker) var(--win98-darker) var(--win98-light);
padding: 2px;
margin: 16px;
box-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}
.window-title {
background: var(--win98-blue);
color: white;
font-weight: bold;
padding: 3px 5px;
display: flex;
justify-content: space-between;
align-items: center;
}
.window-content {
padding: 10px;
background: var(--win98-gray);
}
/* Retro Buttons */
.btn-98 {
background: var(--win98-gray);
border: 2px solid;
border-color: var(--win98-light) var(--win98-darker) var(--win98-darker) var(--win98-light);
padding: 4px 10px;
font-family: inherit;
font-size: 14px;
color: var(--win98-darker);
cursor: pointer;
margin: 4px;
}
.btn-98:active {
border-color: var(--win98-darker) var(--win98-light) var(--win98-light) var(--win98-darker);
padding: 5px 9px 3px 11px;
}
/* Navigation Bar */
.navbar-98 {
background: var(--win98-gray);
border-bottom: 2px solid var(--win98-darker);
padding: 4px;
display: flex;
align-items: center;
}
/* Grid Layout */
.grid-98 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
padding: 16px;
}
/* ASCII Art Styling */
.ascii-art {
font-family: "Courier New", monospace;
white-space: pre;
font-size: 12px;
line-height: 1.2;
color: var(--win98-darker);
margin: 10px 0;
}
/* Retrowave Accents */
.retrowave-glow {
text-shadow:
0 0 5px var(--retrowave-pink),
0 0 10px var(--retrowave-blue),
0 0 15px var(--retrowave-purple);
}
/* Status Bar */
.status-bar-98 {
background: var(--win98-gray);
border-top: 2px solid var(--win98-darker);
padding: 4px;
display: flex;
justify-content: space-between;
position: fixed;
bottom: 0;
width: 100%;
}
/* Links */
a {
color: var(--win98-blue);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Form Elements */
input, textarea {
background: white;
border: 2px solid;
border-color: var(--win98-darker) var(--win98-light) var(--win98-light) var(--win98-darker);
padding: 3px 5px;
font-family: inherit;
}
/* Table Styling */
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid var(--win98-darker);
padding: 4px 8px;
text-align: left;
}
th {
background: var(--win98-blue);
color: white;
text-shadow: none;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 16px;
}
::-webkit-scrollbar-track {
background: var(--win98-gray);
}
::-webkit-scrollbar-thumb {
background: var(--win98-gray);
border: 2px solid;
border-color: var(--win98-light) var(--win98-darker) var(--win98-darker) var(--win98-light);
}
/* Loading Animation */
.loading-98 {
border: 2px solid var(--win98-darker);
border-top: 2px solid var(--win98-blue);
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin-98 1s linear infinite;
}
@keyframes spin-98 {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}