1
0
forked from sent/waves
waves/public/assets/g/wordlebot/bot.css
2025-04-09 17:11:14 -05:00

40 lines
725 B
CSS

.gg-bot {
box-sizing: border-box;
position: relative;
display: block;
transform: scale(var(--ggs,1));
width: 21px;
height: 10px;
border-right: 8px solid transparent;
border-left: 8px solid transparent;
border-bottom: 1px solid transparent;
border-radius: 12px;
box-shadow:
0 0 0 2px,
-4px 0 0 -1px,
4px 0 0 -1px,
inset 0 -4px 0 -2px
}
.gg-bot::after,
.gg-bot::before {
content: "";
display: block;
box-sizing: border-box;
position: absolute;
width: 2px;
height: 2px;
box-shadow: 0 0 0 2px;
top: 3px
}
.gg-bot::before {
left: -4px;
border-radius: 3px
}
.gg-bot::after {
right: -4px;
border-radius: 100px
}