-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (74 loc) · 1.22 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
#auto-scroll-transcript {
position: fixed;
top: 70px;
right: 20px;
width: 300px;
height: 200px;
background-color: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px;
overflow-y: auto;
z-index: 9999;
resize: both;
overflow: auto;
}
#transcript-header {
cursor: move;
padding: 10px;
background-color: rgba(50, 50, 50, 0.8);
}
#transcript-header h3 {
margin: 0;
display: inline-block;
}
#transcript-resize {
float: right;
cursor: se-resize;
}
#transcript-content {
padding: 10px;
}
#transcript-content p {
margin: 5px 0;
}
#transcript-content p.current {
font-weight: bold;
color: yellow;
}
#transcript-controls {
padding: 10px;
text-align: center;
}
#transcript-controls button {
margin: 0 5px;
}
#add-transcript-btn {
position: fixed;
top: 10px;
right: 20px;
z-index: 10000;
padding: 5px 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
z-index: 10001;
width: 80%;
max-width: 600px;
}
.modal textarea {
width: 100%;
height: 200px;
margin-bottom: 10px;
}
.modal button {
margin-right: 10px;
}