diff options
author | Erik Johnston <erik@matrix.org> | 2015-10-26 15:35:07 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-10-26 15:37:44 +0000 |
commit | fa1cf5ef34e684b58433119d78dc95923955ff4f (patch) | |
tree | 7dd381962c5af08819b07c3764c2d68e34385d1e /synapse/static/client/register/style.css | |
parent | Fix receipts for room initial sync (diff) | |
download | synapse-fa1cf5ef34e684b58433119d78dc95923955ff4f.tar.xz |
Move static folder into synapse
This is because otherwise it won't get picked up by python packaging. This also fixes the problem where the "static" folder was found if synapse wasn't started from that directory.
Diffstat (limited to 'synapse/static/client/register/style.css')
-rw-r--r-- | synapse/static/client/register/style.css | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/synapse/static/client/register/style.css b/synapse/static/client/register/style.css new file mode 100644 index 0000000000..5a7b6eebf2 --- /dev/null +++ b/synapse/static/client/register/style.css @@ -0,0 +1,60 @@ +html { + height: 100%; +} + +body { + height: 100%; + font-family: "Myriad Pro", "Myriad", Helvetica, Arial, sans-serif; + font-size: 12pt; + margin: 0px; +} + +h1 { + font-size: 20pt; +} + +a:link { color: #666; } +a:visited { color: #666; } +a:hover { color: #000; } +a:active { color: #000; } + +input { + width: 100% +} + +textarea, input { + font-family: inherit; + font-size: inherit; +} + +.smallPrint { + color: #888; + font-size: 9pt ! important; + font-style: italic ! important; +} + +#recaptcha_area { + margin: auto +} + +.g-recaptcha div { + margin: auto; +} + +#registrationForm { + text-align: left; + padding: 5px; + margin-bottom: 40px; + display: inline-block; + + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + + -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15); + + background-color: #f8f8f8; + border: 1px #ccc solid; +} \ No newline at end of file |