forked from AdaGold/group-fansite
-
Notifications
You must be signed in to change notification settings - Fork 35
Queues - Tehut Getahun --Static Site #22
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
tehut
wants to merge
9
commits into
Ada-C7:master
Choose a base branch
from
tehut: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
9 commits
Select commit
Hold shift + click to select a range
8b0fd02
created index, normalize and styles files
tehut 5f556e7
html structure for index
tehut 29b77e7
css structure for styles.css
tehut 89d9a69
made headers, footers and nav aside consistent among child pages
tehut 6849daf
added google fonts
tehut 9d8e1da
completed contact page
tehut 52e8c35
animista animation working
tehut 69a2287
links match across site
tehut ce5b4ff
alt tags
tehut 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
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,90 @@ | ||
| /*General Styling*/ | ||
| @import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded'); | ||
| @import url('https://fonts.googleapis.com/css?family=Pontano+Sans'); | ||
|
|
||
| /*Header Styling*/ | ||
| #main-body{ | ||
| margin-top: 120px; | ||
| margin-left: 0px; | ||
| margin-right: 0px; | ||
| padding-left: 0px; | ||
| padding-right:0px; | ||
| } | ||
|
|
||
| body a{ | ||
| color: #B9C9D9; | ||
| text-decoration: none; | ||
| text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal; | ||
|
|
||
| } | ||
|
|
||
| header nav > ul{ | ||
| display: inline-block; | ||
| } | ||
|
|
||
| aside{ | ||
| vertical-align: top; | ||
| width: 20%; | ||
| display: inline-block; | ||
| } | ||
| aside a{ | ||
| color:gray; | ||
| font-size: 25px; | ||
| text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal; | ||
|
|
||
| } | ||
|
|
||
| aside [class*=icono-] { | ||
| color: gray; | ||
| } | ||
|
|
||
|
|
||
| #text-body >article{ | ||
|
|
||
| width: 100%; | ||
| display: inline-block; | ||
| border-radius: 10px; | ||
| vertical-align: top; | ||
| } | ||
|
|
||
| #text-body article:nth-child(odd){ | ||
| background: rgba(157,194,213,.3); | ||
| } | ||
|
|
||
|
|
||
| #text-body a{ | ||
| color:white; | ||
| text-decoration: none; | ||
| } | ||
| #text-body h2{ | ||
| font-weight: 100; | ||
| text-align: center; | ||
| font-family:'Stint Ultra Expanded', cursive; | ||
| } | ||
|
|
||
|
|
||
| #text-body{ | ||
| width: 69%; | ||
| display: inline-block; | ||
| } | ||
|
|
||
| .contact_left{ | ||
| display:inline-block; | ||
| width: 79%; | ||
| } | ||
| .contact_right{ | ||
| display:inline-block; | ||
| width: 10%; | ||
| vertical-align: top;} | ||
|
|
||
| .contact_left img{ | ||
| float:left; | ||
| border-radius: 20px; | ||
| margin-top: 9px; | ||
| width: 60%; | ||
| } | ||
|
|
||
| nav.footer{ | ||
| position:absolute; | ||
| bottom: 100px; | ||
| } |
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,87 @@ | ||
| @import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded'); | ||
| @import url('https://fonts.googleapis.com/css?family=Pontano+Sans'); | ||
|
|
||
| /*General Styling*/ | ||
| body *{ | ||
| margin: 0px; | ||
| padding: 0px; | ||
| border-width: 0px; | ||
| } | ||
|
|
||
| body{ | ||
| font-family:'Pontano Sans',Helvetica,sans-serif; | ||
|
|
||
| background: #3a7bd5; /* fallback for old browsers */ | ||
| background: -webkit-linear-gradient(to left, #3a7bd5 , #3a6073); /* Chrome 10-25, Safari 5.1-6 */ | ||
| background: linear-gradient(to left, #3a7bd5 , #3a6073); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ | ||
|
|
||
| } | ||
|
|
||
| body a{ | ||
| color: #B9C9D9; | ||
| text-decoration: none; | ||
| } | ||
|
|
||
| /*Header Styling*/ | ||
| /*Header animation*/ | ||
| @keyframes fade-in { | ||
| 0% { | ||
| opacity: 0; | ||
| } | ||
| 100% { | ||
| opacity: 1; | ||
| } | ||
| } | ||
|
|
||
| header h2{ | ||
| display:inline-block; | ||
| font-family: 'Stint Ultra Expanded',Helvetica, serif; | ||
| width: 50%; | ||
| color:gray; | ||
| font-style: italic; | ||
| font-size:30px; | ||
| animation-name: fade-in; | ||
| animation-duration: 10s; | ||
| animation-delay: -1s; | ||
| font-size: 50px; | ||
| font-family: "Stint Ultra Expanded", cursive; | ||
| text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal; | ||
|
|
||
| } | ||
|
|
||
| header nav:first-of-type{ | ||
| display: inline-block; | ||
| width: 39%; | ||
| text-align: right; | ||
|
|
||
| } | ||
| header nav > ul{ | ||
| display: inline-block; | ||
| } | ||
|
|
||
| nav li { | ||
| display: inline-block; | ||
| padding: .1em; | ||
| } | ||
| /*Splash Section Styling*/ | ||
| #splash { | ||
| height: 200px; | ||
| vertical-align: text-bottom; | ||
| text-align: center; | ||
| padding-top: 20%; | ||
| margin-top: 10%; | ||
| margin-left: 0px | ||
| margin-bottom: 30%; | ||
| background-image: url('/Users/tehutgetahun/ada/que/week6/hw/Static-Site/assets/photos/market.JPG'); | ||
| opacity: .5; | ||
| background-size:cover; | ||
| background-repeat: no-repeat; | ||
| background-position: center; | ||
| } | ||
|
|
||
|
|
||
|
|
||
| nav.footer{ | ||
| position:absolute; | ||
| bottom: 100px; | ||
| } | ||
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,58 @@ | ||
| /*General Styling*/ | ||
| @import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded'); | ||
| @import url('https://fonts.googleapis.com/css?family=Pontano+Sans'); | ||
|
|
||
| /*Header Styling*/ | ||
| #main-body{ | ||
| margin-top: 120px; | ||
| } | ||
| header nav > ul{ | ||
| display: inline-block; | ||
|
|
||
| } | ||
|
|
||
| aside{ | ||
| vertical-align: top; | ||
| width: 30%; | ||
| display: inline-block; | ||
| } | ||
| aside [class*=icono-] { | ||
| color: gray; | ||
| } | ||
| aside a{ | ||
| color:gray; | ||
| font-size: 25px; | ||
| text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal; | ||
|
|
||
| } | ||
|
|
||
| #text-body >article{ | ||
|
|
||
| width: 90%; | ||
| display: inline-block; | ||
| border-radius: 10px; | ||
| vertical-align: top; | ||
| margin-bottom: 8%; | ||
| } | ||
| #text-body a{ color:white;text-decoration: none} | ||
| #text-body h2{ | ||
| font-weight: 100; | ||
| text-align: center; | ||
| font-family:'Stint Ultra Expanded', cursive;} | ||
|
|
||
| #text-body article:nth-child(odd){ | ||
| background: rgba(157,194,213,.3); | ||
| } | ||
| #text-body article:nth-child(even){ | ||
| background: rgba(220,184,188,.3); | ||
| } | ||
| #text-body{ | ||
| width: 65%; | ||
| display: inline-block; | ||
| } | ||
| /*Splash Section Styling*/ | ||
|
|
||
| nav.footer{ | ||
| position:absolute; | ||
| bottom: 100px; | ||
| } |
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,66 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>Tehut Getahun</title> | ||
| <link rel="stylesheet" href="assets/stylesheets/styles.css"> | ||
| <link rel="stylesheet" href="assets/stylesheets/work.css"> | ||
| <link rel="stylesheet" href="http://icono-49d6.kxcdn.com/icono.min.css"> | ||
| <link href="https://fonts.googleapis.com/css?family=Pontano+Sans" rel="stylesheet"> | ||
| <link href="https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded" rel="stylesheet"> | ||
|
|
||
| </head> | ||
| <body> | ||
| <header> | ||
| <h2>Tehut Getahun</h2> | ||
|
|
||
| </header | ||
|
|
||
| <main> | ||
| <section id="main-body"> | ||
| <aside> | ||
| <ul> | ||
| <li ><a href="index.html"> <i class="icono-home"> </i> Home </a></li> | ||
| <li><a href="work.html"> <i class="icono-terminal"> </i> My Work</a> </li> | ||
| <li><a href="blog.html"> <i class="icono-document"> </i> Blog </a> </li> | ||
| <li><a href="contact.html"> <i class="icono-mail"> </i> Contact </a> </li> | ||
| </ul> | ||
| </aside> | ||
|
|
||
| <section id="text-body"> | ||
| <article> | ||
| <a href="https://www.instagram.com/p/BRxOlMsg-8t/"><h2>Gentle Beginnings</h2></a> | ||
| <p> | ||
| Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut | ||
| </p> | ||
| </article> | ||
|
|
||
| <article> | ||
| <a href="https://www.instagram.com/p/BRzOJXgAwQx/"><h2>Smiling Sammies</h2></a> | ||
| <p> | ||
| Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut </p> | ||
| </article> | ||
|
|
||
| <article> | ||
| <a href="https://www.instagram.com/p/BRzN9zhgMdD/"><h2>Waiting for Mom</h2></a> | ||
| <p> | ||
| Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut </p> | ||
| </article> | ||
| </section> | ||
| </main> | ||
|
|
||
| <footer> | ||
| <section> | ||
| <nav class= "footer"> | ||
| <ul> | ||
| <li ><a href="index.html"> Home </a></li> | ||
| <li><a href="work.html"> My Work</a> </li> | ||
| <li><a href="blog.html"> Blog </a> </li> | ||
| <li><a href="contact.html"> Contact </a> </li> | ||
| </ul> | ||
| </nav> | ||
| </section> | ||
| </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,65 @@ | ||
| <!DOCTYPE html> | ||
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <title>Tehut Getahun</title> | ||
| <link rel="stylesheet" href="assets/stylesheets/styles.css"> | ||
| <link rel="stylesheet" href="assets/stylesheets/contact.css"> | ||
| <link rel="stylesheet" href="http://icono-49d6.kxcdn.com/icono.min.css"> | ||
| <link href="https://fonts.googleapis.com/css?family=Pontano+Sans" rel="stylesheet"> | ||
| <link href="https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded" rel="stylesheet"> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <h2>Tehut Getahun</h2> | ||
|
|
||
| </header | ||
|
|
||
| <main> | ||
| <section id="main-body"> | ||
| <aside> | ||
| <ul> | ||
| <li ><a href="index.html"> <i class="icono-home" alt="house icon"> </i> Home </a></li> | ||
| <li><a href="work.html"> <i class="icono-terminal"alt="laptop icon"> </i> My Work</a> </li> | ||
| <li><a href="blog.html"> <i class="icono-document" alt="document icon" > </i> Blog </a> </li> | ||
| <li><a href="contact.html"> <i class="icono-mail" alt="envelope icon"> </i> Contact </a> </li> | ||
| </ul> | ||
| </aside> | ||
|
|
||
| <section id="text-body"> | ||
| <article> | ||
| <section class="contact_right"> | ||
| <!-- <h4>Tehut Getahun</h4><p> --> | ||
| <a href="http://facebook.com"><img alt="facebook logo" src= "/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/facebook-wrap.png"></a> | ||
| <a href="http://twtter.com"><img alt="facebook logo" src= "/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/twitter-wrap.png"></a> | ||
| </section> | ||
| <section class="contact_left"> | ||
| <img alt="a young woman, Tehut Getahun" src="/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/Tehut2.jpg"> | ||
|
|
||
| <p>Tehut Getahun is a Montessori kid who likes to say that she grew up babysitting, grew while a substitute teacher and grew into leadership as a Montessori teacher and administrator.</p> | ||
|
|
||
| <p>After graduating from the University of Washington's Foster School of Business Tehut pursued a joint M.Ed and AMI Montessori Teaching Certificate at Loyola Maryland and the Montessori Institute Northwest. Tehut currently serves at the Business Manager | ||
| & Developmental Director for Wedgwood Montessori Schools, whose two NE Seattle campuses have been the testing ground for WeLivePlayfully's pilot year.</p> | ||
| <p> Tehut is currently a student of Software Development at Ada Developer's Academy.</p> | ||
| </section> | ||
| </section> | ||
|
|
||
| </article> | ||
|
|
||
| </main> | ||
|
|
||
| <footer> | ||
| <section> | ||
| <nav class= "footer"> | ||
| <ul> | ||
| <li ><a href="index.html"> Home </a></li> | ||
| <li><a href="work.html"> My Work</a> </li> | ||
| <li><a href="blog.html"> Blog </a> </li> | ||
| <li><a href="contact.html"> Contact </a> </li> | ||
| </ul> | ||
| </nav> | ||
| </section> | ||
| </footer> | ||
|
|
||
| </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.
You've got an absolute path here, which includes your username! This means that your image won't load on anyone else's machine.
It's always better to use relative paths for this sort of thing. In this case it would be something like
assets/photos/market.JPG(note there's no leading/)