forked from Yellow-Me/bikegeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbikegeo.css
122 lines (104 loc) · 1.82 KB
/
bikegeo.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
html /* general settings*/
{
height:99%;
width:100%;
background-color:grey;
/*background-image:url('bg.jpg');*/
background-repeat: no-repeat;
background-position: 0 0;
background-size: 110% 110%;
font-family:helvetica, arial;
}
body
{
display:block;
position: relative;
margin-left:1%;
margin-top:1%;
height: 95%;
background-color:#F0F0F0 ;
overflow:scroll;
}
div.body
{
height: 95%;
overflow:auto;
}
div.disclaimer
{
position:absolute;
left: 10px;
top: 340px;
max-width:610px;
font-size:12px;
}
div.footer
{
display:block;
position: absolute;
bottom:3%;
width:100%;
height:5%;
min-height:2em;
}
div.footer p.cr /* copyright*/
{
vertical-align:bottom;
text-align:right;
font-size:12px;
margin-right:1%;
float:right;
}
div.footer p.credits /* credits for tools*/
{
vertical-align:bottom;
text-align:left;
font-size:12px;
margin-left:1%;
float:left;
}
div.LeftColumn /* drawing area + help button */
{
position:relative;
height:550px;
width:610px;
float:left;
}
canvas.bike {
position:absolute;
left: 10px;
top: 10px;
}
div.RightColumn /* div for bike input table */
{
float:left;
margin-top:1%;
position:relative;
height:95%;
overflow:auto;
font-size:14px;
}
table.BikeInputTable
{
text-align:right;
border-collapse: collapse;
margin:15px;
}
table.BikeInputTable td.output
{
border:1px dotted grey;
font-weight:bold;
}
table.BikeInputTable th.label /* Input table labels, it's enough to set width for header */
{
min-width:10em;
}
table.BikeInputTable tr.divider{ /* divider rows*/
border-top: 1px solid black;
}
table.BikeInputTable td.input{
border:1px dotted grey;
}
input {
text-align:right;
}