feat(copyright): final component

This commit is contained in:
Julien
2018-09-09 18:58:41 +02:00
parent a56a5c800a
commit b5c448f697
7 changed files with 160 additions and 8 deletions

View File

@@ -3,10 +3,16 @@
************************************************************************* -->
<template lang="pug">
.c-layout-default
github-corner
.l-default
github-corner(
class="l-default__github"
)
nuxt
the-copyright(
class="l-default__copyright"
)
</template>
<!-- *************************************************************************
@@ -16,10 +22,12 @@
<script>
// PROJECT
import GithubCorner from "@/components/GithubCorner";
import TheCopyright from "@/components/TheCopyright";
export default {
components: {
GithubCorner
GithubCorner,
TheCopyright
}
};
</script>
@@ -29,20 +37,68 @@ export default {
************************************************************************* -->
<style lang="scss">
$c: ".l-default";
html {
overflow-y: scroll;
box-sizing: border-box;
padding: 60px 0 100px;
min-height: 100%;
background-color: #1b2431;
color: white;
text-align: center;
word-spacing: 1px;
font-size: 16px;
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, "Helvetica Neue", Arial, sans-serif;
font-family: "Heebo Regular", "Helvetica Neue", Source Sans Pro, Helvetica,
Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
@font-face {
font-family: "Heebo Thin";
src: url("/fonts/heebo/Heebo-Thin.otf");
}
@font-face {
font-family: "Heebo Light";
src: url("/fonts/heebo/Heebo-Light.otf");
}
@font-face {
font-family: "Heebo Regular";
src: url("/fonts/heebo/Heebo-Regular.otf");
}
@font-face {
font-family: "Heebo Medium";
src: url("/fonts/heebo/Heebo-Medium.otf");
}
@font-face {
font-family: "Heebo Bold";
src: url("/fonts/heebo/Heebo-Bold.otf");
}
@font-face {
font-family: "Heebo ExtraBold";
src: url("/fonts/heebo/Heebo-ExtraBold.otf");
}
@font-face {
font-family: "Heebo Black";
src: url("/fonts/heebo/Heebo-Black.otf");
}
#{$c} {
#{$c}__copyright {
position: fixed;
bottom: 0;
right: 0;
}
}
</style>