update showcase, effect

This commit is contained in:
letieu
2025-12-09 01:22:07 +07:00
parent 49d4ffc1ba
commit ca6a6d6621
3 changed files with 84 additions and 45 deletions

View File

@@ -52,7 +52,12 @@ body {
color: var(--terminal-black);
}
h1, h2, h3, h4, h5, h6 {
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: bold;
line-height: 1.2;
@@ -841,18 +846,34 @@ ol.content li::before {
background: var(--primary);
}
.progress.is-primary::-moz-progress-bar {
background: var(--primary);
}
.progress.is-danger::-webkit-progress-value {
background: var(--danger);
}
.progress.is-danger::-moz-progress-bar {
background: var(--danger);
}
.progress.is-success::-webkit-progress-value {
background: var(--success);
}
.progress.is-success::-moz-progress-bar {
background: var(--success);
}
.progress.is-warning::-webkit-progress-value {
background: var(--warning);
}
.progress.is-warning::-moz-progress-bar {
background: var(--warning);
}
/* Progress bar alternative (for divs) */
.progress-bar {
height: 100%;
@@ -1175,10 +1196,12 @@ ol.content li::before {
}
@keyframes cursor-blink {
0%, 50% {
0%,
50% {
opacity: 1;
}
51%, 100% {
51%,
100% {
opacity: 0;
}
}
@@ -1198,4 +1221,3 @@ kbd {
padding: 2px 6px;
white-space: nowrap;
}