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.

277 lines
4.6 KiB
Vue

<style scoped>
@font-face {
font-family: 'AUTHENTICSansLight';
src: url('../../../fonts/AUTHENTICSans-90.otf');
font-weight: 100;
}
@font-face {
font-family: 'AUTHENTICSansCondensed';
src: url('../../../fonts/AUTHENTICSans-Condensed-60.otf');
}
* {
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 {
font-family: 'AUTHENTICSansLight';
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: 72px;
line-height: 100%;
font-family: 'AUTHENTICSansCondensed', sans-serif;
padding-top: 96px;
color: black;
text-align: left;
}
.author {
font-size: 36px;
font-family: 'AUTHENTICSansCondensed', sans-serif;
text-align: right;
color: black;
}
.arrows {
font-size: 40px;
top: 48px;
color: black;
vertical-align: top;
overflow: hidden;
font-family: 'AUTHENTICSansCondensed';
}
.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: 24px;
margin-right: 96px;
text-align: right;
}
#onhover_left {
font-size: 15px;
margin-top: 24px;
margin-left: 96px;
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);
}
hr.divider {
border-top: 1px solid black;
}
.small_icon {
max-width: 60%;
padding-top: 100px;
}
.zoom {
max-width: 100%;
}
.color_back {
background-color: #5FC44F;
max-height: 100%;
}
.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;
}
}
#authentic-sans-link {
color: black;
text-decoration: underline;
}
</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'>
<br>
<p>Magiun Magazine,<br>
Issue 3, Winter 2021</p>
<p>Magiun publishes thoughts<br>
on everyday food.</p>
<p>This publication has been put together by Alice Strete, with Simon Browne</p>
<hr class="divider">
<p>Contributions by:<br>
Alina, Ileana, Sylvie, Esmeralda,<br>
Honey, Louise, Inge, Patricia,<br>
Raluca, Ana-Maria, Valentina </p>
<p>
Typeface:<br>
<a id="authentic-sans-link" href="https://authentic.website/shop.html#sans" target="blank">Authentic Sans</a>, designed by<br>
Christina Janus and Desmond Wong
</p>
<p>
Graphic design:<br>
Simon Browne
</p>
<p>
Illustration:<br>
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>