Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 29 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,35 @@
<div class="content">
<h1>ISRO 🚀 API</h1>
<p>Open Source API for Launched Spacecrafts & Rockets data of ISRO</p>
<h2>API End-Points</h2>
<ul>
<li>
Spacecrafts:
<a href="/api/spacecrafts" target="_blank" rel="noopener" rel="noreferrer">
/api/spacecrafts
</a>
</li>
<li>
Launchers:
<a href="/api/launchers" target="_blank" rel="noopener" rel="noreferrer">
/api/launchers
</a>
</li>
<li>
Customer Satellites:
<a href="/api/customer_satellites" target="_blank" rel="noopener" rel="noreferrer">
/api/customer_satellites
</a>
</li>
<li>
Centres:
<a href="/api/centres" target="_blank" rel="noopener" rel="noreferrer">
/api/centres
</a>
</li>
</ul>
<section class="api-section">
<h2>API End-Points</h2>
<ul>
<li>
<strong>Spacecrafts:</strong>
<a href="/api/spacecrafts" target="_blank" rel="noopener noreferrer">
/api/spacecrafts
</a>
</li>
<li>
<strong>Launchers:</strong>
<a href="/api/launchers" target="_blank" rel="noopener noreferrer">
/api/launchers
</a>
</li>
<li>
<strong>Customer Satellites:</strong>
<a href="/api/customer_satellites" target="_blank" rel="noopener noreferrer">
/api/customer_satellites
</a>
</li>
<li>
<strong>Centres:</strong>
<a href="/api/centres" target="_blank" rel="noopener noreferrer">
/api/centres
</a>
</li>
</ul>
</section>
<hr/>
<h3>Contribute at <a href="https://github.com/isro/api">GitHub</a></h3>
</div>
Expand Down
39 changes: 25 additions & 14 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,16 @@
body {
margin: 0;
font-family: "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "sans-serif";
}

.container {
margin: auto 15%;
margin: auto;
padding: 2em;
max-width: 800px;
}

.content {
max-width: 650px;
color: #242424;
font-family:
"-apple-system",
"BlinkMacSystemFont",
"Segoe UI",
"Roboto",
"Oxygen",
"Ubuntu",
"Cantarell",
"Open Sans",
"Helvetica Neue",
"sans-serif"
;
}

h1, h2, h3 {
Expand All @@ -25,6 +19,19 @@ h1, h2, h3 {
border-bottom: 1px solid #eaecef;
}

p {
margin-top: 0;
}

.api-section {
margin-top: 1.5em;
}

ul {
list-style-type: none;
padding: 0;
}

li {
padding-bottom: 0.5em;
}
Expand All @@ -33,3 +40,7 @@ a {
text-decoration: none;
color: rgb(67, 124, 230);
}

a:hover {
text-decoration: underline;
}