Skip to content

Commit

Permalink
deploy: dc74e13
Browse files Browse the repository at this point in the history
  • Loading branch information
dylansdaniels committed Jan 17, 2025
1 parent ba6ebc9 commit 4aea855
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pypandoc
from create_page_index import update_page_index
from create_navbar import generate_navbar_html
from bs4 import BeautifulSoup
# from bs4 import BeautifulSoup


# %% ######################################################################
Expand Down
32 changes: 31 additions & 1 deletion content/assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,15 +181,45 @@ code {
padding: 0 0px;
border-bottom: 2.5px solid lightgrey;
width: 100%;
/* relative position is needed for the img positioning */
position: relative;

}

.topbar img {
height: 30px;
width: auto;

/* Center img around topbar */
/* ------------------------ */
position: absolute;
left: 50%;
/* 'left: 50%' centers the around the topbar */
transform: translateX(-50%);
/* the transform offset the images width */

/* Center img around remaining space */
/* --------------------------------- */
/* margin-left: auto; */
/* margin-right: auto; */

/* Center img around whole page */
/* ---------------------------- */
/* position: absolute; */
/* left: 50%; */
/* transform: translateX(-50%); */
}

/* Social media icons */
/* ------------------ */

.socials-container {
margin-left: auto;
padding: 0px 20px;
height: inherit;
}



/* Collapse navbar */
/* --------------- */

Expand Down

0 comments on commit 4aea855

Please sign in to comment.