Skip to content

Commit

Permalink
minor aesthetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Icaro-Godoi committed Jul 17, 2024
1 parent c2cd766 commit 5b85c6b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions docs/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
font-family: 'Roboto-Mono', monospace;
}

body {
background-color: #555;
}

nav {
display: flex;
}
Expand All @@ -12,6 +16,15 @@ nav {

.nav-menu-item {
display: flex;
align-items: center;
height: 80px;
padding: 240px 20px;
}

.nav-menu-item-link {
text-decoration: none;
font-size: 22px;
color: #101010
}

#titulo-principal {
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<header>
<nav>
<ol class="nav-menu">
<li class="nav-menu-item"><a href="#home">Home</a></li>
<li class="nav-menu-item"><a href="#about">About</a></li>
<li class="nav-menu-item"><a href="#contact">Contact</a></li>
<li class="nav-menu-item"><a href="#home" class="nav-menu-item-link">Home</a></li>
<li class="nav-menu-item"><a href="#about" class="nav-menu-item-link">About</a></li>
<li class="nav-menu-item"><a href="#contact" class="nav-menu-item-link">Contact</a></li>
</ol>
</nav>
</header>
Expand Down

0 comments on commit 5b85c6b

Please sign in to comment.