-
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
0 parents
commit 1ecd0fe
Showing
15 changed files
with
313 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 @@ | ||
apadanalinux.ir |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,71 @@ | ||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Thin.woff2") format("woff2"); | ||
font-weight: 100; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-ExtraLight.woff2") format("woff2"); | ||
font-weight: 200; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Light.woff2") format("woff2"); | ||
font-weight: 300; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Regular.woff2") format("woff2"); | ||
font-weight: 400; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Medium.woff2") format("woff2"); | ||
font-weight: 500; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-SemiBold.woff2") format("woff2"); | ||
font-weight: 600; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Bold.woff2") format("woff2"); | ||
font-weight: 700; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-ExtraBold.woff2") format("woff2"); | ||
font-weight: 800; | ||
font-style: normal; | ||
font-display: swap; | ||
} | ||
|
||
@font-face { | ||
font-family: "Vazirmatn"; | ||
src: url("./Vazirmatn-RD-Black.woff2") format("woff2"); | ||
font-weight: 900; | ||
font-style: normal; | ||
font-display: swap; | ||
} |
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,39 @@ | ||
@media (prefers-color-scheme: dark) { | ||
*::selection { | ||
color: var(--dark-color); | ||
background-color: var(--light-color); | ||
} | ||
|
||
body { | ||
background: var(--primary-shade-one); | ||
background: linear-gradient( | ||
207deg, | ||
var(--primary-shade-one) 10%, | ||
var(--secondary-shade-one) 60%, | ||
var(--ternary-shade-one) 100% | ||
); | ||
color: var(--light-tint); | ||
} | ||
|
||
a:link, | ||
a:visited { | ||
color: var(--primary-tint-one); | ||
text-decoration: none; | ||
background-image: linear-gradient( | ||
var(--primary-tint-one), | ||
var(--primary-tint-one) | ||
); | ||
} | ||
|
||
a:active { | ||
background-image: linear-gradient( | ||
var(--primary-tint-two), | ||
var(--primary-tint-two) | ||
); | ||
color: var(--primary-tint-two); | ||
} | ||
|
||
.logo { | ||
fill: var(--light-tint); | ||
} | ||
} |
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,126 @@ | ||
@import url("../fonts/vazirmatn.css"); | ||
@import url("./darkMode.css"); | ||
|
||
*, | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
:root { | ||
--dark-tint: #83888a; | ||
--dark-color: #31393c; | ||
--dark-shade: #191d1e; | ||
|
||
--primary-tint-one: #7aadff; | ||
--primary-tint-two: #4d91ff; | ||
--primary-color: #2176ff; | ||
--primary-shade-one: #144799; | ||
--primary-shade-two: #0d2f66; | ||
|
||
--secondary-tint-one: #e6949b; | ||
--secondary-tint-two: #d6545e; | ||
--secondary-color: #cc2936; | ||
--secondary-shade-one: #7a1920; | ||
--secondary-shade-two: #3d0c10; | ||
|
||
--ternary-tint-one: #fbcc92; | ||
--ternary-tint-two: #f9b766; | ||
--ternary-color: #f79824; | ||
--ternary-shade-one: #c67a1d; | ||
--ternary-shade-two: #945b16; | ||
|
||
--light-tint: #f5f5f6; | ||
--light-color: #eaebec; | ||
--light-shade: #bbbcbd; | ||
} | ||
|
||
html { | ||
font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, | ||
"Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", | ||
sans-serif; | ||
font-size: 62.5%; | ||
direction: rtl; | ||
min-height: 100dvh; | ||
} | ||
|
||
body { | ||
min-height: 100dvh; | ||
background: var(--primary-tint-one); | ||
background: linear-gradient( | ||
207deg, | ||
var(--primary-tint-one) 10%, | ||
var(--secondary-tint-one) 60%, | ||
var(--ternary-tint-one) 95% | ||
); | ||
color: var(--dark-shade); | ||
font-size: 1.8rem; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 1.4rem; | ||
text-align: center; | ||
text-wrap: balance; | ||
} | ||
|
||
*::selection { | ||
color: var(--light-color); | ||
background-color: var(--dark-color); | ||
} | ||
|
||
a:link, | ||
a:visited { | ||
color: var(--primary-shade-one); | ||
text-decoration: none; | ||
background-image: linear-gradient( | ||
var(--primary-shade-one), | ||
var(--primary-shade-one) | ||
); | ||
transition: background-size 0.2s ease-in-out; | ||
background-size: 0% 0.2rem; | ||
background-position-y: 100%; | ||
background-position-x: 0%; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
a:hover { | ||
background-size: 100% 0.2rem; | ||
background-position-x: 100%; | ||
} | ||
|
||
a:active { | ||
background-image: linear-gradient( | ||
var(--primary-shade-two), | ||
var(--primary-shade-two) | ||
); | ||
color: var(--primary-shade-two); | ||
} | ||
|
||
header { | ||
font-size: 2rem; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
gap: 1.4rem; | ||
} | ||
|
||
main { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
width: 90%; | ||
max-width: 80rem; | ||
margin: 0 auto; | ||
padding: 2rem; | ||
gap: 2rem; | ||
} | ||
|
||
.logo { | ||
fill: var(--dark-shade); | ||
width: 15rem; | ||
height: 15rem; | ||
} |
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,11 @@ | ||
@media (max-width: 37.5em) { | ||
header { | ||
flex-direction: column-reverse; | ||
gap: 1rem; | ||
} | ||
|
||
.logo { | ||
width: 10rem !important; | ||
height: 10rem !important; | ||
} | ||
} |
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,65 @@ | ||
<!DOCTYPE html> | ||
<html lang="fa" dir="rtl"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>پارچ آپادانا</title> | ||
<link rel="stylesheet" href="./assets/styles/general.css" /> | ||
<link rel="stylesheet" href="./assets/styles/queries.css" /> | ||
<!-- <link rel="stylesheet" href="./assets/styles/darkMode.css" /> --> | ||
</head> | ||
<body> | ||
<header> | ||
<div> | ||
<h1>پارچ آپادانا</h1> | ||
<h2>توزیع تجاری پارچ</h2> | ||
</div> | ||
<div class="logos"> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
version="1.1" | ||
viewBox="0 0 512 512" | ||
class="logo" | ||
fill="#fff" | ||
fill-opacity="1" | ||
> | ||
<path | ||
d="M11.233 395.584c1.382-25.906 6.636-110.216 17.358-156.632 3.8-16.45 15.442-40.593 26.805-55.589 24.905-32.869 88.566-69.648 126.877-73.302 6.251-.597 6.314-.517 11.67 14.712 2.961 8.421 8.97 23.184 13.35 32.806 6.09 13.372 7.967 19.849 7.967 27.483 0 11.585 3.25 17.97 12.951 25.44 9.893 7.618 19.858 9.87 31.414 7.098 11.685-2.804 32.265-17.418 32.265-22.913 0-5.704-4.995-4.708-14.194 2.83-9.393 7.697-19.851 12.492-27.244 12.492-2.839 0-8.98-2.237-13.646-4.972-9.846-5.77-13.883-13.581-13.883-26.862 0-6.683-2.401-14.201-9.421-29.496-13.73-29.915-17.585-43.696-18.747-67.025-.998-20.02 3.129-54.272 7.004-58.148 1.838-1.838 23.403 4.707 35.447 10.758 12.327 6.194 28.673 23.222 35.392 36.87 10.888 22.117 13.241 41.7 8.575 71.345-1.16 7.363-.904 8.142 2.672 8.142 2.176 0 4.425-1.508 5-3.352 2.465-7.91 4.396-29.073 3.55-38.898l-.917-10.64 14.199-2.207c7.81-1.214 15.748-2.802 17.641-3.529 3.25-1.247 3.271-.99.375 4.611-1.687 3.262-3.067 7.762-3.067 9.998 0 7.093 6.339 3.464 11.833-6.774 7.867-14.658 17.117-22.71 38.17-33.228 14.066-7.026 25.339-10.988 41.636-14.631 42.704-9.547 67.72-16.408 77.032-21.127 5.151-2.61 9.826-4.746 10.387-4.746 2.112 0 .916 11.89-1.705 16.957-3.355 6.488-17.75 19.96-25.747 24.096-3.258 1.684-16.465 6.574-29.35 10.866-25.79 8.591-39.215 14.763-43.924 20.193-6.018 6.941-13.573 21.848-12.495 24.657 2.178 5.676 6.742 2.617 13.17-8.826l6.557-11.675 7.697 8.743c13.211 15.01 20.59 44.664 19.455 78.196-.646 19.095-1.038 20.63-11.9 46.567-18.112 43.254-18.31 44.393-20.29 116.538-1.649 60.107-1.922 63.294-6.163 71.83-3.129 6.298-7.156 10.592-13.65 14.556-7.99 4.878-10.947 5.59-22.32 5.38-15.826-.293-34.66-4.866-45.17-10.967-7.44-4.318-19.388-17.991-30.44-34.834-6.137-9.353-10.223-11.476-14.278-7.42-3.754 3.753-1.805 13.67 11.526 58.66 5.329 17.984 9.223 33.163 8.654 33.731-124.47 36.813-226.736-43.695-278.078-87.762ZM257.172 134.47c4.4-9.18 5.134-37.119 1.28-48.72-5.352-16.115-26.245-36.664-37.276-36.664-5.543 0-8.425 12.582-7.46 32.567.669 13.851 1.821 18.431 7.713 30.652 7.246 15.03 12.021 20.72 21.61 25.75 7.59 3.983 10.909 3.141 14.133-3.585z" | ||
/> | ||
</svg> | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
version="1.1" | ||
viewBox="0 0 64 64" | ||
class="logo" | ||
fill="#fff" | ||
fill-opacity="1" | ||
> | ||
<path | ||
d="M31.36 63.641c-5.459-1.472-10.547-6.111-14.6-13.309l-.9-1.6.978-1.745c1.385-2.472 3.945-5.796 6.705-8.707 1.305-1.375 2.34-2.534 2.299-2.575-.04-.04-2.626 1.619-5.745 3.687-3.12 2.067-5.772 3.76-5.894 3.76-.242 0-.629-1.289-1.146-3.819-.182-.89-.326-3.688-.32-6.218.01-5.032.545-8.397 1.958-12.331.904-2.515 2.806-6.347 3.151-6.347.142 0 2.102.878 4.357 1.951 2.254 1.074 4.22 1.952 4.369 1.952.148 0-.653-1.01-1.78-2.243a479.05 479.05 0 0 1-3.407-3.765l-1.356-1.523 2.331-2.393C26.35 4.32 30.838 1.739 36.176.468c2.093-.498 3.03-.563 6.358-.442 2.146.079 4.53.306 5.297.506l1.394.363-2.23.178c-2.883.229-4.888 1.16-6.761 3.141-1.68 1.776-2.4 3.116-2.853 5.312-.531 2.575.043 5.613 1.67 8.827.345.683 1.887 3.186 3.426 5.562 1.539 2.377 3.541 5.755 4.45 7.506l1.653 3.185-.653.51c-.36.28-2.41 1.723-4.557 3.208a929.865 929.865 0 0 0-4.019 2.787c-.491.375.745.289 4.19-.293 6.596-1.112 6.59-1.112 6.767-.538.958 3.122 1.268 9.254.596 11.78-1.489 5.593-6.087 10.14-11.704 11.576-2.033.518-5.927.521-7.84.005z" | ||
/> | ||
</svg> | ||
</div> | ||
</header> | ||
<main> | ||
<p> | ||
آپادانا یک توزیع لینوکس برپایهٔ | ||
<a href="https://parchlinux.com">پارچ لینوکس</a> است که با هدف ارائه یک | ||
سیستمعامل پایدار، کارآمد و کاربرپسند برای محیطهای تجاری و خانگی | ||
<strong>درحال توسعه میباشد</strong>. | ||
</p> | ||
<p> | ||
چشمانداز پروژه آپادانا ایجاد یک توزیع گنو/لینوکسی است که بتواند بهطور | ||
همزمان نیازهای کاربران تجاری و خانگی را پاسخ دهد. | ||
</p> | ||
<p> | ||
برای کسب اطلاعات بیشتر دربارهٔ آپادانا میتوانید | ||
<a | ||
href="https://git.parchlinux.com/apadana/documents/-/blob/main/README.md" | ||
>سند راهبردی پروژه آپادانا</a | ||
> | ||
را مطالعه کنید. | ||
</p> | ||
</main> | ||
</body> | ||
</html> |