forked from methodofaction/Method-Draw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsource.css
More file actions
45 lines (41 loc) · 782 Bytes
/
Copy pathsource.css
File metadata and controls
45 lines (41 loc) · 782 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
#svg_source_editor {
position: relative;
width: 800px;
height: 600px;
margin: -48px;
}
#svg_source_container {
width: 800px;
position: relative;
height: 100%;
}
#svg_source_editor form {
position: absolute;
top: 0;
bottom: 55px;
left: 0;
right: 0;
font-size: 14px;
background-color: var(--z14);
border-radius: 8px 8px 0 0;
}
#svg_source_textarea {
width: calc(100% - 64px);
height: calc(100% - 64px);
line-height: 140%;
font-family: var(--mono-font);
font-size: 14px;
color: var(--z4);
border: none;
padding: 32px;
background-color: transparent;
}
#svg_source_editor #tool_source_back {
position: absolute;
display: flex;
justify-content: space-between;
bottom: 0;
left: 0;
right: 0;
padding: var(--x2) var(--x2);
}