Skip to content

Commit

Permalink
add banner to link to new website
Browse files Browse the repository at this point in the history
  • Loading branch information
KevZ1209 committed Nov 19, 2024
1 parent 71129a3 commit ee2d313
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions views/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,30 @@
<link rel="stylesheet" href="/public/css/lab.css?v=1.2.2" />
<link rel="stylesheet" href="/public/css/main.css?v=1.2.0" />

<style>
#announcement {
position: fixed;
max-width: 1280px;
z-index: 20;
padding: 20px 50px;
background-color: #191A1B;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
color: white;
}
#announcement #close {
position: absolute;
top: 15px;
right: 15px;
}
#announcement p {
font-size: 20px;
text-align: center;
}
#announcement strong {
color: #619B83;
}
</style>

<!-- SCRIPTS -->
<script src="/public/js/key.js"></script>
<script src="/public/js/main.js?v=2023.12"></script>
Expand All @@ -46,6 +70,17 @@
<body>
<!-- NAVBAR -->
<?php include "./includes/navbar.html"; ?>

<!-- ANNOUNCEMENT -->
<div id="announcement" class="container-fluid" style="">
<span id="close" onclick="$(this).parent().hide()">
<span class="glyphicon glyphicon-remove"></span>
</span>
<p>
Check out our new website by clicking this <strong><a href="https://ieeebruins-com-sveltekit.vercel.app">link</a></strong>!

</p>
</div>

<!-- BACKGROUND -->
<div class="main-billboard">
Expand Down

0 comments on commit ee2d313

Please sign in to comment.