-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
78 lines (64 loc) · 1.71 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
}
#api-key-section, #input-section, #cost-estimation, #generate-section {
margin-bottom: 20px;
}
#api-key-section input, #text-input, #file-upload {
width: 100%;
margin-bottom: 10px;
}
#api-key-section button, #generate-audiobook {
width: 100%;
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
}
#api-key-section button:hover, #generate-audiobook:hover {
background-color: #0056b3;
}
#cost-estimate-display {
color: #333;
font-size: 1rem;
text-align: center;
}
footer {
text-align: center;
padding: 20px;
background-color: #f2f2f2; /* Light gray background for the footer */
border-top: 1px solid #e0e0e0; /* A subtle top border */
}
footer p {
margin: 10px 0; /* Spacing around text */
}
progress {
width: 100%; /* Full width of the container */
height: 20px; /* Taller progress bars */
-webkit-appearance: none; /* Removes default styling on WebKit browsers */
appearance: none; /* Removes default styling */
color: #4caf50; /* Color of the progress bar */
}
/* Style for the progress bar's value */
progress::-webkit-progress-value {
background-color: #4caf50; /* Green color */
}
/* Style for the progress bar's background */
progress::-webkit-progress-bar {
background-color: #e0e0e0; /* Light gray background */
}
/* For other non-WebKit browsers */
progress::-moz-progress-bar {
background-color: #4caf50; /* Green color */
}
progress::-ms-fill {
border: none; /* Removes border */
background-color: #4caf50; /* Green color */
}