このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
Nitter-mod/src/sass/navbar.scss

62 行
958 B
SCSS
Raw 通常表示 履歴

2019-09-13 17:44:21 +09:00
@import '_variables';
nav {
2019-09-14 02:52:05 +09:00
display: flex;
align-items: center;
position: fixed;
2019-09-13 17:44:21 +09:00
background-color: $bg_overlays;
box-shadow: 0 0 4px $shadow;
padding: 0;
width: 100%;
height: 50px;
2019-09-14 02:52:05 +09:00
z-index: 1000;
}
2019-09-13 17:44:21 +09:00
2019-09-14 02:52:05 +09: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 17:44:21 +09:00
}
.site-name {
font-weight: 600;
&:hover {
color: $accent_light;
text-decoration: unset;
}
}
.site-logo {
display: block;
width: 35px;
height: 35px;
}
2019-09-14 02:52:05 +09:00
.nav-item {
2019-09-13 17:44:21 +09:00
display: flex;
flex: 1;
line-height: 50px;
height: 50px;
overflow: hidden;
flex-wrap: wrap;
&.right {
text-align: right;
justify-content: flex-end;
}
&.right a {
padding-left: 4px;
&:hover {
color: $accent_light;
text-decoration: unset;
}
}
}