-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
87 lines (74 loc) · 1.23 KB
/
styles.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
body {
margin: 0px;
height: 100%;
font-family: "Trebuchet MS", sans-serif;
}
span.block {
display: inline-block;
}
div.block {
display: inline-block;
vertical-align: text-top;
}
div.canvas {
border: 1.5px solid #444444;
width: 600px;
height: 600px;
}
.nav_panel {
border-right: 2px solid #444444;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
background-color: #C1CBDA;
}
.nav_panel_tile {
text-align: center;
padding-bottom: 5px;
}
.info_panel {
border-right: 2px solid #444444;
padding-top: 5px;
padding-right: 5px;
padding-left: 5px;
background-color: #E0E0E0;
}
div.log {
width: calc(50% - 12px);
height:100%;
overflow-y: scroll;
background-color: #F0F0F0;
}
div.tri_info {
width: calc(50% - 12px);
height:100%;
overflow: hidden;
background-color: #F0F0F0;
}
div.locate {
width: 500px;
padding-top: 10px;
padding-bottom: 10px;
}
button.small {
width: 270px;
height: 35px;
font-family: inherit;
font-size: 90%;
}
button.big {
width: 270px;
height: 45px;
background-color: #ffcf82;
font-family: inherit;
font-size: 90%;
}
input.small {
width: 80px;
height: 20px;
}
textarea.list {
width:100%;
box-sizing: border-box;
margin-bottom: 10px;
}