nightTab/css/head.css

23 lines
380 B
CSS
Raw Normal View History

2018-12-26 08:45:53 +01:00
.head {
2018-12-26 18:43:38 +01:00
--gutter: 0.5em;
margin: 0 calc(var(--gutter) * -1);
2018-12-26 08:45:53 +01:00
display: flex;
flex-direction: row;
2018-12-26 18:43:38 +01:00
flex-wrap: wrap;
justify-content: flex-start;
align-items: stretch;
2018-12-26 08:45:53 +01:00
}
.head-item {
2018-12-26 18:43:38 +01:00
margin-left: var(--gutter);
margin-right: var(--gutter);
2018-12-26 08:45:53 +01:00
display: flex;
flex-wrap: nowrap;
justify-content: center;
align-items: center;
}
2018-12-26 18:43:38 +01:00
.head-search {
2018-12-26 08:45:53 +01:00
flex-grow: 1;
}