-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (37 loc) 路 681 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (37 loc) 路 681 Bytes
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
* {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.popupWindow {
width: 200px;
height: 200px;
}
.buttonContainer {
display: flex;
flex-direction: column;
width: 70px;
height: 50px;
background-color: transparent;
}
.transcribeBox {
font-size: 10px;
border: 1px solid rgb(0, 0, 0, 0.1);
border-radius: 2em;
z-index: 99;
cursor: pointer;
}
.transcribeBox:hover {
background-color: #6e6d70;
color: white;
}
.summarizeBox {
font-size: 10px;
border: 1px solid rgb(0, 0, 0, 0.1);
border-radius: 2em;
z-index: 999;
cursor: pointer;
margin-bottom: 2px;
}
.summarizeBox:hover {
background-color: #6e6d70;
color: white;
}