Skip to content

Instantly share code, notes, and snippets.

@halinisbrune
Created May 21, 2015 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save halinisbrune/561d50d71d1218c5d077 to your computer and use it in GitHub Desktop.
Save halinisbrune/561d50d71d1218c5d077 to your computer and use it in GitHub Desktop.
El Saladia. Fresh Salads, Made to Order! // source http://jsbin.com/nekure
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Dosis:200,400' rel='stylesheet' type='text/css'>
<meta charset=utf-8 />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>El Saladia. Fresh Salads, Made to Order!</title>
<style>
body {
font-family: Oswald, Helvetic, Arial, sans-serif;
color: #2EB82E;
margin:0px;
padding:0px;
font-weight: 300;
background: rgb(218, 255, 119);
background: -moz-linear-gradient(36deg, rgb(218, 255, 119) 31%, rgb(175, 255, 155) 82%);
background: -webkit-linear-gradient(36deg, rgb(218, 255, 119) 31%, rgb(175, 255, 155) 82%);
background: -o-linear-gradient(36deg, rgb(218, 255, 119) 31%, rgb(175, 255, 155) 82%);
background: -ms-linear-gradient(36deg, rgb(218, 255, 119) 31%, rgb(175, 255, 155) 82%);
background: linear-gradient(126deg, rgb(218, 255, 119) 31%, rgb(175, 255, 155) 82%);
}
.header { background-color: #4f6d74;
padding-top: 10px;
padding-bottom: 0px;
padding-right: 20px;
padding-left: 20px;
border-bottom: 2px solid black;
background-image: url(http://s1.postimg.org/aga1y4cz3/header.jpg);
}
h1, h2, h3, h4 {
margin-top: 0px;
margin-bottom: 0px;
font-weight: 300;
}
h1 {
font-family: Oswald, helvetica, arial, sans-serif;
font-size: 45px;
line-height: 30px;
text-align: center;
letter-spacing: 1px;
font-weight: 300;
margin-top: 15px;
margin-bottom: 16px;
text-shadow: -1px 1px 1px rgba(0, 0, 0, 1);
text-transform: uppercase;
color: #ffcc00;
}
h2 {
font-family: Oswald, helvetica, arial, sans-serif;
font-size: 13px;
text-align: center;
line-height: 0px;
letter-spacing: 1px;
text-transform: uppercase;
color: black;
margin-bottom:45px;
}
h3 {
font-family: Oswald, helvetica, arial, sans-serif;
font-size: 16px;
line-height: 20px;
font-weight: 400;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
color: #2EB82E;
border-bottom: 1px dashed white;
padding-bottom: 8px;
letter-spacing: 2px;
}
h4{
font-size: 13px;
line-height: 13px;
margin-left: 40px;
margin-bottom: 5px;
text-transform: uppercase;
font-weight: 400;
text-align: right;
color: black
}
p {
font-family: Dosis;
font-size: 14px;
line-height: 18px;
margin-top: 10px;
margin-bottom: 20px;
text-align:right;
color: black;
}
.button {
color: white;
text-decoration: none;
background-color: #80a489;
padding-top: 12px;
padding-bottom: 12px;
text-align: center;
text-transform: uppercase;
display: block;
font-weight: bold;
font-size: 18px;
text-shadow: -1px 1px 1px rgba(0, 0, 0, 1);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
background: -moz-linear-gradient(270deg, rgb(158, 186, 165) 0%, rgb(96, 141, 108) 100%);
background: -webkit-linear-gradient(270deg, rgb(158, 186, 165) 0%, rgb(96, 141, 108) 100%);
background: -o-linear-gradient(270deg, rgb(158, 186, 165) 0%, rgb(96, 141, 108) 100%);
background: -ms-linear-gradient(270deg, rgb(158, 186, 165) 0%, rgb(96, 141, 108) 100%);
background: linear-gradient(0deg, rgb(158, 186, 165) 0%, rgb(96, 141, 108) 100%);
background-image: url(http://s9.postimg.org/n22raz7m7/button.jpg);
}
a {
color: black;
font-size: 14px;
}
.main {
padding-top:16px;
padding-left: 20px;
padding-right: 20px;
padding-bottom:50px;
}
img {
float: left;
margin-right: -15px;
margin-left: -15px;
margin-top: -25px;
margin-bottom:0px;
}
.address {
text-align: center;
margin-bottom: 0px;
}
.fone {
font-size:15px;
margin-top: 5px;
font-weight: 900;
text-align: center;
color: black;
border-bottom: 1px dashed white;
padding-bottom: 15px;
}
</style>
</head>
<body>
<!-- Header -->
<div class="header">
<h1>El Saladia</h1>
<h2>Fresh Salads &#9733; Made to Order</h2>
</div>
<!-- This Week's Special -->
<div class="main">
<h3> &#9734; This Week's Special &#9734; </h3>
<h4>Spring Salad</h4>
<p><img src="http://s22.postimg.org/3tv6abv19/salad_2.png"><em>Ripe cherry tomatoes, olives, snow peas, chick peas, and local seasonal spring veggies on a bed of mesclun and baby spinach. $9.50</em></p>
<!-- Navigation -->
<p><a href="" class="button">Complete Menu</a></p>
<p><a href="" class="button">Map &amp; Directions</a></p>
<p class="address"><a href="">711 Boylston St, Boston, MA 02116</a><br>
Open 7 days, 11am - 8pm
<p class="fone"> (617) 535 5000 </p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment