forked from rDrama/rDrama
1
0
Fork 0

fix linked post titles award classes

master
Aevann 2023-10-03 09:32:58 +03:00
parent 0a70515b3e
commit 1b2f50ace4
2 changed files with 8 additions and 16 deletions

View File

@ -5721,7 +5721,7 @@ span > img[src$="/i/hand.webp"]+img[party]:not([data-src]) {
color:lightgreen !important; color:lightgreen !important;
text-shadow: 1px 1px 1px darkgreen, 0 0 5px green; text-shadow: 1px 1px 1px darkgreen, 0 0 5px green;
} }
.glow a { .glow a:not(h1.post-title > a) {
text-decoration: underline; text-decoration: underline;
} }
@ -6667,7 +6667,7 @@ g {
margin-right: 10px; margin-right: 10px;
} }
.rainbow-text:not(a) { .rainbow-text:not(a), h1.rainbow-text.post-title a {
background: repeating-linear-gradient( background: repeating-linear-gradient(
45deg, 45deg,
violet, violet,
@ -6685,13 +6685,13 @@ g {
animation: 60s linear 0s infinite move-colors; animation: 60s linear 0s infinite move-colors;
} }
.queen:not(a):not(.ectoplasm) { .queen:not(a):not(.ectoplasm), h1.queen.post-title a {
color: hotpink !important; color: hotpink !important;
font-weight: 700 !important; font-weight: 700 !important;
text-transform: lowercase !important; text-transform: lowercase !important;
} }
.sharpen:not(a) { .sharpen:not(a), h1.sharpen.post-title a {
color: red !important; color: red !important;
font-weight: bold !important; font-weight: bold !important;
font-style: italic !important; font-style: italic !important;

View File

@ -484,7 +484,7 @@ body::after {
} }
/* Candy Corn */ /* Candy Corn */
.candy-corn { .candy-corn, h1.candy-corn.post-title a {
--color3: #FBED21; --color3: #FBED21;
--color2: #F66A3C; --color2: #F66A3C;
--color1: #FDFBDA; --color1: #FDFBDA;
@ -504,22 +504,14 @@ body::after {
animation: 32s linear 0s infinite move-colors; animation: 32s linear 0s infinite move-colors;
} }
.candy-corn:not(a) > p { .candy-corn:hover, h1.candy-corn.post-title a:hover {
color: transparent !important;
}
#post-title > a.candy-corn {
color: transparent;
}
.candy-corn:hover {
animation-duration: 10s; animation-duration: 10s;
} }
/* Ectoplasm */ /* Ectoplasm */
.ectoplasm { .ectoplasm, h1.ectoplasm.post-title a {
text-shadow: 0 0 20px #3AE63A; text-shadow: 0 0 20px #3AE63A;
font-family: 'Creepster'; font-family: 'Creepster' !important;
color: #90ee90 !important; color: #90ee90 !important;
letter-spacing: 0.15em; letter-spacing: 0.15em;
} }