diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-27 17:42:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 17:42:53 +0100 |
commit | 3c2ac6715dfffc2eda38e014ed0b4986ccc7f75a (patch) | |
tree | 6fe224aac15e46ed4f527b12b86fdac7ab376b29 /components/ObozWidget.vue | |
parent | 5305c18b05803bf0d032027e645c71ac59627621 (diff) | |
parent | 6582d35072ee2bb81e0600311292aca63a1fd0eb (diff) | |
download | puszcza-3c2ac6715dfffc2eda38e014ed0b4986ccc7f75a.tar.gz puszcza-3c2ac6715dfffc2eda38e014ed0b4986ccc7f75a.zip |
Merge pull request #24 from 19pdh/oboz
Oboz
Diffstat (limited to 'components/ObozWidget.vue')
-rw-r--r-- | components/ObozWidget.vue | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/components/ObozWidget.vue b/components/ObozWidget.vue new file mode 100644 index 0000000..084feab --- /dev/null +++ b/components/ObozWidget.vue @@ -0,0 +1,50 @@ +<template> + <section class="oboz-widget"> + <nuxt-link to="/oboz/2020"> + <img src="/assets/oboz.svg" /> + </nuxt-link> + </section> +</template> + +<script> +export default { + name: 'ObozWidget' +} +</script> + +<style scoped> +.webp .oboz-widget { + background-image: url('/assets/oboz.webp'); +} + +.oboz-widget { + width: 100%; + + margin-top: 50px; + padding: 80px 20%; + + background-image: url('/assets/oboz.jpg'); + background-size: cover; + background-position: center; + background-repeat: no-repeat; + + display: flex; + flex-direction: row; + justify-content: center; +} + +img { + max-width: 60vmin; + transition: all 1s ease-in-out; +} + +img:hover { + transform: scale(1.1); +} + +@media (max-width: 500px) { + .oboz-widget { + padding: 80px 20px; + } +} +</style> |