Skip to content

Commit

Permalink
added sponsors Fixes btcpayserver#88
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhavgarg237 committed Oct 1, 2022
1 parent a820f43 commit 4e22ecd
Show file tree
Hide file tree
Showing 3 changed files with 469 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import btcPayLogo from "./images/btcpay-directory-logo.svg";
import btcPayLogoWhite from "./images/btcpay-directory-logo-white.png";
import moonFilled from "./images/moonFilled.svg";
import sunFilled2 from "./images/sunFilled2.svg";
import Supporter from "./components/Supporters/Supporter";

function App() {
const COLOR_MODES = ["light", "dark"];
Expand Down Expand Up @@ -78,6 +79,7 @@ function App() {
path="/newentry"
render={(props) => <NewEntry {...props} colorMode={colorMode} />}
/>
<Supporter />
</div>

<footer>
Expand Down
102 changes: 102 additions & 0 deletions src/components/Supporters/Supporter.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
.heading {
margin-left: auto;
margin-right: auto;
text-align: center;
font-weight: 700;
--tw-text-opacity: 1;
color: rgb(81 177 62 / var(--tw-text-opacity));
font-size: 1.5rem;
line-height: 2rem;
margin-top: 4rem;
margin-bottom: 2rem;
}

.centered-container-logos {
max-width: 840px;
margin-left: auto;
margin-right: auto;
padding: 0 0 1em 0;
text-align: center;
justify-content: center !important;
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
}

.space-x > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(5% * var(--tw-space-x-reverse));
margin-left: calc(5% * calc(1 - var(--tw-space-x-reverse)));
}

.logos {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 2em 0;
}

.image {
height: 6rem;
width: 6rem;
margin-left: auto;
margin-right: auto;
}

.image-text {
font-size: 1rem;
line-height: 1.5rem;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
text-align: center;
}

a {
text-decoration: none;
color: inherit;
}

.hover-underline:hover {
text-decoration-line: underline;
}

/* SVG SPRITE */
.baillie1 {
fill: var(--btcpay-body-text);
fill-opacity: 1;
stroke: var(--btcpay-body-text);
stroke-opacity: 1;
}
.baillie2 {
fill: var(--btcpay-body-text);
fill-opacity: 1;
fill-rule: evenodd;
stroke: var(--btcpay-body-text);
stroke-opacity: 1;
}
.baillie3 {
fill: var(--btcpay-body-text);
fill-opacity: 1;
stroke: var(--btcpay-body-text);
stroke-opacity: 1;
}
.strike {
fill: var(--btcpay-body-text);
}
.hrf {
fill: var(--btcpay-body-text);
}
.luna-node1 {
fill: #004581;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
}
.luna-node2 {
fill: #3384b9;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
}
Loading

0 comments on commit 4e22ecd

Please sign in to comment.