diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-30 19:11:52 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-30 19:11:52 +0100 |
commit | 43d71a71cce9354f1d7a6ca84e3b583b9fbf5001 (patch) | |
tree | ec1397eb3364fafe9b26cbd7464ebdae84b666ba /components/GoogleDriveLink.vue | |
parent | 8afae8ea960b7162df851ad5946f4bbebd729ff3 (diff) | |
download | puszcza-43d71a71cce9354f1d7a6ca84e3b583b9fbf5001.tar.gz puszcza-43d71a71cce9354f1d7a6ca84e3b583b9fbf5001.zip |
Add to page
Diffstat (limited to 'components/GoogleDriveLink.vue')
-rw-r--r-- | components/GoogleDriveLink.vue | 65 |
1 files changed, 57 insertions, 8 deletions
diff --git a/components/GoogleDriveLink.vue b/components/GoogleDriveLink.vue index 729c03d..96e3fbb 100644 --- a/components/GoogleDriveLink.vue +++ b/components/GoogleDriveLink.vue @@ -3,9 +3,11 @@ <div class="image"> <img src="/assets/google-drive.png" alt="Drive" /> </div> - <p> - {{ text }} - </p> + <div class="text"> + <p> + {{ text }} + </p> + </div> <a :href="link"> <plain-button text="Przejdź" /> </a> @@ -31,30 +33,77 @@ export default { } </script> -<style scoped> +<style scoped> .google-drive-link { background: white; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); padding: 20px; + margin: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; - min-width: 200px; + min-width: 400px; +} + +.google-drive-link .text { + margin: 30px 0; +} + +.google-drive-link button, +.google-drive-link a { + width: 100%; + display: block; + margin: auto; + text-decoration: none; + max-width: 300px; } .google-drive-link img { display: block; margin: auto; + width: 40px; } .google-drive-link .image { background: #f3f3f3; border-radius: 50px; - padding: 20px; - margin: 20%; + padding: 15px; + margin: 0 20%; +} + +@media (min-width: 480px) { + .google-drive-link { + flex-direction: row; + width: 100%; + } + + .google-drive-link .text { + margin: 0 10px; + flex: 1; + text-align: left; + } + + .google-drive-link .image { + margin: 0; + margin-right: 10px; + padding: 10px; + } + + .google-drive-link img { + width: 30px; + } + + .google-drive-link a, + .google-drive-link button { + margin-right: 0; + } + + .google-drive-link a { + width: 20%; + } } -</style> +</style> |