-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
84 lines (73 loc) · 1.4 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
body {
background-color: #2A2A2A;
font-family: Helvetica, sans;
position: relative;
}
#paste-image-text, #drop-target {
color: rgba(255, 255, 255, 0.8);
font-size: 32px;
font-weight: normal;
text-align: center;
text-shadow: 1px 4px 6px black, 0 0 0 white, 1px 4px 6px black;
}
#canvas-container {
border: 2px solid white;
margin-left: auto;
margin-right: auto;
}
.annotation-object-buttons-container {
margin-bottom: 20px;
text-align: center;
}
.annotation-object-button {
border: 1px solid #A4A4A4;
color: white;
cursor: pointer;
display: inline-block;
height: 75px;
margin: 5px;
width: 75px;
}
.active {
background-color: white;
color: black;
}
.controls {
display: none;
}
#render-container {
background-color: white;
display: none;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#drop-layer {
position: fixed;
height: auto;
bottom: 0;
top: 0;
left: 0;
right: 0;
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
background: rgba(0,0,0,0.5);
}
#drop-overlay {
width: 640px;
height: 400px;
background-color: #2A2A2A;
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
}
#drop-target {
padding: 50px;
border-radius: 10px;
border: 5px dashed white;
}