-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
138 lines (115 loc) · 2.44 KB
/
styles.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
body {
font-family: Arial, sans-serif;
background-color: #121212; /* Dark background */
color: #fff; /* Light text color for readability */
}
.container {
width: 80%;
margin: 0 auto;
text-align: left;
}
.error {
color: red;
}
h1 {
color: #4CAF50; /* Green color for the heading */
}
.inputLabel {
font-weight: bold;
}
input[type="file"] {
background-color: #1e1e1e; /* Slightly lighter than body for contrast */
color: #fff;
border: 1px solid #333;
padding: 5px;
}
input[type="text"] {
margin-top: 15px; /* Space between file upload widget and text input */
background-color: #1e1e1e; /* Slightly lighter than body for contrast */
color: #fff;
border: 1px solid #333;
padding: 5px;
width: calc(80% - 10px); /* Full width with padding considered */
}
select {
margin-top: 15px;
padding: 5px;
}
button {
margin-top: 10px;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.submit-button {
background-color: #4CAF50; /* Button color matching the heading */
color: white;
}
.submit-button:hover {
background-color: lightgray;
color: black;
}
.other-button {
background-color: lightgray;
color: black;
}
.other-button:hover {
background-color: #4CAF50; /* Button color matching the heading */
color: white;
}
.nav-tabs {
margin-bottom: 10px;
}
.nav-tabs .nav-link {
background-color: #4CAF50;
color: white;
font-weight: bold;
}
.nav-tabs .nav-link:hover {
background-color: #367c39;
color: white;
}
/* To also change the background color for the active tab */
.nav-tabs .nav-link.active {
background-color: #4CAF50;
color: white;
}
.nav-tabs .nav-link:not(.active) {
background-color: #4CAF50;
color: white;
opacity: 0.5;
}
.level-indicator {
background-color: #f0f0f0; /* Light gray background */
color: #333; /* Dark text for contrast */
padding: 2px 5px;
border-radius: 4px;
margin-top: 10px;
margin-bottom: 2px;
}
#book-writer-title {
margin-bottom: 8px;
}
#api-key-note {
margin-top: 8px;;
}
.loading-bar-container {
display: none;
position: relative;
background-color: #ddd;
}
.loading-bar {
width: 0%;
height: 20px;
background-color: #4CAF50;
text-align: center;
line-height: 20px;
color: white;
}
.loading-percent {
position: absolute;
width: 100%;
text-align: center;
line-height: 20px;
}