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.

196 lines
4.0 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');
@font-face {
font-family: 'Happy Times';
src: url('../../fonts/happy-times-NG_regular_master.otf');
}
* {
border: 0px black solid;
background-color: white;
}
.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: 'Happy Times';
font-size: 15px;
padding-bottom: 40px;
padding-left: 60px;
color: #1B75BC;
text-align: left;
3 years ago
}
.controls {
margin-top: 60px;
}
.title_story {
font-size: 80px;
font-family: 'Work Sans', sans-serif;
padding-top: 20px;
color: #FA00FF;
3 years ago
text-align: center;
}
.image_container {
padding-top: 10px;
}
.author {
font-size: 20px;
font-family: 'Poppins', sans-serif;;
3 years ago
text-align: center;
color: #FA00FF;
}
.image_container img {
max-width: 80%
}
.small_icon {
3 years ago
max-width: 60%;
padding-top: 100px;
}
.zoom {
max-width: 60%;
}
3 years ago
@media (max-width: 575px){
.small_icon {
display: none;
3 years ago
}
.title_story {
font-size: 30px;
}
.author {
font-size: 15px;
}
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
<b-col md="2" class="controls">
<p>xxxxxxxxxxx</p>
</b-col>
<b-col md="2" offset-md="8" class="controls">
<p>xxxxxxxxxxx</p>
</b-col>
</b-row>
<b-row>
<b-col md="4">
<b-row>
<b-col md="10" offset-md="3">
3 years ago
<div class="zoom">
<b-img center class="img-fluid" alt="Responsive image" src="media/magiun2/phone.png"> </b-img>
3 years ago
</div>
</b-col>
</b-row>
<b-row>
3 years ago
<b-col md="12">
<p class="title_story">Christmas Dinner</p>
</b-col>
</b-row>
3 years ago
<b-row>
<b-col md="12">
<p class="author">a poem by Valentina Vella</p>
3 years ago
</b-col>
</b-row>
</b-col>
<b-col md="5">
<div class='content'>
<p>
Two tablespoons olive oil, plus extra<br>
his hair was soft and silvery<br>
three pounds yellow onions peeled and sliced into half moons<br>
his hands moved gracefully across the piano<br>
sea salt and ground black pepper, to taste<br>
he married the wrong woman<br>
one tablespoon thyme leaves, minced<br>
I wouldnt be here if he hadnt<br>
one bay leaf<br>
most days she didnt know who he was<br>
one clove of garlic, minced<br>
the lockdown put an end to his daily walks<br>
one tablespoon tomato paste<br>
he directed operas in the eighties<br>
one 12 cups French lentils, rinsed<br>
he spent his 93rd year watching soccer games alone<br>
one 12 tablespoons sherry/balsamic vinegar<br>
hoping to hear from us<br>
one 12 tablespoons gluten-free tamari soy sauce<br>
we rarely called<br>
five cups vegetable stock, plus extra<br>
I should have called<br>
two cups water<br>
I should have called every day or moved back home<br>
two cloves of garlic, peeled and smashed<br>
when I come back to the kitchen after hanging up the phone<br>
one 12 pound Yukon gold potatoes, peeled and chopped<br>
the lentils are sticking to the bottom of the pot<br>
four cups cauliflower florets (from approximately 12 a large head)<br>
Im turning the wooden spoon mechanically<br>
four tablespoons vegan butter, at room temperature<br>
hes dead, I mumble<br>
12 cup unsweetened non-dairy milk<br>
it isnt dead says Witold, just a little burnt<br>
one tablespoon nutritional yeast<br>
no, hes dead, hes dead,<br>
sea salt and ground black pepper, to taste.</p>
</div>
</b-col>
3 years ago
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'phone',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>