-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcbox.html
More file actions
260 lines (229 loc) · 8.5 KB
/
Copy pathcbox.html
File metadata and controls
260 lines (229 loc) · 8.5 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Milton Weather Chat Room</title>
<link rel="icon" href="Favicon.png" type="image/png">
<meta name="date" content="2026-05-30"/>
<meta name="author" content="JesseLikesWeather"/>
<meta content="description" content="Join other weather enthusiast to talk about the latest weather, or the past weather, or just weather in general!"/>
<style>
:root {
color-scheme: light dark;
font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background-color: #eef1f6;
color: #12181e;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
background: radial-gradient(circle at top, #f8fbff 0%, #e8eef7 45%, #dcdfe6 100%);
}
.page-shell {
max-width: 1180px;
margin: 0 auto;
padding: 24px 20px 40px;
}
.topbar {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 22px;
}
.back-button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
color: #1f4d8a;
background: rgba(39, 101, 197, 0.12);
border: 1px solid rgba(39, 101, 197, 0.2);
transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.back-button:hover {
transform: translateY(-1px);
background: rgba(39, 101, 197, 0.16);
box-shadow: 0 12px 24px rgba(33, 78, 151, 0.06);
}
.page-title {
margin: 0;
font-size: clamp(2rem, 2.6vw, 3rem);
line-height: 1.05;
letter-spacing: -0.03em;
}
.page-subtitle {
margin: 10px 0 0;
font-size: 1rem;
color: #475569;
max-width: 760px;
line-height: 1.65;
}
.card {
background: #ffffff;
border: 1px solid rgba(15, 23, 42, 0.08);
border-radius: 24px;
box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
overflow: hidden;
margin-top: 20px;
}
.card-header {
padding: 28px 32px 22px;
border-bottom: 1px solid rgba(15, 23, 42, 0.06);
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
}
.card-header h2 {
margin: 0;
font-size: 1.25rem;
color: #0f172a;
}
.card-body {
padding: 28px 32px 32px;
display: grid;
gap: 24px;
}
.iframe-wrapper {
width: 100%;
min-height: 520px;
border-radius: 18px;
overflow: hidden;
background: #0f172a;
box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.iframe-wrapper iframe {
width: 100%;
height: 520px;
border: 0;
}
.guidelines {
display: grid;
gap: 14px;
}
.guidelines h3 {
margin: 0;
font-size: 1.1rem;
color: #0f172a;
}
.guidelines-list {
margin: 0;
padding-left: 1.2rem;
color: #334155;
line-height: 1.8;
list-style: disc;
}
.guidelines-list li {
margin-bottom: 10px;
}
.footer-note {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
padding-top: 12px;
color: #64748b;
font-size: 0.95rem;
text-align: center;
}
.footer-note a {
color: #2563eb;
text-decoration: none;
}
.footer-note a:hover {
text-decoration: underline;
}
.weather-finder-link {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
width: 100%;
}
.weather-finder-link a {
display: inline-flex;
justify-content: center;
}
@media (max-width: 860px) {
.iframe-wrapper iframe {
height: 420px;
}
}
@media (max-width: 640px) {
.page-shell {
padding: 18px 14px 28px;
}
.card-header,
.card-body {
padding-left: 22px;
padding-right: 22px;
}
.iframe-wrapper iframe {
height: 320px;
}
}
</style>
</head>
<body>
<div class="page-shell">
<div class="topbar">
<a href="./" class="back-button" title="Back to main dashboard">← Back to Dashboard</a>
<div>
<h1 class="page-title">The Chat Room</h1>
<p class="page-subtitle">Join other weather enthusiasts in the chat room and keep the conversation friendly and on-topic.</p>
</div>
</div>
<div class="card">
<div class="card-header">
<h2>Live Chat</h2>
<span>Interactive weather discussion</span>
</div>
<div class="card-body">
<div class="iframe-wrapper">
<iframe src="https://www3.cbox.ws/box/?boxid=3548334&boxtag=uOaBA6" allowtransparency="yes" allow="autoplay" scrolling="auto"></iframe>
</div>
<div class="guidelines">
<h3>Community Guidelines</h3>
<ul class="guidelines-list">
<li>Be respectful and courteous to all members.</li>
<li>No spamming, advertising, or repeated off-topic posts.</li>
<li>Keep conversations relevant to weather and local conditions.</li>
<li>Minimize vulgar language and avoid threats.</li>
<li>Use the chat responsibly to help keep the room safe for everyone.</li>
</ul>
</div>
<div class="footer-note">
<a href="index.html">Return to the Milton Weather Dashboard</a>
<div class="weather-finder-link">
<a href="https://usaweatherfinder.com/">
<img src="https://usaweatherfinder.com/button.php?u=JesseLikesWeather" alt="USA Weather Finder" border="0">
</a>
<a style="display: flex; margin: auto;" href="https://info.flagcounter.com/lQOw"><img align="center"
style="margin: auto;"
src="https://s05.flagcounter.com/count2_US/lQOw/bg_FFFFFF/txt_000000/border_CCCCCC/columns_5/maxflags_15/viewers_Visitors+of+this+Website/labels_1/pageviews_1/flags_0/percent_0/"
alt="Flag Counter" border="0"></a>
<a style="display: flex; margin: auto;" href="https://info.flagcounter.com/lQOw"><img align="center"
style="margin: auto;"
src="https://s05.flagcounter.com/count2/lQOw/bg_FFFFFF/txt_000000/border_CCCCCC/columns_7/maxflags_28/viewers_Visitors+of+this+Website/labels_1/pageviews_1/flags_0/percent_1/"
alt="Flag Counter" border="0"></a>
<script type="text/javascript" src="https://counter.websiteout.com/js/4/0/177/1"></script>
<div>Visitors since April 10th 2025</div>
<script type='text/javascript' id='mapmyvisitors'
src='https://mapmyvisitors.com/map.js?cl=0e1633&w=300&t=tt&d=t3odhofxurebbSfw41ppW2vG16bbsGEIr40CdPjsofc&co=0b4975&ct=cdd4d9&cmo=3acc3a&cmn=ff5353'></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</div>
</div>
</div>
</div>
</body>
</html>