Skip to content

Derrick french #1530

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
wants to merge 2 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
143 changes: 142 additions & 1 deletion great-idea/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,145 @@ h1, h2, h3, h4, h5 {
margin-bottom: 15px;
}

/* Copy and paste your work from yesterday here and start to refactor into flexbox */
/* Copy and paste your work from yesterday here and start to refactor into flexbox */


/* Header */

header {
text-align: center;
box-sizing: border-box;
/*border: 1px solid black;*/
display: flex;
}

header nav {
display: flex;
justify-content: center;
margin: 30px 0px;
width: 75%;
}



nav a {

width: 9%;
text-decoration: none;
color: grey
}

/* Content1 section*/

.content1 {
display: flex;
justify-content: center;

}

.content1 .left-content1 {
text-align: center;
margin-bottom: 20px;
justify-content: ;

}

.content1 .left-content1 h1 {
font-size: 80px;
margin-top: 10%;
}

.content1 img {
width: 25%;
height:25%;
}

button {
background-color: azure;
border-radius: 10px;
border: 1px solid black;
height: 35px;
width: 200px;
font-size: 20px;
}

/* Content2 */

.content2 {
text-align: left;
/*margin: 50%; */
margin: 20px 30px 20px 30px;
display: flex;
}




.bigimage {
text-align: center;
}

.content3 {
display: flex;
margin: 20px 20px 20px 20px;
}

.contact-section {
margin: 10px 30px 0px 30px;
}

.copyright {
text-align: center;
margin-top: 20px;
}

/* Service exclusive starting*/

.pair1, .pair2, .pair3, .pair4 {
display: flex;

}

.serborder {
border: 1px solid black;
margin: 10px 15px 20px 10px;
background-color: hsla(0, 0%, 87%, 0.89);
}

.serviceList {
list-style-type: square;
list-style-position: inside;
margin-top: 10px;
}

body {
max-width: 890px;
margin:auto;

}

section button {
margin: 20px 10px;
}

.serborder h3 {
margin: 10px
}

.serborder p {
margin: 10px
}

.pair4 {
margin: 35px 0px 100px 0px;
}

.serviceList li {
margin-top: 20px;
}

.serviceimg {

margin-bottom: 35px;

}
88 changes: 87 additions & 1 deletion great-idea/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,93 @@

<body>

<!-- Copy and paste your HTML from the first UI project here -->
<header>
<nav>
<a href="services.html">Services</a>
<a href="#">Product</a>
<a href="#">Vision</a>
<a href="#">Features</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>

<div>
<img src="img/logo.png" alt="Great Idea! Company logo.">
</div>
</header>



<div class="content1">
<div class="left-content1">
<h1>Innovation
<br>On<br>
Demand</h1>
<button>Get Started</button>
</div>

<div class= "right-content1"></div>
<img src="img/header-img.png" alt="Image of a code snippet.">
</div>

</div>

<hr>


<div class="content2">
<div>
<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>
<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="bigimage">
<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">
</div>

<div class="content3">
<div>
<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>
<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>
<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>


<hr>


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



</body>
Expand Down
Loading