Skip to content
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
Binary file added images/coworking copy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
70 changes: 70 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta property="og:image" content="coworking.jpg">
<meta property="og:description" content="Starup Matchmaker helps you find the right Developer or Designer!">
<meta property="og:title" content="Startup Matchmaker">
<title>Startup Matchmaker</title>
<link rel ="stylesheet" href="style/main.css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oswald:700|Merriweather:700,700italic' rel='stylesheet' type='text/css'>
</head>

<body>
<section class="header-styling">
<nav class="row">

<div class='page_title'><p>Startup Matchmaker</p></div>

<div class='navbar'>
<div class="bold"><a href="#">Developers</a></div>
<div class="bold"><a href="#">Designers</a></div>
<div class=""><a href="#">How it Works</a></div>
<div class=""><a href="#">Our Team</a></div>
<div class=""><a href="#">Blog</a></div>
</div>

</nav>
</section>

<section>
<div class="catch-phrase">
<h2>Because two brains <del>taste</del> <ins>are</ins> better than one.</h2>
</div>
</section>

<div class="banner">
<div class="main-description-box">
<h3>Meet your Match!</h3>
<p>Have a great idea for a product, but need help making it a reality? We're here to help. Startup Matchmaker is the best place for designers and developers to find each other.</p>
<button type="button">CREATE A PROFILE</button>
</div>
</div>

<section class="action-container">
<div>
<h3>Create a Profile</h3>
<p>Are you a Designer?Developer?Put yourself out there so that others can find you.</p>
<button type="button">SIGN UP NOW</button>
</div>

<div>
<h3>Find a Developer</h3>
<p>Looking for a fantastic developer to work with on the next big thing? Look no further.</p>
<button type="button">START YOUR SEARCH</button>
</div>

<div>
<h3>Find a Designer</h3>
<p>Need someone who can make product intuitive and appealing? Get Ready.</p>
<button type="button">START YOUR SEARCH</button>
</div>
</section>


<footer class="footer-container">
<div>© 2013 Starup Matchmaker. Made in NY.</div>
</footer>

</body>
</html>
Binary file added style/coworking copy.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
180 changes: 180 additions & 0 deletions style/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,180 @@
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}

/* html, body{
width:100%;
height:100%;
} */

.row{
display: flex;
flex-wrap: nowrap;
background-color: black;
justify-content: space-evenly;
}

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

.col {
width: 8.3333%;
}

.col-2 {
width: calc(2 * 8.3333%);
}

.col-7 {
width: calc(7 * 8.3333%);
}

.col-12 {
width: calc(12 * 8.3333%);
}


.page_title {
color:yellow;
font-family:"Merriweather";
font-size: 48px;
padding: 30px;
}

.navbar{
display: flex;
font-family: "Merriweather";
font-size: 28px;
color:white;
padding: 30px;
align-content: center;
/* justify-content: space-between; */
/* width: calc(8.3333% * 5); */
/* align-items: center; */
}

.navbar div {
padding:10px;
}

.header-styling{
border-bottom: 5px solid yellow;
}

a:hover {
color: yellow;
}

.bold {
font-weight: 800;
}

.catch-phrase{
text-align: center;
background-color: lightgray;
font-family: "Merriweather";
min-height:50px;
padding:10px;
}

del {
color: gray;
}

ins {
text-decoration: none;
border-bottom: 3px solid yellow;
}

/* .main-conatiner{
display: flex;

} */

.banner{
display: flex;
background: url(../images/coworking.jpg) center center no-repeat;
background-size:cover;
overflow: hidden;
justify-content: flex-end;
/* height: 600px; */
}

/* .main-container {
display: flex;
flex-wrap: wrap;
} */

.main-description-box {
display: flex;
flex-wrap: wrap;
border: 3px solid black;
width: calc(8.3333% * 4);
background-color: rgba(255,255,255, 0.7);
padding: 2%;
margin: 2%;
font-size: 28px;
line-height: 35px;

/* text-align: center; */
}

.main-description-box button {
background-color:yellow;
/* box-shadow: 0px 3px 0px 0px #CBC63F; */
font-size: 16px;
padding:20px 30px;
margin: 50px 0 0 100px;
}

.action-container{
display:flex;
flex-wrap: nowrap;
font-family:sans-serif;
margin: 2%;
}
.action-container div{
padding:40px;
align-content: center;
border-right: 1px solid black;
}

.action-container div:last-child{
border-right: none;
}

.action-container h3{
font-family: 'Oswald';
font-size: 26px;
display: inline;
}

.action-container p{
font-family: "Oswald";
font-size:18px;
}

.action-container button{
background-color: gray;
font-family: 'Oswald';
font-size:18px;
align-content: center;
margin: auto;
border-radius: 4px;
padding:20px 30px;
margin: 50px;

}

.footer-container{
display: flex;
background-color: black;
color: white;
font-family: sans-serif;
font-size: 16px;
padding:10px;
}