aboutsummaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php21
1 files changed, 14 insertions, 7 deletions
diff --git a/index.php b/index.php
index 4bc8815..8801bb1 100644
--- a/index.php
+++ b/index.php
@@ -3,14 +3,21 @@
<head>
<meta charset="UTF-8">
<title>WolfEye</title>
+
+ <link rel="stylesheet" href="assets/main.css">
</head>
<body>
- <h1>WolfEye</h1>
- <form action="/search">
- <input type="text" name="q" placeholder="Search the Web...">
- <input type="submit" value="Search!">
- <input type="submit" value="I'm feeling lucky!" disabled>
- <link rel="icon" href="/logo.svg">
- </form>
+ <div class="container">
+ <h1 class="title is-1">WolfEye</h1>
+ <form action="search">
+ <input class="search-input" type="text" name="q" placeholder="Search the Web...">
+ <br/>
+ <div class="searchbtn">
+ <input type="submit" value="Search!">
+ <!-- <input type="submit" value="I'm feeling lucky!" disabled> DISABLE THIS ONE -->
+ </div>
+ <link rel="icon" href="/logo.svg">
+ </form>
+ </div>
</body>
</html>