diff options
| author | Bobby <[email protected]> | 2022-09-05 19:25:07 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-09-05 19:25:07 -0400 |
| commit | 10dccc6faa8c95b34a96cdfeae6daa335fe9b76d (patch) | |
| tree | 1da99e8b123768c8a28913ed88cb1431522501cb /static/css/main.css | |
| parent | 49b2cf3987378971d05cdcac996c69d7f862461e (diff) | |
| download | thatcomputerscientist-10dccc6faa8c95b34a96cdfeae6daa335fe9b76d.tar.xz thatcomputerscientist-10dccc6faa8c95b34a96cdfeae6daa335fe9b76d.zip | |
Added captcha to register page
Diffstat (limited to 'static/css/main.css')
| -rw-r--r-- | static/css/main.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index a524db34..32afdeb8 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -153,6 +153,22 @@ nav > ul > li { display: none; } +#captcha { + display: flex; + flex-direction: row; +} + +#captcha > img:nth-child(1) { + height: 60px; + margin-right: 10px; +} + +#captcha > img:nth-child(2) { + height: 30px; + transform: translateY(15px); + cursor: pointer; +} + /* Optimize for phones */ @media only screen and (max-width: 480px) { body { |
