-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
206 lines (201 loc) · 8.25 KB
/
index.html
File metadata and controls
206 lines (201 loc) · 8.25 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!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" />
<title>Note App</title>
<link rel="stylesheet" href="/styles/style.css" />
<link rel="stylesheet" href="/styles/fonts.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet"
/>
</head>
<body>
<!-- /start» Preload -->
<div class="loader">
<div class="loader-nine">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<!-- Preload «end/ -->
</div>
<!-- /start» Header -->
<header>
<nav>
<div class="navigation">
<div class="message">
<h1>به ابزار نوت اَپ خوش آمدید</h1>
</div>
<div class="night-mode"><i class="fas fa-moon" id="theme"></i></div>
</div>
</nav>
</header>
<!-- Header «end/ -->
<main>
<!-- /start» Section -->
<section>
<div class="fixed">
<!-- /start» Right Side -->
<div class="right-section">
<!-- /start» Right Side Head Btn & Text -->
<div class="btn-head">
<h2><i class="far fa-sticky-note"></i>افزودن نوت جدید</h2>
<div class="btn">
<button id="save"><i class="fas fa-save"></i>ذخیره نوت</button>
<button id="clear">
<i class="fas fa-eraser"></i>پاک کردن
</button>
</div>
</div>
<!-- Right Side Head Btn & Text «end/ -->
<!-- /start» Input Form -->
<div class="note-box">
<form id="note-form" autocomplete="off">
<label for="note-title">عنوان:</label><br />
<input
type="text"
id="note-title"
maxlength="48"
placeholder="عنوان را وارد کنید"
/><br />
<label for="note-description">توضیحات:</label><br />
<textarea
id="note-description"
maxlength="300"
placeholder="توضیحات اضافی را اینجا تایپ کنید..."
></textarea>
</form>
</div>
<!-- Input Form «end/ -->
<!-- /start» Note Option -->
<!-- /start» Set Font & Color -->
<div class="options">
<div class="accordion">
<h3>شخصی سازی</h3>
</div>
<div class="tool">
<div class="note-option">
<div class="change-color">
<h4><i class="fas fa-tint"></i>تغییر رنگ</h4>
<div class="title-color">
<label for="title-color-set">رنگ عنوان:</label>
<input
type="color"
id="title-color-set"
value="#000000"
class="demo-inputs"
/>
</div>
<div class="description-color">
<label for="description-color-set">رنگ توضیحات:</label>
<input
type="color"
id="description-color-set"
value="#000000"
class="demo-inputs"
/>
</div>
<div class="background-color">
<label for="background-color-set">رنگ پس زمینه</label>
<input
type="color"
id="background-color-set"
value="#067B9E"
class="demo-inputs"
/>
</div>
</div>
<div class="change-size">
<h4><i class="fas fa-font"></i>تغییر سایز</h4>
<div class="title-size">
<label for="title-size-set">اندازه عنوان</label>
<select
id="title-size-set"
class="select-style demo-inputs"
>
<option value="20" hidden selected>انتخاب کنید</option>
<option value="20" class="small-option">کوچک</option>
<option value="22" class="medium-option">متوسط</option>
<option value="24" class="big-option">بزرگ</option>
</select>
</div>
<div class="description-size">
<label for="description-size-set">اندازه توضیحات</label>
<select id="description-size-set" class="demo-inputs">
<option value="14" hidden selected>انتخاب کنید</option>
<option value="14" class="small-option">کوچک</option>
<option value="16" class="medium-option">متوسط</option>
<option value="18" class="big-option">بزرگ</option>
</select>
</div>
</div>
</div>
</div>
<!-- Set Font & Color «end/ -->
<!-- /start» Demo -->
<div class="demo-box">
<div class="accordion">
<h3>پیش نمایش</h3>
</div>
<div class="tool">
<div class="note-demo">
<div class="note-preview">
<h2 class="note-preview-title">تست عنوان پیش نمایش</h2>
<div class="note-preview-description">
<p class="note-preview-description-text">
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت
چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون
بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و
برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع
با هدف بهبود ابزارهای کاربردی می باشد.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Demo «end/ -->
</div>
<!-- Note Option «end/ -->
<!-- /start» Developer information -->
<div class="dev">
<p>
Made With <span class="galb"> ❤️</span> By
<a href="https://discord.com/users/638113846770401307"
><span class="discord" title="SePeHr#1166"
>SePeHr#1166<i class="fab fa-discord"></i></span
></a>
</p>
</div>
<!-- Developer information «end/ -->
</div>
</div>
<!-- Right Side «end/ -->
<!-- /start» Left Side -->
<div class="left-section">
<div class="notes-added">
<!-- Notes will be added here from JS -->
</div>
</div>
<!-- Left Side «end/ -->
</section>
<!-- Section «end/ -->
</main>
<script type="module" src="/script/script.js"></script>
</body>
</html>