Skip to content

Commit 8dd4450

Browse files
committed
Upload file: json-schema-to-openapi-schema-wework.html
1 parent 2dd87c9 commit 8dd4450

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

projects/json-schema-to-openapi-schema-wework.html

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,90 @@
7373
height: auto;
7474
}
7575

76+
#changelogList {
77+
margin: 0 auto;
78+
max-width: 800px;
79+
border: 1px solid #ddd;
80+
border-radius: 8px;
81+
padding: 20px;
82+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
83+
}
84+
85+
/* Heading styles */
86+
#changelogList h1 {
87+
font-size: 2rem;
88+
color: #0073e6;
89+
border-bottom: 2px solid #ddd;
90+
padding-bottom: 10px;
91+
margin-bottom: 20px;
92+
}
93+
94+
#changelogList h2 {
95+
font-size: 1.5rem;
96+
color: #005bb5;
97+
margin-top: 30px;
98+
margin-bottom: 10px;
99+
border-left: 4px solid #0073e6;
100+
padding-left: 10px;
101+
}
102+
103+
#changelogList h3 {
104+
font-size: 1.25rem;
105+
color: #444;
106+
margin-top: 20px;
107+
margin-bottom: 10px;
108+
border-left: 3px solid #005bb5;
109+
padding-left: 8px;
110+
}
111+
112+
/* Text and link styles */
113+
#changelogList p {
114+
margin: 10px 0;
115+
color: #555;
116+
}
117+
118+
#changelogList a {
119+
color: #0073e6;
120+
text-decoration: none;
121+
border-bottom: 1px dashed #0073e6;
122+
}
123+
124+
#changelogList a:hover {
125+
color: #005bb5;
126+
border-bottom: 1px solid #005bb5;
127+
}
128+
129+
/* List styles */
130+
#changelogList ul {
131+
list-style-type: disc;
132+
padding-left: 40px;
133+
margin-bottom: 20px;
134+
}
135+
136+
#changelogList ul ul {
137+
list-style-type: circle;
138+
margin-top: 10px;
139+
}
140+
141+
/* Code block styles */
142+
#changelogList code {
143+
font-family: 'Courier New', Courier, monospace;
144+
background-color: #f4f4f4;
145+
color: #c7254e;
146+
padding: 2px 4px;
147+
border-radius: 3px;
148+
border: 1px solid #ddd;
149+
}
150+
151+
/* Added emphasis for version tags */
152+
#changelogList h2::after {
153+
content: attr(id);
154+
font-size: 0.875rem;
155+
color: #777;
156+
margin-left: 10px;
157+
font-style: italic;
158+
}
159+
76160
/* Stat Row */
77161
.stat-row {
78162
background-color: #f8f9fa; /* Light background */

0 commit comments

Comments
 (0)