1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ site.page_title }}</title>
<meta name="description" content="{{ site.app_description }}">
<link rel="shortcut icon" href="{{ site.app_icon | relative_url }}">
{% if site.enable_smart_app_banner %}
<meta name="apple-itunes-app" content="app-id={{ site.ios_app_id }}">
{% endif %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/1.0.2/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<style>
:root {
--bulma-shadow-l: 0;
}
body {
background-color: #f8f9fc;
}
.card {
background-color: #e3e7ee;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #0a0e17;
}
.card {
background-color: #111827;
}
}
.card {
border: 2px solid rgba(156, 163, 175, 0.1);
border-radius: 0.75rem;
height: 100%;
transition: all 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
border-color: {{ site.accent_color }}80;
}
.card-content {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.app-icon {
border-radius: 30px;
width: 120px;
height: 120px;
}
.store-button {
height: 4rem;
margin: 0.5rem;
}
.phone-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.phone-frame {
position: absolute;
height: 90vh;
z-index: 10;
pointer-events: none;
}
.phone-screenshot {
height: 87vh;
}
@media (min-width: 300px) {
.phone-frame {
position: absolute;
height: 60vh;
z-index: 10;
pointer-events: none;
}
.phone-screenshot {
height: 57vh;
/*margin-top: 3px;*/
border-radius: 2rem;
}
}
.app-icon-clip {
clip-path: path('M120,37.2V37c0-.9,0-1.8,0-2.7a35.1,35.1,0,0,0-.51-5.9,19.62,19.62,0,0,0-1.86-5.6,18.8,18.8,0,0,0-8.28-8.3,19.62,19.62,0,0,0-5.62-1.9,35.46,35.46,0,0,0-5.91-.51c-.9,0-1.8,0-2.73,0H55.41c-.9,0-1.8,0-2.73,0a43.35,43.35,0,0,0-5.91.51,19.74,19.74,0,0,0-5.62,1.9,18.84,18.84,0,0,0-8.28,8.3,19.62,19.62,0,0,0-1.86,5.6,35.51,35.51,0,0,0-.51,5.9c0,.9,0,1.8,0,2.73v40.2c0,.9,0,1.8,0,2.73a43.35,43.35,0,0,0,.51,5.91,19.62,19.62,0,0,0,1.86,5.6,18.84,18.84,0,0,0,8.28,8.28,19.71,19.71,0,0,0,5.62,1.86,35.46,35.46,0,0,0,5.91.51c.9,0,1.8,0,2.73,0H95.09c.9,0,1.8,0,2.73,0a43.28,43.28,0,0,0,5.91-.51,19.55,19.55,0,0,0,5.62-1.86,18.8,18.8,0,0,0,8.28-8.28,19.62,19.62,0,0,0,1.86-5.6,35.51,35.51,0,0,0,.51-5.91c0-.9,0-1.8,0-2.73V37.2Z');
}
.feature-box {
height: 100%;
}
.feature-box .icon {
color: {{site.accent_color}};
margin-bottom: 0.5rem;
}
.feature-box .title {
margin-bottom: 0.75rem;
font-size: 1.1rem;
}
.feature-box p {
font-size: 0.9rem;
line-height: 1.5;
}
.social-icons {
margin-bottom: 1.5rem;
}
.social-icons .icon {
margin: 0 0.5rem;
transition: transform 0.3s ease;
}
.social-icons .icon:hover {
transform: translateY(-5px);
}
.footer-links {
margin-top: 1rem;
}
.footer-links a {
padding: 0 1rem;
border-right: 1px solid #dbdbdb;
}
.footer-links a:last-child {
border-right: none;
}
.made-by {
font-weight: 500;
margin-bottom: 1rem;
}
.social-icons .icon {
color: {{ site.footer_link_color }};
transition: filter 0.2s ease;
}
.social-icons a:hover {
filter: brightness(0.65);
}
</style>
</head>
|