Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit ad6dd09

Browse files
committed
Inputs: added multiple sizes, removed table layout
1 parent 73d9452 commit ad6dd09

File tree

4 files changed

+435
-60
lines changed

4 files changed

+435
-60
lines changed

demos/demos.css

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
.clearfix:after {
2+
visibility: hidden;
3+
display: block;
4+
font-size: 0;
5+
content: " ";
6+
clear: both;
7+
height: 0;
8+
}
9+
* html .clearfix { zoom: 1; } /* IE6 */
10+
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
11+
112
body {
213
max-width: 900px;
314
margin: 3em auto;
@@ -9,3 +20,24 @@ ul {
920
padding: 0;
1021
list-style-type: none;
1122
}
23+
24+
.inputs-container {
25+
box-sizing: border-box
26+
width: 100%;
27+
}
28+
29+
.inputs-row {
30+
width: 100%;
31+
}
32+
33+
.inputs-label {
34+
width: 10%;
35+
float: left;
36+
padding: 0.25em 1em 0.25em 0;
37+
text-align: right;
38+
}
39+
40+
.inputs-input {
41+
width: 85%;
42+
float: right;
43+
}

0 commit comments

Comments
 (0)