Skip to content

Commit

Permalink
Merge pull request #12 from elizabethengelman/cocktail-menu
Browse files Browse the repository at this point in the history
Cocktail menu
  • Loading branch information
elizabethengelman authored Sep 15, 2023
2 parents 752f81a + ef98e3e commit 936fa72
Show file tree
Hide file tree
Showing 6 changed files with 153 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GEM
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
addressable (2.8.1)
addressable (2.8.5)
public_suffix (>= 2.0.2, < 6.0)
coffee-script (2.4.1)
coffee-script-source
Expand All @@ -16,7 +16,7 @@ GEM
colorator (1.1.0)
commonmarker (0.17.13)
ruby-enum (~> 0.5)
concurrent-ruby (1.1.10)
concurrent-ruby (1.2.2)
dnsruby (1.61.7)
simpleidn (~> 0.1)
em-websocket (0.5.3)
Expand Down Expand Up @@ -217,7 +217,7 @@ GEM
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.1)
listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
Expand Down Expand Up @@ -248,7 +248,7 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rexml (3.2.6)
rouge (3.26.0)
ruby-enum (0.9.0)
i18n
Expand Down
Binary file added assets/images/high-ball-glass.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 assets/images/martini-glass.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 assets/images/shines.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
84 changes: 84 additions & 0 deletions css/cocktail-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
html {
color: #222;
font-size: 1em;
}

body {
background: radial-gradient(circle at 40% 40%, #ffeea4 25%, transparent 26%),radial-gradient(circle at 60% 60%, #ffeea480 25%, transparent 26%);
background-size: 6em 6em;
background-color: #ffffff;
}

.content {
text-align: left;
color: #0a1ca4;
padding: 5%;
}

.color-block {
background-color: #ffeea4;
border-radius: 10%;
padding: 2%;
margin: 2%;
}

.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #FF9A86;
color: white;
text-align: center;
}

.cocktails {
font-family: 'Roboto Mono', monospace;
width: 95%;
}

h1.title {
font-size: 700%;
font-family: "Sacramento", cursive;
color: #0a1ca4;
}

.header-container {
display: flex;
align-items: center;
}

ul {
list-style-type: none;
padding-left: 0px;
}

li.cocktail {
display: flex;
align-items: center;
margin: 5%;
font-size: 150%;
}

li.cocktail.first-cocktail {
margin-bottom: 12%;
}

li img {
padding-right: 8%;
}

.cocktail-title{
font-family: "Playfair Display", serif;
font-size: 105%;
}

.cocktail-desc {
}

.footer{
text-align: center;
/* font-family: 'Playfair Display', serif; */
padding: 2%;

}
65 changes: 65 additions & 0 deletions micahs-cocktail-menu.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
classes: wide
---

<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/cocktail-style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- <link
href="https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps&family=Playfair+Display&family=Roboto+Mono:wght@600&family=Sacramento&display=swap"
rel="stylesheet"
/> -->
<link
href="https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps&family=Playfair+Display:wght@800&family=Roboto+Mono:wght@400&family=Sacramento&display=swap"
rel="stylesheet"
/>
<div class="content">
<div class="color-block">
<div class="header-container">
<h1 class="title">Cocktails</h1>
<img
class="stars"
style="padding-left: 15px"
width="12%"
height="12%"
src="assets/images/shines.png"
/>
</div>
<div class="sub-header"></div>

<div class="cocktails">
<ul>
<li class="cocktail first-cocktail">
<img
width="25%"
height="25%"
src="/assets/images/high-ball-glass.png"
/>
<div>
<div class="cocktail-title">Gush Monster</div>
<div class="cocktail-desc">
four roses straight bourbon small batch, homemade peach shrub,
peach shrub puree, club soda, fresh mint, slice of peach
</div>
</div>
</li>
<li class="cocktail">
<img
width="25%"
height="25%"
src="/assets/images/martini-glass.png"
/>
<div>
<div class="cocktail-title">Preppy with a Punk Rock Heart</div>
<div class="cocktail-desc">
thistle finch white rye, fee brothers west indian orange bitters,
lillet blanc, dolin vermouth de chambery blanc, luxardo cherry
</div>
</div>
</li>
</ul>
</div>
</div>
</div>

0 comments on commit 936fa72

Please sign in to comment.