A tiny self-hostable "microjournaling" web app. Helps fill the void when abstaining from social media by encouraging journaling small thoughts throughout the day. # Requirements - web host with PHP
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

journal.css 994B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. :root {
  2. background-color: white;
  3. color: black;
  4. }
  5. :root, input, textarea {
  6. font-family: Garamond, Times New Roman, serif;
  7. line-height: 1.25;
  8. font-size: 12pt;
  9. }
  10. .error {
  11. padding: 1em;
  12. border: 1px solid #400;
  13. background-color: #fcc;
  14. color: #d00;
  15. font-weight: bold;
  16. margin-bottom: 1em;
  17. }
  18. .post {
  19. margin-top: 0.5em;
  20. margin-bottom: 1em;
  21. }
  22. .post p {
  23. margin: 0 0 1em 0;
  24. }
  25. .post p:last-child {
  26. margin: 0;
  27. }
  28. .post-date {
  29. font-size: 80%;
  30. color: #888;
  31. margin-top: 0.5em;
  32. }
  33. .content {
  34. max-width: 66ch;
  35. margin-left: auto;
  36. margin-right: auto;
  37. padding: 0.25em;
  38. }
  39. .important {
  40. padding: 1em;
  41. border: 1px solid #886;
  42. background-color: #ffc;
  43. color: black;
  44. margin-bottom: 1em;
  45. }
  46. textarea {
  47. width: 100%;
  48. height: 8em;
  49. font-family: inherit;
  50. margin: 0;
  51. }
  52. input[type="submit"] {
  53. margin-top: 1em;
  54. }
  55. @media(prefers-color-scheme: dark) {
  56. :root, textarea, input, select {
  57. background-color: #222;
  58. color: white;
  59. }
  60. }
  61. @media screen and (max-width: 450px) {
  62. :root {
  63. font-size: 16pt;
  64. }
  65. }