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.

271 lines
4.3 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;
}
.fadein {
opacity: 0;
-moz-transition: opacity 1.5s;
-webkit-transition: opacity 1.5s;
-o-transition: opacity 1.5s;
transition: opacity 1.5s;
}
body.loaded .fadein {
opacity: 1;
}
.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;
}
.title_story {
font-size: 48px;
font-family: 'AUTHENTICSans', sans-serif;
font-weight: 400;
padding-top: 70px;
color: black;
text-align: left;
}
.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: 12px;
margin-top: 40%;
}
.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: #5FC44F;
}
.color_next {
background-color: white;
;
}
@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="/mittens" id="leftarrow"><b-img src="media/left-arrow.png"></b-img></router-link>
<p id="onhover_left">How to Poach an Egg (perfectly)</p>
</b-col>
</b-row>
</b-col>
<b-col md="4" class="color_back">
<b-row>
<b-col md="12">
<p class="title_story">Colophon</p>
</b-col>
</b-row>
<div class='content'>
<p>Magiun Magazine,
Issue 3, Winter 2021</p>
<p>
Magiun publishes thoughts
on everyday food.</p>
<p>
This publication has been put together by Alice Strete, with Simon Browne</p>
<p>
------------------------------------------
</p>
<p>
Contributions by:<br>
Alina, Ileana, Sylvie, Esmeralda, Honey, Louise, Inge, Patricia,<br>
Raluca, Ana-Maria, Valentina </p>
<p>
Typeface:
Authentic Sans, designed by
Christina Janus and Desmond Wong
</p>
<p>
Graphic design:
Simon Browne
</p>
<p>
Illustration:
Alice Strete
</p>
<p>
Magiun Magazine, 2021<br>
Copyleft: This is a free work, you can copy, distribute, and modify it under the terms of the Free Art License http://artlibre.org/licence/lal/en/
</p>
</div>
</b-col>
<b-col md="4" class="color_next">
<b-row class="controls">
<b-col md="12" class="arrows">
<router-link to="/EditorNote3" id="rightarrow"><b-img src="media/right-arrow.png"></b-img></router-link>
<p id="onhover_right">Domestic Bliss</p>
</b-col>
</b-row>
</b-col>
</b-row>
</b-container>
</template>
<script>
import MenuBar from '../MenuBar'
export default {
name: 'colophon3',
data: function() {
return {
}
},
components: {
MenuBar
}
}
</script>