blob: 10939c93c5ef81b11755b6658e6a0b218b3ea840 (
plain)
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
|
body {
background: #ffffff;
}
#viewport {
border: 1px solid #000000;
width: 800px;
height: 400px;
overflow: scroll;
}
#canvas {
background: #abcdef;
width: 1000px;
height: 1000px;
}
.KoControlPoint {
position: absolute;
width: 5px;
height: 5px;
background-color: #FF0000;
cursor: hand;
}
#rules {
float: right;
border: 1px solid #000000;
width: 300px;
}
.KoRule {
width: 296px;
border: 1px solid #abcdef;
margin: 2px;
}
|