Skip to content
Open
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
14 changes: 7 additions & 7 deletions Introduction to JavaScript/Lesson 1/store.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
</head>
<body>
<header class="main-header">
<nav class="main-nav nav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="store.html">STORE</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<h1 class="band-name band-name-large">The Generics</h1>
</header>
<nav class="main-nav nav" id="new-navii">
<ul>
<li ><a id="n1" href="index.html">HOME</a></li>
<li ><a id="n1" href="store.html">STORE</a></li>
<li ><a id="n1" href="about.html">ABOUT</a></li>
</ul>
</nav>
<section class="container content-section">
<h2 class="section-header">MUSIC</h2>
<div class="shop-items">
Expand Down
11 changes: 10 additions & 1 deletion Introduction to JavaScript/Lesson 1/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ html, body {
}

.main-header {

background-color: rgba(0, 0, 0, .6);
background-image: url("Images/Header Background.jpg");
background-blend-mode: multiply;
Expand All @@ -75,7 +76,15 @@ html, body {
.content-section {
margin: 1em;
}

#new-navii{
padding: 8px;
background-color: #EB5757;
position:sticky;
top: 0%;
}
#n1:hover{
color: aqua;
}
.container {
max-width: 900px;
margin: 0 auto;
Expand Down