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.

239 lines
5.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');
}
@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;
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 {
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;;
text-align: center;
color: #FA00FF;
}
.small_icon {
max-width: 60%;
padding-top: 100px;
}
.zoom {
max-width: 100%;
}
@media (max-width: 575px){
.small_icon {
display: none;
}
.title_story {
font-size: 48px;
}
.author {
font-size: 21px;
}
.content {
padding-bottom: 40px;
}
.photo {
padding-bottom: 40px;
}
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row class="controls">
<b-col md="12" class="arrows">
<a href="/twoberries" id="leftarrow"></a>
<a href="/soulsoup" id="rightarrow"></a>
</b-col>
</b-row>
<b-row>
<b-col md="4">
<b-row>
<b-col md="6" offset-md="3">
<div class="zoom">
<b-img center class="img-fluid" alt="Responsive image" src="media/magiun2/porcini.png"></b-img>
</div>
</b-col>
</b-row>
<b-row>
<b-col md="12">
<p class="title_story">Freestyle Platouaș</p>
</b-col>
</b-row>
<b-row>
<b-col md="12">
<p class="author">essay and photos by Ileana Sebe</p>
</b-col>
</b-row>
</b-col>
<b-col md="4">
<div class='content'>
<p>Work from home has come with new eating habits, <br>
some of them not the healthiest ones,<br>
at least not what was considered healthy before the covid period.
</p><p>
I for myself took the lunch break very late in the afternoon, <br>
when hunger was beyond its peak point.
</p><p>
I ate more often by the computer which never happened while working in an office building and sharing lunch with colleagues.
</p><p>
So, when hunger kicked in big time, the only thing to do was to grab on a plate of food I like and had in the fridge or pantry and create a freestyle salty & sweet mix.
</p><p>
Not the usual combinations, but very satisfying for my taste buds and so easy to make.
</p>
</div>
</b-col>
<b-col md="4">
<b-container fluid>
<div class="image_container">
<b-row>
<b-col md="10" offset-md="2">
<b-img class="photo" src="media/ileana/ileana_1.jpg"> </b-img>
</b-col>
</b-row>
<b-row>
<b-col md="10" offset-md="2">
<b-img class="photo" src="media/ileana/ileana_2.jpg"> </b-img>
</b-col>
</b-row>
<b-row>
<b-col md="10" offset-md="2">
<b-img class="photo" src="media/ileana/ileana_3.jpg"> </b-img>
</b-col>
</b-row>
<b-row>
<b-col md="10" offset-md="2">
<b-img class="photo" src="media/ileana/ileana_4.jpg"> </b-img>
</b-col>
</b-row>
<b-row>
<b-col md="10" offset-md="2">
<b-img class="photo" src="media/ileana/ileana_5.jpg"> </b-img>
</b-col>
</b-row>
</div>
</b-container>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from '../MenuBar'
export default {
name: 'workfromhome',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>