forked from vgaNAR6ta/drags-and-nerds
49 lines
1004 B
Vue
49 lines
1004 B
Vue
<template>
|
|
<div id="titleContainer">
|
|
<GeneratedDiv></GeneratedDiv>
|
|
<TitleTextDiv></TitleTextDiv>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/*================= Mise en page:
|
|
=> Mobile First : par défaut, moins de 500px
|
|
=> Tablette et PC format haut : de 500 à 1000px
|
|
=> PC large : à partir de 1000px
|
|
*/
|
|
|
|
/*+++++++++++++++++ COPYBOX
|
|
================ PC HAUT/IPAD
|
|
@media(min-width:650px){}
|
|
================ PC LARGE
|
|
@media(min-width:1300px){}
|
|
*/
|
|
|
|
#titleContainer{
|
|
background-color: transparent;
|
|
width:100%;
|
|
position: relative;
|
|
height:100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
/*================ PC LARGE*/
|
|
@media(min-width:1300px){
|
|
#titleContainer{
|
|
height:100%;
|
|
width:66.7%;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
name : 'TitleContent',
|
|
mounted(){
|
|
console.log("Title content is loaded!");
|
|
}
|
|
};
|
|
</script>
|