-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDocuments.html
More file actions
101 lines (87 loc) · 2.27 KB
/
Documents.html
File metadata and controls
101 lines (87 loc) · 2.27 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
---
layout: default
title: Documents
---
<style>
body {
background-color: #2f2f2f;
color: #fff;
font-family: Arial, sans-serif;
}
header .header-container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 2rem;
flex-wrap: wrap;
}
.logo {
height: 60px;
}
.banner {
font-family: 'Orbitron', sans-serif;
font-size: 1.8rem;
color: #ff4a4a;
}
main.documents-page {
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 2rem;
}
h2 {
font-family: 'Orbitron', sans-serif;
color: #ff4a4a;
text-align: center;
margin-bottom: 1rem;
}
.document-card {
background-color: #1c1c1c;
border-radius: 18px;
padding: 2rem;
width: 320px;
text-align: center;
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
transition: transform 0.3s, box-shadow 0.3s;
}
.document-card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}
.document-card a {
display: inline-block;
margin-top: 1rem;
padding: 10px 16px;
background-color: #ff4a4a;
color: #fff;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
.document-card a:hover {
background-color: #cc3a3a;
}
.documents-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
}
</style>
<main class="documents-page">
<h2>ATAA Code of Conduct & Documents</h2>
<div class="documents-container">
<div class="document-card">
<h3>Student Code of Conduct</h3>
<p>Students are expected to follow ATAA guidelines, treat others with respect, participate positively, and act responsibly at all times to help maintain a safe, inclusive, and supportive learning environment.</p>
<a href="ATAA FRC student code of conduct May 6 2025.docx" target="_blank">Download Form</a>
</div>
<div class="document-card">
<h3>Parent Code of Conduct</h3>
<p>Parents are expected to support ATAA guidelines, encourage positive engagement, and maintain a respectful environment.</p>
<a href="ATAA FRC parent Code of Conduct May 6 2025.docx" target="_blank">Download Form</a>
</div>
</div>
</main>