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

Bianca Fernandez <Meowspace> |Pipes| #35

Open
wants to merge 1 commit 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
82 changes: 48 additions & 34 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<link rel="normalize" href="styles/normalize.css">
<link rel="stylesheet" href="styles/main.css">
<head>
<meta charset="UTF-8">
<title>Meowspace</title>
</head>

<head>
<meta charset="UTF-8">
<title>Meowspace</title>
</head>

<body>
<header>
<body>
<header class='clearfix'>
<div>
<h2><a href="index.html"> Meowspace </a></h2>

<nav>
Expand All @@ -16,15 +18,18 @@ <h2><a href="index.html"> Meowspace </a></h2>
<li><a href="#signup"> Signup </a> </li>
</ul>
</nav>
</header>
</div>
</header>

<main>
<section>
<h1> Meowspace </h1>
</section>
<main class="clearfix">
<section>
<h1> Meowspace </h1>
</section>

<section>
<h2> Popular Posts </h2>
<section>
<h2> Popular Posts </h2>

<div>

<article>
<h3> Steal the Warm Chair </h3>
Expand All @@ -38,7 +43,7 @@ <h3> Steal the Warm Chair </h3>
<article>
<h3> Cat not Kitten Around </h3>
<p>
Curl up and sleep on the freshly laundered towels please stop looking at your phone and pet me cat slap dog in face. Cat not kitten around.
Curl up and sleep on the freshly laundered towels please stop looking at your phone and pet me cat slap dog in face. Cat not kitten around.
</p>
<p><a href="#post2"> Learn More </a></p>
</article>
Expand Down Expand Up @@ -66,32 +71,41 @@ <h3> Defense against the Dark Arts </h3>
</p>
<p><a href="#post5"> Learn More </a></p>
</article>
</div>

</section>
</section>

<div class="clearfix" id="join">
<section>
<h2> Join the Club </h2>
<p>
Cats go for world domination chase red laser dot. Flop over. Play riveting piece on synthesizer keyboard poop in the plant pot for shove bum in owner's face like camera lens. With tail in the air i could pee on this if i had the energy hola te quiero yet claw drapes mewl for food at 4am.
</p>
<div>
<h2 > Join the Club </h2>
<p >
Cats go for world domination chase red laser dot. Flop over. Play riveting piece on synthesizer keyboard poop in the plant pot for shove bum in owner's face like camera lens. With tail in the air i could pee on this if i had the energy hola te quiero yet claw drapes mewl for food at 4am.
</p>
</div>
<img alt="Cat playing with mouse on chair" src="assets/join_club.jpg">
</section>
</div>

<section>
<h2> Everybody wants to be a cat! </h2>
</section>
</main>
<footer>
<section class="everybody">
<h2> Everybody wants to be a cat! </h2>
</section>


</main>
<footer class='clearfix'>
<div>
<h4> &copy; 2016 </h4>
<p id="disclaimer">
<p>
Meowspace is not responsible for, and expressly disclaims all liability for, damages of any kind arising out of use, reference to, or reliance on any information contained within the site. While the information contained within the site is periodically updated, no guarantee is given that the information provided in this Web site is correct, complete, and up-to-date.
</p>
<nav>
<ul>
<li><a href="#about"> About </a></li>
<li><a href="#contact"> Contact </a> </li>
</ul>
</nav>
</footer>
</body>
</div>
<nav>
<ul>
<li><a href="#about"> About </a></li>
<li><a href="#contact"> Contact </a> </li>
</ul>
</nav>
</footer>
</body>
</html>
177 changes: 177 additions & 0 deletions styles/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,177 @@
@import url('https://fonts.googleapis.com/css?family=Lobster|Arimo');

h1, h2, h3, ul {
color: white;
font-family: 'Lobster';
}

p {
font-family: 'Arimo';
}

header {
position: fixed;
top: 0;
width: 100%;
background-color: rgb(70, 133, 228);
text-decoration: none;

}

header.clearfix {
left: 8px;
right: 8px;
width: auto;
}

header h2 {
float: left;
font-size: 3em;
margin-left: 50px;
}

header div a{
text-decoration: none;

}

header nav {
width: 35%;
float: right;
text-decoration: none;
}

header nav li {
display: inline-block;
width: 15%;
margin: 7%;
padding: 2%;
border-radius: 5%;
font-size: 1.5em;

}

header nav a {
background-color: skyblue;
border-radius: 10%;
padding: 5%;
text-decoration: none;

}

/*meowspace title image*/

section h1 {
background-image: url('../assets/everybody.jpg');
background-size: 100% 100%;
height: 300px;
text-align: center;
font-size: 5em;
padding-top: 150px;
margin-top: 120px;
}

section h2 {
text-align: center;
font-size: 2em;
margin: 0;
color: navy;
}

article h3:hover {
color: rgb(235, 233, 46);
}

article {
display: inline-block;
width: 20%;
height: 250px;
vertical-align: top;
margin: 5% 1%;
padding: 0 1% 1% 3%;
background-color: skyblue;
border-radius: 3%;
}

div article {
margin-left: 50px;
}

div article a{
background-color: white;
padding: 10px;
border-radius: 20%;
margin-left: 25%;
}

div article p {
height: 130px;
}

img {
width: 50%;
}

#join {
background-color: rgb(70, 133, 228);
}

div section div{
float: left;
width: 40%;
margin-left: 80px;
margin-right: 10px;
}

section div h2 {
text-align-last: justify;
margin-left: 100px;
margin-right: 100px;
margin-top: 70px;
}

div img {
float: right;
width: 35%;
margin-right: 80px;
margin-top: 30px;
margin-bottom: 30px;
}

.everybody {
background-image: url('../assets/hero.jpg');
background-size: 300px 400px;
height: 100%;
}

.everybody h2 {
width: 100%;
height: 250px;
padding-top: 150px;
font-size: 6em;
text-transform: full-width;
margin-top: 50px;
text-transform: capitalize;
}

footer div {
float:left;
width: 50%;
font-size: .75em;
margin-left: 6%;
}

footer nav {
float:right;
width: 40%;
/*margin-left: 50px;*/
}

.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
Loading