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

MeowSpace #25

Open
wants to merge 8 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
108 changes: 62 additions & 46 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,97 +1,113 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Meowspace</title>
</head>
<head>
<meta charset="UTF-8">
<title>Meow<span class="camelcase">s</span>pace</title>
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/main.css">
</head>

<body>
<header>
<h2><a href="index.html"> Meowspace </a></h2>
<body>
<header>
<h2><a href="index.html"> Meow<span class="camelcase">s</span>pace </a></h2>

<nav>
<ul>
<li><a href="#login"> Login </a></li>
<li><a href="#signup"> Signup </a> </li>
</ul>
</nav>
</header>
<nav>
<ul>
<li><a href="#login"> Login </a></li>
<li><a href="#signup"> Signup </a> </li>
</ul>
</nav>
</header>

<main>
<section>
<h1> Meowspace </h1>
</section>
<main>
<section>
<h1> Meow<span class="camelcase">s</span>pace </h1>
</section>

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

<article>
<h3> Steal the Warm Chair </h3>
<section>
<h2> Popular Posts </h2>
<div class="postbundle">
<article class="post">
<div class="title">
<h3> Steal the Warm Chair </h3>
</div>
<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>
</article>


<article>
<h3> Cat not Kitten Around </h3>
<article class="post">
<div class="title">
<h3> Cat not Kitten Around </h3>
</div>
<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>

<article>
<h3> Fancy Feasts </h3>
<article class="post">
<div class="title">
<h3> Fancy Feasts </h3>
</div>
<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>
</article>

<article>
<h3> Control your Human </h3>
<article class="post">
<div class="title">
<h3> Control your Human </h3>
</div>
<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>
</article>

<article>
<h3> Defense against the Dark Arts </h3>
<article class="post">
<div class="title">
<h3> Defense against the Dark Arts </h3>
</div>
<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>
</article>

</section>

<section>
</div>
</section>
<section>
<div 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>
<img alt="Cat playing with mouse on chair" src="assets/join_club.jpg">
</section>
</div>
<img alt="Cat playing with mouse on chair" src="assets/join_club.jpg">
</section>

<section>
<h2> Everybody wants to be a cat! </h2>
</section>
</main>
<footer>
<section>
<h2> Everybody wants to be a cat! </h2>
</section>
</main>
<footer>
<div>
<h4> &copy; 2016 </h4>
<p id="disclaimer">
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>
</div>
<div>
<nav>
<ul>
<li><a href="#about"> About </a></li>
<li><a href="#contact"> Contact </a> </li>
</ul>
</nav>
</footer>
</body>
</div>
</footer>
</body>
</html>
226 changes: 226 additions & 0 deletions styles/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
@import url('https://fonts.googleapis.com/css?family=Bangers|Permanent+Marker');

#camelcase {
text-transform: uppercase;
}

header {
position:fixed;
width: 100%;
top: 0px;
background-color: black;
display: inline-block;
}

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

a:hover {
color: tomato;
}

header h2 {
padding-left: 100px;
float: left;
}

header nav {
padding-right: 85px;
padding-top: 10px;
float: right;
list-style: none;
}

header nav li {
padding-right: 15px;
display: inline;
}

main {
margin-top: 67px;
}

main section:first-of-type {
height: 500px;
background-image: url("../assets/hero.jpg");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
text-align: center;
}

main section h1 {
padding-top: 180px;
font-size: 6.0em;
color: white;
font-family: 'Permanent Marker'
}

h1 {
opacity: 1;
animation: fade 4s linear;
}

@keyframes fade {
0% { opacity: 0 }
100% { opacity: 1 }
}

main section:nth-of-type(2) h2 {
border-top: 1px dashed black;
border-bottom: 1px dashed black;
margin-bottom: 0px;
text-align: center;
font-size: 3.0em;
font-family: 'Bangers', cursive;
position: relative;
}

.postbundle {
text-align: center;
}

.post {
width: 200px;
height: 230px;
display: inline-block;
border: 1px solid black;
border-radius: 6%;
padding: 0px 0px 15px 0px;
margin: 1.0em;
text-align: center;
vertical-align: top;
}

.post p {
font-size: 0.8em;
margin: 15px;
}

.title {
border-bottom: 1px solid black;
}

.title h3 {
font-size: 1em;
padding: 0px 5px;
}

.post p:last-of-type {
border-radius: 25px;
border: 1px solid tomato;
padding: 3px 20px;
text-align: center;
display: inline;
width: 200%;
}

.post p a {
text-decoration: none;
color: tomato;
}

.post p a:hover{
font-weight: bold;
}

main section:nth-child(3) {
margin-top: 10px;
background-color: tomato;
text-align: center;
height: 290px;
color: white;
}

#join{
font-size: 1.5em;
display: inline-block;
vertical-align: top;
padding-right: 30px;
}

#join h2 {
margin-bottom: 0px;
float: left;
clear: both;
}

#join h2::after {
content: "!"
}

#join p {
font-size: 1.0rem;
text-align: justify;
max-width: 270px;
}

#join + img {
display: inline-block;
padding-top: 35px;
width: 330px;
height: auto;
}

main section:last-of-type {
height: 400px;
background-image: url("../assets/everybody.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: left;
}

main section:last-of-type h2 {
padding-top: 150px;
padding-left: 24%;
font-size: 3.5em;
font-family: 'Permanent Marker';
color: white;
margin: 0px;
max-width: 500px;
text-align: center;
}

footer {
background-color: dimgray;
padding-left: 15%;
display: flex;
}

footer div:first-of-type {
display: inline;
margin: 0px;
}

footer div h4 {
font-size: 9px;
float: left;
clear: both;
margin-right: 0px;
margin-bottom: 0px;
}

footer div h4:after {
content: "\00a0";
}

footer a {
color: black;
}

footer div nav {
font-weight: bold;
text-align: left;
padding-right: 10%;
}

#disclaimer {
line-height: 1.5;
font-size: 9px;
margin-right: 50px;
max-width: 330px;
text-align: justify;
}
Loading