A blog system based on plain-files.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.2 KiB

7 months ago
  1. :root {
  2. --bg0: rgb(29,32,33);
  3. --color0: rgb(0,0,0);
  4. --error: rgb(255,0,0);
  5. --footerbg0: rgb(29,32,33);
  6. --link0: rgb(220, 120, 0);
  7. --link1: rgb(255,255,255);
  8. --menulink0: rgb(220, 120, 0);
  9. --menulink1: rgb(255,255,255);
  10. --menubg0: rgb(29,32,33);
  11. --text0: rgb(235,219,178);
  12. --text1: rgb(220, 120, 0);
  13. --transtime: 0.7s;
  14. }
  15. * {
  16. margin: 0;
  17. padding: 0;
  18. }
  19. a {
  20. color: var(--link0);
  21. text-decoration: none;
  22. transition: var(--transtime);
  23. }
  24. a:hover {
  25. color: var(--link1);
  26. cursor: pointer;
  27. }
  28. body {
  29. background: var(--bg0);
  30. margin: 0;
  31. }
  32. body,
  33. html {
  34. font-family: sans-serif;
  35. height: 100%;
  36. max-width: 100%;
  37. overflow-x: hidden;
  38. }
  39. span {
  40. color: var(--text1);
  41. }
  42. .container {
  43. color: var(--text0);
  44. min-height: 100%;
  45. padding-bottom: 50px;
  46. padding-left: 10%;
  47. padding-right: 10%;
  48. padding-top: 5%;
  49. }
  50. .container h1,
  51. .container h2 {
  52. color: var(--text1);
  53. }
  54. .entry {
  55. background: var(--blogbg0);
  56. border-left: 10px solid var(--blogclr0);
  57. border-radius: 0 10px 30px 0;
  58. color: var(--text0);
  59. margin-bottom: 20px;
  60. padding: 10px;
  61. }
  62. .entry h1,
  63. .entry h2 {
  64. color: var(--text1);
  65. margin: 5px auto 2px auto;
  66. }