Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-arias committed Jul 28, 2012
0 parents commit 133e588
Show file tree
Hide file tree
Showing 6 changed files with 631 additions and 0 deletions.
82 changes: 82 additions & 0 deletions estilos.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
body
{
background: #800;
font-family: "Helvetica", Arial;
font-size: 16px;
margin: 0;
text-align: center;
}
footer, header, section
{
background: white;
border-radius: 0.5em;
box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px;
margin: 1em auto;
padding: 1em;
width: 90%;
}
header
{
background: url("logo.png") no-repeat 10px center, url("mantel.jpg");
}
header h1
{
font-size: 2em;
text-shadow: rgba(255, 255, 255, 0.5) 2px 2px 10px;
}
#formulario
{
background: #FCAC00;
border-radius: 0.5em;
color: white;
font-size: 1.8em;
margin: 0.5em auto;
padding: 0.5em;
width: 70%;
}
#formulario input
{
border: none;
display: block;
margin: 0.5em auto;
width: 60%;
}
#formulario input[type="submit"]
{
background: #721B00;
border-radius: 0.5em;
box-shadow: rgba(0, 0, 0, 0.5) 10px -10px 10px inset;
color: white;
cursor: pointer;
font-weight: bold;
width: 61%;
}
#historia
{
background: #721800;
border-radius: 0.3em;
box-shadow: #000 2px 2px 10px inset;
color: white;
column-count: 3;
-webkit-column-count: 3;
-moz-column-count: 3;
-ms-column-count: 3;
-o-column-count: 3;
column-rule: 2px dotted pink;
-webkit-column-rule: 2px solid #ddd;
-moz-column-rule: 2px solid #ddd;
-ms-column-rule: 2px solid #ddd;
-o-column-rule: 2px solid #ddd;
column-gap: 3em;
-webkit-column-gap: 3em;
-moz-column-gap: 3em;
-ms-column-gap: 3em;
-o-column-gap: 3em;
padding: 1em;
text-align: justify;
text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}
#historia p:first-child
{
margin-top: 0.5em;
}
33 changes: 33 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width-device-width" />
<title>Mejorando.la Pizza</title>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="estilos.css" />
<script src="prefixfree.min.js"></script>
</head>

<body>
<header>
<h1>Mejorando.la Pizza</h1>
</header>
<section>
<form id="formulario">
<label for="nombre">¿Cuál es tu nombre?</label>
<input type="text" id="nombre" />
<input type="submit" id="enviar" value="Péguele!" />
</form>
<article id="historia">
<p>Normally, both your asses would be dead as fucking fried chicken, but you happen to pull this shit while I'm in a transitional period so I don't wanna kill you, I wanna help you. But I can't give you this case, it don't belong to me. Besides, I've already been through too much shit this morning over this case to hand it over to your dumb ass. </p>
<p>My money's in that office, right? If she start giving me some bullshit about it ain't there, and we got to go someplace else and get it, I'm gonna shoot you in the head then and there. Then I'm gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when I'm talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand? </p>
<p>My money's in that office, right? If she start giving me some bullshit about it ain't there, and we got to go someplace else and get it, I'm gonna shoot you in the head then and there. Then I'm gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when I'm talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand? </p>
<p>The path of the righteous man is beset on all sides by the iniquities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy My brothers. And you will know My name is the Lord when I lay My vengeance upon thee. </p>
</article>
</section>
<footer>
Diseñado por Victor Arias
</footer>
</body>
</html>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added mantel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 133e588

Please sign in to comment.