Removed table borders and declared inputs as inline instead of inline-block

This commit is contained in:
Kyle Fiedler
2012-07-05 10:00:54 -04:00
parent 87e612f0f2
commit 82c68dd845

View File

@@ -205,17 +205,17 @@ section.problem-set {
table {
margin-bottom: lh();
width: 100%;
border: 1px solid #ddd;
// border: 1px solid #ddd;
border-collapse: collapse;
th {
border-bottom: 2px solid #ccc;
// border-bottom: 2px solid #ccc;
font-weight: bold;
text-align: left;
}
td {
border: 1px solid #ddd;
// border: 1px solid #ddd;
}
caption, th, td {
@@ -253,11 +253,12 @@ section.problem-set {
visibility: hidden;
}
input[type="text"] {
display: inline-block;
width: 50%;
#{$all-text-inputs} {
display: inline;
width: auto;
}
// this supports a deprecated element and should be removed once the center tag is removed
center {
display: block;
margin: lh() 0;