-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsscanvas.css
More file actions
52 lines (46 loc) · 791 Bytes
/
csscanvas.css
File metadata and controls
52 lines (46 loc) · 791 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
48
49
50
51
52
@charset "UTF-8";
/* CSS Document */
.variable {
background-color: #009999;
}
.relation {
background-color: #990099;
}
.bloquevariable {
position: absolute;
background-color: #CCCCCC;
border: thin solid #666666;
padding: 5px;
}
.bloquerelation {
position: absolute;
background-color: #CCCCFF;
border: thin solid #666666;
padding: 5px;
}
.line {
background-color: #000000;
position: absolute;
top: 10px;
left: 10px;
margin: 0px;
padding: 0px;
height: 1px;
width: 1px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.canvas {
background-color: #FFFFFF;
position: absolute;
left: 230px;
top: 10px;
right: 10px;
bottom: 10px;
border: thin solid #000000;
overflow: auto;
height: 500px;
width: 500px;
}