I um using tampermonkey, so a simple Javascript CSS changes should be enough Anyone could write me such a script?
Try Ctrl-Plus
stylish + css right? i havenāt tried it
also the abbreviation for japan/ese is jpn
#lesson .context-sentence-group pĀ {
font-size: 20px;
}
do you want to know how I did it? I went into lesson/session, then I right-clicked on the element I wanted to change, then went into inspectĀ element in order to find the rule that targeted that element. Then I just copy-pasted that ruleĀ into stylish and wrote my own font-size rule. Easy.
I donāt know if itās theĀ Correct way to do custom css that an Actual Professional Web Designer wouldnāt scoff atĀ but it works for my own personal purposes and its so easy a monkey could do it
EDIT wait I forgot about the information panel I should do that one too
ok youād make another section in your custom style targeting urls starting with https://www.wanikani.com/vocabulary/Ā and dump in this rule which I slapped togetherĀ with the same method:
Actually now that I think about it you could probably chop .individual-item and #lesson off both rules and merge them together into one thing targeted at both urls but I donāt care enough to test it for you.
There, my first wanikani āāāscriptāāā not even a script though, since weāre just playing with css. and no! you do not need javascript! and thank god because i dont remember anything from the one time i did a js tutorialĀ a couple years ago
plot twist: turns out I did indeed care enough to test it and yes Iām right and it works.
So your new, more efficient css style is simply just
and it has two applications:
urls starting with:Ā https://www.wanikani.com/lesson/session
urls starting with:Ā https://www.wanikani.com/vocabulary/
download stylish (or whatever your browser uses) and copy paste that shit in.
My work here is done. Remember to abbreviate japanese as ājpnā from now on
I kind of want to hug you now
If you canāt read these, what are you gonna do on jap websites?
Hugs !! (ļ¼ćć)ļ¼
ekalz said... I kind of want to hug you now :D
rushkharg said... Hugs !! (ļ¼ćć)ļ¼*hug* ļ¼ļ¼¾ļ¼Æļ¼¾āāŖ
I love being direct and helpful <:
maybe this might help somebody who has dyslexia or bad eyesight or still needs to read at large font size (since if you know how to read at large font size, reading at smaller size becomes easier imo), and doesn't know css
Thank you so much! I changed it to:
.context-sentence-group p[lang=ja]{font-size: 20px;}
so that it affects only the Japanese text. I also did not know about browser css extentions so this post was very useful.