-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_sample.html
157 lines (153 loc) · 4.26 KB
/
index_sample.html
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
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="https://qenta.com/wp-content/uploads/2023/05/favicon.png" type="image/x-icon" />
<title>Developer Portal | Qenta</title>
<style>
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: var(--rs-font-family-ui,var(--rs-font-family-jb-sans,"JetBrains Sans",Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Droid Sans","Helvetica Neue",Arial,sans-serif));
}
header {
background-color: #303033;
display: flex;
align-items: center;
justify-content: start;
padding: 10px;
gap: 10px;
}
header h4 {
color: white;
margin: 0;
font-weight: var(--rs-font-weight-semi-bold, 530);
line-height: var(--rs-h4-line-height, 24px);
}
section {
padding: 80px 120px;
}
section h1 {
color: #19191c;
font-size: 43px;
}
section h2 {
color: #19191c;
font-size: 32px;
margin-block-end: 1.5em;
}
section p.subtitle {
color: #19191c;
font-size: 29px;
font-weight: 320;
line-height: 39px;
margin-bottom: 50px;
padding-right: 200px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.card {
padding: 20px;
border: 1px solid #c1c1c1;
transition: all ease;
min-height: 200px;
display: flex;
flex-direction: column;
align-items: baseline;
justify-content: left;
position: relative;
}
.card:hover {
transform: scale(1.03);
}
.card a {
text-decoration: none;
color: inherit;
}
.card-icon {
top: 10px;
left: 10px;
width: 150px;
}
.card h3 {
text-align: left;
margin-block-start: 1.5em;
margin-block-end: 0.7em;
}
.card p.description {
color: rgba(25,25,28,.7);
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
footer {
font-size: 13px;
background-color: #303033;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
margin-right: auto;
margin-left: auto;
}
footer a {
color: white;
}
footer div.footer__left {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-left: 20px;
}
footer div.footer__right {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-right: 20px;
}
</style>
</head>
<body>
<header>
<img
src="https://developer.qenta.com/prowallet/images/qenta_logo.png"
alt="QENTA Logo"
style="height: 50px; margin-left: 20px; margin-right: 15px;"
/>
<h4>Qenta Documentation</h4>
</header>
<section>
<h1>Qenta Product Documentation</h1>
<p class="subtitle">
Need help? Here is the complete coverage for all the products and services provided by Qenta.
</p>
<h2>Products</h2>
<div class="grid-container">
<div class="card">
<a href="/prowallet">
<img src="prowallet_logo.png" alt="ProWallet icon" class="card-icon">
<h3>ProWallet</h3>
<p class="description">ProWallet allows you to perform mass payments and manage your treasury</p>
</a>
</div>
</div>
</section>
<footer>
<div class="footer__left">
<p>Copyright © Qenta 2024</p>
</div>
<div class="footer__right">
<p>Powered by <a target="_blank" href="https://qenta.com/">Qenta</a></p>
</div>
</footer>
</body>
</html>