File size: 2,006 Bytes
b82d373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.voice_preview {
    margin: 0.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.voice_preview .voice_name {
    text-align: left;
    flex: 1;
}

.voice_preview .voice_lang {
    width: 4rem;
    text-align: left;
}

.voice_preview .fa-play {
    cursor: pointer;
}

.tts-button {
    margin: 0;
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.7;
    align-items: center;
    justify-content: center;

}

.tts-button:hover {
    opacity: 1;
}

.tts_block {
    display: flex;
    align-items: baseline;
    column-gap: 5px;
    flex-wrap: wrap;
}

.tts_custom_voices {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.novel_tts_hints {
    font-size: calc(0.9 * var(--mainFontSize));
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
}

.at-settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.at-settings-option {
    flex: 1;
    margin: 0 10px;
}

.at-endpoint-option {
    flex: 1;
    margin: 0 10px;
    margin-right: 25px;
    width: 38%;
}

.at-website-row {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.at-website-option {
    flex: 1;
    margin-right: 10px;
    margin-left: 10px;
}

.at-settings-separator {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 18x;
    font-weight: bold;
    border-top: 1px solid #e1e1e1; /* Grey line */
    border-bottom: 1px solid #e1e1e1; /* Grey line */
    text-align: center;
}

.at-status-message {
    flex: 1;
    margin: 0 10px;
}

.at-model-endpoint-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.at-model-option, .endpoint-option {
    flex: 1;
    margin: 0 10px;
    margin-left: 10px;
}

.at-endpoint-option {
    width: 38%;
}

#at-status_info {
    color: lightgreen;
}