Hi,
I have just completed the Broadway Project, however I am having issues with the Learn More section as you can see in the attached file. When I make the page narrow, it looks correct, however when I expand the width the Learn More portion doesn't seem to identify the CSS for that class. Any help would be appreciated.
Thanks.
HTML Code
<!DOCTYPE html>
<html>
<head>
<link rel='stylesheet' href='style.css'/>
</head>
<body>
<div class="header">
<div class="container">
<ul class="nav">
<li>About</li>
<li>Work</li>
<li>Team</li>
<li>Contact</li>
</ul>
</div>
</div>
<div class="jumbotron">
<div class="container">
<div class="main">
<h1>We are Broadway</h1>
<a class="btn-main"href="#">Get started</a>
</div>
</div>
</div>
<div class="supporting">
<div class="container">
<div class="col">
<h2>Design</h2>
<p>Make your projects look great and interact beautifully.</p>
<a class="learnmore" href="#"> Learn more</a>
</div>
<div class="col">
<h2>Develop</h2>
<p>Use modern tools to turn your design into a web site</p>
<a class="learnmore" href="#"> Learn more</a>
</div>
<div class="col">
<h2>Deploy</h2>
<p>Use modern tools to turn your design into a web site</p>
<a class="learnmore" href="#"> Learn more</a>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="footer">
<div class="container">
<p>© Broadway 2015</p>
</div>
</div>
</body>
</html>
CSS Code
html, body {
margin: 0;
padding: 0;
}
.container {
max-width: 940px;
margin: 0 auto;
padding: 0 10px;
}
.jumbotron {
height: 800px;
background-size: cover;
background-position: center;
}
.header {
background-color: #333333;
}
.nav {
padding: 20px 0;
margin: 0px;
}
.nav li {
color: #fff;
font-family: 'Raleway', sans-serif;
font-weight: 600;
font-size: 12px;
display: inline;
margin-right: 25px;
text-transform: uppercase;
}
.main {
position: relative;
top: 180px;
text-align: center;
}
.main h1 {
color: #333;
font-family: 'Raleway', sans-serif;
font-weight: 600;
font-size: 70px;
margin-top: 0;
margin-bottom: 80px;
text-transform: uppercase;
}
.btn-main {
background-color: #333;
font-family: 'Raleway', sans-serif;
color: #fff;
text-decoration: none;
font-size: 18px;
font-weight: 600;
padding: 15px 50px 15px 50px;
position: relative;
text-transform: uppercase;
}
.supporting {
padding-top: 80px;
padding-bottom: 100px;
}
.supporting .col {
float: left;
width: 33%;
font-family: 'Raleway', sans-serif;
text-align: center;
}
.supporting img {
height: 32px;
}
.supporting h2 {
font-weight: 600;
font-size: 23px;
text-transform: uppercase;
}
.supporting p {
font-weight: 400;
font-size: 14px;
line-height: 20px;
padding: 0 50px;
margin-bottom: 40px;
}
.clearfix {
clear: both;
}
.footer {
background-color: #333;
color: #fff;
padding: 30px 0;
}
.footer p {
font-family: 'Raleway', sans-serif;
text-transform: uppercase;
font-size: 11px;
}
@media (max-width: 500px) {
.main h1 {
font-size: 50px;
padding: 0 40px;
}
.supporting .col {
width: 100%;
}
.learnmore {
border: 1px solid #333333;
text-transform: uppercase;
text-decoration: none;
padding: 10px 15px 10px 15px;
color: black;
position: relative;
bottom: 20px;
font-size: 10px;
font-family: 'Raleway', sans-serif;
}