28 lines
372 B
CSS
Raw Normal View History

.header {
display: flex;
align-items: center;
background-color: #272e30;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
height: 54px;
border-bottom: 2px solid #3ab7a5;
position: fixed;
width: 100%;
z-index: 999;
}
.homeLink {
display: inline-block;
padding: .5em;
color: #fff;
}
.actions {}
.findBar {
flex: 1;
}
2016-07-14 17:17:18 -03:00
.main {
padding-top: 54px;
2016-07-14 17:17:18 -03:00
}