1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-28 04:59:02 +00:00
awesome-cheatsheets/components/TheCopyright.vue

63 lines
1.4 KiB
Vue
Raw Normal View History

2018-09-09 16:58:41 +00:00
<!-- *************************************************************************
TEMPLATE
************************************************************************* -->
<template lang="pug">
2018-09-09 17:49:42 +00:00
a(
class="c-the-copyright"
href="https://twitter.com/LeCoupa"
target="_blank"
)
2018-09-09 16:58:41 +00:00
span.c-the-copyright__name By LeCoupa
span.c-the-copyright__picture
</template>
<!-- *************************************************************************
SCRIPT
************************************************************************* -->
<script>
2018-09-09 17:49:42 +00:00
export default {
methods: {
onClick() {
console.log("onClick");
}
}
};
2018-09-09 16:58:41 +00:00
</script>
<!-- *************************************************************************
STYLE
************************************************************************* -->
<style lang="scss">
$c: ".c-the-copyright";
#{$c} {
display: flex;
align-items: center;
justify-content: center;
padding: 5px 5px 5px 10px;
2018-09-09 16:58:41 +00:00
border-top: 1px solid #313d4f;
border-left: 1px solid #313d4f;
border-top-left-radius: 4px;
background-color: #171e29;
#{$c}__name {
margin-right: 6px;
color: #ffffff;
font-size: 14px;
}
#{$c}__picture {
display: inline-block;
width: 30px;
height: 30px;
border-radius: 100%;
background-image: url("/images/common/lecoupa.jpg");
2018-09-09 17:49:42 +00:00
background-size: cover;
2018-09-09 16:58:41 +00:00
}
}
</style>