aboutsummaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2021-04-12 20:19:46 +0100
committerMiquel Lionel <lionelmiquel@sfr.fr>2021-04-12 20:19:46 +0100
commitf65887f1ee0a94aa2c81140d29d0634f1be7b3c3 (patch)
tree512b1c68c5956776814423263f9619c682d357ae /styles.css
parent8cbc83817dbafd2ac26d9834009e6cfa3d58b3d7 (diff)
downloadgpigeon-f65887f1ee0a94aa2c81140d29d0634f1be7b3c3.tar.gz
gpigeon-f65887f1ee0a94aa2c81140d29d0634f1be7b3c3.zip
css for responsive text area message box
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index 2739deb..a83cd47 100644
--- a/styles.css
+++ b/styles.css
@@ -33,3 +33,19 @@ body{
margin:auto;
font-size:12pt;
}
+
+#msg{
+ border: 1px solid black;
+ resize:vertical;
+ width:50%;
+}
+
+@media screen and (max-width: 740px) {
+ body { font-size:0.8em; }
+ #msg{width:100%;}
+ th, td{ padding:3px; }
+ input {
+ padding:4px;
+ margin: 2px;
+ }
+}