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
|
body {
font-family: Sans-Serif;
}
iframe {
border: none;
}
div.about {
margin-top: 2em;
color: #666666;
}
div.about a {
color: #000066;
text-decoration: none;
}
div.error {
padding: 15px;
margin-bottom: 20px;
border: 1px solid #ebccd1;
border-radius: 4px;
color: #a94442;
background-color: #f2dede;
margin-left: auto;
margin-right: auto;
}
pre {
margin-bottom: 2em;
}
span.optional,
span.notes {
color: #666666;
}
div.break {
height: 1em;
}
div.field {
margin-top: 0.3em;
margin-bottom: 0.6em;
}
.container {
max-width: 40em;
margin-left: auto;
margin-right: auto;
}
#display {
display: block;
margin-left: auto;
margin-right: auto;
}
input, select, .button {
display: inline-block;
width: 50em;
max-width: 100%;
min-height: 1.8em;
border-radius: 4px;
color: #000;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
font-size: 90%;
text-align: center;
vertical-align: middle;
}
input[type="text"],
input[type="number"] {
width: 49em;
padding-left: 0.5em;
padding-right: 0.5em;
text-align: left;
box-sizing: border-box;
}
input[type="submit"], .button {
color: #fff;
background-color: #337ab7;
border-color: #2e6da4;
cursor: pointer;
box-shadow: none;
padding-top: 0.9ex;
padding-bottom: 0.9ex;
}
.button {
padding-top: 1.1ex;
padding-bottom: 0;
}
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:active,
.button:focus,
.button:hover {
color: #fff;
background-color: #286090;
border-color: #204d74;
}
input[type="submit"]:active {
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
div.notes {
margin-top: 4em;
}
div.notes ul {
margin-top: 1em;
}
|