-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
68 lines (57 loc) · 1.02 KB
/
popup.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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400;1,600&display=swap');
body {
font-family: "Open Sans", sans-serif;
font-size: 13px;
margin: 10;
padding: 10;
}
.logo-header {
font-family: "Comfortaa", sans-serif;
font-weight: 400;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
color: #951DCD;
}
.logo-header img {
width: 28px;
height: 28px;
margin-right: 8px;
margin-bottom: 4px;
}
.summary-container {
background-color: #fbf4ff;
padding: 16px;
border-radius: 8px;
max-height: 400px;
overflow: scroll;
}
.secondary-container {
border: 1px solid #fbf4ff;
border-radius: 8px;
padding: 16px;
max-height: 100px;
overflow: scroll;
}
#disclaimer {
font-size: 10px;
color: #808080;
}
#logoName {
text-align: center;
}
#main {
width: 400px;
padding: 10px;
}
#question {
font-style: italic;
}
#error {
color: red;
font-weight: bold;
}
#response {
white-space: pre-wrap;
}