bigbuffet-rw/app/styles/azure.scss

78 lines
1.3 KiB
SCSS
Raw Normal View History

2020-05-28 15:52:07 -07:00
@import 'soapbox-light/variables';
2020-03-27 13:59:38 -07:00
$gab-brand-default: #0482d8;
$gab-background-base-light: #f2f3f6;
2020-03-27 13:59:38 -07:00
$gab-background: $gab-background-base-light;
2020-04-30 09:16:32 -07:00
$ui-base-color: #d9f2f9;
2020-03-27 13:59:38 -07:00
$ui-highlight-color: $gab-brand-default;
$nav-ui-highlight-color: #149dfb;
$ui-base-lighter-color: #b0c0cf;
2020-03-27 13:59:38 -07:00
@import 'application';
2020-05-28 15:52:07 -07:00
@import 'soapbox-light/diff';
2020-03-27 13:59:38 -07:00
.tabs-bar__link {
font-weight: bold;
transition: 0.1s;
outline: none;
&::before {
bottom: auto;
opacity: 0;
height: 15px;
border-radius: 999px;
z-index: -1;
width: calc(100% + 20px);
margin-left: -12px;
@media screen and (max-width: 895px) {
height: 0;
border-radius: 3px 3px 0 0;
bottom: 0;
}
}
&.active::before,
&:hover::before {
height: 30px;
opacity: 1;
@media screen and (max-width: 895px) {
height: 7px;
width: 36px;
margin: 0;
}
}
}
.tabs-bar__split--left:hover .tabs-bar__link {
&::before {
height: 15px;
opacity: 0;
@media screen and (max-width: 895px) {
height: 0;
}
}
&:hover::before {
height: 30px;
opacity: 1;
@media screen and (max-width: 895px) {
height: 7px;
}
}
}
.search__input {
border-radius: 999px;
border: 0;
2020-04-30 09:16:32 -07:00
padding-left: 15px;
}
.search__icon .fa {
right: 8px;
}