Skip to content

Commit 5b16e63

Browse files
committed
deploy: 35f54bd
0 parents  commit 5b16e63

21 files changed

+1174
-0
lines changed

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
opass.app
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"applinks": {
3+
"apps": [
4+
],
5+
"details": [
6+
{
7+
"appID": "9UZ879Y8DL.app.opass.ccip",
8+
"paths": [
9+
"NOT /_/*",
10+
"/open/*"
11+
]
12+
}
13+
]
14+
}
15+
}

public/.well-known/assetlinks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[
2+
{
3+
"relation": [
4+
"delegate_permission/common.handle_all_urls",
5+
"delegate_permission/common.get_login_creds"
6+
],
7+
"target": {
8+
"namespace": "android_app",
9+
"package_name": "app.opass.ccip",
10+
"sha256_cert_fingerprints": [
11+
"7C:7E:29:73:FD:E2:D7:7B:E2:F4:E9:5B:BE:16:B8:27:8A:F5:14:43:DA:DE:C6:E9:61:9A:90:D8:7A:0F:FA:C9"
12+
]
13+
}
14+
}
15+
]

public/404.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Oops, not found ?

public/50x.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Oops, crash ?!

public/css/main.css

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
html {
2+
min-height: 100%;
3+
}
4+
5+
body {
6+
min-height: 100%;
7+
height: auto;
8+
background: linear-gradient(90deg, rgba(48, 248, 145, 0.15) 0%, rgba(61, 146, 56, 0.04) 100%, rgba(96, 167, 48, 1) 120%);
9+
}
10+
11+
* {
12+
font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC", "Helvetica Neue", "Helvetica", "Arial", "Microsoft JhengHei", wf_SegoeUI, "Segoe UI", Segoe, "Segoe WP", Tahoma, Verdana, Ubuntu, "Bitstream Vera Sans", "DejaVu Sans", 微軟正黑體, "LiHei Pro", "WenQuanYi Micro Hei", "Droid Sans Fallback", "AR PL UMing TW", Roboto, "Hiragino Maru Gothic ProN", メイリオ, "ヒラギノ丸ゴ ProN W4", Meiryo, "Droid Sans", sans-serif;
13+
}
14+
15+
.centerBox {
16+
display: flex;
17+
justify-content: center;
18+
align-content: center;
19+
}
20+
21+
.conference-use-card {
22+
min-height: 200px;
23+
}
24+
25+
html[data-useragent*="AppleWebKit/"][data-useragent*="Safari/"]:not([data-useragent*="Chrome/"]) .ui.image {
26+
/* for fix fucking ugly Apple Safari */
27+
height: 100%;
28+
}
29+
30+
@media only screen and (max-width: 767px) {
31+
.conferences {
32+
padding-left: 1em !important;
33+
padding-right: 1em !important;
34+
}
35+
.angle.double.right.icon {
36+
transform: rotate(90deg);
37+
}
38+
.ui.fluid.image {
39+
width: 50vw;
40+
height: 50vw;
41+
object-fit: scale-down;
42+
}
43+
html[data-useragent*="AppleWebKit/"][data-useragent*="Safari/"]:not([data-useragent*="Chrome/"]) .ui.fluid.image {
44+
height: 50vw !important;
45+
}
46+
h4.ui.divider.header {
47+
white-space: pre;
48+
}
49+
}
50+
51+
#app {
52+
padding-bottom: 20px;
53+
}
54+
55+
#store {
56+
color: rgb(74, 74, 74);
57+
padding: 10px;
58+
box-sizing: border-box;
59+
font-size: 0;
60+
}
61+
62+
#goosrc {
63+
display: inline-block;
64+
vertical-align: top;
65+
width: 50%;
66+
height: 47px;
67+
background-image: url('/img/google-play-badge.svg');
68+
background-repeat: no-repeat;
69+
background-size: contain;
70+
background-position: center;
71+
margin: 0;
72+
}
73+
74+
#goosrc.one {
75+
width: 100%;
76+
}
77+
78+
#appsrc {
79+
display: inline-block;
80+
vertical-align: top;
81+
width: 50%;
82+
height: 47px;
83+
background-image: url('/img/app-store-badge.svg');
84+
background-repeat: no-repeat;
85+
background-size: contain;
86+
background-position: center;
87+
margin: 0;
88+
}
89+
90+
#appsrc.one {
91+
width: 100%;
92+
}

