misuzu/assets/less/classes/forum/header.less

51 lines
967 B
Text
Raw Normal View History

2018-10-15 23:00:17 +00:00
.forum__header {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 10px 15px;
margin: 2px 0;
2018-10-15 23:00:17 +00:00
&__title {
font-size: 2em;
line-height: 1.5em;
color: inherit;
text-decoration: none;
&[href]:hover {
text-decoration: underline;
}
2018-10-15 23:00:17 +00:00
}
2018-12-27 04:25:51 +00:00
&__input {
width: 100%;
background-color: transparent;
border: 0;
padding: 0;
margin: 0;
box-shadow: initial;
font-size: 1em;
font-family: inherit;
}
2018-10-15 23:00:17 +00:00
&__breadcrumbs {
display: flex;
font-size: 1.1em;
line-height: 1.5em;
}
&__breadcrumb {
color: var(--accent-colour);
text-decoration: none;
&:hover {
text-decoration: underline;
}
&__separator {
color: var(--accent-colour);
margin: 0 8px;
font-size: .9em;
}
}
}