You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.3 KiB

2 years ago
//site branding
//#block-roblib-2023-site-branding {
.branding {
display: flex;
li:first-child {
border-right: 1px solid $white;
padding-right: 0.5rem;
margin-right: 0.5rem;
}
.site-logo {
width: rem-calc(120);
height: auto;
@include padding(0, 0, 0, 0);
}
.site-name {
a {
font-family: $header-font-family;
font-size: rem-calc(22);
@include padding(0, 0, 0, 0);
color: $white;
}
}
}
.branding {
display: none;
@include breakpoint(large) {
display: flex;
}
}
.title-bar .branding {
display: flex;
}
.input#edit-submit {
}
2 years ago
.region-header {
2 years ago
@include top-bar-container;
2 years ago
}
2 years ago
//========
//main menu
//========
.menu--main {
//@include menu-direction(horizontal);
ul {
flex-direction: column;
@include breakpoint(large) {
flex-direction: row;
}
2 years ago
}
2 years ago
a[title='test'] {
//display: none;
@include fa-icon-solid($fa-var-user);
2 years ago
}
2 years ago
a {
color: $white;
font-family: $roboto-condensed;
font-size: 0.8em;
padding: calc($global-padding/2);
}
i {
font-size: rem-calc(28);
2 years ago
}
}
2 years ago
.search-block-form {
display: none;
@include breakpoint(large) {
display: initial;
}
}
.search-block-form input {
margin: 0;
}
.title-bar {
justify-content: space-between;
}