From 8cc130e4da6bdf4cfbfde9847819a786e90750c6 Mon Sep 17 00:00:00 2001 From: MTG2000 Date: Thu, 20 Jan 2022 17:35:26 +0200 Subject: [PATCH] feat (btc-payer): added privacy page --- landing-page/btc-payer/dist/style/index.css | 44 ++++- landing-page/btc-payer/index.html | 6 +- landing-page/btc-payer/privacy.html | 169 ++++++++++++++++++ landing-page/btc-payer/src/style/_layout.scss | 21 ++- 4 files changed, 229 insertions(+), 11 deletions(-) create mode 100644 landing-page/btc-payer/privacy.html diff --git a/landing-page/btc-payer/dist/style/index.css b/landing-page/btc-payer/dist/style/index.css index fa3a375..794f710 100644 --- a/landing-page/btc-payer/dist/style/index.css +++ b/landing-page/btc-payer/dist/style/index.css @@ -32,7 +32,9 @@ html { -o-tab-size: 4; tab-size: 4; /* 3 */ - font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; + font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", + "Segoe UI Symbol"; /* 4 */ font-weight: 500; } @@ -108,7 +110,8 @@ code, kbd, samp, pre { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, + "Liberation Mono", "Courier New", monospace; /* 1 */ font-size: 1em; /* 2 */ @@ -191,9 +194,9 @@ select { 2. Remove default button styles. */ button, -[type=button], -[type=reset], -[type=submit] { +[type="button"], +[type="reset"], +[type="submit"] { -webkit-appearance: button; /* 1 */ background-color: transparent; @@ -235,7 +238,7 @@ Correct the cursor style of increment and decrement buttons in Safari. 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */ -[type=search] { +[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; @@ -342,7 +345,7 @@ textarea::placeholder { Set the default cursor for buttons. */ button, -[role=button] { +[role="button"] { cursor: pointer; } @@ -1967,19 +1970,35 @@ Ensure the default browser behavior of the `hidden` attribute. } } +.content-wrapper { + -ms-overflow-style: none; + /* Internet Explorer 10+ */ + scrollbar-width: none; + /* Firefox */ +} + +.content-wrapper::-webkit-scrollbar { + display: none; + /* Safari and Chrome */ +} + .content-wrapper { display: flex; flex-direction: column; justify-content: center; align-items: center; + height: 100%; + overflow-y: scroll; } .content-wrapper .content { max-width: min(65%, 540px); + max-height: 100%; + padding-top: 20vh; } @media screen and (max-width: 1279px) { .content-wrapper .content { max-width: min(75%, 540px); - padding-bottom: 120px; + padding-top: 32px; } } .content-wrapper .email-input { @@ -2070,6 +2089,15 @@ Ensure the default browser behavior of the `hidden` attribute. width: 68px; } +footer { + padding-bottom: 64px; +} +@media screen and (max-width: 1279px) { + footer { + padding-bottom: 32px; + } +} + .creative-block-pc { background-color: #51b13e; flex-basis: 40%; diff --git a/landing-page/btc-payer/index.html b/landing-page/btc-payer/index.html index c9a6a76..c31acc8 100644 --- a/landing-page/btc-payer/index.html +++ b/landing-page/btc-payer/index.html @@ -76,10 +76,12 @@

-
© 2022 Peak Shift Ltd. + Contributors of BTC Payer, BTC Pay Server - All rights reserved. Privacy Policy + All rights reserved. + Privacy Policy
diff --git a/landing-page/btc-payer/privacy.html b/landing-page/btc-payer/privacy.html new file mode 100644 index 0000000..e069ae0 --- /dev/null +++ b/landing-page/btc-payer/privacy.html @@ -0,0 +1,169 @@ +--- +permalink: /btc-payer/privacy-policy +--- + + + + + + + + BTC Payer + + + + + + + + +
+
+ + + + + +
+
+
+ +

+ Privacy Policy +

+

+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +
+
+ Make Bitcoin payments with a shared custody account for you and your + clan. Get your pupusas and do all your shopping with lightning fast + bitcoin payments. +

+
+ © 2022 Peak Shift Ltd. + Contributors of BTC Payer, BTC Pay Server + All rights reserved. + Privacy Policy +
+
+
+
+ + + +
+ + + + + + +
+ + + +
+
+ + + + + diff --git a/landing-page/btc-payer/src/style/_layout.scss b/landing-page/btc-payer/src/style/_layout.scss index 9dcd130..a57deec 100644 --- a/landing-page/btc-payer/src/style/_layout.scss +++ b/landing-page/btc-payer/src/style/_layout.scss @@ -9,18 +9,30 @@ } } +.content-wrapper { + -ms-overflow-style: none; /* Internet Explorer 10+ */ + scrollbar-width: none; /* Firefox */ +} +.content-wrapper::-webkit-scrollbar { + display: none; /* Safari and Chrome */ +} + .content-wrapper { display: flex; flex-direction: column; justify-content: center; align-items: center; + height: 100%; + overflow-y: scroll; .content { max-width: min(65%, 540px); + max-height: 100%; + padding-top: 20vh; @include lt-lg { max-width: min(75%, 540px); - padding-bottom: 120px; + padding-top: 32px; } } @@ -118,6 +130,13 @@ } } +footer { + padding-bottom: 64px; + @include lt-lg { + padding-bottom: 32px; + } +} + .creative-block-pc { @include lt-lg { display: none;