mirror of
https://github.com/huhu/rust-search-extension
synced 2024-11-15 16:07:57 +00:00
41 lines
No EOL
1.3 KiB
HTML
41 lines
No EOL
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Redirect - Rust Search Extension</title>
|
|
<script src="redirect.js"></script>
|
|
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"/>
|
|
<link rel="stylesheet" href="../generic.css">
|
|
<style>
|
|
.loading {
|
|
text-align: center;
|
|
font-size: 20px;
|
|
padding: 60px 0;
|
|
}
|
|
.redirect {
|
|
padding: 30px 0;
|
|
}
|
|
.redirect a {
|
|
color: #551a8a;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="flex-layout">
|
|
<div style="margin: 30px auto; padding: 30px 80px; background-color: white;">
|
|
<div class="logo flex-layout" style="width: 920px;">
|
|
<img src="../icon.png" alt="rust-search-extension-logo">
|
|
Rust Search Extension
|
|
</div>
|
|
<div class="loading">
|
|
Get crate's repository url via crates.io api...
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |