- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
680 B
CSS
Executable File
32 lines
680 B
CSS
Executable File
.asp_r .item {
|
|
/* To override .overlap */
|
|
.asp__af-tt-container {
|
|
position: relative;
|
|
z-index: 2;
|
|
|
|
.asp__af-tt-link {
|
|
transition: opacity 0.2s;
|
|
&:hover {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
}
|
|
|
|
.average-rating {
|
|
--percent: 0%;
|
|
--color: #2EA3F2;
|
|
--bg-color: rgba(0,0,0,0.2);
|
|
--size: 17px;
|
|
position: relative;
|
|
appearance: none;
|
|
width: auto;
|
|
display: inline-block;
|
|
vertical-align: baseline;
|
|
font-size: var(--size);
|
|
line-height: calc(var(--size) - 15%);
|
|
color: var(--bg-color);
|
|
background: linear-gradient(90deg, var(--color) var(--percent), var(--bg-color) var(--percent));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
} |