-
Notifications
You must be signed in to change notification settings - Fork 0
/
composition-playground.css
98 lines (81 loc) · 1.33 KB
/
composition-playground.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
/*font-size: 14px;*/
}
canvas {
/*width: 200px;
height: 150px;*/
border: 2px solid #eee;
margin: 10px;
}
canvas#result {
border: 2px solid #fee;
cursor: default;
}
canvas, .operation, #add-canvas, #delete-canvas {
cursor: pointer;
}
#workspace canvas {
float: left;
}
.operation {
display: block;
/*position: absolute;*/
font-size: 0.7em;
width: 100px;
float: left;
margin: 35px 10px;
text-align: center;
}
#add-canvas i, #delete-canvas i, .operation i {
display: block;
position: relative;
top: 20px;
font-size: 7em;
margin: 5px;
}
i span {
display: none;
}
#equals, #result {
float: left;
cursor: default;
}
#formula, #canvas-manage, #copyright {
font-family: sans-serif;
}
#canvas-manage {
clear: both;
}
#workspace {
width: auto;
}
#formula {
display: block;
border-top: 3px dashed #ccc;
/*height: 200px;*/
}
#canvas-manage {
border-top: 3px dashed #ccc;
font-size: 10px;
color: #336;
width: 100%;
text-align: center;
}
#canvas-manage div {
display: inline-block;
margin: 10px;
}
#canvas-manage div i {
margin: 10px;
}
#copyright {
font-size: .6em;
background-color: #eee;
position: absolute;
bottom: 0;
right: 0;
padding: 5px;
}
#equals {
color: #666;
}