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.
44 lines
526 B
44 lines
526 B
5 years ago
|
page{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.body{
|
||
|
flex: 1 1 1px;
|
||
|
height: 1px;
|
||
|
}
|
||
|
.header{
|
||
|
background: #0080f0;
|
||
|
}
|
||
|
.search{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
background: #0080f0;
|
||
|
margin: 6px 20px;
|
||
|
border-radius: 6px;
|
||
|
overflow: hidden;
|
||
|
|
||
|
}
|
||
|
.search>input{
|
||
|
flex: auto;
|
||
|
padding: 2px 8px;
|
||
|
background: white;
|
||
|
|
||
|
}
|
||
|
.search>button{
|
||
|
flex: none;
|
||
|
border:none;
|
||
|
}
|
||
|
.button-inner{
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.button-inner>icon{
|
||
|
padding-right: 6px;
|
||
|
}
|
||
|
|
||
|
.search-item-wrap{
|
||
|
margin: 6px 8px;
|
||
|
}
|
||
|
|