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.

131 lines
1.8 KiB
Vue

<style scoped>
* {
border: 0px black solid;
background-color: #ffe6e6;
}
.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;
}
#footer {
margin-top: 14em;
margin-left: 30px;
font-family: 'Poppins', sans-serif;
margin-bottom: 3em;
}
.container_width {
max-width: 100%;
padding-left: 0px;
padding-right: 0px;
padding-top: 70px;
}
.title_story {
font-size: 80px;
font-family: 'Work Sans', sans-serif;
padding-left: 20px;
padding-top: 70px;
color: #333042
}
.author {
font-size: 20px;
font-family: 'Poppins', sans-serif;;
padding-left: 20px;
}
.small_icon {
max-width: 20%;
padding-top: 70px;
}
@media (max-width: 575px) {
.title_story {
font-size: 25px;
}
.small_icon {
max-width: 50%;
padding-top: 20px;
padding-left: 50px;
}
.author {
font-size: 15px;
}
}
</style>
<template>
<b-container fluid class="p-0">
<MenuBar/>
<b-row>
<b-col md="8">
<p class="title_story">Title</p>
<b-row>
<b-col md="6">
<p class="author">a note by Alice Strete</p>
</b-col>
</b-row>
</b-col>
<b-col md="1">
</b-col>
<b-col md="2" class="small_icon">
</b-col>
<b-col md="1">
</b-col>
</b-row>
<b-row class="about-text">
<b-col md="6">
</b-col>
</b-row>
<b-row><b-col md="6">
<p id="footer"><a href="/editornote1">Read the editor note for the first issue.</a></p>
</b-col></b-row>
</b-container>
</template>
<script>
import MenuBar from './MenuBar'
export default {
name: 'EditorNote',
components: {
MenuBar
}
}
</script>