Skip to content

Commit c18b02d

Browse files
committed
Add Zuite's donation page
1 parent a2af727 commit c18b02d

File tree

2 files changed

+135
-0
lines changed

2 files changed

+135
-0
lines changed

pages/zuite/donate.vue

+135
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
<script lang="ts">
2+
export default {
3+
head() {
4+
return {
5+
title: `Zuite's Donation Page`,
6+
link: [
7+
{ rel: 'icon', href: '/img/zuite/zuite_skull.ico' }
8+
]
9+
};
10+
},
11+
mounted() {
12+
document.getElementsByClassName('navbar').item(0).classList.add('hidden');
13+
},
14+
unmounted() {
15+
document.getElementsByClassName('navbar').item(0).classList.remove('hidden');
16+
},
17+
}
18+
</script>
19+
20+
<template>
21+
<Title>Zuite's Donation Page</Title>
22+
23+
<div class="background">
24+
<!--<div class="circles"></div>-->
25+
</div>
26+
27+
<div class="xl:flex">
28+
<div class="xl:w-1/2 h-screen text-center flex bg-[#290d40] px-12">
29+
<div class="my-auto">
30+
<h3 class="text-8xl font-extrabold pb-8">Just kidding!<br>I am employed :P</h3>
31+
<p class="text-2xl pt-8 bree-serif">
32+
Please spend your money responsibly.
33+
<br><br>
34+
If you absolutely must throw money at me, just subscribe on Twitch or chuck some bits at me.
35+
<br><br>
36+
Save your money for things you want or would like to do!
37+
</p>
38+
</div>
39+
</div>
40+
41+
<div class="xl:h-screen">
42+
<img class="right-0 h-full aspect-square my-auto" src="/img/zuite/zuite_donate.webp">
43+
</div>
44+
</div>
45+
46+
47+
</template>
48+
49+
<style>
50+
@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800);
51+
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
52+
53+
body {
54+
font-family: Nunito, sans-serif !important;
55+
color: rgb(240, 231, 239);
56+
overflow-y: auto;
57+
}
58+
59+
.bree-serif {
60+
font-family: "Bree Serif", serif;
61+
font-weight: 400;
62+
font-style: normal;
63+
}
64+
65+
.dl {
66+
color: #f6ddfc;
67+
}
68+
69+
.dl:hover {
70+
color: #883c97;
71+
}
72+
73+
.version-button {
74+
background: rgba(117, 50, 50, 0.3);
75+
cursor: pointer;
76+
}
77+
78+
.version-button i {
79+
float: left;
80+
font-size: 150%;
81+
}
82+
83+
.version-list {
84+
max-height: 50%;
85+
overflow-y: auto;
86+
}
87+
88+
.version-list-item {
89+
background: rgba(41, 13, 13, 0.35);
90+
width: 97%;
91+
margin: auto;
92+
left: 0;
93+
right: 0;
94+
border: 0.5px rgba(41, 13, 13, 0.1) solid;
95+
}
96+
97+
.list {
98+
width: 100%;
99+
height: 60%;
100+
bottom: 0;
101+
max-height: 60%;
102+
overflow: auto;
103+
}
104+
105+
.background {
106+
position: absolute;
107+
top: 0;
108+
left: 0;
109+
z-index: -15;
110+
height: 100%;
111+
width: 100%;
112+
/*background: linear-gradient(to bottom, #392f6c, #4b367d);*/
113+
background: linear-gradient(to bottom, #f69c9c, #ffd3d3);
114+
background-size: cover;
115+
background-repeat: no-repeat;
116+
}
117+
118+
.card {
119+
/*background: #282240c7;*/
120+
background: #b96e6ec7;
121+
height: 90%;
122+
max-height: 90%;
123+
position: absolute;
124+
overflow: hidden;
125+
top: 0;
126+
bottom: 0;
127+
left: 0;
128+
right: 0;
129+
margin: auto;
130+
131+
border-radius: 16px;
132+
backdrop-filter: blur(2px);
133+
}
134+
135+
</style>

public/img/zuite/zuite_donate.webp

207 KB
Binary file not shown.

0 commit comments

Comments
 (0)