style.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #nav-bar {
  2. padding: .625rem 0 0 0;
  3. display: flex;
  4. flex-direction: row;
  5. gap: .25rem;
  6. flex-wrap: wrap;
  7. justify-content: flex-end;
  8. align-items: center;
  9. align-content: flex-end
  10. }
  11. #footer-container {
  12. display: flex;
  13. flex-wrap: wrap;
  14. justify-content: space-between;
  15. align-items: center;
  16. }
  17. .accent-data {
  18. color: var(--accent);
  19. }
  20. .theme-transition {
  21. transition: color 0.3s ease, background-color 0.3s ease;
  22. }
  23. .tags-data {
  24. display: flex;
  25. flex-direction: column;
  26. flex-wrap: wrap;
  27. justify-content: flex-end;
  28. align-items: flex-start;
  29. align-content: flex-end
  30. }
  31. .title-list li {
  32. margin-bottom: .375rem;
  33. }
  34. /* icons settings */
  35. .icons {
  36. width: 1.3rem;
  37. height: 1.3rem;
  38. aspect-ratio: 1/1;
  39. display: inline-block;
  40. vertical-align: middle;
  41. color: var(--text);
  42. fill: var(--text);
  43. background-color: transparent;
  44. cursor: pointer;
  45. }
  46. .icons:hover {
  47. background-color: transparent;
  48. color: var(--accent);
  49. }
  50. /* footnotes */
  51. .footnote-definition {
  52. margin: 0 0 0 .125rem;
  53. }
  54. .footnote-definition-label {
  55. color: var(--accent);
  56. }
  57. .footnote-definition p {
  58. display: inline;
  59. margin: .625rem 0 0 .625rem;
  60. }
  61. /* general classes */
  62. .no-style {
  63. padding: 0;
  64. margin: 0;
  65. border: none;
  66. border-radius: 0
  67. }
  68. .no-style:hover {
  69. background-color: transparent;
  70. color: var(--accent);
  71. }
  72. .center {
  73. text-align: center;
  74. }
  75. .center img {
  76. display: block;
  77. margin: 1rem auto;
  78. }
  79. .float-right {
  80. float: right
  81. }
  82. .float-left {
  83. float: left
  84. }
  85. /* shortcodes css */
  86. .webring {
  87. margin: .375rem;
  88. }