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.

295 lines
5.2 KiB
Vue

<style scoped>
@font-face {
font-family: 'AUTHENTICSansLight';
src: url('../../../fonts/AUTHENTICSans-60.otf');
font-weight: lighter;
}
@font-face {
font-family: 'AUTHENTICSans';
src: url('../../../fonts/AUTHENTICSans-90.otf');
font-weight: 400;
}
* {
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: 'AUTHENTICSansLight';
font-weight: lighter;
font-size: 18px;
line-height: 24px;
padding-bottom: 40px;
color: black;
text-align: left;
}
.controls {
padding-top: 12px;
height: 120px;
z-index: 1;
position: relative;
}
#illustration {
width: 80%;
float: left;
margin-top: 150px;
filter: grayscale(80%) contrast(80%) opacity(50%);
}
#illustration:hover {
filter: grayscale(0%);
}
.title_story {
font-size: 48px;
font-family: 'AUTHENTICSans', sans-serif;
font-weight: 400;
padding-top: 70px;
color: black;
text-align: left;
}
.author {
font-size: 36px;
font-family: 'AUTHENTICSans', sans-serif;
font-weight: 400;
text-align: right;
color: black;
}
.arrows {
font-size: 40px;
top: 30px;
color: black;
vertical-align: top;
overflow: hidden;
font-family: 'AUTHENTICSans';
}
.arrows p {
visibility: hidden;
}
.arrows:hover p {
visibility: visible;
}
.arrows a {
display: block;
}
#leftarrow {
float: left;
color: black;
}
#rightarrow {
float: right;
color: black;
}
#onhover_right {
font-size: 15px;
margin-top: 60px;
text-align: right;
}
#onhover_left {
font-size: 15px;
margin-top: 60px;
text-align: left;
}
.image_container {
padding-top: 5px;
}
.photo {
max-height: 100%;
max-width: 100%;
padding: 20px;
}
.img-fluid {
filter: sepia(100%) saturate(300%) brightness(100%) hue-rotate(270deg);
}
.small_icon {
max-width: 60%;
padding-top: 100px;
}
.zoom {
max-width: 100%;
}
.color_back {
background-color: #EDECFF;
}
.color_next {
background-color: #FFB37B;
}
@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>
<b-col md="4" class="color_back">
<b-row class="controls">
<b-col md="12" class="arrows">
<router-link to="/twoberries" id="leftarrow"><b-img src="media/left-arrow.png"></b-img></router-link>
<p id="onhover_left">Floating on Habit</p>
</b-col>
</b-row>
</b-col>
<b-col md="4" class="color_back">
<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">by Ileana Sebe</p>
</b-col>
</b-row>
<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>
<div class="image_container">
<b-row>
<b-col md="12">
<b-img class="photo" src="media/ileana/ileana_1.jpg"> </b-img>
</b-col>
</b-row>
</div>
<p>
I for myself took the lunch break very late in the afternoon, <br>
when hunger was beyond its peak point.
</p>
<b-row>
<b-col md="12">
<b-img class="photo" src="media/ileana/ileana_2.jpg"> </b-img>
</b-col>
</b-row><p>
I ate more often by the computer which never happened while working in an office building and sharing lunch with colleagues.
</p>
<b-row>
<b-col md="12">
<b-img class="photo" src="media/ileana/ileana_3.jpg"> </b-img>
</b-col>
</b-row>
<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>
<b-row>
<b-col md="12">
<b-img class="photo" src="media/ileana/ileana_4.jpg"> </b-img>
</b-col>
</b-row>
<p>
Not the usual combinations, but very satisfying for my taste buds and so easy to make.
</p>
<b-row>
<b-col md="12">
<b-img class="photo" src="media/ileana/ileana_5.jpg"> </b-img>
</b-col>
</b-row>
</div>
</b-col>
<b-col md="4" class="color_next">
<b-row class="controls">
<b-col md="12" class="arrows">
<router-link to="/bananas" id="rightarrow"><b-img src="media/right-arrow.png"></b-img></router-link>
<p id="onhover_right">[each] Tuesday Afternoon</p>
</b-col>
</b-row>
<b-row>
<b-col md="4" >
<b-img id="illustration" src="media/illustrations_3/mouse_small.png"></b-img>
</b-col>
</b-row>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from '../MenuBar'
export default {
name: 'workfromhome',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>