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.

96 lines
1.3 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: 'Viga', sans-serif;
padding-left: 20px;
padding-top: 20px;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
}
</style>
<template>
<b-container fluid class="container_width">
<MenuBar/>
<b-row>
<b-col md="8">
<p class="title_story">Balcony Marinade</p>
</b-col>
<b-col md="2">
<a href="/pesto"><b-img class="img-fluid" src="media/basil.png"> </b-img></a>
</b-col>
<b-col md="2" class="small_icon">
<a href="/cart"><b-img class="img-fluid" src="media/cart.png"> </b-img></a>
</b-col>
</b-row>
<b-row>
<b-col md="2">
</b-col>
<b-col md="4">
<b-img center class="img-fluid" src="media/bbq/bag.jpg"></b-img>
</b-col>
<b-col md="4">
<b-img center class="img-fluid" src="media/bbq/convo.PNG"></b-img>
</b-col>
<b-col md="2">
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'bbq',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>