-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (145 loc) · 4.28 KB
/
index.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
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NanoCode</title>
<link rel="icon" href="src-tauri/icons/128x128.png">
<meta content="NanoCode" property="og:title" />
<meta content="Minimalist, Open-source and Light-weight code editor. " property="og:description" />
<meta content="https://azedeveloper.github.io/NanoCode" property="og:url" />
<meta content="https://i.ibb.co/3p1cv25/repository-open-graph-template-1.png" property="og:image" />
<meta content="#212121" data-react-helmet="true" name="theme-color" />
<style>
@font-face {
font-family: 'OpenSans';
src: url(src/assets/font/OpenSans-Regular.ttf);
}
body {
font-family: 'OpenSans';
background-color: #212121;
display: none;
}
.wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
justify-content: center;
align-items: center;
}
.title {
display: flex;
text-decoration: none;
}
.title-text {
color: white;
font-weight: bold;
font-size: 4rem;
margin-left: 10px;
}
.title-image img {
width: 150px;
margin-right: 10px;
}
.subtitle-text {
color: rgb(187, 187, 187);
font-size: 1.1em;
align-items: center;
text-align: center;
}
.download {
justify-content: center;
align-items: center;
text-align: center;
}
.download span {
color: rgb(187, 187, 187);
}
.download #version {
color: rgb(253, 253, 253);
}
.download-btn{
background: #231f1f;
border: 1px solid #2d2d2d;
border-radius: 10px;
padding: 10px 36px;
padding-left: 28px;
color: #aeaeae;
text-decoration: none;
display: inline-block;
font-size: 0.9rem;
text-align: center;
transition: 0.3s;
margin-top: 2px;
display: flex;
align-items: center;
width: 120px;
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.download-btn:hover{
background: #3a3535;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.download-btn strong{
color: white;
font-size: 1rem;
}
.download-btn svg{
color: white;
width: 25px;
height: 25px;
vertical-align: bottom;
margin-right: 12px;
}
@media screen and (max-device-width: 480px) and (orientation: portrait){
.title-text {
font-size: 2.5rem; !important
}
.subtitle-text {
font-size: 0.68em; !important
}
.title-image img {
width: 62px; !important
}
}
</style>
<script>
// when the document is fully loaded
window.addEventListener('load', function() {
// select the body element and show it with a fade-in effect
document.querySelector('body').style.display = 'block';
document.querySelector('body').animate([
{ opacity: 0 },
{ opacity: 1 }
], {
duration: 700, // set the duration of the animation to 0.5 seconds
fill: 'forwards' // keep the final state of the animation
});
});
</script>
</head>
<body>
<div class="wrapper">
<center>
<div class="title-image"><img src="src-tauri/icons/128x128@2x.png" alt=""></div>
<div class="title-text">NanoCode</div>
<div class="subtitle-text">Minimalist, Open-source and Light-weight code editor.</div></center>
<br>
<br>
<br>
<div class="download">
<center><span>Latest version: <span id="version">0.0.6 (BETA)</span></span></center>
<br>
<br>
<center>
<a id="download-win" href="https://github.com/azedeveloper/NanoCode/releases/download/v0.0.5/nanocode_0.0.5_setup.msi" class="download-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>
<span><strong>Download</strong><br>for windows</span>
</a>
</center>
</div>
</div>
</body>
</html>