mirror of https://github.com/astrit/css.gg.git
38 lines
719 B
CSS
38 lines
719 B
CSS
.gg-search-loading {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
display: block;
|
|
transform: scale(var(--ggs,1));
|
|
width: 16px;
|
|
height: 16px;
|
|
border: 2px solid;
|
|
border-radius: 100%;
|
|
margin-left: -4px;
|
|
margin-top: -4px
|
|
}
|
|
|
|
.gg-search-loading::after,
|
|
.gg-search-loading::before {
|
|
content: "";
|
|
display: block;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
width: 2px;
|
|
background: currentColor
|
|
}
|
|
|
|
.gg-search-loading::after {
|
|
border-radius: 3px;
|
|
height: 8px;
|
|
transform: rotate(-45deg);
|
|
top: 10px;
|
|
left: 12px
|
|
}
|
|
|
|
.gg-search-loading::before {
|
|
height: 2px;
|
|
border-radius: 100%;
|
|
top: 5px;
|
|
left: 5px;
|
|
box-shadow: -3px 0 0,3px 0 0
|
|
} |