Is it possible to make a Stylish style apply to: http://www.baka-tsuki.org/project/index.php?title=WHATEVER1:WHATEVER2 and (HTTPS version) https://www.baka-tsuki.org/project/index.php?title=WHATEVER1:WHATEVER2
given that:
WHATEVER1 has to fulfill the condition of not being any of these character combinations: Category, User, Meeting, User_talk, Baka-Tsuki, Special, Help, Template, Template_talk, Talk
and
WHATEVER2 has to fulfill the condition of not being any of these character combinations: Registration_Page, Updates, Archive
and
WHATEVER2 has to fulfill the condition of not ending as any of these character combinations: &action=edit, &action=history, &action=info, &printable=yes
I've tried:
regexp('https?://www\\.baka-tsuki\\.org/project/index\\.php\\?title=(?!(Category:|User:|User_talk:|Special:|Help:|Baka-Tsuki:|Template:|Template_talk:|Talk:|Meeting:)).*:(?!(Registration_Page|Updates|Archive)).*(?!(&action=history|&action=edit|&action=info|&printable=yes))')
But the (?!(Registration_Page|Updates|Archive)) and (?!(&action=history|&action=edit|&action=info|&printable=yes)) parts don't seem to work (the WHATEVER2 conditions).