Skip to content

Commit

Permalink
Add images and branding [docs]
Browse files Browse the repository at this point in the history
  • Loading branch information
bboonstra committed Oct 20, 2024
1 parent 0739641 commit 3c0190a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 7 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added docs/images/bannerlogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/bannerlogotextbottom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/bannerlogotextright.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/squarelogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/squarelogotext.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<body>
<main>
<h1 class="effortless">Databases should be <i>Effortless</i>.</h1>
<!-- Rest of your content -->
<img src="./images/bannerlogotextright.png" alt="Effortless Logo" class="banner-logo">
</main>
</body>
</html>
22 changes: 16 additions & 6 deletions docs/styles.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:root {
--primary-color: #3498db;
--secondary-color: #2c3e50;
--text-color: #333;
--primary-color: #6a8eff;
--secondary-color: #373737;
--text-color: #373737;
--background-color: #f4f4f4;
--sidebar-width: 20%;
--sidebar-collapsed-width: 0px;
Expand Down Expand Up @@ -55,9 +55,9 @@ nav ul li a:hover {
}

main {
max-width: 800px;
margin: 5rem auto 2rem;
padding: 0 1rem;
margin-left: 0px;
}

h1,
Expand Down Expand Up @@ -86,6 +86,12 @@ a:hover {
text-decoration: underline;
}

.banner-logo {
width: 80vw;
height: auto;
padding: 0px;
margin: 0px;
}
#sidebarToggle {
background: none;
border: none;
Expand Down Expand Up @@ -113,8 +119,8 @@ a:hover {
top: 0;
bottom: 0;
width: var(--sidebar-width);
background-color: var(--secondary-color);
color: white;
background-color: var(--text-color);
color: var(--background-color);
padding: 1rem;
padding-top: 5rem;
overflow-y: auto;
Expand All @@ -132,6 +138,10 @@ a:hover {
display: none;
}

#sidebar a {
color: var(--background-color);
}

main {
padding: 1rem;
}
Expand Down

0 comments on commit 3c0190a

Please sign in to comment.