-
Notifications
You must be signed in to change notification settings - Fork 47
Branches - Emily Ball #28
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
base: master
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 |
|---|---|---|
|
|
@@ -2,6 +2,9 @@ | |
| <html> | ||
| <head> | ||
| <meta charset="utf-8"> | ||
| <LINK REL=StyleSheet HREF="normalize.css"> | ||
| <LINK REL=StyleSheet HREF="styles.css"> | ||
| <link href="https://fonts.googleapis.com/css?family=Mansalva&display=swap" rel="stylesheet"> | ||
| <title>Startrly</title> | ||
| </head> | ||
| <body> | ||
|
|
@@ -23,62 +26,68 @@ | |
| </nav> | ||
|
|
||
|
|
||
| <section> | ||
| <section class="heading-sect"> | ||
| <h1>Startrly</h1> | ||
| <sub>A catchy tagline for a great solution</sub> | ||
| <a href="#">Some Call to Action</a> | ||
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class = "quote-sect"> | ||
| <blockquote> | ||
| Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. | ||
| </blockquote> | ||
| <p> | ||
| <p class="quote-author"> | ||
|
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. i really like how youre using your classes. |
||
| Mx. Lorem | ||
| </p> | ||
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class ="why-sect"> | ||
| <h2>Why?</h2> | ||
| <ul> | ||
| <li> | ||
| <img src="http://via.placeholder.com/100x100" /> | ||
| <strong>Comfortable</strong> | ||
| <p> | ||
| Et quas molestias excepturi sint occaecati cupiditate non providents, ut aut reiciendis voluptatibus maiores. | ||
| </p> | ||
| <div class="whys"> | ||
| <strong>Comfortable</strong> | ||
| <p> | ||
| Et quas molestias excepturi sint occaecati cupiditate non providents, ut aut reiciendis voluptatibus maiores. | ||
| </p> | ||
| </div> | ||
| </li> | ||
| <li> | ||
| <img src="http://via.placeholder.com/100x100" /> | ||
| <strong>Robust</strong> | ||
| <p> | ||
| At vero eos et accusamus et iusto odio dignissimos ducimus qui. Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam. | ||
| </p> | ||
| <div class="whys"> | ||
| <strong>Robust</strong> | ||
| <p> | ||
| At vero eos et accusamus et iusto odio dignissimos ducimus qui. Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam. | ||
| </p> | ||
| </div> | ||
| </li> | ||
| <li> | ||
| <img src="http://via.placeholder.com/100x100" /> | ||
| <strong>Convenient</strong> | ||
| <p> | ||
| Itaque earum rerum hic tenetur a sapiente delectus. | ||
| </p> | ||
| <div class="whys"> | ||
| <strong>Convenient</strong> | ||
| <p> | ||
| Itaque earum rerum hic tenetur a sapiente delectus. | ||
| </p> | ||
| </div> | ||
| </li> | ||
| </ul> | ||
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class = "quote-sect"> | ||
| <blockquote> | ||
| Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. | ||
| </blockquote> | ||
| <p> | ||
| <p class="quote-author"> | ||
| Mx. Ipsum | ||
| </p> | ||
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class ="team-sect"> | ||
| <h2>Meet the team</h2> | ||
| <ul> | ||
| <li> | ||
|
|
@@ -110,7 +119,7 @@ <h2>Meet the team</h2> | |
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class ="sponsor-sect"> | ||
| <h2>Sponsors</h2> | ||
| <ul> | ||
| <li> | ||
|
|
@@ -132,10 +141,10 @@ <h2>Sponsors</h2> | |
| </section> | ||
|
|
||
|
|
||
| <section> | ||
| <section class="footer-sect"> | ||
| <div> | ||
| <h3>Support</h3> | ||
| <ul> | ||
| <ul > | ||
| <li> | ||
| Demo | ||
| </li> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,204 @@ | ||
| body { | ||
| font-family: Helvetica, sans-serif; | ||
| margin-top: 3%; | ||
| margin-bottom: 3%; | ||
| } | ||
|
|
||
| section { | ||
| border-bottom: solid grey 2px; | ||
| padding: 2% | ||
| } | ||
|
|
||
| section:nth-last-of-type(even) { | ||
|
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. alright! great use of this element. |
||
| background-color: lavender | ||
| } | ||
|
|
||
| h2 { | ||
| display: flex; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| ul { | ||
| list-style: none | ||
| } | ||
|
|
||
| blockquote { | ||
| font-family: 'Mansalva', cursive; | ||
| font-style: italic; | ||
| display: flex; | ||
| flex-wrap: wrap; | ||
| line-height: 2em; | ||
| font-size: 1.5rem; | ||
| flex-direction: row; | ||
| padding: 5%; | ||
| display: inline-block; | ||
| padding-bottom: 0 | ||
| } | ||
|
|
||
| blockquote:before { | ||
| content: open-quote; | ||
| } | ||
| blockquote:after { | ||
| content: close-quote; | ||
| } | ||
|
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. this is so good. i'm going to take this into consideration next time i work with quotes. |
||
|
|
||
| .quote-author { | ||
| font-family: 'Mansalva', cursive; | ||
| font-style: italic; | ||
| display: flex; | ||
| line-height: 2em; | ||
| justify-content: flex-end; | ||
| align-items: flex-end; | ||
| padding: 5%; | ||
| padding-top: 0; | ||
| font-size: 1.5rem | ||
| } | ||
|
|
||
| .quote-author:before { | ||
| content: "-- "; | ||
| } | ||
|
|
||
| /* nav { | ||
| position: fixed; | ||
| } */ | ||
|
|
||
| nav ul { | ||
| display: grid; | ||
| grid-template-columns: 3fr 1fr .5fr; | ||
| font-weight: bold; | ||
| } | ||
|
|
||
| nav li:hover { | ||
| color: purple | ||
| } | ||
|
|
||
| .heading-sect { | ||
| display: flex; | ||
| justify-content: center; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .heading-sect h1 { | ||
| font-weight: bold; | ||
| font-size: 4em; | ||
| display: flex; | ||
| justify-content: center; | ||
| margin: 2rem; | ||
| margin-top: 16rem; | ||
| } | ||
|
|
||
| .heading-sect h1:hover{ | ||
| transform: scale(1.5) | ||
| } | ||
|
|
||
| .heading-sect sub { | ||
| font-weight: bold; | ||
| font-size: 2rem; | ||
| text-transform: capitalize; | ||
| margin: 1.5rem; | ||
| } | ||
|
|
||
| .heading-sect a { | ||
| border: solid black 4px; | ||
| border-color: lightgrey; | ||
| border-radius: 15px; | ||
| text-decoration: none; | ||
| color: black; | ||
| padding: 1.5rem; | ||
| font-size: 1.5rem; | ||
| margin: 3rem; | ||
| margin-bottom: 8rem | ||
| } | ||
| .heading-sect a:hover { | ||
| color:purple | ||
| } | ||
|
|
||
| .why-sect ul { | ||
| display: flex; | ||
| flex-direction: row; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .why-sect img { | ||
| max-width: 100px; | ||
| max-height: 100px; | ||
| padding: 5px; | ||
| float: left; | ||
| } | ||
|
|
||
| .whys { | ||
| padding-left: 3%; | ||
| max-width: 80%; | ||
| } | ||
|
|
||
| .team-sect { | ||
| border-bottom: none; | ||
| display: flex; | ||
| justify-content: center; | ||
| align-items: center; | ||
| flex-direction: column; | ||
| } | ||
|
|
||
| .team-sect li { | ||
| margin: 5%; | ||
| margin-top: 0; | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| flex-wrap: wrap; | ||
| } | ||
|
|
||
| .team-sect img{ | ||
| border-radius: 50%; | ||
| padding: 5px; | ||
| border: solid lightgrey 1px; | ||
| filter: grayscale(); | ||
| } | ||
|
|
||
| .team-sect img:hover { | ||
| border-radius: 0%; | ||
| } | ||
|
|
||
| .team-sect span:first-of-type { | ||
| margin: 5%; | ||
| } | ||
|
|
||
| .team-sect ul{ | ||
| display: flex; | ||
| flex-direction: row; | ||
| flex-wrap: wrap; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| .team-sect li{ | ||
| display: flex; | ||
| flex-direction: column; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .sponsor-sect ul{ | ||
| display: flex; | ||
| flex-direction: row; | ||
| flex-wrap: wrap; | ||
| justify-content: space-evenly; | ||
| } | ||
|
|
||
| .footer-sect { | ||
|
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. you gave your footer alot of attention and it works beautifully. |
||
| display: flex; | ||
| flex-direction: row; | ||
| border: none | ||
| } | ||
|
|
||
| .footer-sect ul { | ||
| padding: 0 | ||
| } | ||
|
|
||
| .footer-sect div { | ||
| margin: 5%; | ||
| margin-top: 0; | ||
| margin-bottom: 0; | ||
| } | ||
| .footer-sect div:first-of-type { | ||
| margin-left: 3% | ||
| } | ||
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.
great job using the fonts!