Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added navbar and logo #78

Merged
merged 1 commit into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added site/assets/GitCordDarkLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion site/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ body {
height: 100%;
margin: 0;
}

img{
margin-right: 1rem;
}
.background-gradient {
height: 100%;
background: linear-gradient(325deg, #08627d, #ce1395);
Expand Down
13 changes: 11 additions & 2 deletions site/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@
<link rel="stylesheet" href="home.css" />
</head>
<body>
<div class="background-gradient text-center d-flex align-items-center justify-content-center">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="./assets/GitCordDarkLogo.png" alt="GitCord logo" width="40" height="40" style="
margin-right: 10px;" class="d-inline-block align-text-middle"
>
GitCord</a>
</div>
</nav>
<div class="background-gradient text-center flex-column d-flex align-items-center justify-content-center">
<div>
<h1 class="text-white">Gitcord Bot</h1>
<h1 class="text-white"> <img src="./assets/GitCordDarkLogo.png" alt="" width="40" height="40" class="d-inline-block align-text-middle">Gitcord Bot</h1>
<h4 class="text-white mt-3 w-75 text-center mx-auto"> The ultimate Discord Bot that provides you with a number of developer tools and helps you manage your Github repos from Discord.</h4>
<a href="https://discord.com/oauth2/authorize?client_id=869745702958407721&scope=bot&permissions=8" >
<button type="button" class="btn btn-dark mt-5">Download Now</button>
Expand Down