-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
232 lines (191 loc) · 3.79 KB
/
style.css
File metadata and controls
232 lines (191 loc) · 3.79 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/* Global Smooth Scroll */
html {
scroll-behavior: smooth;
}
body {
background-color: #008080;
/*background-image: url('./black-paper.png');*/
font-family: "MS Sans Serif", "Courier New", monospace;
padding-bottom: 100px;
/* Extra room for taskbar */
color: #000;
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
}
/* TOP MARQUEE */
.marquee-container {
background: #ff0000;
color: #FFFF33; /* Neon yellow text for contrast */
padding: 10px 0;
font-weight: bold;
border-bottom: 2px solid #000;
width: 100%;
overflow: hidden;
white-space: nowrap;
font-family: 'Comic Sans MS', sans-serif; /*'Comic Sans MS', cursive, /* very 90s vibe */
text-shadow: 2px 2px 2px #000; /* subtle glow/shadow for retro feel */
box-sizing: border-box;
}
.marquee-text {
display: inline-block;
animation: scrollMarquee 15s linear infinite;
}
@keyframes scrollMarquee {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}
@keyframes scrollLeftRight {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
/* WINDOW STYLING */
.window {
background: #c0c0c0;
border: 2px outset #fff;
box-shadow: 3px 3px 0 #000;
width: 90%;
max-width: 700px;
margin: 20px auto;
}
/* WINDOW STYLING */
.window-gap {
margin: 20px;
}
.title-bar {
background: linear-gradient(90deg, #000080, #1084d0);
color: white;
padding: 3px 8px;
font-weight: bold;
display: flex;
justify-content: space-between;
}
.content {
padding: 15px;
border: 1px inset #fff;
margin: 3px;
}
/* PROFILE STUFF */
.headshot-box {
width: 160px;
height: 160px;
background: #000;
border: 4px ridge #ffd700;
margin: 0 auto 15px auto;
}
.headshot-box img {
width: 100%;
height: 100%;
object-fit: cover;
}
.blink {
animation: blinker 1s linear infinite;
color: red;
font-weight: bold;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
/* RESOURCE BARS */
.resource-bar {
height: 15px;
background: #fff;
border: 1px inset #000;
margin: 5px 0;
}
.resource-fill {
height: 100%;
background: #00ff00;
}
/* FORM STYLING */
input,
textarea,
button {
width: 100%;
margin-top: 5px;
margin-bottom: 10px;
border: 2px inset #fff;
padding: 5px;
font-family: inherit;
}
button,
.btn {
background: #c0c0c0;
border: 2px outset #fff;
cursor: pointer;
width: auto;
padding: 5px 20px;
font-weight: bold;
}
button:active {
border-style: inset;
}
.visitor-counter {
background: #000;
color: #00ff00;
font-family: 'Courier New', monospace;
padding: 5px;
border: 2px inset #808080;
font-size: 1.2rem;
}
/* THE TASKBAR */
.taskbar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 40px;
background: #c0c0c0;
border-top: 2px outset #fff;
display: flex;
align-items: center;
z-index: 9999;
padding: 2px;
}
.start-btn {
background: #c0c0c0;
border: 2px outset #fff;
padding: 2px 10px;
font-weight: bold;
display: flex;
align-items: center;
margin-right: 10px;
text-decoration: none;
color: black;
font-size: 0.9rem;
}
/* Taskbar Link Buttons */
.active-app {
border: 2px outset #fff;
padding: 2px 8px;
font-size: 0.8rem;
background: #c0c0c0;
margin-right: 5px;
text-decoration: none;
color: black;
white-space: nowrap;
display: inline-block;
}
.active-app:active {
border-style: inset;
background: #e0e0e0;
}
.system-tray {
border: 2px inset #fff;
padding: 0 10px;
margin-right: 10px;
font-size: 0.85rem;
display: flex;
align-items: center;
}