nitter/src/sass/navbar.scss

89 lines
1.3 KiB
SCSS
Raw Normal View History

2019-09-13 08:44:21 +00:00
@import '_variables';
nav {
2019-09-13 17:52:05 +00:00
display: flex;
align-items: center;
position: fixed;
background-color: var(--bg_overlays);
2019-09-13 08:44:21 +00:00
box-shadow: 0 0 4px $shadow;
padding: 0;
width: 100%;
height: 50px;
2019-09-13 17:52:05 +00:00
z-index: 1000;
font-size: 16px;
a, .icon-button button {
color: var(--fg_nav);
}
2019-09-13 17:52:05 +00:00
}
2019-09-13 08:44:21 +00:00
2019-09-13 17:52:05 +00:00
.inner-nav {
margin: auto;
box-sizing: border-box;
padding: 0 10px;
display: flex;
align-items: center;
flex-basis: 920px;
height: 50px;
2019-09-13 08:44:21 +00:00
}
.site-name {
2021-01-03 00:38:52 +00:00
font-size: 15px;
2019-09-13 08:44:21 +00:00
font-weight: 600;
line-height: 1;
2019-09-13 08:44:21 +00:00
&:hover {
color: var(--accent_light);
2019-09-13 08:44:21 +00:00
text-decoration: unset;
}
}
.site-logo {
display: block;
width: 35px;
height: 35px;
}
2019-09-13 17:52:05 +00:00
.nav-item {
2019-09-13 08:44:21 +00:00
display: flex;
flex: 1;
line-height: 50px;
height: 50px;
overflow: hidden;
flex-wrap: wrap;
align-items: center;
2019-09-13 08:44:21 +00:00
&.right {
text-align: right;
justify-content: flex-end;
}
&.right a {
padding-left: 4px;
&:hover {
color: var(--accent_light);
2019-09-13 08:44:21 +00:00
text-decoration: unset;
}
}
}
2020-07-04 11:20:54 +00:00
.lp {
height: 14px;
margin-top: 2px;
2020-07-04 11:20:54 +00:00
display: block;
fill: var(--fg_nav);
&:hover {
fill: var(--accent_light);
}
}
.icon-info:before {
margin: 0 -3px;
}
.icon-cog {
font-size: 15px;
}