-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (43 loc) · 863 Bytes
/
style.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
textarea {
resize: none;
}
.loader {
border: 4px solid #f3f3f3; /* Light grey */
border-top: 4px solid #3498db; /* Blue */
border-radius: 50%;
width: 45px;
height: 45px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
textarea {
resize: none;
padding: 10px;
margin: 10px 0;
font-family: Arial, Helvetica, sans-serif;
letter-spacing: 1.3px;
border-radius: 5px;
}
textarea:focus {
outline: 1px solid rgb(14, 51, 14);
}
#progress {
width: 100%;
height: 7px;
box-shadow: inset 1px 1px 2px #ccc;
border: 1px solid #bbb;
border-radius: 15px;
}
#progress-bar {
height: 100%;
}
#remaining-chars {
font-size: 11px;
color: #b62020;
margin-top: 3px;
float: right;
display: none;
}