Rename col to column

This commit is contained in:
Charles Gould 2017-01-06 18:03:10 -05:00
parent 9bc25ceffb
commit 9fa647f3d7
2 changed files with 8 additions and 8 deletions

View File

@ -18,7 +18,7 @@
</form>
</div>
<div id="appDiv" class="hidden">
<div class="left col">
<div class="left column">
<div class="header row">Lingo</div>
<div class="body row scroll-y">
<div id="canvasDiv" class="hidden">
@ -62,7 +62,7 @@
</div>
</div>
</div>
<div class="right col">
<div class="right column">
<div class="header row">Chat</div>
<div id="messageList" class="body row scroll-y"></div>
<div class="footer row">

View File

@ -4,7 +4,7 @@ body {
margin: 0;
}
.row, .col {
.row, .column {
overflow: hidden;
position: absolute;
}
@ -14,7 +14,7 @@ body {
right: 0;
}
.col {
.column {
top: 0;
bottom: 0;
}
@ -29,12 +29,12 @@ body {
/* Specific layout rules */
.left.col {
.left.column {
left: 0;
right: 300px;
}
.right.col {
.right.column {
width: 300px;
right: 0;
}
@ -71,10 +71,10 @@ body {
background: #ddd
}
.right.col {
.right.column {
border-left: 1px solid black;
}
.right.col .body {
.right.column .body {
padding: 0 10px;
}