Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions su22/calendar.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Calendar</h2>


Expand Down
4 changes: 4 additions & 0 deletions su22/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>FAQ</h2>


Expand Down
5 changes: 4 additions & 1 deletion su22/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@

<div class="container">
<section id="content">

<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>

<h2>Announcements</h2>

Expand Down
4 changes: 4 additions & 0 deletions su22/materials.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Materials</h2>


Expand Down
4 changes: 4 additions & 0 deletions su22/office-hours.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Office Hours</h2>


Expand Down
4 changes: 4 additions & 0 deletions su22/policies.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Policies</h2>


Expand Down
4 changes: 4 additions & 0 deletions su22/python-reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Python Reference</h2>


Expand Down
4 changes: 4 additions & 0 deletions su22/staff.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
</nav>

<div class="container">
<div class="archive-banner">
⚠️ This content is archived as of March 2026 and is retained exclusively for reference.
<a href="https://data8.org">Find current offerings.</a>
</div>
<h2>Staff</h2>


Expand Down
32 changes: 32 additions & 0 deletions su22/theme/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,35 @@ a.anchor-link {
.staff .name .biohover:active .bio {
visibility: visible;
}

.archive-banner {
background-color: #d32f2f; /* Deep Red */
color: white;
text-align: center;
padding: 12px 10px;
font-family: sans-serif;
font-weight: bold;
position: relative;
/* position: fixed;
top: 0;
left: 0; */
z-index: 9999;
width: 100%;
box-sizing: border-box;
border-bottom: 2px solid #b71c1c;
}
.archive-banner a {
color: #ffffff;
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 3px;
font-weight: 700;
}

.archive-banner a:hover,
.archive-banner a:focus {
text-decoration: none;
background-color: #ffffff;
color: #b30000;
outline: 3px solid #ffcc00;
}