Skip to content

Commit

Permalink
added links back to homepage on all subpages except leadership (it's …
Browse files Browse the repository at this point in the history
…perfect the way it is)
  • Loading branch information
SipSup3314 committed Oct 24, 2024
1 parent 9cc6ece commit 7eeded1
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 35 deletions.
1 change: 1 addition & 0 deletions events/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<img src="menu-icon.png" alt="Menu Icon" class="menu-icon">
</a>
<div class="dropdown-content">
<a href="/">Home</a> <!-- just shoving home here fow now, we'll decide later what to do. -oli -->
<a href="#hackathon">Hackathon</a>
<a href="#coding-challenge">Coding Challenge</a>
<a href="#workshop">Workshop</a>
Expand Down
1 change: 1 addition & 0 deletions faq/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="links-header"><a href="/">Home</a></div>
<h1 class="big">Coding Club FAQ</h1>

<h3 class="title">TEXT</h3>
Expand Down
40 changes: 27 additions & 13 deletions faq/styles.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
body{
body {
padding: 25px;
background-color:#1a0b4f;
}
.title {
color: #c52d2d;
}
p {
font-family:Times New Roman;
color:#ffffff;
}
.big {
background-color: #1a0b4f;
}
.title {
color: #c52d2d;
}
p {
font-family: Times New Roman;
color: #ffffff;
}
.big {
color: #c52d2d;
text-align: center;
text-size-adjust: 120px;
}

}
.links-header {
width: 100%;
height: min-content;
background-color: #331b8a;
padding: 8px;
}

.links-header a:any-link {
color: white;
text-decoration: none;
}

.links-header a:hover {
text-decoration: underline;
}
1 change: 1 addition & 0 deletions howtojoin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</head>

<body>
<div class="links-header"><a href="/">Home</a></div>
<h1>How to join Coding Club</h1>
<img src="Screenshot 2024-10-02 155241.png" alt="FAUHS Coding Club Poster" width="209" height="213" />
<p></p>
Expand Down
34 changes: 20 additions & 14 deletions howtojoin/style.css
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
html {
height: 100%;
width: 100%;
}
body {
}

body {
background-color: #9ad0f9;
}
h1 {
}

h1 {
font-family: monospace;
text-decoration: underline;
}
p {
}

p {
font-family: monospace;
}
img {
}

img {
display: block;
border-color: black;
border-width: 5pt;
border-style: solid;
}

}

.links-header {
width: 100%;
height: min-content;
background-color: #4aa8f0;
padding: 8px;
}
20 changes: 12 additions & 8 deletions meetingnotes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>Meeting Notes</title>
<meta charset = "UTF-8"/>

<link rel="stylesheet" href="OverCSS.css">
<!-- <link rel="stylesheet" href="OverCSS.css"> this doesn't exist for whatever reason. page still works fine. -oli -->

<style>
.navigation{
Expand All @@ -25,26 +25,30 @@

}

a:any-link{
color:lime;
text-decoration: none;
}

a:hover{
color: blue;
}


div{
background-color: blue;
}
</style>
</head>
<body>
<div class = "navigation">
<a>Landing Page</a>
<a>Events</a>
<a href="/">Landing Page</a>
<a href="/events/">Events</a>
<a>About</a>
<a>FAQ</a>
<a>Meeting Notes</a>
<a href="/faq/">FAQ</a>
<a href="/meetingnotes/">Meeting Notes</a>
<a>Project Page</a>
<a>Leaders</a>
<a>How to Join</a>
<a href="/leadership/">Leaders</a>
<a href="/howtojoin/">How to Join</a>
</div>
<h1>Meeting Notes</h1>
<h2>10/2 Meeting</h2>
Expand Down

0 comments on commit 7eeded1

Please sign in to comment.