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.
|
|
|
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;
|
|
|
|
overflow-x: scroll;
|
|
|
|
}
|
|
|
|
.navitem{
|
|
|
|
flex: auto;
|
|
|
|
background: #00d0f0;
|
|
|
|
color: white;
|
|
|
|
padding: 5px 1px;
|
|
|
|
transition: all ease 0.6s;
|
|
|
|
}
|
|
|
|
.navitem.active{
|
|
|
|
color: #00b0f0;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.body{
|
|
|
|
flex: 1 1 1px;
|
|
|
|
height: 1px;
|
|
|
|
}
|