mastoradio/src/assets/scss/4-base/_06-header.scss

58 lines
1004 B
SCSS
Raw Normal View History

2020-02-15 18:58:20 +01:00
/* ----------------------------------------------------------- */
/* == header */
/* ----------------------------------------------------------- */
.header {
2020-02-15 20:13:33 +01:00
display: flex;
justify-content: space-between;
align-items: flex-end;
2020-02-22 20:05:59 +01:00
padding-top: 4.7rem;
padding-bottom: 5rem;
2020-02-15 20:13:33 +01:00
}
.header__title {
margin: 0;
text-align: center;
font-size: 2rem;
}
2020-02-22 20:05:59 +01:00
.header__titleLink {
display: inline-block;
padding: 1rem;
}
2020-02-15 20:13:33 +01:00
/* Side
-------------------------------------------------------------- */
.header__side {
2020-02-16 19:59:06 +01:00
margin-bottom: -1rem;
2020-02-15 20:13:33 +01:00
padding-bottom: .7rem;
}
2020-02-16 19:59:06 +01:00
.header__side:first-child {
margin-left: -1rem;
}
.header__side:last-child {
margin-right: -1rem;
}
2020-02-15 20:13:33 +01:00
.header__sideBtn,
.header__sideBtn:visited {
padding: 0;
2020-02-16 19:59:06 +01:00
padding: 1rem;
2020-02-15 20:13:33 +01:00
border: none;
2020-02-17 00:34:39 +01:00
border-radius: .2rem;
2020-02-15 20:13:33 +01:00
background: none;
color: $color-primary;
font-weight: bold;
font-size: 1.4rem;
line-height: 1.14em;
cursor: pointer;
}
.header__sideBtn:hover,
.header__sideBtn:active {
text-decoration: underline;
2020-02-15 18:58:20 +01:00
}