mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 18:38:07 +01:00
9c10aaa4d5
Port 6936e5aa69
to glitch-soc
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
67 lines
1.2 KiB
SCSS
67 lines
1.2 KiB
SCSS
@mixin avatar-radius() {
|
|
border-radius: $ui-avatar-border-size;
|
|
background-position: 50%;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
@mixin avatar-size($size: 48px) {
|
|
width: $size;
|
|
height: $size;
|
|
background-size: $size $size;
|
|
}
|
|
|
|
@mixin fullwidth-gallery {
|
|
&.full-width {
|
|
margin-left: -14px;
|
|
margin-right: -14px;
|
|
width: inherit;
|
|
max-width: none;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
@mixin search-input() {
|
|
outline: 0;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
box-shadow: none;
|
|
font-family: inherit;
|
|
background: $ui-base-color;
|
|
color: $darker-text-color;
|
|
border-radius: 4px;
|
|
border: 1px solid lighten($ui-base-color, 8%);
|
|
font-size: 17px;
|
|
line-height: normal;
|
|
margin: 0;
|
|
}
|
|
|
|
@mixin search-popout() {
|
|
background: $simple-background-color;
|
|
border-radius: 4px;
|
|
padding: 10px 14px;
|
|
padding-bottom: 14px;
|
|
margin-top: 10px;
|
|
color: $light-text-color;
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
h4 {
|
|
text-transform: uppercase;
|
|
color: $light-text-color;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
li {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
em {
|
|
font-weight: 500;
|
|
color: $inverted-text-color;
|
|
}
|
|
}
|