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.

269 lines
5.7 KiB
Vue

<style scoped>
@import url('https://fonts.googleapis.com/css?family=Inconsolata&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Raleway&family=Work+Sans:wght@900&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');
}
@font-face {
font-family: 'AUTHENTICSans';
src: url('../../fonts/AUTHENTICSans-90.otf');
font-weight: 400;
}
* {
border: 0px black solid;
background-color: #E6F2FB;
}
body {
background-color: #E6F2FB;
min-height: 100vh;
}
#magi {
background-color: transparent;
/*padding: 20px;*/
/*--color-stop: #fff5f5;*/
/*--color-bot: #333042;*/
}
.img-fluid {
/*fill: url(#magi) #ffcccc;*/
}
#mag_title {
font-size: 500%;
/*color: #ffcccc;*/
color: black;
font-family: 'Work Sans', sans-serif;
text-align: left;
/*position: fixed;*/
/*padding: 6px;*/
background-color: transparent;
z-index: 1;
}
#mag_subtitle {
font-size: 250%;
font-family: 'AUTHENTICSans';
color: black;
background-color: transparent;
height: auto;
text-align: left;
}
.summary {
border-left: 3px solid #ffcccc;
border-top: 3px dotted #ffcccc;
padding: 20px;
}
.icons img {
width: 60%;
}
.author {
font-family: 'ED-Regular', sans-serif;;
text-align: center;
color: #FA00FF;
}
.container_width {
max-width: 100%;
}
#toc {
color: #1B75BC;
font-family: 'AUTHENTICSans';
font-size: 120%;
text-align: center;
padding: 24px;
max-width: 100%;
min-width: 70%;
margin: 18px;
}
a {
color: #1B75BC;
}
.author {
color: #1B75BC;
}
#edition {
color: black;
font-size: 18px;
font-family: 'AUTHENTICSans';
letter-spacing: 1px;
margin-top: 80px;
text-align: left;
background-colour: transparent;
}
@media (max-width: 1217px) {
#mag_title {
font-size: 500%;
padding-top: 12px;
}
#mag_subtitle {
font-size: 150%;
text-align: left;
padding-top: inherit;
}
}
@media (max-width: 575px) {
#mag_title {
font-size: 80px;
padding-top: inherit;
}
#mag_subtitle {
padding-top: inherit;
text-align: right;
}
#edition {
font-size: 18px;
text-align: right;
margin-top: -36px;
background-color: transparent;
}
.icons img {
width: 80%;
}
.icons p {
padding-top: 10%;
}
#magi {
width: 50%;
text-align: right;
margin-top: -24px;
}
.col-md-2 {
border: none;
}
#main_container {
padding-top: 64px;
}
}
#main_container {
padding-top: 72px;
padding-bottom: 120px;
}
.footer_page {
font-family: 'Poppins', sans-serif;
font-size: 12px;
text-align: center;
margin-top: 20px;
}
</style>
<template>
<div>
<MenuBar/>
<b-container fluid class="p-0">
<b-row id="main_container">
<b-col md="6">
<b-row>
<b-col md="6" offset-md="2">
<router-link to="/about"><p id="mag_title">Magiun</p></router-link>
</b-col>
<b-col id="edition">Winter 2021
</b-col>
</b-row>
<b-row>
<b-col md="6" offset-md="2">
<p id="mag_subtitle">#3 On Routine</p>
</b-col>
</b-row>
</b-col>
<b-col md="4" offset-md="1">
<b-row>
<b-col id="toc">
<p class="recipe_title">Contents</p>
<p class="item"><router-link to="/twoberries">Floating on Habit</router-link><br>
<span class="author">Alina Turdean</span>
</p>
<p class="item"><router-link to="/workfromhome">Freestyle Platouaș</router-link><br>
<span class="author">Ileana Sebe</span>
</p>
<p class="item"><router-link to="/bananas">[each] Tuesday Afternoon</router-link><br>
<span class="author">Sylvie van Wijk</span>
</p>
<p class="item"><router-link to="/popcorn">Yes, Chef</router-link><br>
<span class="author">Esmeralda Anstrauta</span>
</p>
<p class="item"><router-link to="/potato">One Way with Potatoes</router-link><br>
<span class="author">Honey Jones-Hughes</span>
</p>
<p class="item"><router-link to="/bowl">Cooking Apart Together</router-link><br>
<span class="author">Louisa Bufardeci and Inge Hoonte</span>
</p>
<p class="item"><router-link to="/threeeggs">Me, My Mom and those Three Eggs</router-link><br>
<span class="author">Patricia Cîrtog</span>
</p>
<p class="item"><router-link to="/olives">A Jar of Green Olives</router-link><br>
<span class="author">Raluca Chereji</span>
</p>
<p class="item"><router-link to="/vodka">Spoiled</router-link><br>
<span class="author">Ana-Maria Gușu</span>
</p>
<p class="item"><router-link to="/mittens">How to Poach an Egg (Perfectly)</router-link><br>
<span class="author">Valentina Vella</span>
</p>
</b-col>
</b-row>
</b-col>
</b-row>
<b-row>
<b-col>
<footer>
<p class="footer_page">This web publication was created by Alice Strete with Simon Browne</p>
</footer>
</b-col>
</b-row>
</b-container>
</div>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'ThirdEdition',
components: {
MenuBar
}
}
</script>