Skip to content

Commit

Permalink
Improve CSS readability
Browse files Browse the repository at this point in the history
  • Loading branch information
zykh committed Aug 28, 2013
1 parent 72a9377 commit c3292d4
Showing 1 changed file with 45 additions and 9 deletions.
54 changes: 45 additions & 9 deletions docs/website/css/web-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,51 @@ td#driver-col { width: 30%; }

.hidden { display: none; }

#filters-set { display: none; border: 1px solid silver; padding: 10px; }
#filters-set legend, #support-level-legend legend { font-weight: bold; }
#filters-set td { border: 0; }
#filters-set select { max-width: 200px }
#filters-set + * { clear: both; }

#support-level-legend { width: 31.25em; float: right; margin: 0 1em 1em 1em; padding: 10px; border: 1px solid silver; }
#support-level-legend dt { margin: 0; padding: 0; width: 15%; float: left; }
#support-level-legend dd { margin: 0; padding: 0; width: 85%; float: left; }
/* HCL Chooser/Legend */
#filters-set {
display: none;
border: 1px solid silver;
padding: 10px;
}

#filters-set legend, #support-level-legend legend {
font-weight: bold;
}

#filters-set td {
border: 0;
}

#filters-set select {
max-width: 200px;
}

/* Clear HCL Legend */
#filters-set + * {
clear: both;
}

#support-level-legend {
width: 31.25em;
float: right;
margin: 0 1em 1em 1em;
padding: 10px;
border: 1px solid silver;
}

#support-level-legend dt {
margin: 0;
padding: 0;
width: 15%;
float: left;
}

#support-level-legend dd {
margin: 0;
padding: 0;
width: 85%;
float: left;
}

/*.support-level-descr { margin-left: 20px; float: right; }*/

Expand Down

0 comments on commit c3292d4

Please sign in to comment.