Skip to content

Commit bfafa00

Browse files
committed
init
0 parents  commit bfafa00

File tree

3 files changed

+289
-0
lines changed

3 files changed

+289
-0
lines changed

index.html

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<html>
2+
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Mini-Software</title>
6+
<link rel="stylesheet" href="https://getbootstrap.com/docs/4.0/dist/css/bootstrap.min.css">
7+
<link rel="stylesheet" href="site.css">
8+
</head>
9+
10+
<body class="text-center">
11+
12+
<div class="cover-container d-flex h-100 p-3 mx-auto flex-column">
13+
<header class="masthead mb-auto">
14+
<div class="inner">
15+
<h3 class="masthead-brand">Mini-Software</h3>
16+
<nav class="nav nav-masthead justify-content-center">
17+
<a class="nav-link active" href="https://github.com/mini-software/">Mini-Software Github</a>
18+
<a class="nav-link active" href="https://gitee.com/shps951023">Mini-Software Gitee</a>
19+
</nav>
20+
</div>
21+
</header>
22+
23+
<main role="main" class="inner cover">
24+
<div id="subtitle">
25+
<h1 class="cover-heading">Power <strong class="orange">Mini-Software </strong> <br>with your donation</h1>
26+
<!-- <p class="lead">Buy me a coffee can help Mini-Software a lot.</p> -->
27+
<p class="lead">
28+
<!-- <div href="#" class="btn btn-lg btn-secondary" onclick="getCode()">Get Lincense Code</div> -->
29+
<div href="#" class="btn btn-lg btn-secondary" onclick="donate()">Donate Mini-Software</div>
30+
</p>
31+
<h1 id='code'></h1>
32+
<hr>
33+
</div>
34+
35+
<div id='dotnate'>
36+
37+
<!-- alipay -->
38+
<h1 class="cover-heading">Alipay - 支付宝</h1>
39+
<a href="https://user-images.githubusercontent.com/12729184/150716115-a56dc7f6-d9a7-4f2e-9eed-2b2e0b1e9f9c.png">
40+
<img src="https://user-images.githubusercontent.com/12729184/150716115-a56dc7f6-d9a7-4f2e-9eed-2b2e0b1e9f9c.png"
41+
alt="alipay" width="200px">
42+
</a>
43+
<a href="https://user-images.githubusercontent.com/12729184/150735491-822d4a95-4b45-40fb-b0b0-08731b29dd74.png">
44+
<img src="https://user-images.githubusercontent.com/12729184/150735491-822d4a95-4b45-40fb-b0b0-08731b29dd74.png"
45+
alt="alipay" width="200px">
46+
</a>
47+
<hr>
48+
<!-- YuShan -->
49+
<h1 class="cover-heading">E.SUN Bank 玉山銀行</h1>
50+
<p class="lead">
51+
Bank Code 銀行代號 808<br>
52+
Account 賬號 705979061551
53+
</p>
54+
<hr>
55+
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
56+
<input type="hidden" name="cmd" value="_s-xclick">
57+
<input type="hidden" name="hosted_button_id" value="XF7U44UHSW9F6">
58+
<input type="hidden" name="on0" value="Plan">
59+
<h1>PayPal</h1>
60+
<select name="os0" class="form-control">
61+
<option value="Plan1">Plan1 $5.00 USD</option>
62+
<option value="Plan2">Plan2 $15.00 USD</option>
63+
<option value="Plan3">Plan3 $25.00 USD</option>
64+
<option value="Plan4">Plan4 $35.00 USD</option>
65+
<option value="Plan5">Plan5 $45.00 USD</option>
66+
</select>
67+
<br>
68+
<input type="hidden" name="currency_code" value="USD">
69+
<input type="submit" class="btn btn-success" border="0" name="submit" alt="PayPal" value="Buy">
70+
<img alt="" border="0" src="https://www.paypalobjects.com/zh_TW/i/scr/pixel.gif" width="1" height="1">
71+
</form>
72+
73+
<hr>
74+
</div>
75+
</main>
76+
77+
<footer class="mastfoot mt-auto">
78+
<div class="inner">
79+
<p>Mini-Software by <a href="https://github.com/shps951023">@Wei Lin</a>.</p>
80+
</div>
81+
</footer>
82+
</div>
83+
84+
<script type="text/javascript">
85+
var sc_project = 12704976;
86+
var sc_invisible = 1;
87+
var sc_security = "e9b8b974";
88+
</script>
89+
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
90+
<noscript>
91+
<div class="statcounter"><a title="Web Analytics" href="https://statcounter.com/" target="_blank"><img
92+
class="statcounter" src="https://c.statcounter.com/12704976/0/e9b8b974/1/" alt="Web Analytics"
93+
referrerPolicy="no-referrer-when-downgrade"></a></div>
94+
</noscript>
95+
<!-- End of Statcounter Code -->
96+
</body>
97+
98+
</html>

