You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

193 lines
4.7 KiB
Vue

<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
border: 0px black solid;
background-color: #ffe6e6;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
.content {
padding-right: 50px;
padding-top: 40px;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
padding-left: 20px;
}
.title_story {
font-size: 80px;
font-family: 'Permanent Marker', cursive;
padding-left: 20px;
padding-top: 70px;
color: #333042
}
.image_container {
padding-top: 40px;
}
.image_container img {
max-width: 90%
}
.author {
font-size: 20px;
font-family: 'Roboto Mono', monospace;
padding-left: 20px;
}
.small_icon {
max-width: 20%;
padding-top: 70px;
}
.zoom {
transition: transform 1s;
}
.zoom:hover {
transform: scale(1.1);}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
4 years ago
<b-col md="8">
<p class="title_story">Party of 3</p>
<b-row>
<b-col md="6">
<p class="author">an essay by Daria Groza</p>
4 years ago
</b-col>
</b-row>
4 years ago
</b-col>
<b-col md="2" class="small_icon">
<div class="zoom">
<a href="/noodles"><b-img center class="img-fluid" alt="Responsive image" src="media/noodles_prev.png"> </b-img></a>
</div>
</b-col>
<b-col md="2" class="small_icon">
<div class="zoom">
<a href="/onion"><b-img center class="img-fluid" alt="Responsive image" src="media/onion_next.png"> </b-img></a>
</div>
4 years ago
</b-col>
</b-row>
<b-row>
<b-col md="5">
<div class='content'>
<p>
I dont really know how long its been since Ive been mostly at home, probably a little over a
month. At first, I was enthusiastic about cooking and experimenting with food. It seems like ages
ago I was trying and failing to make my first sourdough starter. That was maybe two weeks ago.
I even announced it on Instagram, but putting it out there didnt make it stick. I imagine things
followed the same pattern for a lot of people who are social-distancing - a burst of enthusiasm at
the beginning (all this free time, nowhere to go, back to the roots, lets eat like our forefathers)
followed by a rut of pasta and instant noodles (who cares).
</p>
<p>
The way I usually cook and eat revolves around improvising. I cannot/will not follow a recipe.
Give me your fridges contents and I will turn them into a warm plate. All the women in my family
have a repertoire of recipes that they make through and through, not me. I dont really like
cooking the same thing twice and, since the process is usually improvised, I wouldnt even be
able to. And I eat out a lot.
</p>
<p>
However, I have a small child who is new to the world of taste, digestion, and to the world in
general. She needs to eat a variety of foods, though shed probably be happy eating pasta
every day. So lately, Ive been using a subscription-based grocery delivery service, which
comes with recipes and pre-portioned ingredients. Its really helpful these days, when its
otherwise impossible to order groceries at home, and going to the supermarket feels like a guilty
luxury. I dont have to think about what to cook for lunch, where to get the ingredients or how
much rice I have to use. Because of the current situation, theres an ingredient missing from the
box every now and then. Thats when I get excited again, because I get to improvise.</p>
4 years ago
</div>
</b-col>
<b-col md="7">
<b-container fluid>
<div class="image_container">
<b-row>
<b-col md="3">
</b-col>
<b-col md="8">
<b-img class="img-fluid" src="media/recipe/1.jpg"> </b-img>
</b-col>
<b-col md="1">
</b-col>
</b-row>
<b-row>
<b-col md="12">
<p></p>
</b-col>
</b-row>
<b-row>
<b-col md="3">
</b-col>
<b-col md="8">
<b-img class="img-fluid" src="media/recipe/2.jpg"> </b-img>
</b-col>
<b-col md="1">
</b-col>
</b-row>
<b-row>
<p></p>
</b-row>
</div>
</b-container>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'recipe',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>