-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.css
More file actions
47 lines (43 loc) · 797 Bytes
/
Copy pathplugin.css
File metadata and controls
47 lines (43 loc) · 797 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
44
45
46
47
/* CSS file */
#dragWindow {
width: 300px;
height: 600px;
background: #f4f4f4;
color: #000;
position: fixed;
top: 50px;
right: 50px;
border: none;
border-radius: 10px;
cursor: move;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 5px;
z-index: 9999;
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
#dragBar {
width: 100%;
height: 30px;
background: #1d81cf;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
cursor: move;
display: flex;
align-items: center;
justify-content: center;
}
#textAreaContainer {
width: 100%;
flex-grow: 1;
display: flex;
}
#outputTextArea {
width: calc(100% - 20px);
margin-left: 10px;
margin-right: 10px;
flex-grow: 1;
resize: none;
outline: none !important;
}