Spaces:
Running
Running
Update static/style.css
Browse files- static/style.css +10 -24
static/style.css
CHANGED
@@ -93,6 +93,10 @@ button:hover:not(:disabled) {
|
|
93 |
transform: scale(1.03);
|
94 |
}
|
95 |
|
|
|
|
|
|
|
|
|
96 |
#charCount {
|
97 |
font-size: 14px;
|
98 |
color: #666;
|
@@ -112,20 +116,15 @@ button:hover:not(:disabled) {
|
|
112 |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
113 |
}
|
114 |
|
115 |
-
|
116 |
-
|
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 {
|
@@ -138,17 +137,4 @@ button:hover:not(:disabled) {
|
|
138 |
width: 90%;
|
139 |
padding: 20px;
|
140 |
}
|
141 |
-
|
142 |
-
h1 {
|
143 |
-
font-size: 20px;
|
144 |
-
}
|
145 |
-
|
146 |
-
textarea, select, input {
|
147 |
-
font-size: 14px;
|
148 |
-
}
|
149 |
-
|
150 |
-
button {
|
151 |
-
font-size: 14px;
|
152 |
-
padding: 10px;
|
153 |
-
}
|
154 |
}
|
|
|
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 |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
117 |
}
|
118 |
|
119 |
+
/* Loading Spinner */
|
120 |
+
.loading-spinner {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
width: 40px;
|
122 |
height: 40px;
|
123 |
+
border: 5px solid rgba(0, 0, 0, 0.1);
|
124 |
+
border-top: 5px solid #4CAF50;
|
125 |
+
border-radius: 50%;
|
126 |
animation: spin 1s linear infinite;
|
127 |
+
margin: 20px auto;
|
128 |
}
|
129 |
|
130 |
@keyframes spin {
|
|
|
137 |
width: 90%;
|
138 |
padding: 20px;
|
139 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
}
|