-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMMM-OpenAI.css
More file actions
66 lines (58 loc) · 1.25 KB
/
MMM-OpenAI.css
File metadata and controls
66 lines (58 loc) · 1.25 KB
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
.OpenAI {
max-width: 400px;
min-width: 256px;
width: 400px;
}
.OpenAI .prompt {
margin: 5px;
background-color: lightgray;
background-image: url('/modules/MMM-OpenAI/resources/openai_rd.png');
background-size: 32px 32px;
background-position: top 5px left 5px;
text-align: left;
background-repeat: no-repeat;
color: black;
padding: 5px;
font-weight: bold;
min-height: 32px;
padding-left: 48px;
}
.OpenAI .response {
margin: 5px;
background-color: darkolivegreen;
color: white;
padding: 5px;
}
.OpenAI .response.responseText,
.OpenAI .response.responseChat,
.OpenAI .response.responseError {
background-image: url('/modules/MMM-OpenAI/resources/openai_bk.png');
background-size: 32px 32px;
background-position: top 5px left 5px;
background-repeat: no-repeat;
padding-left: 48px;
text-align: left;
}
.OpenAI .response.responseImage {
height: var(--imageAreaHeight);
background-position: center, center;
background-repeat: no-repeat;
background-size: contain;
}
.OpenAI .response.responseError {
background-color: crimson;
}
.OpenAI .response.responseUsage {
text-align: center;
font-size: 70%;
background-color: gray;
color: white;
}
@keyframes blink {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}