Skip to content

Commit

Permalink
Inputs: added multiple sizes, removed table layout
Browse files Browse the repository at this point in the history
  • Loading branch information
nashvail committed Jul 30, 2016
1 parent 73d9452 commit ad6dd09
Show file tree
Hide file tree
Showing 4 changed files with 435 additions and 60 deletions.
32 changes: 32 additions & 0 deletions demos/demos.css
@@ -1,3 +1,14 @@
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

body {
max-width: 900px;
margin: 3em auto;
Expand All @@ -9,3 +20,24 @@ ul {
padding: 0;
list-style-type: none;
}

.inputs-container {
box-sizing: border-box
width: 100%;
}

.inputs-row {
width: 100%;
}

.inputs-label {
width: 10%;
float: left;
padding: 0.25em 1em 0.25em 0;
text-align: right;
}

.inputs-input {
width: 85%;
float: right;
}

0 comments on commit ad6dd09

Please sign in to comment.