mirror of
https://github.com/yusufipk/teknolojirehberleri.xyz.git
synced 2026-09-11 19:06:07 +00:00
38 lines
653 B
SCSS
38 lines
653 B
SCSS
.navbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
&_list {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-top: 0.5rem;
|
|
|
|
font-size: 2rem;
|
|
list-style-type: none;
|
|
|
|
li:not(:last-child) {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
&-item {
|
|
a:visited,
|
|
a:link {
|
|
text-decoration: none;
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
&--active a {
|
|
color: var(--color-primary);
|
|
&:after {
|
|
content: "";
|
|
display: block;
|
|
margin: auto;
|
|
height: 2px;
|
|
width: 100%;
|
|
background-color: var(--color-tertiary);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|