Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
modifications styles
  • Loading branch information
AndersonAPinto authored Sep 16, 2024
1 parent 4f61b7a commit 4dadfea
Showing 1 changed file with 32 additions and 23 deletions.
55 changes: 32 additions & 23 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,59 +10,68 @@

body {
margin: 0;
font-family: Roboto, sans-serif;
font-family: ' Roboto ', sans-serif;
}

header {
.header {
display: flex;
width: auto;
justify-content: space-between;
padding: 0 50px;
align-items: center;
margin: 0;
}

nav {
.logoImagem {
height: 40px;
}

.navigation {
height: 60px;
}

nav ul {
display: flex;
.navigation .listUn {
list-style: none;
justify-content: space-around;
padding: 0;
margin: 0;
display: flex;
height: 100%;
align-items: center;
}

nav ul li a {
text-decoration: none;
color: inherit;
text-transform: uppercase;
font-size: 12px;
.navigation .listLinks:not(:last-child) {
margin-right: 20px;
}

nav ul li a:hover {
.navigation .listLinks:first-child {
color: var(--color-ref);
}

nav ul li:first-child a {
margin-left: 0;
color: var(--color-ref);
.navigation a {
text-decoration: none;
color: inherit;
font-size: 12px;
position: relative;
height: 100%;
display: inline-block;
line-height: 60px;
text-transform: uppercase;
}

nav ul li {
position: relative;
margin-right: 20px;
.navigation a:hover {
color: var(--color-ref);
}

nav ul li:last-child {
margin-right: 0;
.is-active {
color: var(--color-ref);
}

.is-active::after {
content: '';
display: flex;
position: absolute;
width: 100%;
height: 4px;
border-radius: 8px;
background-color: var(--color-ref);
bottom: -18.5px;
left: 0;
top: 56px;
}

0 comments on commit 4dadfea

Please sign in to comment.