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.

113 lines
2.6 KiB
Vue

<style scoped>
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins&family=Raleway&family=Work+Sans:wght@900&display=swap');
* {
border: 0px black solid;
background-color: #ffe6e6;
}
body {
background-color: #ffe6e6;
min-height: 100vh;
}
.about-text {
padding-right: 50px;
padding-top: 40px;
font-family: 'Poppins', sans-serif;;
font-size: 15px;
padding-left: 20px;
padding-bottom: 40px;
}
a:hover {
color: #333042;
text-decoration: none;
}
a {
color: #ff4c2b;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
#footer {
margin-top: 14em;
margin-left: 30px;
font-family: 'Poppins', sans-serif;
margin-bottom: 3em;
}
.title_story {
font-size: 80px;
font-family: 'Work Sans', sans-serif;
padding-left: 20px;
padding-top: 70px;
color: #333042
}
@media (max-width: 575px) {
.title_story {
font-size: 30px;
}
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
<b-col md="8">
<p class="title_story">Open Call Magiun #2, on adapting</p>
</b-col>
</b-row>
<b-row class="about-text">
<b-col md="6">
<p>
Back in Spring, nobody wanted to imagine we'd be in a similar situation months later. Now, we find ourselves in the winter of 2020. We have limited opportunities to hang out and share food with our friends and families or to celebrate pretty much anything. Even though we've had months to prepare, it's still hard to keep it together.</p>
<p>
On top of it all, there's a new challenge - getting ourselves in the right state of mind to spend the holidays far away from our loved ones. How have the last few months of adapting to a new way of life prepared us for the last push of the year? How much of what we're used to eating and experiencing are we going to try and recreate this winter? What will be new, or missing?</p>
<p>
The winter 2020 issue of Magiun is about adapting - as a coping mechanism, a way of learning or a creative way of moving forward. Whether you've adapted your expectations, taste, or methods, or failed in the process of adapting, I'd like to hear from you. Send your submissions until the 14th of February (text, image and anything in between) to hello@magiun.online</p>
</b-col>
<b-col md="6"></b-col>
</b-row>
<b-row>
<p id="footer"><a href="/firstissue">Read the first issue</a></p>
</b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'OpenCallPage',
components: {
MenuBar
}
}
</script>