diff options
author | Choom | 2023-01-28 00:52:56 -0300 |
---|---|---|
committer | Choom | 2023-02-02 00:39:27 -0300 |
commit | 081ddc03aef7becc3b084a9079a2574fd3e3b49b (patch) | |
tree | a6ca793a0c21917d3774778c0a14f65a8c678113 /static/example | |
parent | d0d6b8ebff31d2306a040dc9c53f9e5e7a0ec7a0 (diff) | |
download | weabot-081ddc03aef7becc3b084a9079a2574fd3e3b49b.tar.gz weabot-081ddc03aef7becc3b084a9079a2574fd3e3b49b.tar.xz weabot-081ddc03aef7becc3b084a9079a2574fd3e3b49b.zip |
userconf
Diffstat (limited to 'static/example')
-rw-r--r-- | static/example/ib1.html | 4 | ||||
-rw-r--r-- | static/example/style.css | 18 |
2 files changed, 18 insertions, 4 deletions
diff --git a/static/example/ib1.html b/static/example/ib1.html index 69c5865..e2936da 100644 --- a/static/example/ib1.html +++ b/static/example/ib1.html @@ -16,9 +16,9 @@ <hr width="90%" size="1"> -<div class="postarea"> +<div id="postarea"> <form name="postform" id="postform" action="#"> -<table class="postform"> +<table id="postform-t"> <tr> <td class="postblock">Asunto</td> <td> diff --git a/static/example/style.css b/static/example/style.css index de0c621..b912b5d 100644 --- a/static/example/style.css +++ b/static/example/style.css @@ -44,6 +44,13 @@ a:active { color:#900; } +textarea { + max-width: 100%; + width: 700px; + height: 200px; + display: block; +} + .desc { margin-left:40px; } @@ -153,10 +160,16 @@ iframe { display: block; } +#config-url { + width: 400px; + border: 1px dotted #73B233; + display: block; + margin: 8px 0; +} + @media (max-width: 600px) { body { text-align: center; - font-size: 15px; } .desc { @@ -169,7 +182,8 @@ iframe { input[type="text"], input[type="button"], - .inputcont { + .inputcont, + #config-url { margin: 8px 0; width: 100%; display: block; |