diff options
author | Miquel Lionel <lionel@les-miquelots.net> | 2021-06-18 22:13:54 +0100 |
---|---|---|
committer | Miquel Lionel <lionelmiquel@sfr.fr> | 2021-06-23 13:48:56 +0100 |
commit | 420155e750c4b95dd4327d7adb4310a64eafb364 (patch) | |
tree | 3c7ea05d24b73e1467489530b4f7c9be50e0af7c /styles.css | |
parent | 416fb73fbccf28ff256de352cd9b14803423852d (diff) | |
download | gpigeon-420155e750c4b95dd4327d7adb4310a64eafb364.tar.gz gpigeon-420155e750c4b95dd4327d7adb4310a64eafb364.zip |
add some update from the master.
- Added the README.md form master branch.
- Added new script gpigeonctl: will allow to initialize the database and manage it (add or delete and user, purge cookies).
- Added the Makefile and the config.dek.mk from master branch
with some changes
- Added nginx config from master branch
- Rename gpigeon.css -> styles.css
- gpigeon-template.cgi: the -w flag on the shebang is
useless because we already have "use warnings". Also, the man
page discourage its use.
- Fixed link-tmpl-template.cgi: the self-deletion now occurs
as intended, and not only when in HAS_MAILSERVER=0 mode. also
fixed the indenting around these parts because it was a clusterfuck
Diffstat (limited to 'styles.css')
-rw-r--r-- | styles.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..a83cd47 --- /dev/null +++ b/styles.css @@ -0,0 +1,51 @@ +html{ + background-color:skyblue +} + +th{ + padding:10px; + font-size:110%; +} + +td{ + text-align:center; + padding: 5px ; +} + +input{ + padding:10px; + margin:5px; + margin-top:10px; +} + +table{ + margin-top:10px; + border: 1px solid black; +} + +th,tr,td{ + border:1px solid black; +} + +body{ + font-family:sans-serif; + width:80%; + 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; + } +} |