-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
92 lines (82 loc) · 1.31 KB
/
style.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
* {
margin: 0;
padding: 0;
font: normal 1.0em "Lucida Sans Unicode",sans-serif;
}
a {
color: #36C;
}
a:hover {
color: #06F;
}
body {
background: #E7E7E7;
color: #444;
font: normal 62.5% "Lucida Sans Unicode",sans-serif;
margin: 0;
/*overflow: hidden;*/
}
input {
color: #555;
font: normal 1.1em "Lucida Sans Unicode",sans-serif;
font-weight:bold;
}
#work{
position:fixed;
top:0;
left:0;
height:50px;
/*min-width:100px;*/
/*background-color:#fff;*/
}
#canvas{
/*overflow:hidden;*/
position:absolute;
width:2560px;
height:2560px;
background:url(http://img.lfs.net/remote/maps/AS.jpg);
}
.output{
min-height:150px;
max-height:100%;
min-width:350px;
max-width:350px;
opacity: 0.3;
}
.output:focus {
opacity: 1;
}
.control_block{
display: inline-block;
margin-bottom: 10px;
padding: 5px;
}
.control_block label{
color: #ffffff;
}
.control_block input,
.control_block select{
border: 1px solid #555555;
height: 25px;
padding: 0 5px;
}
.control_block input[type=checkbox]{
height: 10px;
}
.output_block{
position: fixed;
top: 50px;
margin-bottom: 10px;
padding: 5px;
}
.mouse_helper{
position: absolute;
width: 200px;
height: 12px;
line-height: 12px;
font-size: 10px;
color: #fff;
}
.hide{
display: none;
}