public/css/open.main.css

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
html {
2+
height: 100%;
3+
min-height: 100%;
4+
}
5+
6+
body {
7+
height: 100%;
8+
overflow: hidden;
9+
background: linear-gradient(45deg, rgba(48, 248, 145, 0.15) 0%, rgba(61, 146, 56, 0.04) 75%, rgba(96, 167, 48, 0) 100%);
10+
background-position: center bottom;
11+
transform: translateZ(0);
12+
perspective: 1000;
13+
}
14+
15+
#block {
16+
position: fixed;
17+
top: 50%;
18+
left: 50%;
19+
width: 350px;
20+
height: 350px;
21+
z-index: 1;
22+
transform: translate(-50%, -50%);
23+
-webkit-transform: translate(-50%, -50%);
24+
}
25+
26+
#block.qr {
27+
height: 500px;
28+
}
29+
30+
#background {
31+
position: absolute;
32+
top: 40px;
33+
width: 350px;
34+
height: 200px;
35+
border: 1px solid rgba(238, 238, 238, 0.1);
36+
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 0%, rgba(238, 238, 238, 0.5) 100%);
37+
box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
38+
border-radius: 7px;
39+
z-index: 1;
40+
overflow: hidden;
41+
padding-top: 40px;
42+
}
43+
44+
#block.qr #background {
45+
height: 390px;
46+
}
47+
48+
#icon {
49+
position: absolute;
50+
top: 0;
51+
left: 50%;
52+
width: 80px;
53+
transform: translate(-50%, 0%);
54+
height: auto;
55+
z-index: 2;
56+
}
57+
58+
#block #background #qr {
59+
position: relative;
60+
left: calc(50% - (150px / 2));
61+
display: none;
62+
}
63+
#block.qr #background #qr {
64+
display: block;
65+
}
66+
67+
h1 {
68+
color: rgb(74, 74, 74);
69+
text-align: center;
70+
font-size: 1.5rem;
71+
}
72+
73+
h2 {
74+
text-align: center;
75+
font-size: 1.1rem;
76+
margin: 0;
77+
}
78+
79+
p {
80+
color: rgb(74, 74, 74);
81+
text-align: center;
82+
}
83+
84+
#store {
85+
color: rgb(74, 74, 74);
86+
padding: 10px;
87+
box-sizing: border-box;
88+
font-size: 0;
89+
}
90+
91+
#goosrc {
92+
display: inline-block;
93+
vertical-align: top;
94+
width: 50%;
95+
height: 47px;
96+
background-image: url('/img/google-play-badge.svg');
97+
background-repeat: no-repeat;
98+
background-size: contain;
99+
background-position: center;
100+
margin: 0;
101+
}
102+
103+
#goosrc.one {
104+
width: 100%;
105+
}
106+
107+
#appsrc {
108+
display: inline-block;
109+
vertical-align: top;
110+
width: 50%;
111+
height: 47px;
112+
background-image: url('/img/app-store-badge.svg');
113+
background-repeat: no-repeat;
114+
background-size: contain;
115+
background-position: center;
116+
margin: 0;
117+
}
118+
119+
#appsrc.one {
120+
width: 100%;
121+
}
122+
123+
#background-opass {
124+
position: fixed;
125+
top: 0;
126+
left: 0;
127+
right: 0;
128+
bottom: 0;
129+
background-repeat: no-repeat;
130+
background-size: 100%;
131+
background-position: center center;
132+
}

public/favicon.ico

9.44 KB
Binary file not shown.

public/img/app-store-badge.svg

Lines changed: 129 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)