40 lines
841 B
HTML
40 lines
841 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Search Packages - Comline</title>
|
|
|
|
<div class="header" align="center">
|
|
<h1>Comline Project Indexer</h1>
|
|
<h4>Package manager server registry for packages</h4>
|
|
</div>
|
|
</head>
|
|
<body>
|
|
<div class="body" align="center">
|
|
<h3>Search for a package</h3>
|
|
<input type="text" placeholder="Type 'stdlib' for example...">
|
|
</div>
|
|
</body>
|
|
<style>
|
|
html, body {
|
|
height: 100%; width: 100%;
|
|
background-color: #1070BC;
|
|
}
|
|
|
|
.header {
|
|
padding: 20px 20px;
|
|
background-color: #4B6941;
|
|
}
|
|
.body {
|
|
border-top: 1px solid black;
|
|
}
|
|
|
|
.body input[type=text] {
|
|
padding: 6px;
|
|
margin-top: 8px;
|
|
margin-right: 16px;
|
|
font-size: 17px;
|
|
}
|
|
</style>
|
|
</html>
|