-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (135 loc) · 3.43 KB
/
Copy pathindex.html
File metadata and controls
142 lines (135 loc) · 3.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NWSC Computer Rep — Documents</title>
<style>
* {
box-sizing: border-box;
}
html {
-webkit-text-size-adjust: 100%;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
max-width: 720px;
margin: 0 auto;
padding: 32px 24px 64px;
color: #1a1a1a;
line-height: 1.5;
background: #ffffff;
}
header {
margin-bottom: 32px;
}
h1 {
color: #1F3864;
margin: 0 0 8px;
font-size: 28px;
font-weight: 700;
}
.subtitle {
color: #595959;
margin: 0;
font-size: 15px;
}
.card {
border: 1px solid #d0d7de;
border-radius: 8px;
padding: 20px 24px;
margin-bottom: 16px;
background: #ffffff;
}
.card h2 {
color: #2E75B6;
margin: 0 0 6px;
font-size: 18px;
font-weight: 600;
}
.card-description {
margin: 0 0 16px;
color: #595959;
font-size: 14px;
}
.card-actions {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.card-actions a {
display: inline-flex;
align-items: center;
justify-content: center;
background: #f6f8fa;
border: 1px solid #d0d7de;
border-radius: 6px;
padding: 6px 14px;
margin: 0 8px 8px 0;
line-height: 1.1;
white-space: nowrap;
-webkit-appearance: none;
appearance: none;
text-decoration: none;
color: #2E75B6;
font-size: 13px;
font-weight: 500;
transition: background 0.15s, border-color 0.15s;
}
.card-actions a:empty {
display: none;
}
.card-actions a:hover {
background: #eaeef2;
border-color: #2E75B6;
}
footer {
margin-top: 40px;
padding-top: 16px;
border-top: 1px solid #d0d7de;
font-size: 13px;
color: #595959;
}
</style>
</head>
<body>
<header>
<h1>NWSC Computer Rep — Documents</h1>
<p class="subtitle">Training materials and quick references for NWSC Computer Representatives.</p>
</header>
<div class="card">
<h2>📘 Full Training Guide</h2>
<p class="card-description">Comprehensive Computer Rep training — workflow week-by-week, Phase 1 through 5, Dolphin appendix, tri-meet appendix, troubleshooting.</p>
<div class="card-actions">
<a href="NWSC_Computer_Rep_Training.pdf">PDF</a>
<a href="NWSC_Computer_Rep_Training.docx">Word</a>
</div>
</div>
<div class="card">
<h2>📽 Training Presentation</h2>
<p class="card-description">Slide-style deck for in-person or virtual Computer Rep training sessions.</p>
<div class="card-actions">
<a href="Training_Presentation.pdf">PDF</a>
</div>
</div>
<div class="card">
<h2>📋 Weekly Quick Reference</h2>
<p class="card-description">Print-and-laminate quick reference. Day-by-day checklist plus deadlines tables and troubleshooting.</p>
<div class="card-actions">
<a href="Weekly_Quick_Reference.pdf">PDF</a>
<a href="Weekly_Quick_Reference.docx">Word</a>
</div>
</div>
<div class="card">
<h2>📁 Sample Artifacts</h2>
<p class="card-description">Concrete templates: Meet Notes, combined heats reference, absence tracking sheet, file naming convention, distribution lists.</p>
<div class="card-actions">
<a href="Sample_Artifacts.pdf">PDF</a>
<a href="Sample_Artifacts.docx">Word</a>
</div>
</div>
<footer>
Per NWSC MOM 2025+ ruleset. Adapt freely for your team.
</footer>
</body>
</html>