Search/static/search.html

80 lines
2.6 KiB
HTML
Raw Normal View History

2024-03-27 20:30:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-03-28 07:19:29 +00:00
<title>TailsGo</title>
2024-03-27 20:30:19 +00:00
<link rel="stylesheet" type="text/css" href="./style.css">
2024-03-28 07:19:29 +00:00
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f5f5; /* Change the background color to your preference */
font-family: Arial, sans-serif; /* Change the font family to your preference */
}
.search-container {
text-align: center;
background-color: #fff; /* Change the background color to your preference */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow effect */
}
.search-container h1 {
font-size: 36px;
color: #333; /* Change the title color to your preference */
margin-bottom: 20px;
}
.search-container input[type="text"] {
width: 80%;
padding: 10px;
border: 1px solid #ccc; /* Add a border */
border-radius: 4px;
font-size: 16px;
margin-bottom: 20px;
}
.search-container .search-button-wrapper {
display: flex;
justify-content: center;
}
.search-container .search-button-wrapper button {
padding: 10px 20px;
margin: 0 10px;
font-size: 16px;
background-color: #007bff; /* Change the button background color to your preference */
color: #fff; /* Change the button text color to your preference */
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.search-container .search-button-wrapper button:hover {
background-color: #0056b3; /* Change the button hover background color to your preference */
}
</style>
2024-03-27 20:30:19 +00:00
</head>
<body>
<form action="/search" class="search-container" method="post" autocomplete="off">
<h1>Tails<span class="X">Go</span></h1>
<input type="text" name="q" autofocus />
<div class="search-button-wrapper">
<button name="t" type="submit">Search with TailsGo</button>
<button name="t" type="submit">Search images with TailsGo</button>
</div>
</form>
</body>
2024-03-28 07:19:29 +00:00
</html>