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

Queues - Maria McGrew - Meowspace #41

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
Binary file removed .DS_Store
Binary file not shown.
Binary file removed assets/.DS_Store
Binary file not shown.
23 changes: 14 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
<head>
<meta charset="UTF-8">
<title>Meowspace</title>
<link href="https://fonts.googleapis.com/css?family=Slabo+27px" rel="stylesheet">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/main.css">
</head>

<body>
Expand All @@ -23,15 +26,16 @@ <h2><a href="index.html"> Meowspace </a></h2>
<h1> Meowspace </h1>
</section>

<section>
<section class="popular_posts">
<h2> Popular Posts </h2>
<div>

<article>
<h3> Steal the Warm Chair </h3>
<p>
Hide when guests come over if it smells like fish eat as much as you wish. Meow. Scream at teh bath mewl for food at 4am for eat all the power cords and the dog smells bad and steal the warm chair right after you get up.
</p>
<p><a href="#post1"> Learn More </a></p>
<p class="learn"><a href="#post1"> Learn More </a></p>
</article>


Expand All @@ -40,37 +44,38 @@ <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.
</p>
<p><a href="#post2"> Learn More </a></p>
<p class="learn"><a href="#post2"> Learn More </a></p>
</article>

<article>
<h3> Fancy Feasts </h3>
<p>
Spot something, big eyes, big eyes, crouch, shake butt, prepare to pounce catch mouse and gave it as a present lie on your belly and purr when you are asleep and scamper for thinking longingly about tuna brine.
</p>
<p><a href="#post3"> Learn More </a></p>
<p class="learn"><a href="#post3"> Learn More </a></p>
</article>

<article>
<h3> Control your Human </h3>
<p>
Refuse to drink water except out of someone's glass meow to be let in sweet beast. The dog smells bad howl uncontrollably for no reason or eat and than sleep on your face.
</p>
<p><a href="#post4"> Learn More </a></p>
<p class="learn"><a href="#post4"> Learn More </a></p>
</article>

<article>
<h3> Defense against the Dark Arts </h3>
<p>
Flee in terror at cucumber discovered on floor. Kitty power! destroy couch as revenge but have my breakfast. Spaghetti yarn but meow meow so friends are not food.
</p>
<p><a href="#post5"> Learn More </a></p>
<p class="learn"><a href="#post5"> Learn More </a></p>
</article>
</div>
</section>

</section>

<section>
<section id="join">
<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>
Expand Down
130 changes: 130 additions & 0 deletions styles/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
header {
background-color: #29538E;
border-bottom: solid;
position: fixed;
margin: 0px;
top: 0px;
width: 100%;
}

main section {
clear: both;
}

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

header a:hover {
color: blue;
}

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

ul {
list-style-type: none;
}

header nav li {
display: inline-block;
float: right;
margin: 3%;
margin-top: 0;
font-family: 'Slabo 27px', serif;
}

header h2 {
font-family: 'Slabo 27px', serif;
font-size: 1.5em;
display: inline-block;
margin: 0;
margin-left: 5%;
margin-top: 5%;
padding: 0;
}

h1 {
background-image: url('../assets/hero.jpg');
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
border-bottom: solid;
border-color: black;
height: 100px;
font-size: 6em;
font-family: 'Slabo 27px', serif;
color: white;
text-align: center;
margin-top: 12%;
padding: 22%;
}

.popular_posts div {
display: inline-block;
width: 100%;
padding: 0;
font-family: 'Slabo 27px', serif;
text-align: center;

}

article {
display: inline-block;
padding: 2% 2% 2% 2%;
height: 60%;
width: 25%;
margin: 2%;
border: solid;
border-radius: 1.2em;
background-color: #F1D9AA;
}

.popular_posts h2 {
text-align: center;
font-family: 'Slabo 27px', serif;
font-size: 2.5em;
}

.popular_posts a {
border: solid;
padding: 3%;
border-radius: 1.2em;
}

.popular_posts a:hover {
color: blue;
}

.popular_posts h3 {
border-bottom: solid;
}



#join {
padding: 0;
}

#join h2 {
font-family: 'Slabo 27px', serif;
margin-left: 17%;
}

#join p {
display: block;
width: 30%;
margin-left: 17%;
font-family: 'Slabo 27px', serif;
}

#join img {
display: inline-block;
float: right;
width: 300px;
margin-right: 20%;
border: solid;
}
Loading