Skip to content

Commit

Permalink
Add menu
Browse files Browse the repository at this point in the history
  • Loading branch information
dlubarov committed Sep 6, 2017
1 parent ea9654b commit cb5a976
Show file tree
Hide file tree
Showing 3 changed files with 162 additions and 0 deletions.
44 changes: 44 additions & 0 deletions blog/src/main/resources/menu/menu.html
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="reset.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600,700" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:400,700" />
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Poiret+One" />
<title>Daniel Lubarov</title>
</head>

<body>
<h1>Daniel and Vi's Kitchen</h1>

<h2>Entrees</h2>
<p>Beef stroganoff</p>
<p>Buttermilk pancakes</p>
<p>Crepe with fruit and whipped cream</p>
<p>French toast</p>
<p>Hamburger</p>
<p>Stuffed manicotti pasta with cheese and tomato sauce</p>
<p>Mushroom risotto</p>
<p>Sausage omelette</p>
<p>Pastrami Reuben sandwich</p>
<p>Spaghetti in creamy tomato sauce</p>
<p>Spanish rice with chicken, salsa, sour cream, guacamole</p>

<h2>Desert</h2>
<p>Flan</p>
<p>Souffle</p>
<p>Tiramisu</p>

<h2>Drinks</h2>
<p>Bramble</p>
<p>Cosmopolitan</p>
<p>Gin Fizz</p>
<p>Mojito</p>
<p>Moscow mule</p>
<p>Pisco sour</p>
<p>Strawberry and banana smoothie</p>
</body>
</html>
56 changes: 56 additions & 0 deletions blog/src/main/resources/menu/reset.css
@@ -0,0 +1,56 @@
@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}

body {
line-height: 1;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}
62 changes: 62 additions & 0 deletions blog/src/main/resources/menu/style.css
@@ -0,0 +1,62 @@
@charset "UTF-8";

body {
color: #000;
background-color: #fff;
font: 115% "Lato";
margin: 3em 0;
padding: 3em;
}

h1 {
font-family: "Poiret One";
font-size: 350%;
}

h2 {
font-size: 120%;
}

h2 {
margin-top: 1em;
}

h3 {
font-size: 95%;
font-weight: bold;
margin-bottom: 0.2em;
}

h3 ~ h3 {
margin-top: 0.6em;
}

p {
font-size: 80%;
}

p + p {
margin-top: 0.3em;
}

small {
font-size: 75%;
}

.clear {
clear: both;
}

sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
}

sup {
top: -0.5em;
}

sub {
bottom: -0.25em;
}

0 comments on commit cb5a976

Please sign in to comment.