-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfaq.html
More file actions
261 lines (221 loc) · 8.59 KB
/
Copy pathfaq.html
File metadata and controls
261 lines (221 loc) · 8.59 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Custom Styles -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="animations.css">
<style>
/* FAQ specific overrides */
.faq-container {
max-width: 1000px;
margin: 2rem auto;
padding: 0 2rem;
}
.faq-header {
text-align: center;
margin-bottom: 3rem;
color: #cad3f5;
animation: fadeIn 0.8s ease-out;
}
.faq-header h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
.faq-header .icon {
font-size: 3rem;
}
.faq-header p {
font-size: 1.25rem;
opacity: 0.9;
font-weight: 300;
}
.faq-item {
background: rgba(54, 58, 79, 0.8);
border: 1px solid rgba(138, 173, 244, 0.2);
border-radius: 16px;
margin-bottom: 1.5rem;
backdrop-filter: blur(20px);
transition: all 0.3s ease;
animation: slideInUp 0.6s ease-out;
animation-fill-mode: both;
}
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:hover {
transform: translateY(-2px);
box-shadow: 0 12px 25px rgba(138, 173, 244, 0.15);
border-color: rgba(138, 173, 244, 0.4);
}
.faq-question {
padding: 1.5rem;
border-bottom: 1px solid rgba(138, 173, 244, 0.1);
}
.faq-question h3 {
font-size: 1.3rem;
margin: 0;
color: #000000;
font-weight: 600;
}
.faq-answer {
padding: 1.5rem;
}
.faq-answer p {
font-size: 1rem;
margin: 0;
color: #cad3f5;
line-height: 1.6;
}
.back-link {
text-align: center;
margin-top: 3rem;
animation: fadeIn 1s ease-out 0.5s;
animation-fill-mode: both;
}
.back-link a {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: #8aadf4;
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
padding: 0.75rem 1.5rem;
border: 1px solid rgba(138, 173, 244, 0.3);
border-radius: 12px;
transition: all 0.3s ease;
background: rgba(138, 173, 244, 0.1);
}
.back-link a:hover {
background: rgba(138, 173, 244, 0.2);
border-color: rgba(138, 173, 244, 0.5);
transform: translateY(-1px);
}
@media (max-width: 768px) {
.faq-container {
padding: 0 1rem;
}
.faq-header h1 {
font-size: 2.2rem;
flex-direction: column;
gap: 0.5rem;
}
.faq-header .icon {
font-size: 2.5rem;
}
.faq-header p {
font-size: 1rem;
padding: 0 1rem;
}
.faq-question, .faq-answer {
padding: 1rem;
}
.faq-question h3 {
font-size: 1.1rem;
}
.faq-answer p {
font-size: 0.95rem;
}
}
@media (max-width: 480px) {
.faq-header h1 {
font-size: 1.8rem;
}
.faq-header .icon {
font-size: 2rem;
}
.faq-header p {
font-size: 0.9rem;
}
.faq-question h3 {
font-size: 1rem;
}
.faq-answer p {
font-size: 0.9rem;
}
}
@media (max-width: 360px) {
.faq-header h1 {
font-size: 1.6rem;
}
.faq-header .icon {
font-size: 1.8rem;
}
}
</style>
</head>
<body>
<div class="faq-container">
<header class="faq-header">
<h1>
Frequently Asked Questions
</h1>
<p>Find answers to common questions about this project</p>
</header>
<div class="faq-item">
<div class="faq-question">
<h3>Is my grade sheet being stored?</h3>
</div>
<div class="faq-answer">
<p>No, it is not. The website takes the values from your grade sheet and caches them in your browser temporarily. If you reload the page, this data will be removed. We do not store any of your information on our servers.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>Where can I find the official BRACU retake and repeat policy?</h3>
</div>
<div class="faq-answer">
<p>This calculator is a tool to help you analyze your grades, but for the official and most up-to-date BRAC University retake and repeat policies, please visit the official BRACU website at <a href="https://www.bracu.ac.bd/academics/policies-and-procedures" target="_blank" rel="noopener noreferrer" style="color: #8bd5ca; text-decoration: underline;">https://www.bracu.ac.bd/academics/policies-and-procedures</a>. Always refer to the official policies for accurate information about retake eligibility, procedures, and academic regulations.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>What is the purpose of this website?</h3>
</div>
<div class="faq-answer">
<p>As a BRAC University student, I always had to maintain an Excel sheet to see how much my CGPA would increase if I retook a course, or to determine what GPA I needed to achieve my dream CGPA. This was quite a hassle, so I created this website to simplify the process.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>Can I see the source code?</h3>
</div>
<div class="faq-answer">
<p>Absolutely! Here is the <a href="https://github.com/badhon495/should-i-retake" target="_blank" rel="noopener noreferrer">source code</a>. If you think of any features, just create an issue. Even better if you can implement it and make a pull request. Also, please give it a star if you can—it will help me out a lot!</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>Can I download what I created here?</h3>
</div>
<div class="faq-answer">
<p>Yes, you can download your data in Excel format and make changes to it as needed. You can also upload your modified Excel file to restore your data.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>What is the simple version?</h3>
</div>
<div class="faq-answer">
<p>The simple version does the same thing as this website—calculating your future CGPA—but it's more straightforward and user-friendly. You don't need to upload your grade sheet; just provide your current CGPA and credit-related information, and you're good to go. It's perfect for quick calculations when you don't have your grade sheet.</p>
</div>
</div>
<div class="back-link">
<a href="index.html">
← Back to Home
</a>
</div>
</div>
</body>
</html>