forked from rodrigocfd/string-tension-calc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dress.css
99 lines (82 loc) · 1.34 KB
/
dress.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
/**
* String Tension Calculator
* @author Rodrigo Cesar de Freitas Dias
* @license MIT
* @see https://github.com/rodrigocfd/string-tension-calc
*/
body, input, select {
font-family: "Segoe UI", Arial;
font-size: 11pt;
}
a {
color: #0040E0;
}
input[type=text], input[type=button], select {
margin-left: 6px;
padding-top: 2px;
padding-bottom: 2px;
}
h2 {
display: inline-block;
margin: 0 0 10px 2px;
color: #222;
}
#chooseUnit {
display: inline-block;
padding-left: 20px;
}
#setsArea {
display: inline-block;
}
#plotArea {
display: inline-block;
width: 100%;
max-width: 400px;
height: 200px;
margin: 5px 0 50px 0;
}
#templates {
display: none;
}
#footer {
font-size: 85%;
position: fixed;
padding: 3px 0;
bottom: 0;
width: 100%;
background-color: #FBFBFB;
border-top: 1px solid #BBB;
text-align: center;
color: #444;
}
.stringSet {
display: inline-block;
vertical-align: top;
margin: 0 8px 8px 0;
border: 1px solid #DDD;
}
.stringSet > div {
margin: 8px;
}
.stringSet .rowsArea {
margin-top: 12px;
}
.stringRow {
margin: 4px;
}
.stringRow .stringOrd {
display: inline-block;
width: .9em;
}
.stringRow .modified {
border-top: 1px solid #F00;
background-color: #FFF6F6;
}
.stringRow .note {
width: 5.9em;
}
.stringRow .tensionLbs, .stringRow .tensionKg {
text-align: right;
padding-right: 3px;
width: 3.5em;
}