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.

185 lines
3.9 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: 80%;
}
.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>
<b-col md="8">
<p class="title_story">A list</p>
<b-row>
<b-col md="6">
<p class="author">a list by Alice Strete</p>
</b-col>
</b-row>
</b-col>
<b-col md="2" class="small_icon">
<div class="zoom">
<a href="/cake"><b-img center class="img-fluid" alt="Responsive image" src="media/cake_prev.png"> </b-img></a>
</div>
</b-col>
<b-col md="2" class="small_icon">
<div class="zoom">
<a href="/eggs"><b-img center class="img-fluid" alt="Responsive image" src="media/egg_next.png"> </b-img></a>
</div>
</b-col>
</b-row>
<b-row>
<b-col md="5">
<div class='content'>
<p>
My favourite things that I've had during this quarantine, in no particular order:
</p>
<p>
- cauliflower bites - they managed to lift me out of a couple of really low days
</p>
<p>
- raspberry spongecake - the simplest recipe which I've also shared on Mastodon, proving that it's worth having frozen fruit hidden in the freezer
</p>
<p>
- placinte cu cartofi - I can't even describe the comfort of a placinta, which I ate multiple times a day until they were gone. And I even figured out the trick to keep them soft - cover them while they're hot with plastic wrap.
</p>
<p>
- the first 2 orders of Mcdonalds - In a time when the outside world felt scary and out of my control, having something from Mcdonalds come all the way to my home was a rare moment of normalcy. Can't deny, Quarter Pounders provided me with the perfect amount of joy, until I reached my limit and my body felt wrong. But that was only after the first 2 orders.
</p>
<p>
- my first ever batch of soft sesame pretzels - They came out fat and squishy and I piled them up on a plate, savoured them with my eyes, my phone camera and my tastebuds, and they were everything I wanted and more.
</p>
</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/pretzel/pretzels.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/pretzel/masto.PNG"> </b-img>
</b-col>
<b-col md="1">
</b-col>
</b-row>
</div>
</b-container>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'pretzel',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>