-
Notifications
You must be signed in to change notification settings - Fork 17
Alex Takamizawa #13
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
Open
AlexKT1022
wants to merge
11
commits into
FullstackAcademy:main
Choose a base branch
from
AlexKT1022:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Alex Takamizawa #13
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7b6f345
initial commit, added basic file structure
AlexKT1022 6d659d6
edited file structure (created css, js folders), added basic html to …
AlexKT1022 2857daa
implemented universal header "component"
AlexKT1022 a564edb
added more page-specific css files, log statement to index.js, basic …
AlexKT1022 4c0e52d
added basic card layout to portfolio page
AlexKT1022 d3c26a4
added container for portfolio cards
AlexKT1022 0ee3416
added about page html/css code
AlexKT1022 c39694c
added footer universal element, added to all pages via dom query
AlexKT1022 6ab58ba
added contact page, basic html
AlexKT1022 86a18e3
reworked html layout
AlexKT1022 e774bde
cleaned up file and html structure, added some starting mobile respon…
AlexKT1022 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>About</title> | ||
<link rel="stylesheet" href="./css/style.css" /> | ||
<link rel="stylesheet" href="./css/about.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="header-logo">Alex Takamizawa</div> | ||
<div class="header-nav"> | ||
<a href="./index.html">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./portfolio.html">Portfolio</a> | ||
<a href="./contact.html">Contact</a> | ||
</div> | ||
</header> | ||
<main> | ||
<h1>About</h1> | ||
<div> | ||
<h2>Who I am:</h2> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad | ||
minim veniam, quis nostrud exercitation ullamco laboris nisi ut | ||
aliquip ex ea commodo consequat. Duis aute irure dolor in | ||
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla | ||
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in | ||
culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</div> | ||
<h2>Some things I like doing:</h2> | ||
<div class="hobby-container"> | ||
<h3>Cooking</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad | ||
minim veniam, quis nostrud exercitation ullamco laboris nisi ut | ||
aliquip ex ea commodo consequat. Duis aute irure dolor in | ||
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla | ||
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in | ||
culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
<img | ||
src="https://thewoksoflife.com/wp-content/uploads/2019/02/three-cup-chicken-8.jpg" | ||
alt="My go-to recipe is three-cup chicken." | ||
/> | ||
</div> | ||
<hr /> | ||
<div class="hobby-container-reverse"> | ||
<h3>Video Games</h3> | ||
<img | ||
src="https://1000logos.net/wp-content/uploads/2020/09/Final-Fantasy-XIV-Logo.png" | ||
alt="I currently mostly play Final Fantasy XIV in my free time." | ||
/> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad | ||
minim veniam, quis nostrud exercitation ullamco laboris nisi ut | ||
aliquip ex ea commodo consequat. Duis aute irure dolor in | ||
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla | ||
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in | ||
culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
</div> | ||
<hr /> | ||
<div class="hobby-container"> | ||
<h3>Reading</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad | ||
minim veniam, quis nostrud exercitation ullamco laboris nisi ut | ||
aliquip ex ea commodo consequat. Duis aute irure dolor in | ||
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla | ||
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in | ||
culpa qui officia deserunt mollit anim id est laborum. | ||
</p> | ||
<img | ||
src="https://m.media-amazon.com/images/I/81aS9JndklL.jpg" | ||
alt="One of my favorite recent reads is Crying in H Mart." | ||
/> | ||
</div> | ||
</main> | ||
<footer> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-envelope.svg" | ||
alt="email" | ||
/> | ||
<a | ||
href="https://github.com/AlexKT1022" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-github.svg" | ||
alt="github" | ||
/> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/in/alex-takamizawa-a8793b206/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-linkedin.svg" | ||
alt="lnkedin" | ||
/> | ||
</a> | ||
</footer> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Contact</title> | ||
<link rel="stylesheet" href="./css/style.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="header-logo">Alex Takamizawa</div> | ||
<div class="header-nav"> | ||
<a href="./index.html">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./portfolio.html">Portfolio</a> | ||
<a href="./contact.html">Contact</a> | ||
</div> | ||
</header> | ||
<main> | ||
<h1>Contact</h1> | ||
<h2>Say Hello!</h2> | ||
<div> | ||
<h3>Subject:</h3> | ||
<input type="text" /> | ||
<h3>Body:</h3> | ||
<input type="text" /> | ||
</div> | ||
<button>Submit</button> | ||
</main> | ||
<footer> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-envelope.svg" | ||
alt="email" | ||
/> | ||
<a | ||
href="https://github.com/AlexKT1022" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-github.svg" | ||
alt="github" | ||
/> | ||
</a> | ||
<a | ||
href="https://www.linkedin.com/in/alex-takamizawa-a8793b206/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<img | ||
class="footer-icon" | ||
src="./assets/icons/fa-linkedin.svg" | ||
alt="lnkedin" | ||
/> | ||
</a> | ||
</footer> | ||
</body> | ||
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.hobby-container { | ||
display: grid; | ||
grid-template-columns: 3fr 1fr; | ||
|
||
p { | ||
grid-column: 1; | ||
} | ||
|
||
img { | ||
height: 10%; | ||
grid-column: 2; | ||
height: 25vh; | ||
} | ||
} | ||
|
||
.hobby-container-reverse { | ||
display: grid; | ||
grid-template-columns: 1fr 3fr; | ||
|
||
p { | ||
grid-column: 2; | ||
} | ||
|
||
img { | ||
height: 10%; | ||
grid-column: 1; | ||
height: 25vh; | ||
} | ||
} | ||
|
||
@media (width < 600px) { | ||
body { | ||
margin: 0; | ||
} | ||
|
||
main img { | ||
display: none; | ||
} | ||
} |
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
main { | ||
display: grid; | ||
grid-template-rows: 2; | ||
grid-template-columns: 2; | ||
} | ||
|
||
h1 { | ||
grid-row: 1; | ||
grid-column: 1 / -1; | ||
} | ||
|
||
p { | ||
grid-row: 2; | ||
grid-column: 1; | ||
} | ||
|
||
img { | ||
grid-row: 2; | ||
grid-column: 2; | ||
} | ||
|
||
.quote { | ||
grid-row: 3; | ||
grid-column: 1 / -1; | ||
} | ||
|
||
@media (width < 600px) { | ||
} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.portfolio-card { | ||
display: grid; | ||
grid-template-columns: 2; | ||
grid-template-rows: 3; | ||
width: 80vh; | ||
} | ||
|
||
.card-banner { | ||
grid-column: 1 / 3; | ||
grid-row: 1; | ||
width: 100%; | ||
} | ||
|
||
.project-title { | ||
grid-column: 1 / 3; | ||
grid-row: 2; | ||
text-decoration: none; | ||
} | ||
|
||
.project-description { | ||
grid-column: 1; | ||
grid-row: 3; | ||
} | ||
|
||
.project-stack { | ||
grid-column: 2; | ||
grid-row: 3; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
* { | ||
box-sizing: border-box; | ||
margin: 0; | ||
padding: 0; | ||
font-size: 20px; | ||
} | ||
|
||
body { | ||
background-color: #c8d5b9; | ||
margin-left: 100px; | ||
margin-right: 100px; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
header { | ||
background-color: #8fc0a9; | ||
height: 50px; | ||
display: flex; | ||
justify-content: space-between; | ||
position: fixed; | ||
left: 0; | ||
right: 0; | ||
top: 0; | ||
|
||
a { | ||
color: black; | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
main { | ||
background-color: #faf3dd; | ||
flex-grow: 1; | ||
padding-top: 100px; | ||
padding-bottom: 100px; | ||
} | ||
|
||
footer { | ||
background-color: #8fc0a9; | ||
height: 50px; | ||
text-align: center; | ||
display: flex; | ||
justify-content: space-around; | ||
position: fixed; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
} | ||
|
||
div { | ||
margin: 5px; | ||
padding: 5px; | ||
} | ||
|
||
hr { | ||
margin-left: 5px; | ||
margin-right: 5px; | ||
margin-top: 10px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.header-nav { | ||
display: flex; | ||
justify-content: space-between; | ||
gap: 10px; | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
} | ||
|
||
.footer-icon { | ||
height: 50px; | ||
} | ||
|
||
@media (width < 600px) { | ||
body { | ||
margin: 0; | ||
} | ||
|
||
main img { | ||
display: none; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
What's going on here? 🤔