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.

120 lines
1.8 KiB
Vue

<style scoped>
* {
border: 0px black solid;
background-color: #ffe6e6;
}
a:hover {
color: hotpink;
text-decoration: none;
}
a {
color: gray;
}
.title_story {
font-size: 80px;
font-family: 'Permanent Marker', cursive;
padding-left: 20px;
padding-top: 70px;
color: #333042
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
.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">When the oven is broken</p>
<b-row>
<b-col md="6">
<p class="author">a visual story by Angeliki Diakrousi</p>
</b-col>
</b-row>
</b-col>
<b-col md="2" class="small_icon">
<div class="zoom">
<a href="/leekpilaf"><b-img center class="img-fluid" alt="Responsive image" src="media/leek_prev.png"> </b-img></a>
</div>
</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_next.png"> </b-img></a>
</div>
</b-col>
</b-row>
<b-row>
<b-col md="2">
</b-col>
<b-col md="8">
<b-img center class="img-fluid" src="media/ricecooker/ricecooker.png"></b-img>
</b-col>
<b-col md="2">
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'ricecooker',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>