-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (146 loc) · 3.92 KB
/
index.html
File metadata and controls
167 lines (146 loc) · 3.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Incident Zero - Modular Cybersecurity Board Game</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Incident Zero: A modular cybersecurity board game for teaching security concepts through gameplay" />
<!-- Docsify CSS -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css" />
<style>
:root {
--base-font-size: 16px;
--heading-h1-font-size: 2rem;
--heading-h2-font-size: 1.75rem;
--heading-h3-font-size: 1.5rem;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.sidebar {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.sidebar > h1 {
color: white;
font-weight: bold;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.sidebar a {
color: rgba(255,255,255,0.8);
}
.sidebar a:hover {
color: white;
font-weight: bold;
}
.sidebar li.active > a {
color: #ffd700;
border-right: 3px solid #ffd700;
font-weight: bold;
}
.sidebar ul li {
padding-left: 1rem;
}
h1 {
color: #667eea;
border-bottom: 3px solid #667eea;
padding-bottom: 0.5rem;
}
h2 {
color: #764ba2;
border-bottom: 2px solid #764ba2;
padding-bottom: 0.3rem;
margin-top: 1.5rem;
}
h3 {
color: #667eea;
margin-top: 1.2rem;
}
code {
background-color: #f5f5f5;
border-radius: 3px;
padding: 2px 6px;
color: #e83e8c;
}
pre {
background-color: #f8f8f8;
border-left: 4px solid #667eea;
}
blockquote {
border-left: 4px solid #667eea;
color: #666;
padding-left: 1rem;
}
.callout {
border-left: 4px solid #ffd700;
background-color: #fffbf0;
padding: 1rem;
margin: 1rem 0;
border-radius: 4px;
}
table {
border-collapse: collapse;
width: 100%;
margin: 1rem 0;
}
table th {
background-color: #667eea;
color: white;
padding: 0.75rem;
text-align: left;
}
table td {
border-bottom: 1px solid #ddd;
padding: 0.75rem;
}
table tr:hover {
background-color: #f5f5f5;
}
</style>
</head>
<body>
<div id="app">Loading...</div>
<script>
window.$docsify = {
name: 'Incident Zero',
repo: 'https://github.com/retroverse-studios/incident-zero',
homepage: 'README.md',
basePath: '/incident-zero/',
loadSidebar: true,
loadNavbar: false,
maxLevel: 4,
subMaxLevel: 3,
auto2top: true,
coverpage: true,
onlyCover: false,
mergeNavbar: true,
formatUpdated: '{YYYY}-{MM}-{DD} {HH}:{mm}',
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: 'Search modules, rules, cards...',
noData: 'No results found',
depth: 4
},
plugins: [
function(hook) {
hook.beforeEach(function(html) {
return html + '\n\n---\n\n' +
'**Last Updated:** ' + new Date().toLocaleDateString() + '\n\n' +
'[Back to Documentation Index](/) | ' +
'[View on GitHub](https://github.com/retroverse-studios/incident-zero)'
})
}
]
}
</script>
<!-- Docsify JS -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<!-- Search Plugin -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<!-- Emoji Plugin -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/emoji.min.js"></script>
<!-- Copy to Clipboard -->
<script src="//cdn.jsdelivr.net/npm/docsify-copy-to-clipboard/dist/docsify-copy-to-clipboard.min.js"></script>
</body>
</html>