site.css

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
/*
2+
* Globals
3+
*/
4+
5+
.orange {
6+
-webkit-text-size-adjust: 100%;
7+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
8+
text-align: center;
9+
font-family: inherit;
10+
line-height: 1.1;
11+
font-size: 42px;
12+
box-sizing: border-box;
13+
font-weight: 700;
14+
color: #f7941e;
15+
}
16+
17+
/* Links */
18+
a,
19+
a:focus,
20+
a:hover {
21+
color: #fff;
22+
}
23+
24+
/* Custom default button */
25+
.btn-secondary,
26+
.btn-secondary:hover,
27+
.btn-secondary:focus {
28+
color: #333;
29+
text-shadow: none; /* Prevent inheritance from `body` */
30+
background-color: #fff;
31+
border: .05rem solid #fff;
32+
}
33+
34+
35+
/*
36+
* Base structure
37+
*/
38+
39+
html,
40+
body {
41+
height: 100%;
42+
background-color: #333;
43+
}
44+
45+
body {
46+
display: -ms-flexbox;
47+
display: -webkit-box;
48+
display: flex;
49+
-ms-flex-pack: center;
50+
-webkit-box-pack: center;
51+
justify-content: center;
52+
color: #fff;
53+
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
54+
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
55+
}
56+
57+
.cover-container {
58+
max-width: 42em;
59+
}
60+
61+
62+
/*
63+
* Header
64+
*/
65+
.masthead {
66+
margin-bottom: 2rem;
67+
}
68+
69+
.masthead-brand {
70+
margin-bottom: 0;
71+
}
72+
73+
.nav-masthead .nav-link {
74+
padding: .25rem 0;
75+
font-weight: 700;
76+
color: rgba(255, 255, 255, .5);
77+
background-color: transparent;
78+
border-bottom: .25rem solid transparent;
79+
}
80+
81+
.nav-masthead .nav-link:hover,
82+
.nav-masthead .nav-link:focus {
83+
border-bottom-color: rgba(255, 255, 255, .25);
84+
}
85+
86+
.nav-masthead .nav-link + .nav-link {
87+
margin-left: 1rem;
88+
}
89+
90+
.nav-masthead .active {
91+
color: #fff;
92+
border-bottom-color: #fff;
93+
}
94+
95+
@media (min-width: 48em) {
96+
.masthead-brand {
97+
float: left;
98+
}
99+
.nav-masthead {
100+
float: right;
101+
}
102+
}
103+
104+
105+
/*
106+
* Cover
107+
*/
108+
.cover {
109+
padding: 0 1.5rem;
110+
}
111+
.cover .btn-lg {
112+
padding: .75rem 1.25rem;
113+
font-weight: 700;
114+
}
115+
116+
117+
/*
118+
* Footer
119+
*/
120+
.mastfoot {
121+
color: rgba(255, 255, 255, .5);
122+
}

store.html

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!DOCTYPE html>
2+
<html lang="zh">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>MiniSoftware 綠界商城</title>
6+
<style>
7+
body {
8+
font-family: Arial, sans-serif;
9+
margin: 0;
10+
padding: 0;
11+
}
12+
header {
13+
background-color: #2ecc71;
14+
color: #fff;
15+
padding: 20px;
16+
text-align: center;
17+
}
18+
h1 {
19+
margin: 0;
20+
font-size: 36px;
21+
}
22+
.product {
23+
border: 1px solid #ccc;
24+
padding: 20px;
25+
margin: 20px;
26+
}
27+
.product h2 {
28+
font-size: 24px;
29+
margin-top: 0;
30+
}
31+
.product p {
32+
font-size: 16px;
33+
margin-bottom: 0;
34+
}
35+
.contact {
36+
text-align: center;
37+
margin-top: 40px;
38+
}
39+
.contact p {
40+
font-size: 18px;
41+
margin-bottom: 10px;
42+
}
43+
.contact a {
44+
font-size: 18px;
45+
color: #2ecc71;
46+
text-decoration: none;
47+
}
48+
</style>
49+
</head>
50+
<body>
51+
<header>
52+
<h1>MiniSoftware 綠界商城</h1>
53+
</header>
54+
<div class="product">
55+
<h2>MiniExcel 1.0 License</h2>
56+
<p>MiniExcel 簡單、高效避免OOM的.NET處理Excel查、寫、模版填充數據工具。</p>
57+
<p>價格:999 TWD</p>
58+
</div>
59+
<div class="product">
60+
<h2>MiniWord 1.0 License</h2>
61+
<p>MiniWord .NET Word(docx) 模版導出引擎不需要安裝 Office COM+ 支持 Linux 和 Mac</p>
62+
<p>價格:999 TWD</p>
63+
</div>
64+
<div class="contact">
65+
<p>如有任何問題,請聯繫我們:</p>
66+
67+
</div>
68+
</body>
69+
</html>

0 commit comments

Comments
 (0)