YchKhan commited on
Commit
131b2fc
·
verified ·
1 Parent(s): a2911b7

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +35 -0
static/style.css CHANGED
@@ -522,6 +522,41 @@ button:hover {
522
  margin-bottom: 10px;
523
  }
524
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
525
  .problem-history-nav {
526
  display: flex;
527
  align-items: center;
 
522
  margin-bottom: 10px;
523
  }
524
 
525
+ /* Styles for selectable challenges */
526
+ .challenge-tag {
527
+ background-color: #f1f1f1;
528
+ border: 1px solid #ddd;
529
+ border-radius: 15px;
530
+ padding: 4px 12px;
531
+ font-size: 12px;
532
+ cursor: pointer;
533
+ transition: all 0.2s ease;
534
+ user-select: none;
535
+ display: inline-block;
536
+ margin: 4px 4px 4px 0;
537
+ }
538
+
539
+ .challenge-tag:hover {
540
+ background-color: #e9e9e9;
541
+ }
542
+
543
+ .challenge-tag.selected {
544
+ background-color: #4CAF50;
545
+ color: white;
546
+ border-color: #4CAF50;
547
+ }
548
+
549
+ .key-issue-challenges {
550
+ list-style-type: none;
551
+ padding-left: 0;
552
+ margin-top: 8px;
553
+ display: flex;
554
+ flex-wrap: wrap;
555
+ gap: 6px;
556
+ }
557
+
558
+ /* Styles for problem refinement functionality */
559
+
560
  .problem-history-nav {
561
  display: flex;
562
  align-items: center;