Update nasa.css

This commit is contained in:
UltraLion
2020-12-30 16:55:13 +01:00
committed by GitHub
parent 46e74c9c6f
commit d4e9c6cc01
+35
View File
@@ -1,3 +1,38 @@
/*-------Blur spoiler-------*/
/*blurs spoiler text instead of having a black bar over it*/
.contents-2mQqc9 .spoilerText-3p6IlD.hidden-HHr2R9,
.contents-2mQqc9 .spoilerText-3p6IlD.hidden-HHr2R9:hover,
.contents-2mQqc9 .spoilerText-3p6IlD {
background: rgb(130, 130, 130, 0.1);
/*adds minor grey-ish filter to differentiate spoilted text from normal text*/
border-radius: 7px;
/*adds rounded edges for the filter described above*/
}
.contents-2mQqc9 .spoilerText-3p6IlD.hidden-HHr2R9 > .inlineContent-3ZjPuv {
filter: blur(3px);
/*adds blur filter when text is left alone*/
opacity: 1;
/*makes blurred text fully opaque*/
}
.contents-2mQqc9 .spoilerText-3p6IlD.hidden-HHr2R9:hover > .inlineContent-3ZjPuv {
filter: none;
/*removes blur filter on hover*/
opacity: 1;
/*makes text opacity look like normal, non-spoiled text on hover*/
}
/*--------------------------*/
.profile-1eT9hT ~ * .field-1HUseB:nth-child(2) .colorHeaderPrimary-26Jzh-,
.profile-1eT9hT ~ * .field-1HUseB:nth-child(3) .colorHeaderPrimary-26Jzh- {
filter: blur(5px);
}
.profile-1eT9hT ~ * .field-1HUseB:nth-child(2) .colorHeaderPrimary-26Jzh-:hover,
.profile-1eT9hT ~ * .field-1HUseB:nth-child(3) .colorHeaderPrimary-26Jzh-:hover {
filter: blur(0);
}
.theme-dark .itemContainer-1LSFks {
background-color: transparent;
}