-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from elizabethengelman/cocktail-menu
Cocktail menu
- Loading branch information
Showing
6 changed files
with
153 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |