23 lines
403 B
CSS
23 lines
403 B
CSS
menu.toolbar {
|
|
position: sticky;
|
|
top: 0px;
|
|
padding: 0;
|
|
margin: 0;
|
|
background-color: #35313d;
|
|
z-index: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.toolbar-contents {
|
|
width: 83.33%;
|
|
max-width: 1120px;
|
|
padding: 8px 0;
|
|
display: flex;
|
|
flex-flow: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|