-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ayub
committed
Dec 7, 2022
1 parent
37f8211
commit 7dd5bc3
Showing
5 changed files
with
161 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang="fa" dir="rtl"> | ||
|
||
<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"> | ||
<link rel="stylesheet" type="text/css" href="styles.css" /> | ||
<link rel="icon" href="logo.svg" sizes="any" type="image/svg+xml" /> | ||
<title>واژهدان | دستیار واژهگزینیِ فارسی</title> | ||
</head> | ||
|
||
<body> | ||
<img id="logo" src="logo.svg"> | ||
<h1>واژهدان</h1> | ||
<h2>ابزاری برای بهتر نوشتن...</h2> | ||
<p id="description"> | ||
واژهدان، نرمافزاری متشکل از پنج لغتنامهٔ مترادف و متضاد واژگان فارسی، فرهنگ طیفی، مصوبات فرهنگستان، | ||
فرهنگ واژگان سره، اشعار گنجور و فرهنگ املایی خط فارسی است. | ||
</p> | ||
|
||
<p id="note"> | ||
اکانت قبلی من که پروژهٔ واژهدان روی آن قرار داشت، به دلیل یک خطای انسانی حذف شد. لطفاً با <a | ||
href="https://github.com/mrkou65/Vajehdan">ستارهدادن به پروژه</a>، اعتبار رفته را بازگردانید. | ||
<br> | ||
ممنونم. ❤️ | ||
</p> | ||
<div id="download"> | ||
<a class="btn" href="VajehdanSetup-5.4.2-x64.exe">دانلودٔ نسخه ۶۴ بیتی</a> | ||
<a class="btn" href="VajehdanSetup-5.4.2-x86.exe">دانلودٔ نسخه ۳۲ بیتی</a> | ||
<a id="donation" class="btn" href="https://zarinp.al/kokabi">حمایت مالی در صورت تمایل</a> | ||
|
||
</div> | ||
<img id="preview" src="preview.gif"> | ||
<p id="shutdown"> | ||
در حال حاضر برنامهای برای توسعهٔ واژهدان ندارم! | ||
<br> | ||
با سپاس از همراهی شما. 🙏 | ||
</p> | ||
<p id="email">[email protected]</p> | ||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
@font-face { | ||
font-family: vazirmatn; | ||
src: url('vazirmatn.woff2') format('woff2 supports variations'); | ||
font-weight: 100 900; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
body{ | ||
font-family: vazirmatn; | ||
width: 70vw; | ||
margin: 8em auto; | ||
} | ||
|
||
#logo{ | ||
width: 4em; | ||
display: block; | ||
margin: .8em auto; | ||
} | ||
|
||
#description{ | ||
max-width: 28em; | ||
margin: 0 auto; | ||
} | ||
|
||
#preview{ | ||
display: block; | ||
margin: 0 auto; | ||
} | ||
|
||
#download{ | ||
display: flex; | ||
justify-content: center; | ||
flex-wrap: wrap; | ||
margin-top: 1.2em; | ||
} | ||
|
||
.btn { | ||
background-color: hsl(204, 100%, 40%); | ||
padding: 0.5rem 1rem; | ||
border-radius: 0.3rem; | ||
text-decoration: none; | ||
font-weight: 300; | ||
text-align: center; | ||
width: 12em; | ||
color: white; | ||
cursor: pointer; | ||
margin: 1em; | ||
} | ||
|
||
p{ | ||
font-size: 1.3em; | ||
line-height: 1.6; | ||
} | ||
|
||
h1,h2{ | ||
text-align: center; | ||
} | ||
|
||
#shutdown{ | ||
text-align: center; | ||
font-size: 1em; | ||
|
||
background-color: rgb(243, 243, 243); | ||
margin: 0 auto; | ||
margin-top: 4.5em; | ||
max-width: 60em; | ||
padding: 1.2em 1em; | ||
border-radius: 8px; | ||
} | ||
|
||
#donation{ | ||
background-color: rgb(0, 202, 34); | ||
color: black; | ||
font-weight: 500; | ||
} | ||
|
||
#source{ | ||
text-align: center; | ||
text-decoration: underline; | ||
background-color: transparent; | ||
color: black; | ||
font-weight: 300; | ||
display: block; | ||
margin: 0 auto; | ||
height: 1.4em; | ||
} | ||
|
||
#email{ | ||
font-size: 14px; | ||
font-family: sans-serif; | ||
text-align: center; | ||
margin-bottom: 0; | ||
} | ||
|
||
#note{ | ||
font-size: .9em; | ||
font-weight: 400; | ||
background-color: rgb(255, 242, 185); | ||
margin: 0 auto; | ||
margin-top: 2em; | ||
max-width: 39em; | ||
padding: 1em 1em; | ||
border-radius: 8px; | ||
|
||
} |
Binary file not shown.