-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add link icons #7
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Gunn N Building</title> | ||
|
||
<!-- Stylesheets --> | ||
<link rel="stylesheet" href="css/index.css"> | ||
<link rel="stylesheet" href="css/404.css"> | ||
</head> | ||
<body> | ||
<div class="header"> | ||
<div class="container"> | ||
<h1 class="letter">N</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<h1>You seem to be lost.</h1> | ||
<a href="/" class="link">Take the golf cart back home?</a> | ||
</div> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
body { | ||
text-align: center; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.header { | ||
background-color: $theme-primary; | ||
//height: 250px; | ||
display: flex; | ||
align-items: flex-end; | ||
text-align: right; | ||
border-bottom: 5px solid $theme-shadow; | ||
box-shadow: 0 5px 0 $bg-shadow; | ||
|
||
.letter { | ||
color: $header-primary; | ||
text-shadow: 0 5px 0 $header-shadow; | ||
font-size: 48px; | ||
margin: 15px 0; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hover effect nonideal if the card doesn't do anything when clicked
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can keep the hover, and add a popover to each card where the person can have a bio. Sort of like when you click on a person in discord? Keep the hover, either way - it adds dimension. Example is here, I think it looks good?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, still seems to me that something should happen when clicked, but I guess we can add that in another PR