-
Notifications
You must be signed in to change notification settings - Fork 0
/
soup.html
139 lines (126 loc) · 3.51 KB
/
soup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE HTML>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Amatic SC" rel="stylesheet">
<title>Soup Recipie</title>
<style>
body, html {
height: 100%;
margin: 0;
}
img {
height: 100%;
float: left;
}
* {
box-sizing: border-box;
font-family: 'Amatic SC';
font-size: 1vw;
color: #06070E;
}
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
border: 1px solid #ddd;
}
th, td {
text-align: center;
font-size: 1vw;
padding: 8px;
}
td span {
font-weight: bold;
color: #7BAE7F;
}
#background {
background-image: url(./src/background.jpg);
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
}
#board {
background: #F4F3EE;
border-radius: 0.2vw;
width: 60vw;
height: 35vw;
boxShadow: 1px 1px 12px;
}
#information {
display: block;
overflow-x: auto;
text-align: center;
justify-content: center;
align-items: center;
}
#title {
font-size: 2vw;
}
#recipie {
display: flex;
}
#recipie div {
flex: 10%;
text-align: center;
padding: 2vw;
}
#recipie li {
font-size: 1vw;
font-weight: normal;
}
.text {
font-size: 1vw;
}
</style>
</head>
<body>
<div id="background">
<div id="board">
<img src="./src/soup.jpg" alt="egg drop soup">
<div id="information">
<h1 id="title">Egg Drop Soup</h1>
<p>I loved getting egg drop soup with our Chinese take-out as a kid and it turns out this favorite is super easy to make and ingredients you probably already have on hand!</p>
<table>
<tr>
<th>YIELDS</th>
<th>PREP TIME</th>
<th>TOTAL TIME</th>
</tr>
<tr>
<td><span>4 SERVINGS</span></td>
<td><span>5 MINS</span></td>
<td><span>10 MINS</span></td>
</tr>
</table>
<div id="recipie">
<div>
<h2>Ingredients<h2>
<ul>
<li>6 c. chicken broth</li>
<li>1/4 tsp. ground ginger</li>
<li>1 tbsp. low-sodium soy sauce</li>
<li>1 tbsp. cornstarch</li>
<li>1 tsp. sesame oil</li>
<li>4 eggs, well beaten</li>
<li>Kosher salt</li>
<li>Freshly ground black pepper</li>
<li>2 tbsp. thinly sliced green onions, for garnish</li>
</ul>
</div>
<div>
<h2>Directions<h2>
<ol>
<li>In a large pot over medium heat, bring broth and ginger to boil. Whisk soy sauce and cornstarch together then whisk into broth. Let boil to thicken slightly, 3 minutes then remove from heat and add sesame oil. </li>
<li>Give the broth a big stir, then, in a slow stream, pour in eggs (do not stir again). Season with salt and pepper. Serve with green onions as garnish.</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</body>
<html>