rahuln2002 commited on
Commit
ea0d61a
·
verified ·
1 Parent(s): 1bec298

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +21 -4
static/style.css CHANGED
@@ -93,10 +93,6 @@ button:hover:not(:disabled) {
93
  transform: scale(1.03);
94
  }
95
 
96
- #number_label, #number {
97
- display: none;
98
- }
99
-
100
  #charCount {
101
  font-size: 14px;
102
  color: #666;
@@ -116,6 +112,27 @@ button:hover:not(:disabled) {
116
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
117
  }
118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  @media (max-width: 768px) {
120
  .container {
121
  width: 90%;
 
93
  transform: scale(1.03);
94
  }
95
 
 
 
 
 
96
  #charCount {
97
  font-size: 14px;
98
  color: #666;
 
112
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
113
  }
114
 
115
+ .loading {
116
+ display: flex;
117
+ flex-direction: column;
118
+ align-items: center;
119
+ margin-top: 20px;
120
+ }
121
+
122
+ .spinner {
123
+ border: 6px solid #f3f3f3;
124
+ border-top: 6px solid #4CAF50;
125
+ border-radius: 50%;
126
+ width: 40px;
127
+ height: 40px;
128
+ animation: spin 1s linear infinite;
129
+ }
130
+
131
+ @keyframes spin {
132
+ 0% { transform: rotate(0deg); }
133
+ 100% { transform: rotate(360deg); }
134
+ }
135
+
136
  @media (max-width: 768px) {
137
  .container {
138
  width: 90%;