Skip to content
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 modified images/IBMlogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ title: "Project Name"
subtitle: "Subtitle"
format: html
---

```{=html}
<span class="dot">SL</span> &ensp;Samuel Lee&ensp;
```
```{=html}
<span class="dot">BK</span> &ensp;Bo Kulbacki&ensp;
```
<br>
---
Description: "Project Name"
---
Expand Down
30 changes: 27 additions & 3 deletions src/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/* Navbar Logo Size */
.navbar-logo {
max-height: 75px; /* Restrict the height of the logo */
margin-left: -20px;
margin-left: 0px;
}

/* Navbar Margin Sizing Target */
Expand Down Expand Up @@ -198,8 +198,33 @@ nav .nav-link i, nav .dropdown-item i {
align-items: center; /* Align arrow with text */
text-decoration: none;
width: 100%; /* Take full width of container */
justify-content: inherit;
}

/* Style the navigation next button - right align */
.nav-page-next{
justify-content: end; /* Justifies the navigation links to the end */
}

/* Style the navigation previous button - left align */
.nav-page-previous {
justify-content: start; /* Justifies the navigation links to the start */
}

/* Style the dot for the authors section */
.dot {
height: 25px;
width: 25px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
text-align: center;
color: white;
background-color: #0072C3;
font-size: 12pt
}


/* Only apply hover effect to nav items with content */
.nav-page:has(a):hover {
background-color: #E8E8E8;
Expand Down Expand Up @@ -241,7 +266,6 @@ nav .nav-link i, nav .dropdown-item i {
}



/* Footer Styling */
.footer {
font-size: 1rem; /* Base font size */
Expand Down Expand Up @@ -275,7 +299,7 @@ nav .nav-link i, nav .dropdown-item i {
.nav-footer-left img {
text-align: left;
vertical-align: top; /* Aligns image to the top */
margin-left: -10px; /* Aligns image to the IBM logo in the header */
margin-left: -20px; /* Aligns image to the IBM logo in the header */
}

/* Footer Center Section */
Expand Down