mirror of
https://github.com/System-End/site.git
synced 2026-04-19 22:05:11 +00:00
24 lines
424 B
CSS
24 lines
424 B
CSS
.tag{
|
|
color: e1e1e1;
|
|
padding: 4px 10px;
|
|
border-radius: 20px;
|
|
width: fit-content;
|
|
max-width: 300px;
|
|
display: flex;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
transition: transform 0.3s ease;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.tag:hover{
|
|
cursor: pointer;
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
.outlined {
|
|
border: 5px dotted #c5c5c5;
|
|
}
|
|
|