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.

246 lines
5.5 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');
}
@font-face {
font-family: 'Semi Light Dots';
src: url('../../fonts/AC1-SemiLightDots.otf');
}
@font-face {
font-family: 'ED Regular';
src: url('../../fonts/ED-Regular.otf');
}
* {
border: 0px black solid;
background-color: transparent;
}
.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-left: 60px;*/
font-family: 'Happy Times';
font-size: 18px;
line-height: 24px;
/*padding-bottom: 40px;*/
color: #1B75BC;
text-align: left;
}
.controls {
padding-top: 12px;
height: 120px;
z-index: 1;
position: relative;
}
.title_story {
font-size: 80px;
font-family: 'Semi Light Dots', sans-serif;
padding-top: 20px;
color: #FA00FF;
3 years ago
text-align: center;
}
.arrows {
font-size: 80px;
font-family: 'Semi Light Dots', sans-serif;
top: 36px;
color: #FA00FF;
vertical-align: top;
position: fixed;
overflow: hidden;
}
.arrows a {
display: block;
}
#leftarrow {
float: left;
color: #FA00FF;
}
#rightarrow {
float: right;
color: #FA00FF;
}
.image_container {
padding-top: 5px;
}
.photo {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
width: auto;
max-height: 100%;
max-width: 100%;
padding: 12px;
}
.img-fluid {
filter: sepia(100%) saturate(300%) brightness(100%) hue-rotate(270deg);
}
.author {
font-size: 20px;
font-family: 'ED-regular', sans-serif;;
3 years ago
text-align: center;
color: #FA00FF;
}
.dialogue {
/*font-family: 'ED-Regular', sans-serif;*/
margin-left: 36px;
}
.small_icon {
3 years ago
max-width: 60%;
padding-top: 100px;
}
.zoom {
max-width: 100%;
}
3 years ago
@media (max-width: 575px){
.small_icon {
display: none;
3 years ago
}
.title_story {
font-size: 48px;
3 years ago
}
.author {
font-size: 21px;
3 years ago
}
.content {
padding-bottom: 40px;
}
.photo {
padding-bottom: 40px;
}
3 years ago
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row class="controls">
<b-col md="12" class="arrows">
<a href="/soulsoup" id="leftarrow"></a>
<a href="/whatwecan" id="rightarrow"></a>
</b-col>
</b-row>
<b-row>
<b-col md="4">
<b-row>
<b-col md="6" 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 class="monologue">
Two tablespoons olive oil, plus extra<br>
<span class="dialogue">his hair was soft and silvery</span><br>
three pounds yellow onions peeled and sliced into half moons<br>
<span class="dialogue">his hands moved gracefully across the piano</span><br>
sea salt and ground black pepper, to taste<br>
<span class="dialogue">he married the wrong woman</span><br>
one tablespoon thyme leaves, minced<br>
<span class="dialogue">I wouldnt be here if he hadnt</span><br>
one bay leaf<br>
<span class="dialogue">most days she didnt know who he was</span><br>
one clove of garlic, minced<br>
<span class="dialogue">the lockdown put an end to his daily walks</span><br>
one tablespoon tomato paste<br>
<span class="dialogue">he directed operas in the eighties</span><br>
one 12 cups French lentils, rinsed<br>
<span class="dialogue">he spent his 93rd year watching soccer games alone</span><br>
one 12 tablespoons sherry/balsamic vinegar<br>
<span class="dialogue">hoping to hear from us</span><br>
one 12 tablespoons gluten-free tamari soy sauce<br>
<span class="dialogue">we rarely called</span><br>
five cups vegetable stock, plus extra<br>
<span class="dialogue">I should have called</span><br>
two cups water<br>
<span class="dialogue">I should have called every day or moved back home</span><br>
two cloves of garlic, peeled and smashed<br>
<span class="dialogue">when I come back to the kitchen after hanging up the phone</span><br>
one 12 pound Yukon gold potatoes, peeled and chopped<br>
<span class="dialogue">the lentils are sticking to the bottom of the pot</span><br>
four cups cauliflower florets (from approximately 12 a large head)<br>
<span class="dialogue">Im turning the wooden spoon mechanically</span><br>
four tablespoons vegan butter, at room temperature<br>
<span class="dialogue">hes dead, I mumble</span><br>
12 cup unsweetened non-dairy milk<br>
<span class="dialogue">it isnt dead says Witold, just a little burnt</span><br>
one tablespoon nutritional yeast<br>
<span class="dialogue">no, hes dead, hes dead,</span><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>