misuzu/assets/less/forum/header.less

78 lines
1.4 KiB
Text
Raw Normal View History

2018-10-15 23:00:17 +00:00
.forum__header {
display: flex;
flex-direction: column;
2019-02-12 14:04:05 +00:00
align-items: flex-start;
padding: 8px 10px;
2019-02-26 15:14:23 +00:00
margin: 2px 0;
2018-10-15 23:00:17 +00:00
&__title {
font-size: 2em;
line-height: 1.5em;
color: inherit;
text-decoration: none;
2019-02-12 14:04:05 +00:00
padding: 0 5px;
&[href]:hover {
text-decoration: underline;
}
2019-02-12 14:04:05 +00:00
&--fill {
width: 100%;
}
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;
2019-02-12 14:04:05 +00:00
align-items: center;
2018-10-15 23:00:17 +00:00
}
&__breadcrumb {
color: var(--accent-colour);
text-decoration: none;
2019-02-12 14:04:05 +00:00
padding: 2px 5px;
2018-10-15 23:00:17 +00:00
&:hover {
text-decoration: underline;
}
&__separator {
color: var(--accent-colour);
2019-02-12 14:04:05 +00:00
margin: 0 4px;
2018-10-15 23:00:17 +00:00
font-size: .9em;
}
}
2019-01-11 23:00:53 +00:00
&__actions {
display: flex;
}
&__action {
color: inherit;
text-decoration: none;
transition: color .2s;
2019-02-12 14:04:05 +00:00
padding: 2px 5px;
2019-01-11 23:00:53 +00:00
&:hover,
&:focus {
color: var(--accent-colour);
}
2019-02-12 14:04:05 +00:00
&:not(:last-child) {
margin-right: 5px;
}
2019-01-11 23:00:53 +00:00
}
2018-10-15 23:00:17 +00:00
}