Skip to content
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

Cassandra Villarreal #1532

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 77 additions & 1 deletion great-idea/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,80 @@ h1, h2, h3, h4, h5 {
margin-bottom: 15px;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
.nav nav {
display: flex;
justify-content: space-around;
padding: 2%;
}
.nav .logo {
display: flex;
justify-content: flex-end;
}

.Big-content {
display: flex;
justify-content: space-evenly;
}

.Big-content .heading .main-heading {
display: flex;
flex-direction: column;
align-items: center;
font-size: 45px;
}

.heading {
display: flex;
justify-content: center;
flex-direction: column;
}

h5 {
display: inline-block;
border: solid;
}
.snippit {
display: flex;
}

.content {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.top {
display: flex;
justify-content: center;
padding: 3%
}
.Features {
width: 30%
}
.About {
width: 30%;
}
.middle-img {
display: flex;
justify-content: center;
}
.bottom {
display: flex;
justify-content: center;
padding: 3%;
}
.B {
width: 20%;
}

footer .contact {
display: inline-block;
padding-left: 10%;
padding-top: 5%;
width: 20%;
}
footer .copy {
display: block;
align-content: center;
padding-top: 3%;
padding-left: 35%;
}
109 changes: 107 additions & 2 deletions great-idea/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,114 @@
</head>

<body>
<section class = "nav">
<nav>
<a>
Services
</a>
<a>
Product
</a>
<a>
Vision
</a>
<a>
Features
</a>
<a>
About
</a>
<a>
Contact
</a>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
</nav>

<!-- Copy and paste your HTML from the first UI project here -->

</section>


<section class = "Big-content">
<div class = "heading">
<div class = "main-heading">
<h1>Innovation</h1>
<h1>On</h1>
<h1>Demand</h1>
</div>
<h5>
Get Started
</h5>
</div>
<img class = "snippet" src="img/header-img.png" alt="Image of a code snippet.">
</section>


<section class = "content">
<div class = "top">
<div class = "Features">
<h3>
Features
</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div class = "About">
<h3>
About
</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
</div>
<div class = "middle-img">
<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">
</div>
<div class = "bottom">
<div class = "B Services">
<h3>
Services
</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div class = "B Product">
<h3>
Product
</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div class = "B Vision">
<h3>
Vision
</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
</div>
</section>

<footer>
<div class = "contact">
<h3>
Contact
</h3>
<p>
123 Way 456 Street
Somewhere, USA
1 (888) 888-8888
[email protected]
</p>
</div>
<p class = "copy">
Copyright Great Idea! 2018
</p>

</footer>

</body>
</html>