Skip to content

Kevin gallardo #1306

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 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Demonstrate your understanding of this week's concepts by answering the followin

Edit this document to include your answers after each question. Make sure to leave a blank line above and below your answer so it is clear and easy to read by your project manager

1. If you were to describe semantic HTML to the next cohort of students, what would you say?
1. If you were to describe semantic HTML to the next cohort of students, what would you say?

2. Name two big differences between ```display: block;``` and ```display: inline;```.

Expand Down
55 changes: 35 additions & 20 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

<html lang="en">
<head>
<header class="about-header">
<img src='img\lambda-black.png' alt="lambda logo">
<nav>
<a href="index.html">Home</a>
<a href="#">About</a>
<a href="#">Products</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</nav>
</header>
<meta charset="utf-8">

<title>Sprint Challenge - About</title>
Expand All @@ -12,53 +22,57 @@
</head>

<body>
<img class="jumbo-about"src="img\jumbo-about.png" alt=" About Jumbo">
<div class="container about-page">

About

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.

<h2> About </h2>

<p>Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.</p>

<div class="container-content">
<div class ='strats'>
<img src="img/about-plan.png" alt="strategy">

Strategy
<h3>Strategy</h3>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More


<button>Learn More</button>
</div>

<div class='work'>
<img src="img/about-working.png" alt="strategy">

How We Work
<h3> How We Work</h3>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More



<button>Learn More</button>
</div>
<div class='places'>
<img src="img/about-office.png" alt="strategy">

Places We Work
<h3> Places We Work</h3>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More
<button>Learn More</button>
</div>

<div class='collab'>
<img src="img/about-meeting.png" alt="strategy">

Collaboration
<h3>Collaboration</h3>

Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition.

Learn More

<button>Learn More</button>
</div>
Let's Work Together

Leverage agile frameworks to provide a robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Organically grow the holistic world view of disruptive innovation via workplace diversity and empowerment.
</div>
<footer>
<nav>
<a href="index.html">Home</a>
Expand All @@ -70,4 +84,5 @@
</footer>
</div><!-- container -->
</body>
</html>
</html>

254 changes: 253 additions & 1 deletion css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ p {
justify-content: space-evenly;
margin-bottom: 20px;
border-bottom: 1px dashed black;

}

.top-content .text-container {
Expand Down Expand Up @@ -138,9 +139,260 @@ footer nav {
align-items: center;
padding: 20px 2%;
font-size: 14px;

}

footer nav a {
color: white;
text-decoration: none;
}
}

/* Color Boxes */
.middle-content .box:nth-child(1){
background-color: teal;
}
.middle-content .box:nth-child(2){
background-color: #FFD700;
}

.middle-content .box:nth-child(3){
background-color: #5F9EA0;
}

.middle-content .box:nth-child(4){
background-color:#FF7F50 ;
}

.middle-content .box:nth-child(5){
background-color: #DC143C;
}

.middle-content .box:nth-child(6){
background-color: #228B22;
}

.middle-content .box:nth-child(7){
background-color: #9932CC;
}

.middle-content .box:nth-child(8){
background-color: #FF69B4;
}

.middle-content .box:nth-child(9){
background-color: #4B0082;
}

.middle-content .box:nth-child(10){
background-color: #1E90FF;
}


/* Header*/
header nav {
width: 60%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 2%;
font-size: 14px;
}

header {
display: flex;
justify-content: flex-end;
width: 100%;
padding-right: 10%;
}
header nav a{
font-weight: bold;
font-size: 15px;
color:black;
text-decoration: none;

}
/* Images */
header img{
width: 5;
height:5%;
margin-right: 80px;
margin-top: 20px;
}
.top-content img{
margin-top: 20px;
margin-bottom: 25px;;
}


/* About page */

.about-header{
font-weight: bold;
font-size: 15px;
color:black;
text-decoration: none;
display:flex;
justify-content: flex-end;
}

/* About Images */

.about-header img{
width: 5;
height:5%;
margin-bottom: 15px;
}

.jumbo-about{
margin-left: 11%;
width:90%;
margin-bottom: 25px;
}

.container.about-page{
display:flex;;
flex-wrap: wrap;
width:90%;
margin-left:10%;
}


/* about info */

p{
border-bottom: 2px dotted black;
margin-bottom: 5%;
padding: 3%;
font-size: 15px;
font-weight: bold;

}
h2{
font-weight: bold;
}

@media(max-width:500px){
footer{
display: none;
}
header nav{
display: flex;
justify-content: center;
flex-direction: column;
padding-top: 25%;
}
.top-content img{
width:50%;
padding-left: 5%;
}
.top-content{
display: flex;
justify-content: center;
flex-direction: column;
}
}
.container-content{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 75%;

}
.strats{
display: flex;
flex-direction: column;
width: 25%;
margin-left: 15%;
}
.strats button{
margin-top: 5%;
width:35%;
border-radius: 5px;
text-align: center;
height: 30px;
background-color: white;
border: 2px solid black;
font-weight: bolder;
}

.places{
width: 25%;
margin-top: 30px;
display: flex;
flex-direction: column;
}
.places button{
margin-top: 5%;
width:35%;
border-radius: 5px;
text-align: center;
height: 30px;
background-color: white;
border: 2px solid black;
font-weight: bolder;
}
.work{
margin-left: 25%;
width: 25%;

}
.work button{
display: flex;
margin-top: 5%;
width:35%;
border-radius: 5px;
height: 30px;
background-color: white;
border: 2px solid black;
font-weight: bolder;
text-align: center;
}
.collab{
display: flex;
flex-direction: column;
width: 25%;
margin-top: 30px;
}
.collab button{
margin-top: 5%;
width:35%;
border-radius: 5px;
text-align: center;
height: 30px;
background-color: white;
border: 2px solid black;
font-weight: bolder;

}

@media(max-width: 800px){
.top-content{
display: flex;
flex-direction: column;
justify-content: space-evenly;
text-align: center;
margin-left: 40%;
border:none;

}
.boxes{
display:flex;
flex-direction: column;
align-items: center;
}
.bottom-content{
display: flex;

}
.bottom-content h2{
font-size: 25px;
}
footer nav{
margin-left: 20%;
text-align: center;
font-size: 25px;
}
.container img{
margin: 25px;
}
}
Loading