mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-07-17 11:23:36 +08:00
50 lines
683 B
CSS
50 lines
683 B
CSS
/************** Navbar *****************/
|
|
.myNav {
|
|
position: fixed;
|
|
top: 0px;
|
|
width: 100%;
|
|
/*height: 26px;*/
|
|
background-color: black;
|
|
z-index: 9999;
|
|
}
|
|
|
|
ul.navbar-right {
|
|
list-style-type: none;
|
|
display: inline;
|
|
/*position: fixed; */
|
|
}
|
|
.navbar-right > li {
|
|
position: relative;
|
|
float: right;
|
|
/*border*/
|
|
}
|
|
.navbar-right > li:hover > a {
|
|
background: grey;
|
|
color: black;
|
|
}
|
|
/*.btn{
|
|
height: 20px;
|
|
width: 10px;
|
|
}*/
|
|
|
|
|
|
.myNav a {
|
|
color: grey;
|
|
padding: 4px 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
#searchBar {
|
|
margin-top: 2px;
|
|
width: 150px;
|
|
height: 20px;
|
|
}
|
|
|
|
|
|
.navbar-right > li > a{
|
|
display: block;
|
|
padding: 4px 20px;
|
|
border-left: 2px solid beige;
|
|
}
|
|
|