You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
699 B

5 years ago
page{
display: flex;
flex-direction: column;
height: 100%;
}
.navigation{
background: #00b0f0;
flex: none;
}
.navigation-bar{
height: 44px;
padding-right: 100px;
display: flex;
align-items: center;
}
.navigation-left{
width: 100px;
display: flex;
align-items: center;
color: white;
}
.search{
padding:0 8px;
}
.navbar{
flex: 1 1 1px;
width: 1px;
border-radius: 7px;
display: flex;
text-align: center;
white-space: nowrap;
5 years ago
overflow-x: scroll;
}
.navitem{
flex: auto;
background: #00d0f0;
color: white;
padding: 5px 1px;
transition: all ease 0.6s;
}
5 years ago
.navitem.active{
color: #00b0f0;
background: white;
}
5 years ago
5 years ago
.body{
flex: 1 1 1px;
height: 1px;
}