3 Commits

Author SHA1 Message Date
johannes.vos 2fa206f866 Make Gradient bigger and Center Searchbar vertically 2026-05-04 18:43:54 +02:00
johannes.vos 95948f11ec Remove Border 2026-05-04 18:35:39 +02:00
johannes.vos 5b8d6d3e2e Add hero for Gradient in Background 2026-05-04 18:34:37 +02:00
3 changed files with 23 additions and 17 deletions
+14 -13
View File
@@ -32,20 +32,21 @@ limitations under the License.
</ul> </ul>
</nav> </nav>
<header> <div class="hero">
<h1>seekra</h1> <header>
<p> <h1>seekra</h1>
Built to search. <p>
</p> Built to search.
</header> </p>
</header>
<form id="search-form">
<div class="search-wrapper">
<input type="search" name="search" placeholder="Search..." required />
<button type="submit">Search</button>
</div>
</form>
<form id="search-form">
<div class="search-wrapper">
<input type="search" name="search" placeholder="Search..." required />
<button type="submit">Search</button>
</div>
</form>
</div>
<footer> <footer>
<p>&copy; 2026 seekra.</p> <p>&copy; 2026 seekra.</p>
</footer> </footer>
+9 -3
View File
@@ -2,6 +2,14 @@ body {
margin: 0; margin: 0;
background-color: #ffffff; background-color: #ffffff;
} }
.hero {
background:
radial-gradient(ellipse at 40% 60%, rgba(255,255,255,0.55) 0%, transparent 75%),
linear-gradient(160deg, #c8d8f0, #7aa0d8, #5077C7, #dce8f8);
height: 300px;
display: flex;
flex-direction: column;
}
header { header {
text-align: center; text-align: center;
@@ -24,7 +32,7 @@ header p {
form { form {
display: flex; display: flex;
justify-content: center; justify-content: center;
margin-top: 20px; margin-top: 60px;
width: 100%; width: 100%;
} }
@@ -59,8 +67,6 @@ form {
background: #374FA5; background: #374FA5;
} }
footer{ footer{
text-align: center; text-align: center;
margin-top: 20px; margin-top: 20px;
-1
View File
@@ -2,7 +2,6 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
padding: 10px 0; padding: 10px 0;
border-bottom: 1px solid #000000;
} }
.global-nav ul { .global-nav ul {