Skip to content

Commit 1d353ae

Browse files
authored
Update index.html
1 parent da070c3 commit 1d353ae

1 file changed

Lines changed: 38 additions & 14 deletions

File tree

index.html

Lines changed: 38 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>OTRSC - OT Risk Severity Calculator v2.0</title>
6+
<title>OT Risk Severity Calculator v2.0</title>
77
<style>
88
* {
99
margin: 0;
@@ -263,40 +263,54 @@
263263
}
264264

265265
.score-card {
266-
background: rgba(255,255,255,0.15);
266+
background: rgba(255,255,255,0.25);
267267
padding: 20px;
268268
border-radius: 10px;
269269
text-align: center;
270+
border: 2px solid rgba(255,255,255,0.3);
270271
}
271272

272273
.score-card h4 {
273274
font-size: 0.9em;
274275
margin-bottom: 10px;
275-
opacity: 0.9;
276+
opacity: 1;
277+
color: #ffffff;
278+
font-weight: 600;
276279
}
277280

278281
.score-card .score {
279282
font-size: 2.5em;
280283
font-weight: 700;
284+
color: #ffffff;
285+
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
286+
}
287+
288+
.score-card small {
289+
color: #ffffff;
290+
opacity: 0.9;
281291
}
282292

283293
.final-score {
284-
background: rgba(255,255,255,0.95);
294+
background: rgba(255,255,255,0.25);
285295
padding: 30px;
286296
border-radius: 10px;
287297
text-align: center;
288298
margin-top: 20px;
299+
border: 2px solid rgba(255,255,255,0.3);
289300
}
290301

291302
.final-score h3 {
292-
color: #333;
303+
color: #ffffff;
293304
margin-bottom: 15px;
305+
font-size: 1.5em;
294306
}
295307

296308
.final-score .score {
297309
font-size: 4em;
298310
font-weight: 700;
299311
margin: 20px 0;
312+
color: #ffffff;
313+
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
300314
}
301315

302316
.rating {
@@ -306,29 +320,39 @@
306320
font-weight: 700;
307321
display: inline-block;
308322
margin: 15px 0;
323+
border: 3px solid rgba(255,255,255,0.3);
324+
color: #ffffff;
325+
background: rgba(0,0,0,0.2);
309326
}
310327

311-
.rating-critical { background: #dc3545; color: white; }
312-
.rating-high { background: #fd7e14; color: white; }
313-
.rating-medium { background: #ffc107; color: #333; }
314-
.rating-low { background: #28a745; color: white; }
315-
.rating-info { background: #17a2b8; color: white; }
328+
.rating-critical { background: #dc3545; color: white; border-color: #c82333; }
329+
.rating-high { background: #fd7e14; color: white; border-color: #e8690b; }
330+
.rating-medium { background: #ffc107; color: #333; border-color: #d39e00; }
331+
.rating-low { background: #28a745; color: white; border-color: #218838; }
332+
.rating-info { background: #17a2b8; color: white; border-color: #138496; }
316333

317334
.recommendations {
318-
background: rgba(255,255,255,0.15);
335+
background: rgba(255,255,255,0.25);
319336
padding: 25px;
320337
border-radius: 10px;
321338
margin-top: 20px;
339+
border: 2px solid rgba(255,255,255,0.3);
322340
}
323341

324342
.recommendations h4 {
325343
margin-bottom: 15px;
326344
font-size: 1.3em;
345+
color: #ffffff;
327346
}
328347

329348
.recommendations ul {
330349
list-style-position: inside;
331350
line-height: 1.8;
351+
color: #ffffff;
352+
}
353+
354+
.recommendations p {
355+
color: #ffffff;
332356
}
333357

334358
.actions {
@@ -823,7 +847,7 @@ <h3>🎯 6. Threat Intelligence & Exploitability</h3>
823847

824848
<!-- Results Section -->
825849
<div class="results">
826-
<h2>📊 OTRSC Assessment Results</h2>
850+
<h2>📊 OT Risk Seveirty Assessment Results</h2>
827851

828852
<div class="score-display">
829853
<div class="score-card">
@@ -859,8 +883,8 @@ <h4>Threat Intelligence</h4>
859883
</div>
860884

861885
<div class="final-score">
862-
<h3>Final OTRSC Score</h3>
863-
<div class="score" id="finalScore" style="color: #667eea;">0.0</div>
886+
<h3>Final Score</h3>
887+
<div class="score" id="finalScore" style="color: #ffffff;">0.0</div>
864888
<div class="rating" id="riskRating">NOT ASSESSED</div>
865889

866890
<div class="recommendations">

0 commit comments

Comments
 (0)