Commit 2da777fc by Kyle Fiedler

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

parent bc94f32b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment