Skip to content

Commit dc17e3d

Browse files
committed
Upload file: sort-package-json-keithamus.html
1 parent cb75315 commit dc17e3d

File tree

1 file changed

+89
-2
lines changed

1 file changed

+89
-2
lines changed

projects/sort-package-json-keithamus.html

Lines changed: 89 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
font-size: 16px;
4343
font-weight: 400; /* Set the default weight for readability */
4444
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 */
4646
word-spacing: 1px; /* Consistent word spacing */
4747
text-rendering: optimizeLegibility; /* Optimize for legibility on most screens */
4848
-webkit-font-smoothing: antialiased; /* Smooth font rendering for WebKit browsers */
@@ -67,6 +67,87 @@
6767
margin-left: 20px;
6868
}
6969

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+
70151
/* Stat Row */
71152
.stat-row {
72153
background-color: #f8f9fa; /* Light background */
@@ -707,7 +788,6 @@ <h3 id="whatwhywouldyouwanttodothis">What?! Why would you want to do this?!</h3>
707788
</div>
708789

709790
<div class="tab-pane fade" id="changelog" role="tabpanel" aria-labelledby="changelog-tab">
710-
<h5>Changelog</h5>
711791
<ul id="changelogList">
712792
<p>No changelog available.</p>
713793
</ul>
@@ -745,6 +825,13 @@ <h5>Changelog</h5>
745825
<strong>Language:</strong>
746826
<span id="language" class="ms-1">JavaScript</span>
747827
</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+
748835

749836
<a href="#" target="_blank" class="btn btn-outline-dark btn-sm" id="homepageBtn">
750837
<i class="bi bi-house-door me-2"></i>Visit Homepage

0 commit comments

Comments
 (0)