Elias207 commited on
Commit
00a5864
·
verified ·
1 Parent(s): 42dd624

Update static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +40 -0
static/css/style.css CHANGED
@@ -561,4 +561,44 @@ textarea { width: 100%; background: #222; color: #fff; border: 1px solid #444; p
561
  @keyframes checkScale {
562
  from { transform: scale(0); }
563
  to { transform: scale(1); }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  }
 
561
  @keyframes checkScale {
562
  from { transform: scale(0); }
563
  to { transform: scale(1); }
564
+ }
565
+
566
+ /* ======================================== */
567
+ /* === استایل‌های دکمه‌های تعداد کلمات === */
568
+ /* ======================================== */
569
+
570
+ .word-count-grid {
571
+ display: flex;
572
+ overflow-x: auto;
573
+ padding: 10px 0;
574
+ gap: 10px;
575
+ width: 100%;
576
+ scrollbar-width: none;
577
+ -ms-overflow-style: none;
578
+ justify-content: space-between;
579
+ }
580
+ .word-count-grid::-webkit-scrollbar {
581
+ display: none;
582
+ }
583
+
584
+ .wc-btn {
585
+ flex: 0 0 auto;
586
+ width: 50px;
587
+ height: 50px;
588
+ border-radius: 14px;
589
+ background: #333;
590
+ color: #fff;
591
+ border: 1px solid #444;
592
+ font-size: 1.2rem;
593
+ font-weight: bold;
594
+ cursor: pointer;
595
+ transition: 0.2s;
596
+ display: flex;
597
+ align-items: center;
598
+ justify-content: center;
599
+ }
600
+ .wc-btn:active {
601
+ background: var(--primary);
602
+ border-color: var(--primary);
603
+ transform: scale(0.9);
604
  }