-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
815 lines (714 loc) · 18.2 KB
/
styles.css
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
/* General Styles */
body {
font-family: 'Roboto', sans-serif;
/* Applying Google Font: Roboto for consistent typography */
margin: 0;
padding: 0;
background-color: #FDFCDC;
/* Background color of the entire page */
color: #0081A7;
/* Primary text color */
transition: background-color 0.5s, color 0.5s;
/* Smooth transition for background and text color changes */
}
/* Header Styles */
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #F07167;
/* Background color of the header */
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow for the header */
transition: background-color 0.5s, box-shadow 0.5s;
/* Smooth transition for background color and shadow changes */
}
.header-center h1 {
margin: 0;
/* Remove default margin from the header title */
}
.header-right {
display: flex;
align-items: center;
/* Align header elements horizontally and vertically */
}
.header-right .logo {
width: 50px;
margin-left: 10px;
/* Size and spacing of the logo image */
}
.header-right .header-icon {
margin-left: 15px;
color: white;
font-size: 24px;
text-decoration: none;
transition: color 0.3s, transform 0.3s;
/* Smooth transition for color and scaling on hover */
}
.header-right .header-icon:hover {
color: #0081A7;
transform: scale(1.2);
/* Change color and slightly enlarge icon on hover */
}
/* Sidebar Styles */
.sidebar {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #F07167;
/* Background color of the sidebar */
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
display: flex;
flex-direction: column;
box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow on the right side of the sidebar */
}
.sidebar.slide-in {
animation: slideIn 0.5s forwards;
/* Slide-in animation for the sidebar */
}
.sidebar a,
.sidebar .login-btn {
padding: 10px 15px;
text-decoration: none;
font-size: 18px;
color: white;
display: block;
transition: background-color 0.3s, padding 0.3s;
/* Smooth transition for background color and padding changes */
}
.sidebar a:hover,
.sidebar .login-btn:hover {
background-color: #FF8C89;
/* Lighter shade for sidebar links on hover */
color: #0081A7;
/* Change text color on hover */
padding-left: 25px;
/* Indent the link on hover */
}
.sidebar .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
/* Positioning and styling for the close button */
}
/* Main Content Styles */
#main {
transition: margin-left 0.5s;
/* Smooth transition for the main content's margin when sidebar opens */
padding: 20px;
/* Padding around the main content area */
}
.filter-sort {
display: flex;
align-items: center;
margin-bottom: 20px;
background-color: #FFEDCD;
/* Background color of the filter-sort section */
padding: 15px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow for the filter-sort section */
transition: box-shadow 0.5s;
/* Smooth transition for shadow changes */
}
.filter-sort:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover for a lifting effect */
}
.filter-sort label {
margin-right: 10px;
color: #0081A7;
/* Color for labels within the filter-sort section */
}
.filter-sort select,
.filter-sort input {
margin-right: 20px;
padding: 5px 10px;
border: 1px solid #00AFB9;
/* Accent color for borders */
border-radius: 4px;
background-color: #FFFDF2;
/* Light background color for inputs */
color: #0081A7;
/* Text color for inputs */
transition: border-color 0.5s, box-shadow 0.5s;
/* Smooth transition for border and shadow changes */
}
.filter-sort select:focus,
.filter-sort input:focus {
outline: none;
border-color: #0081A7;
/* Change border color on focus */
box-shadow: 0 0 8px rgba(0, 129, 167, 0.5);
/* Add shadow on focus for a glowing effect */
}
/* Eisenhower Matrix Styles */
.matrix {
display: grid;
grid-template-columns: 1fr 1fr;
/* Define a 2x2 grid for the Eisenhower Matrix */
gap: 10px;
flex-grow: 1;
/* Allow the matrix to expand to fill available space */
}
/* Grid Layout */
.grid-layout .matrix-cell {
width: 45%;
display: inline-block;
vertical-align: top;
margin: 2.5%;
/* Sizing and spacing for grid layout cells */
}
/* List Layout */
.list-layout .matrix-cell {
width: 100%;
display: block;
margin: 10px 0;
/* Full-width cells with vertical spacing for list layout */
}
.matrix-cell {
padding: 10px;
border-radius: 4px;
min-height: 250px;
display: flex;
flex-direction: column;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow for matrix cells */
transition: box-shadow 0.5s, transform 0.3s;
/* Smooth transition for shadow and transformation changes */
}
.matrix-cell:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover for a lifting effect */
transform: translateY(-5px);
/* Slight upward movement on hover */
}
.primary-color {
background-color: #FF8C89;
/* Background color for primary cells */
border: 1px solid #F07167;
/* Border color for primary cells */
}
.secondary-color {
background-color: #FFEDCD;
/* Background color for secondary cells */
border: 1px solid #FED9B7;
/* Border color for secondary cells */
}
.accent-color {
background-color: #33D1CC;
/* Background color for accent cells */
border: 1px solid #00AFB9;
/* Border color for accent cells */
color: white;
/* Text color for accent cells */
}
.text-color {
background-color: #3399CC;
/* Background color for text cells */
border: 1px solid #0081A7;
/* Border color for text cells */
color: white;
/* Text color for text cells */
}
.matrix-cell h2 {
margin-top: 0;
color: white;
/* Text color for matrix cell headers */
}
#decide-this h2 {
color: #0081A7;
/* Specific text color for 'Decide This' cell header */
}
#delete-list {
color: #0081A7;
/* Specific text color for 'Delete List' cell */
}
#delegate-list {
color: #0081A7;
/* Specific text color for 'Delegate List' cell */
}
.task-list {
list-style: none;
padding: 0;
margin: 0;
flex: 1;
/* No padding or margins for the task list; allow it to expand */
}
.task-list li {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #00AFB9;
/* Border color for task items */
border-radius: 4px;
background-color: #f1f3f5;
/* Light background color for task items */
cursor: grab;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow for task items */
transition: box-shadow 0.5s, transform 0.3s;
/* Smooth transition for shadow and transformation changes */
}
.task-list li:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover for a lifting effect */
transform: translateY(-5px);
/* Slight upward movement on hover */
}
/* Button Group for Task Actions */
.button-group {
display: flex;
gap: 5px;
/* Layout and spacing for action buttons within tasks */
}
.task-list li button {
background-color: #00AFB9;
/* Background color for task action buttons */
color: white;
border: none;
border-radius: 4px;
padding: 5px 10px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
/* Smooth transition for background color and scaling on hover */
}
.task-list li button:hover {
background-color: #0081A7;
/* Change background color on hover */
transform: scale(1.05);
/* Slightly enlarge the button on hover */
}
/* Task Form Styles */
#taskForm label,
#taskForm input,
#taskForm select {
display: block;
width: 100%;
margin-bottom: 10px;
/* Layout for form labels and inputs */
}
#taskForm input,
#taskForm select {
padding: 8px;
border: 1px solid #00AFB9;
/* Border color for form inputs */
border-radius: 4px;
background-color: #FFFDF2;
/* Light background color for form inputs */
color: #0081A7;
/* Text color for form inputs */
transition: border-color 0.5s, box-shadow 0.5s;
/* Smooth transition for border and shadow changes */
}
#taskForm input:focus,
#taskForm select:focus {
outline: none;
border-color: #0081A7;
/* Change border color on focus */
box-shadow: 0 0 8px rgba(0, 129, 167, 0.5);
/* Add shadow on focus for a glowing effect */
}
/* Completed Tasks Section */
.completed-tasks {
margin-top: 20px;
background-color: #FFFDF2;
/* Light background color for the completed tasks section */
padding: 15px;
border-radius: 8px;
border: 1px solid #00AFB9;
/* Border color for the completed tasks section */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Subtle shadow for the completed tasks section */
transition: box-shadow 0.5s;
/* Smooth transition for shadow changes */
}
.completed-tasks:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover for a lifting effect */
}
.completed-tasks h2 {
color: #F07167;
/* Primary color for the completed tasks header */
margin-top: 0;
cursor: pointer;
/* Pointer cursor on hover for the header */
}
/* Task Box Style for Checkmarks */
.task-box {
width: 20px;
height: 20px;
background-color: #00AFB9;
/* Background color for the task checkbox */
margin-right: 10px;
border-radius: 4px;
/* Rounded corners for the task checkbox */
}
/* Styling for completed task items */
.completed-task-item {
display: flex;
align-items: center;
cursor: pointer;
/* Pointer cursor and flex layout for completed task items */
}
/* Add Task Button */
.add-task-btn {
padding: 10px 35px;
border: none;
border-radius: 50%;
background-color: #F07167;
/* Primary color for the button */
color: white;
cursor: pointer;
font-size: 85px;
position: fixed;
bottom: 20px;
right: 20px;
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Shadow for the add task button */
}
.add-task-btn:hover {
background-color: #0081A7;
/* Change background color on hover */
transform: scale(1.1);
/* Slightly enlarge the button on hover */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover */
}
/* Tooltip and Highlight Styles */
.tooltip {
position: absolute;
background-color: #555;
color: #fff;
padding: 5px;
border-radius: 5px;
display: none;
z-index: 1000;
/* Tooltip styling */
}
.highlight {
position: relative;
box-shadow: 0 0 10px 2px rgba(255, 255, 0, 0.8);
z-index: 999;
/* Highlighted element styling */
}
/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
transition: background-color 0.5s;
/* Smooth transition for modal background color */
}
.modal.fade-in {
animation: fadeIn 0.5s ease-in-out;
/* Fade-in animation for modals */
}
.modal-content {
background-color: white;
margin: 15% auto;
padding: 20px;
border: 1px solid #00AFB9;
/* Accent color for modal border */
width: 80%;
border-radius: 4px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Shadow for modal content */
transition: box-shadow 0.5s, transform 0.3s;
}
.modal-content:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover */
transform: translateY(-5px);
/* Lift effect on hover */
}
.modal-content h2 {
color: #F07167;
/* Primary color for modal headers */
}
.modal-content p {
color: #0081A7;
/* Text color for modal paragraphs */
}
.modal-content button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #F07167;
/* Primary color for modal buttons */
color: white;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Shadow for modal buttons */
margin-top: 20px;
}
.modal-content button:hover {
background-color: #0081A7;
/* Change background color on hover */
transform: scale(1.05);
/* Slightly enlarge the button on hover */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover */
}
/* Timer Styles */
.timer-btn {
margin-left: 10px;
padding: 5px 10px;
/* Styling for timer buttons */
}
.timer-display {
margin-left: 10px;
font-weight: bold;
/* Styling for the timer display */
}
.timer-exceeded {
color: red;
/* Change color when the timer exceeds the allocated time */
}
/* Enhanced button styles with icons */
/* General button styles */
button {
padding: 10px 15px;
margin: 5px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s, transform 0.3s;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
/* Shadow for general buttons */
}
button:hover {
transform: scale(1.05);
/* Slightly enlarge on hover */
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
/* Larger shadow on hover */
}
/* Timer buttons */
.timer-btn {
background-color: #4CAF50;
/* Green color for the timer button */
color: white;
}
.timer-btn:hover {
background-color: #45a049;
/* Darker green on hover */
}
.timer-btn::before {
content: '\23F5';
/* Play symbol before the button text */
margin-right: 5px;
}
.timer-btn.paused::before {
content: '\23F8';
/* Pause symbol for paused state */
}
.timer-btn.resumed::before {
content: '\23F5';
/* Play symbol for resumed state */
}
/* Finish button */
.finish-btn {
background-color: #f44336;
/* Red color for finish button */
color: white;
}
.finish-btn:hover {
background-color: #da190b;
/* Darker red on hover */
}
.finish-btn::before {
content: '\2714';
/* Check symbol before the button text */
margin-right: 5px;
}
/* Edit button */
.edit-btn {
background-color: #008CBA;
/* Blue color for edit button */
color: white;
}
.edit-btn:hover {
background-color: #007bb5;
/* Darker blue on hover */
}
.edit-btn::before {
content: '\270E';
/* Pencil symbol before the button text */
margin-right: 5px;
}
/* Delete button */
.delete-btn {
background-color: #e7e7e7;
/* Grey color for delete button */
color: black;
}
.delete-btn:hover {
background-color: #d6d6d6;
/* Darker grey on hover */
}
.delete-btn::before {
content: '\1F5D1';
/* Trash symbol before the button text */
margin-right: 5px;
}
/* Fade-in animation */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Slide-in animation */
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
/* Apply fade-in animation to elements */
.fade-in {
animation: fadeIn 0.5s ease-in-out;
/* Apply fade-in animation */
}
/* Task completion animation */
.task-complete {
transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
/* Transition effects for task completion */
}
.task-complete.completed {
transform: scale(0.95);
opacity: 0.7;
background-color: #d4edda;
/* Light green background to indicate task completion */
}
/* Collapsible styles */
.task-list.collapsible {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
/* Collapse the task list with a transition effect */
}
.task-list.expanded {
max-height: 1000px;
/* Expand the task list to a large height */
}
.introjs-tooltip .introjs-button {
text-shadow: none;
/* Remove text shadow for intro.js buttons */
}
#progress-bar-container {
width: 100%;
background-color: #f3f3f3;
border-radius: 5px;
overflow: hidden;
margin: 20px 0;
/* Container styling for the progress bar */
}
#progress-bar {
width: 0;
height: 20px;
background-color: #4caf50;
transition: width 0.5s;
/* Styling and transition for the progress bar */
}
/* Styles for assessment modal and buttons */
.modal-content {
position: relative;
/* Positioning for modal content */
}
.modal-content .close {
position: absolute;
top: 10px;
right: 20px;
font-size: 30px;
cursor: pointer;
/* Close button styling */
}
.question-container {
margin-bottom: 20px;
/* Margin for question container */
}
.answer-buttons {
display: flex;
justify-content: space-around;
margin-top: 20px;
/* Layout and spacing for answer buttons */
}
.answer-buttons button {
padding: 10px 20px;
background-color: #00AFB9;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, transform 0.3s;
/* Styling and transitions for answer buttons */
}
.answer-buttons button:hover {
background-color: #0081A7;
transform: scale(1.05);
/* Change color and enlarge on hover */
}
#resultModal .modal-content {
color: black;
text-align: center;
/* Center align and color for result modal content */
}
#resultModal .modal-content h2 {
margin-bottom: 20px;
/* Margin for result modal header */
}
#resultModal .modal-content p {
font-size: 18px;
/* Font size for result modal text */
}
.assessment-buttons {
display: flex;
justify-content: space-around;
margin: 20px 0;
/* Layout and spacing for assessment buttons */
}
.assessment-button {
display: flex;
flex-direction: column;
align-items: center;
/* Layout for individual assessment buttons */
}
.assessment-button button {
width: 140px;
margin-bottom: 10px;
/* Width and margin for assessment buttons */
}
.question-number {
margin-bottom: 20px;
text-align: center;
/* Styling for question number display */
}