Skip to content

Commit

Permalink
added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
to7m committed Aug 5, 2024
1 parent cc0a103 commit 315848a
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public_html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>My Name is Thomas Howe</h1>
<a href="#">Scroll Down</a>
</header>
<aside>
<img src="T.png" id="t-initial">
<a href="index.html" id="home-link"><img src="logo.png" alt="Thomas Howe logo"></a>
<nav><ul>
<li><a href="about-me.html">About Me</a></li>
<li><a href="my-portfolio.html">My Portfolio</a></li>
Expand Down
Binary file added public_html/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 17 additions & 1 deletion public_html/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public_html/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions scss/_colours.scss
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
$black: rgb(0%, 0%, 0%);
$white: rgb(100%, 100%, 100%);
$blue: rgb(32%, 71%, 80%);
19 changes: 18 additions & 1 deletion scss/body/_aside.scss
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
@use "accessibility";
@use "text";
@use "colours";


aside {
grid-area: aside;
min-height: 100%;
width: 100%;
border-right: 3px solid colours.$blue;
display: flex;
flex-direction: column;
}

#home-link {
display: block;
width: 100%;
height: 160px;
border-bottom: 3px solid colours.$blue;

align-self: start;
img {
max-height: 100%;
max-width: 100%;
object-fit: cover;
}
}

.social-media-name { @include accessibility.non-bitmap-media-only; }
Expand Down

0 comments on commit 315848a

Please sign in to comment.