diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-12-10 07:02:47 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-12-10 07:02:47 +0100 |
| commit | 9e6b80c0321ba1fbe1c824083acbeeac7b7b94d4 (patch) | |
| tree | 67cd6d247cd1bc15c43ebad10e2f02249217e8ca /public/assets/css/bucky.css | |
| parent | a932b664db987f2cf9ceefe9bb56e43793470d5e (diff) | |
post form and other stuff
Diffstat (limited to 'public/assets/css/bucky.css')
| -rw-r--r-- | public/assets/css/bucky.css | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/public/assets/css/bucky.css b/public/assets/css/bucky.css index a8901c3..315cad6 100644 --- a/public/assets/css/bucky.css +++ b/public/assets/css/bucky.css @@ -8,6 +8,9 @@ body { font-family: Trebuchet MS, Helvetica, Arial, sans-serif; padding: 20px 30px; } +* { + box-sizing: border-box; +} small { font-size: 10px; } @@ -86,6 +89,8 @@ table, tr { .lastlog { float: right; + width: 100%; + padding: 5px 0; } #sidebar, #content { @@ -349,6 +354,36 @@ tr:nth-child(even) td.black:hover { background-color: #f8f8f8; color: #000000; tr:nth-child(even) td.comment { background-color: #f3f1f2; } tr:nth-child(odd) td.comment { background-color: #fcf8f8; } +#thread_form form { + width: 530px; +} +#thread_form input[name=title] { + width: 100%; + padding: 5px; + font-size: 15px; + font-family: 'Trebuchet MS', sans-serif; + border: 1px solid #888; + margin-top: 10px; +} +#thread_form textarea { + width: 100%; + height: 240px; + font-family: 'Trebuchet MS', sans-serif; + padding: 5px; + font-size: 15px; + margin: 10px 0; +} +#thread_form .inputs { + display: flex; + flex-direction: row; + justify-content: space-between; + width: 100%; + padding: 5px; +} +#thread_form input[type=submit] { + margin: 0; +} + #comment_form form { width: 530px; margin-top: 5px; |
