-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyle.css
64 lines (57 loc) · 863 Bytes
/
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
60
61
62
63
64
.drop-zone {
width: 100px;
height: 20px;
border: 1px dashed #777;
display: inline-block;
}
.receiving-drag {
background-color: hotpink;
}
.upload {
position: fixed;
left: 0;
right: 0;
top: 0;
height: 24px;
border-bottom: 1px solid #ccc;
padding: 5px;
}
.text-view {
position: fixed;
left: 0;
width: 250px;
top: 42px;
bottom: 0;
padding: 5px;
}
.text-view textarea {
width: 100%;
height: 100%;
font-family: Courier, monospace;
font-size: 16px;
}
.image-viewer {
position: fixed;
top: 42px;
left: 260px;
right: 0;
bottom: 0;
overflow-x: auto;
overflow-y: auto;
}
.image-viewer.drag-hover {
border: 4px dashed gray;
}
.box {
border: 1px solid blue;
color: red;
font-size: 32px;
}
.box.selected {
border: 2px solid red;
}
.help {
margin: 20px;
font-size: large;
pointer-events: none;
}