Skip to content

Commit

Permalink
additional modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Dae Sanghwi committed Jul 28, 2024
1 parent 6b29721 commit 79f47db
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<img src="images/yeonsphere-logo.png" alt="YeonSphere Logo">
</div>
<nav>
<ul>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
Expand Down
2 changes: 1 addition & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<img src="images/yeonsphere-logo.png" alt="YeonSphere Logo">
</div>
<nav>
<ul>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<img src="images/yeonsphere-logo.png" alt="YeonSphere Logo">
</div>
<nav>
<ul>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
Expand Down
12 changes: 10 additions & 2 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body {
color: #333;
margin: 0;
padding: 0;
background-image: url('images/logo.png');
background-image: url('images/yeonsphere-logo.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
Expand Down Expand Up @@ -114,4 +114,12 @@ footer {
.hamburger-menu {
display: flex;
}
}
.nav-links.show {
display: flex;
flex-direction: column;
position: absolute;
top: 60px;
right: 0;
background-color: rgba(138, 43, 226, 0.9);
width: 100%;
text

0 comments on commit 79f47db

Please sign in to comment.