-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (52 loc) · 1.03 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
#cwm-openai-yt-query {
position: absolute;
top: 0px;
right: 0px;
width: 256px;
z-index: 99999999;
background-color: #222;
color: #fff;
}
#cwm-openai-yt-query header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
cursor: move;
}
#cwm-openai-yt-query header button {
background-color: transparent;
border: none;
color: #fff;
}
#cwm-openai-yt-query p {
margin: 5px;
font-size: 1.3rem;
}
#cwm-openai-yt-query p span {
color: #ccc;
text-decoration: underline;
}
#cwm-openai-yt-query input {
user-select: none;
width: 242px;
margin: 5px 5px;
padding: 2px;
border: none;
border-bottom: 1px solid #ccc;
background-color: #222;
color: #fff;
}
#cwm-openai-yt-query input:focus {
outline: none;
border: none;
border-bottom: 1px solid #ccc;
}
#cwm-openai-yt-answer-btn {
background-color: #333;
display: none;
cursor: pointer;
border: none;
color: #fff;
width: 100%;
}