|
42 | 42 | font-size: 16px;
|
43 | 43 | font-weight: 400; /* Set the default weight for readability */
|
44 | 44 | line-height: 1.6; /* Enhance readability with appropriate spacing */
|
45 |
| - letter-spacing: 0.5px; /* Subtle spacing for a polished look */ |
| 45 | + letter-spacing: 0.4px; /* Subtle spacing for a polished look */ |
46 | 46 | word-spacing: 1px; /* Consistent word spacing */
|
47 | 47 | text-rendering: optimizeLegibility; /* Optimize for legibility on most screens */
|
48 | 48 | -webkit-font-smoothing: antialiased; /* Smooth font rendering for WebKit browsers */
|
|
67 | 67 | margin-left: 20px;
|
68 | 68 | }
|
69 | 69 |
|
| 70 | +/* Article */ |
| 71 | + .site-main article img{ |
| 72 | + width: 100%; |
| 73 | + height: auto; |
| 74 | + } |
| 75 | + |
| 76 | +/* Heading styles */ |
| 77 | +#changelogList h1 { |
| 78 | + font-size: 26px; |
| 79 | + color: #0073e6; |
| 80 | + border-bottom: 2px solid #ddd; |
| 81 | + padding-bottom: 10px; |
| 82 | + margin-bottom: 20px; |
| 83 | +} |
| 84 | + |
| 85 | +#changelogList h2 { |
| 86 | + font-size: 22px; |
| 87 | + color: #005bb5; |
| 88 | + margin-top: 30px; |
| 89 | + margin-bottom: 10px; |
| 90 | + border-left: 4px solid #0073e6; |
| 91 | + padding-left: 10px; |
| 92 | +} |
| 93 | + |
| 94 | +#changelogList h3 { |
| 95 | + font-size: 18px; |
| 96 | + color: #444; |
| 97 | + margin-top: 20px; |
| 98 | + margin-bottom: 10px; |
| 99 | + border-left: 3px solid #005bb5; |
| 100 | + padding-left: 8px; |
| 101 | +} |
| 102 | + |
| 103 | +/* Text and link styles */ |
| 104 | +#changelogList p { |
| 105 | + margin: 10px 0; |
| 106 | + color: #555; |
| 107 | +} |
| 108 | + |
| 109 | +#changelogList a { |
| 110 | + color: #0073e6; |
| 111 | + text-decoration: none; |
| 112 | + border-bottom: 1px dashed #0073e6; |
| 113 | +} |
| 114 | + |
| 115 | +#changelogList a:hover { |
| 116 | + color: #005bb5; |
| 117 | + border-bottom: 1px solid #005bb5; |
| 118 | +} |
| 119 | + |
| 120 | +/* List styles */ |
| 121 | +#changelogList ul { |
| 122 | + list-style-type: disc; |
| 123 | + padding-left: 40px; |
| 124 | + margin-bottom: 20px; |
| 125 | +} |
| 126 | + |
| 127 | +#changelogList ul ul { |
| 128 | + list-style-type: circle; |
| 129 | + margin-top: 10px; |
| 130 | +} |
| 131 | + |
| 132 | +/* Code block styles */ |
| 133 | +#changelogList code { |
| 134 | + font-family: 'Courier New', Courier, monospace; |
| 135 | + background-color: #f4f4f4; |
| 136 | + color: #c7254e; |
| 137 | + padding: 2px 4px; |
| 138 | + border-radius: 3px; |
| 139 | + border: 1px solid #ddd; |
| 140 | +} |
| 141 | + |
| 142 | +/* Added emphasis for version tags */ |
| 143 | +#changelogList h2::after { |
| 144 | + content: attr(id); |
| 145 | + font-size: 0.875rem; |
| 146 | + color: #777; |
| 147 | + margin-left: 10px; |
| 148 | + font-style: italic; |
| 149 | +} |
| 150 | + |
70 | 151 | /* Stat Row */
|
71 | 152 | .stat-row {
|
72 | 153 | background-color: #f8f9fa; /* Light background */
|
@@ -707,7 +788,6 @@ <h3 id="whatwhywouldyouwanttodothis">What?! Why would you want to do this?!</h3>
|
707 | 788 | </div>
|
708 | 789 |
|
709 | 790 | <div class="tab-pane fade" id="changelog" role="tabpanel" aria-labelledby="changelog-tab">
|
710 |
| - <h5>Changelog</h5> |
711 | 791 | <ul id="changelogList">
|
712 | 792 | <p>No changelog available.</p>
|
713 | 793 | </ul>
|
@@ -745,6 +825,13 @@ <h5>Changelog</h5>
|
745 | 825 | <strong>Language:</strong>
|
746 | 826 | <span id="language" class="ms-1">JavaScript</span>
|
747 | 827 | </div>
|
| 828 | + |
| 829 | + <div class="metadata-item d-flex align-items-center mt-2"> |
| 830 | + <i class="bi bi-shield-check"></i> |
| 831 | + <strong>License:</strong> |
| 832 | + <span id="license" class="ms-1">MIT License</span> |
| 833 | + </div> |
| 834 | + |
748 | 835 |
|
749 | 836 | <a href="#" target="_blank" class="btn btn-outline-dark btn-sm" id="homepageBtn">
|
750 | 837 | <i class="bi bi-house-door me-2"></i>Visit Homepage
|
|
0 commit comments