You've already forked AstralRinth
forked from didirus/AstralRinth
29 lines
611 B
SCSS
29 lines
611 B
SCSS
// [AR] Feature
|
|
.neon-text {
|
|
background-color: transparent;
|
|
color: #3e8cde;
|
|
text-shadow:
|
|
0 0 4px rgba(79, 173, 255, 0.5),
|
|
0 0 8px rgba(14, 98, 204, 0.5),
|
|
0 0 12px rgba(122, 31, 199, 0.5);
|
|
transition:
|
|
color 0.25s ease,
|
|
box-shadow 0.3s ease,
|
|
transform 0.15s ease;
|
|
|
|
white-space: normal;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
max-width: 100%;
|
|
display: inline-block;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
/* Hover */
|
|
.neon-text:hover:not([disabled]):not(.disabled) {
|
|
color: #10fae5;
|
|
text-shadow:
|
|
0 0 2px rgba(16, 250, 229, 0.4),
|
|
0 0 4px rgba(16, 250, 229, 0.25);
|
|
}
|