Files
Iris/src/scss/components/_header.scss
2017-02-12 21:11:50 +13:00

49 lines
740 B
SCSS
Executable File

main {
header {
padding: 14px 20px;
background: #EEEEEE;
line-height: 24px;
h1 {
font-size: 22px;
font-weight: 100;
display: inline-block;
}
.icon {
display: inline-block;
padding-right: 14px;
height: 16px;
}
@include responsive( $bp_medium ){
.icon {
visibility: hidden;
}
}
.actions {
position: absolute;
top: 0;
right: 10px;
button {
background: transparent;
font-size: 14px;
font-weight: 600;
padding: 13px 10px;
margin: 0;
line-height: 24px;
text-transform: uppercase;
min-width: 0;
border: 0;
color: #000000;
&:active {
background: rgba(0,0,0,0.15);
}
}
}
}
}