Skip to content

Commit

Permalink
add logo and search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
msrcodes committed Jun 28, 2019
1 parent 0429afa commit cb74992
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
19 changes: 19 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
* {
padding: 0;
margin: 0;
}

body {
display: flex;
}

header {
display: flex;
width: 50vw;
flex-direction: column;
padding: 1em 25vw 0 25vw;
}

#banner-img {
margin: 0 auto;
}

#search {
width: 100%;
}
Binary file added img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,11 @@
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<img src="img/logo.png" alt="Portsmouth Artificial Intelligence & Robotics Society" id="banner-img">
<nav>
<input id="search" placeholder="Search" autofocus>
</nav>
</header>
</body>
</html>

0 comments on commit cb74992

Please sign in to comment.