This commit is contained in:
Dennis Eichhorn 2023-10-09 22:06:39 +00:00
parent 1c1de3f51f
commit d8d1080d3d
9 changed files with 170 additions and 191 deletions

22
animate.scss vendored
View File

@ -1588,11 +1588,11 @@
@keyframes greenFade { @keyframes greenFade {
from { from {
background-color: transparent; background: transparent;
} }
to { to {
background-color: #81e27d; background: #81e27d;
} }
} }
@ -1602,11 +1602,11 @@
@keyframes redFade { @keyframes redFade {
from { from {
background-color: transparent; background: transparent;
} }
to { to {
background-color: #ee5649; background: #ee5649;
} }
} }
@ -1616,32 +1616,32 @@
@keyframes redCircleFade { @keyframes redCircleFade {
0% { 0% {
background-color: transparent; background: transparent;
} }
50% { 50% {
background-color: #ee5649; background: #ee5649;
} }
100% { 100% {
background-color: transparent; background: transparent;
} }
} }
.greenCircleFade { .greenCircleFade, .greenCircleFade td {
animation-name: greenCircleFade; animation-name: greenCircleFade;
} }
@keyframes greenCircleFade { @keyframes greenCircleFade {
0% { 0% {
background-color: transparent; background: transparent;
} }
50% { 50% {
background-color: #81e27d; background: #81e27d;
} }
100% { 100% {
background-color: transparent; background: transparent;
} }
} }

View File

@ -95,7 +95,6 @@ article {
code { code {
font-family: var(--font-family); font-family: var(--font-family);
font-display: swap;
font-size: 0.8rem; font-size: 0.8rem;
color: #23222d; color: #23222d;
background: #f4f4f4; background: #f4f4f4;

View File

@ -3,7 +3,7 @@
user-select: none; user-select: none;
} }
button, input[type="submit"], input[type="button"], label.button, a.button { button, input[type="submit"], input[type="reset"], input[type="button"], label.button, a.button {
cursor: pointer; cursor: pointer;
display: inline-flex; display: inline-flex;
min-width: 70px; min-width: 70px;
@ -59,7 +59,7 @@ button.cancel, .button.cancel, input[type="submit"].cancel {
} }
} }
button.close, .button.close, input[type="submit"].close { button.close, .button.close, input[type="submit"].close, input[type="reset"].close {
color: rgba(0, 0, 0, 0.75); color: rgba(0, 0, 0, 0.75);
background: #fffc3e; background: #fffc3e;
@ -96,4 +96,9 @@ button.disabled, .button.disabled, input[type="submit"].disabled {
.link.disabled { .link.disabled {
color: #e1e1e1; color: #e1e1e1;
}
i.favorite {
color: #ffd700;
text-shadow: 0 0 1px #000;
} }

View File

@ -4,7 +4,6 @@
pre { pre {
font-family: var(--font-family); font-family: var(--font-family);
font-display: swap;
background: #f4f4f4; background: #f4f4f4;
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 1rem; padding: 1rem;

View File

@ -1,6 +1,5 @@
input, select, textarea, .textarea, option { input, select, textarea, .textarea, option {
font-family: var(--font-family); font-family: var(--font-family);
font-display: swap;
font-weight: 300; font-weight: 300;
} }

View File

@ -11,6 +11,6 @@
border-bottom: 1px dotted var(--link-color); border-bottom: 1px dotted var(--link-color);
&:hover { &:hover {
border-bottom: none; border-bottom: 1px dotted transparent ;
} }
} }

View File

@ -61,7 +61,7 @@
&.highlight-4 { &.highlight-4 {
background: var(--color-yellow); background: var(--color-yellow);
color: #fff; color: #000;
.portlet-body, .portlet-head { .portlet-body, .portlet-head {
background: var(--color-yellow); background: var(--color-yellow);

File diff suppressed because it is too large Load Diff

View File

@ -81,11 +81,11 @@ table {
tr { tr {
height: 2.5rem; height: 2.5rem;
&:nth-of-type(2n) td { &:nth-of-type(2n) {
background: var(--table-row-background); background: var(--table-row-background);
} }
&:nth-of-type(2n+1) td { &:nth-of-type(2n+1) {
background: var(--table-row-background-alt); background: var(--table-row-background-alt);
} }