-
Notifications
You must be signed in to change notification settings - Fork 91
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
Anna's Portfolio Website : First Project of Code Excursion 2021 #45
Open
anna-staub
wants to merge
2
commits into
Technigo:master
Choose a base branch
from
anna-staub:master
base: master
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
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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 |
---|---|---|
@@ -1,13 +1,3 @@ | ||
# Project Name | ||
# Portfolio Website | ||
This is a little portfolio-website for myself. It's very basic and I intend to develop it further. | ||
|
||
Replace this readme with your own information about your project. | ||
|
||
Start by briefly describing the assignment in a sentence or two. Keep it short and to the point. | ||
|
||
## The problem | ||
|
||
Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next? | ||
|
||
## View it live | ||
|
||
Have you deployed your project somewhere? Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about. |
This file contains 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,182 @@ | ||
|
||
/*__General_______________________________________________________________________________*/ | ||
body{ | ||
margin: 0; | ||
padding-bottom: 100px; | ||
font-family: Helvetica, Arial, sans-serif; | ||
line-height: 140%; | ||
} | ||
|
||
a{ | ||
color: black; | ||
text-decoration: none; | ||
} | ||
a:hover{ | ||
font-weight: bold; | ||
} | ||
/*__Navigation_______________________________________________________________________________*/ | ||
#navigation{ | ||
display: flex; | ||
justify-content: space-between; | ||
/*background-color: thistle;*/ | ||
padding: 20px 80px; | ||
font-size: 32px; | ||
margin-top: 20px; | ||
|
||
} | ||
#navigationleft{ | ||
display: flex; | ||
justify-content: flex-start; | ||
/*background-color: teal;*/ | ||
|
||
} | ||
#navigationright{ | ||
display: flex; | ||
justify-content: flex-end; | ||
Comment on lines
+18
to
+35
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice usage of flexbox! |
||
/*background-color: teal;*/ | ||
} | ||
#navigationright a{ | ||
padding-left: 80px; | ||
} | ||
#instalink{ | ||
display: flex; | ||
justify-content: flex-end; | ||
padding-right: 80px; | ||
margin: 20px 0; | ||
/*background-color: tomato;*/ | ||
} | ||
#instalink img{ | ||
width: 30px; | ||
} | ||
/*__index.html_______________________________________________________________________________*/ | ||
#startimage{ | ||
padding: 30px; | ||
display: flex; | ||
justify-content: center; | ||
/*border: solid red 5px;*/ | ||
} | ||
#startimage img{ | ||
/*border: solid blue 4px;*/ | ||
width: 50%; | ||
} | ||
/*__work.html_______________________________________________________________________________*/ | ||
#bigworkgallery{ | ||
display: flex; | ||
justify-content: center; | ||
/*background-color: yellow;*/ | ||
} | ||
#workgallery{ | ||
width: 90%; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
justify-content: flex-start; | ||
align-content: flex-start; | ||
/*background-color: aqua; */ | ||
} | ||
#gallerybox{ | ||
display: flex; | ||
justify-content: center; | ||
width: 25%; | ||
height: auto; | ||
/*background-color: cadetblue;*/ | ||
} | ||
#gallerybox a{ | ||
display: flex; | ||
align-content: center; | ||
width: 80%; | ||
height: auto; | ||
margin-top: 20px; | ||
object-fit: contain; | ||
/*border: solid magenta 1px;*/ | ||
} | ||
.galleryimage{ | ||
width: 100%; | ||
height: auto; | ||
object-fit: contain; | ||
/*border: solid magenta 1px;*/ | ||
} | ||
/*__[single_work].html_______________________________________________________________________________*/ | ||
#singleworkcontainer{ | ||
display: flex; | ||
justify-content: space-around; | ||
/*border: solid blue 4px;*/ | ||
margin: 100px 0; | ||
|
||
} | ||
#bigimage{ | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: flex-start; | ||
width: 80%; | ||
padding: 20px; | ||
/*border: solid red 3px;*/ | ||
|
||
} | ||
#bigimage img{ | ||
display: flex; | ||
width: 600px; | ||
|
||
} | ||
.singleworkdescription{ | ||
/*border: solid forestgreen 3px;*/ | ||
text-align: end; | ||
} | ||
h1{ | ||
margin: 0; | ||
font-weight: normal; | ||
} | ||
p{ | ||
margin-bottom: 40px; | ||
} | ||
/*__about.html_______________________________________________________________________________*/ | ||
#aboutcontainer{ | ||
display: flex; | ||
justify-content: space-around; | ||
margin:100px 80px 0 80px; | ||
|
||
} | ||
.boxleft{ | ||
padding: 50px 0; | ||
width: 30%; | ||
|
||
} | ||
.boxmiddle{ | ||
padding: 50px 0; | ||
width: 30%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
.boxmiddle img{ | ||
width: 80%; | ||
} | ||
.boxright{ | ||
padding: 50px 0; | ||
width: 30%; | ||
text-align: right; | ||
} | ||
.top{ | ||
margin-bottom: 90px; | ||
} | ||
/*__contact.html_______________________________________________________________________________*/ | ||
#contactcontainer{ | ||
display: flex; | ||
justify-content: space-around; | ||
margin-top: 50px; | ||
} | ||
.contactboxleft{ | ||
width: 40%; | ||
justify-content: center; | ||
align-items: flex-start; | ||
} | ||
.contactboxleft img{ | ||
width: 100%; | ||
} | ||
.contactboxright{ | ||
width: 30%; | ||
} | ||
p.contactparagraph{ | ||
margin-bottom: 40px; | ||
|
||
} |
This file contains 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,44 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../css/style.css"> | ||
<title>About</title> | ||
</head> | ||
<body> | ||
<div id="navigation"> | ||
<div id="navigationleft"> | ||
<a href="../index.html">Anna Staub</a> | ||
</div> | ||
<div id="navigationright"> | ||
<a href="./work.html">Work</a> <a href="./about.html"><b>About</b></a> <a href="./contact.html">Contact</a> | ||
</div> | ||
</div> | ||
|
||
<a id="instalink" href="https://instagram.com/anna.staub.illustration" target="_blank"><img src="../images/instagram.png"></a> | ||
|
||
<div id="aboutcontainer"> | ||
<div class="boxleft"> | ||
<h1> About</h1> | ||
<p> I'm a young illustrator based in Zurich, though I currently spend most of my time working as a librarian and studying Information Science. <br> To my big suprise I find that I like the technical subjects like database management systems and architecture of information systems most. <br> Now I've just started discovering the world of Frontend Devlopment and code, and I am very very excited to learn more about web development!</p> | ||
</div> | ||
<div class="boxmiddle"> | ||
<img src="../images/eyeblow.jpg" alt="image"> | ||
</div> | ||
<div class="boxright"> | ||
<div class="top"> | ||
<h1>Education</h1> | ||
<p>2016 - 2019 <br> Bachelor Illustration Fiction at Lucerne School of Art & Design <br><br> 2015 - 2016 <br> Design Propaedeutic at ZHdK</p> | ||
</div> | ||
|
||
<h1>Exhibitions</h1> | ||
<p>2018 <br>Schau!Werk, Zurich <br><br> 2019 <br> Werkschau, Lucerne School of Art & Design </p> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</body> | ||
</html> |
This file contains 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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../css/style.css"> | ||
<title>Contact</title> | ||
</head> | ||
<body> | ||
<div id="navigation"> | ||
<div id="navigationleft"> | ||
<a href="../index.html">Anna Staub</a> | ||
</div> | ||
<div id="navigationright"> | ||
<a href="./work.html">Work</a> <a href="./about.html">About</a> <a href="./contact.html"> <b>Contact</b></a> | ||
</div> | ||
</div> | ||
|
||
<a id="instalink" href="https://instagram.com/anna.staub.illustration" target="_blank"><img src="../images/instagram.png"></a> | ||
|
||
<div id="contactcontainer"> | ||
<div class="contactboxleft"> | ||
<img src="../images/mail.png" alt="image"> | ||
</div> | ||
<div class="contactboxright"> | ||
<p class="contactparagraph"> | ||
<h1>E-Mail</h1> | ||
<p><a href="mailto:info@anna-staub.ch">info@anna-staub.ch</a></p> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</body> | ||
</html> |
This file contains 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,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../../css/style.css"> | ||
<title>Cat</title> | ||
</head> | ||
<body> | ||
<div id="navigation"> | ||
<div id="navigationleft"> | ||
<a href="../../index.html">Anna Staub</a> | ||
</div> | ||
<div id="navigationright"> | ||
<a href="../work.html">Work</a> <a href="../about.html">About</a> <a href="../contact.html">Contact</a> | ||
</div> | ||
</div> | ||
<a id="instalink" href="https://instagram.com/anna.staub.illustration" target="_blank"><img src="../../images/instagram.png"></a> | ||
|
||
|
||
<div id="singleworkcontainer"> | ||
<div id="bigimage"> | ||
<img src="../../images/catbend.jpg"> | ||
<div class="singleworkdescription"> | ||
<h1>Cat</h1> | ||
<p>Personal Work</p> | ||
<h1>Date</h1> | ||
<p>2020</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
|
This file contains 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,34 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../../css/style.css"> | ||
<title>Happy Dog</title> | ||
</head> | ||
<body> | ||
<div id="navigation"> | ||
<div id="navigationleft"> | ||
<a href="../../index.html">Anna Staub</a> | ||
</div> | ||
<div id="navigationright"> | ||
<a href="../work.html">Work</a> <a href="../about.html">About</a> <a href="../contact.html">Contact</a> | ||
</div> | ||
</div> | ||
<a id="instalink" href="https://instagram.com/anna.staub.illustration" target="_blank"><img src="../../images/instagram.png"></a> | ||
|
||
|
||
<div id="singleworkcontainer"> | ||
<div id="bigimage"> | ||
<img src="../../images/dog.jpg"> | ||
<div class="singleworkdescription"> | ||
<h1>Happy Dog</h1> | ||
<p>Personal Work</p> | ||
<h1>Date</h1> | ||
<p>2020</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains 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,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="../../css/style.css"> | ||
<title>Happy Fox</title> | ||
</head> | ||
<body> | ||
<div id="navigation"> | ||
<div id="navigationleft"> | ||
<a href="../../index.html">Anna Staub</a> | ||
</div> | ||
<div id="navigationright"> | ||
<a href="../work.html">Work</a> <a href="../about.html">About</a> <a href="../contact.html">Contact</a> | ||
</div> | ||
</div> | ||
<a id="instalink" href="https://instagram.com/anna.staub.illustration" target="_blank"><img src="../../images/instagram.png"></a> | ||
|
||
|
||
<div id="singleworkcontainer"> | ||
<div id="bigimage"> | ||
<img src="../../images/foxinsnow.jpg"> | ||
<div class="singleworkdescription"> | ||
<h1>Happy Fox</h1> | ||
<p>Personal Work</p> | ||
<h1>Date</h1> | ||
<p>2019</p> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
|
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.
Hi Anna! Nice to meet you! I'm Estefanía and i'll be taking a look at your code today. 👋😃