-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathembed.css
74 lines (72 loc) · 1.46 KB
/
embed.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
.dalsegno-embed {
display: flex;
flex-direction: row;
}
.dalsegno-embed > .left-panel {
display: flex;
flex-direction: column;
}
.dalsegno-embed > .left-panel > .controls {
display: flex;
flex-direction: column;
align-items: center;
}
.dalsegno-embed .controls .button-row {
display: flex;
flex-direction: row;
min-height: 30px;
justify-content: center;
}
.dalsegno-embed .controls > button {
width: 250px;
height: 60px;
}
.dalsegno-embed .controls > input {
padding: 10px;
height: 30px;
width: 80%;
}
.dalsegno-embed > .canvas-container > canvas {
position: absolute;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.dalsegno-embed > .canvas-container > .dalsegno-errorbar {
position: absolute;
padding: 10px;
background-color: #ff99cc;
font-size: 1.2em;
z-index: 10;
}
.dalsegno-embed > .editor {
width: 400px;
height: 400px;
}
.dalsegno-embed textarea {
resize: none;
background-color: inherit;
font-size: 14px;
-webkit-user-select: text;
-moz-user-select: text;
-khtml-user-select: text;
-ms-user-select: text;
outline: none; /* prevent active highlight */
}
.dalsegno-embed .dalsegno-console-active {
background-color: gray !important;
}
.dalsegno-embed .dalsegno-console-animate {
transition: background-color .2s ease;
}
.curSpotHighlight{
position:absolute;
z-index:20;
background-color:#22FF33;
}
.errorHighlight{
position:absolute;
z-index:20;
background-color:#F4B9B7;
}
.is-hidden {
display: none;
}