all repos — breadsite @ 496f2202c534bf3d049cf6aa706958fc470975c2

Unnamed repository; edit this file 'description' to name the repository.

blog/captcha.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>visor | 6B74-4's site</title>
    <link href="/style.css" rel="stylesheet"/>
</head>
<body>
    <h1>
        <a href="/" aria-hidden="true">
            <svg xmlns="http://www.w3.org/2000/svg" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m9 6-6 6 6 6"/><path d="M3 12h14"/><path d="M21 19V5"/></svg>
        </a>
        No, [captcha provider] this one IS a bot
    </h1>
    <p>
        Silly little UserStyle to replace the text in captchas with "I'm a robot".
        Will be updated over time.
    </p>
    <pre><code><span class="comment">
/* ==UserStyle==
@name           no, recaptcha this one IS a bot
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    beep
@author         6B74-4
==/UserStyle== */
    </span>
@-moz-document regexp(".*") {
  #recaptcha-anchor-label, /*recaptcha*/
  div[aria-label = "Automatic anti-robot verification widget"] p span /*friendlycaptcha*/
  {
    line-height: 0;
    color:transparent;
    &::after {
      display: block;
      line-height: initial;
      color: initial;
      content: "I'm a robot";
    }
  }
}
    </code></pre>

</body>
</html>