181 lines
6 KiB
HTML
181 lines
6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Lilla Macarons</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link href="http://fonts.googleapis.com/css?family=Niconne" rel="stylesheet" type="text/css" />
|
|
<link href="http://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet" type="text/css" />
|
|
<style type="text/css">
|
|
html {
|
|
font-family: "Josefin Sans", sans-serif;
|
|
margin: 0;
|
|
background: url("macarons.jpg") no-repeat center top fixed;
|
|
background-size: cover;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
color: #fff;
|
|
min-height: 100%;
|
|
min-width: 100%;
|
|
}
|
|
|
|
a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1#sticker {
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
top: 25%;
|
|
left: 35%;
|
|
position: absolute;
|
|
font-family: 'Niconne', cursive;
|
|
font-size: 6em;
|
|
width: 2.5em;
|
|
height: 2.5em;
|
|
border-radius: 2em;
|
|
background: yellow;
|
|
line-height: 2.35em;
|
|
color: #fff;
|
|
border: 0.3em solid white;
|
|
}
|
|
|
|
#contact {
|
|
position: absolute;
|
|
width: 16em;
|
|
left: 3em;
|
|
top:85%;
|
|
text-align: left;
|
|
}
|
|
|
|
#contact .icons {
|
|
padding: 0 0 0 1.5em;
|
|
}
|
|
|
|
#rightmenu {
|
|
background-color: rgba(128,0,128,0.4);
|
|
color: #fff;
|
|
border-left: 3px solid purple;
|
|
position: absolute;
|
|
margin-left: 100%;
|
|
top: 0;
|
|
width: 15em;
|
|
height: 100%;
|
|
padding: 1em;
|
|
display: none;
|
|
}
|
|
|
|
.menutitle {
|
|
font-size: 150%;
|
|
}
|
|
|
|
.flavours {
|
|
line-height: 2em;
|
|
font-size: 120%;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
font-weight: 400;
|
|
}
|
|
|
|
div.allergies {
|
|
font-size: 90%;
|
|
white-space: normal;
|
|
position: absolute;
|
|
top: 85%;
|
|
}
|
|
|
|
#ordertext {
|
|
display: none;
|
|
font-size: 120%;
|
|
}
|
|
|
|
#footer {
|
|
font-size: 70%;
|
|
position: absolute;
|
|
top: 97%;
|
|
width: 98%;
|
|
text-align: right;
|
|
}
|
|
|
|
@media only screen and (-webkit-device-pixel-ratio:2) {
|
|
h1#sticker {
|
|
font-size: 3em;
|
|
}
|
|
|
|
.menutitle, .flavours, .allergies {
|
|
font-size: 80%;
|
|
}
|
|
}
|
|
</style>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
<script type="text/javascript">
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments);},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m);
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-51053608-1', 'lillamacarons.com');
|
|
ga('send', 'pageview');
|
|
|
|
var trackOutboundLink = function(url) {
|
|
ga('send', 'event', 'outbound', 'click', url);
|
|
};
|
|
</script>
|
|
<script type="text/javascript">
|
|
function openMenu() {
|
|
$(function(){
|
|
$("#ordertext").fadeIn(2000);
|
|
if ( $("#rightmenu").css("display") == "none" ) {
|
|
$("#rightmenu").css("display", "inline");
|
|
$("#rightmenu").animate({left: "-=" + $("#rightmenu").css("width")}, 1000);
|
|
}
|
|
});
|
|
}
|
|
|
|
function closeMenu() {
|
|
$(function(){
|
|
if ( $("#rightmenu").css("display") != "none" ) {
|
|
$("#rightmenu").animate({left: "+=" + $("#rightmenu").css("width")}, 1000, function(){
|
|
$("#rightmenu").css("display", "none");
|
|
});
|
|
}
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 id="sticker" onmouseover="openMenu();" onclick="openMenu();" >Lilla</h1>
|
|
<div id="contact">
|
|
<span id="ordertext">Place your order here</span><br />
|
|
<span class="icons">
|
|
<a target="_blank" onclick="trackOutboundLink('http://facebook.com/macaronslilla');" href="http://facebook.com/macaronslilla"><img src="facebook-4-32.png" alt="facebook"/></a>
|
|
<a target="_blank" onclick="trackOutboundLink('http://twitter.com/lilla_macarons');" href="http://twitter.com/lilla_macarons"><img src="twitter-4-32.png" alt="twitter"/></a>
|
|
<a target="_blank" onclick="trackOutboundLink('mailto:enquiries@lillamacarons.com');" href="mailto:enquiries@lillamacarons.com"><img src="email-14-32.png" alt="email"/></a>
|
|
</span>
|
|
</div>
|
|
<div id="footer">
|
|
<span id="attribution">Photo by <a href="https://www.flickr.com/people/24576874@N00">Julien Haler</a> via Flickr</span>
|
|
</div>
|
|
|
|
<!-- Menu -->
|
|
<div id="rightmenu" onclick="closeMenu();">
|
|
<p class="menutitle">Macaron Flavours</p>
|
|
<ul class="flavours">
|
|
<li><span>Earl Grey & Biscuit</span></li>
|
|
<li><span>Lemon & Orange</span></li>
|
|
<li><span>Strawberry & Custard</span></li>
|
|
<li><span>Raspberry & Vanilla</span></li>
|
|
<li><span>Double Chocolate</span></li>
|
|
<li><span>Pistachio</span></li>
|
|
<li><span>Coffee & Irish Cream</span></li>
|
|
<li><span>Chocolate & Orange</span></li>
|
|
<li><span>Hazelnut</span></li>
|
|
</ul>
|
|
<div class="allergies"><span>Allergy advice: Contains nuts, gluten,<br /> dairy and eggs. Please contact us for<br /> a full list of ingredients.</span></div>
|
|
</div>
|
|
<!-- /Menu -->
|
|
</body>
|
|
</html>
|