Skip to content

Commit

Permalink
fix layout.php
Browse files Browse the repository at this point in the history
  • Loading branch information
olton committed Dec 14, 2012
1 parent 112993d commit 7539c4c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 8 deletions.
8 changes: 4 additions & 4 deletions less/layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
}

.app-bar {
position: absolute;
position: fixed;
bottom: 0;
left: 0;
right: 0;
Expand All @@ -236,7 +236,7 @@
}

.charms {
position: absolute;
position: fixed;
right: 0;
top: 0;
bottom: 0;
Expand All @@ -256,7 +256,7 @@
}

.message-dialog {
position: absolute;
position: fixed;
left: 0;
right: 0;
height: auto;
Expand All @@ -267,7 +267,7 @@
.flyouts{}

.error-bar, .warning-bar, .info-bar {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand Down
8 changes: 4 additions & 4 deletions public/css/modern.css
Original file line number Diff line number Diff line change
Expand Up @@ -2701,15 +2701,15 @@ ol.unstyled,
clear: both;
}
.app-bar {
position: absolute;
position: fixed;
bottom: 0;
left: 0;
right: 0;
min-height: 100px;
background-color: #1d1d1d !important;
}
.charms {
position: absolute;
position: fixed;
right: 0;
top: 0;
bottom: 0;
Expand All @@ -2722,7 +2722,7 @@ ol.unstyled,
right: auto;
}
.message-dialog {
position: absolute;
position: fixed;
left: 0;
right: 0;
height: auto;
Expand All @@ -2733,7 +2733,7 @@ ol.unstyled,
.error-bar,
.warning-bar,
.info-bar {
position: absolute;
position: fixed;
top: 0;
left: 0;
right: 0;
Expand Down
16 changes: 16 additions & 0 deletions public/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,22 @@ hr {
height: 300px;
}

.carousel .control {
top: auto;
left: auto;
bottom: -40px;
}
.carousel .control.left {
right: 100px;
}
.carousel .control.right {
right: 30px;
}

.charms, .app-bar, .message-dialog, .error-bar, .warning-bar, .info-bar {
position: absolute;
}

@media (min-width: 768px) and (max-width: 979px) {
.page {
width: 724px;
Expand Down
4 changes: 4 additions & 0 deletions public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@
<p><a href="http://bizspark.com">Join</a> the BizSpark Program now.</p>
</div>
</div>

<span class="control left"><i class="icon-arrow-left-3"></i></span>
<span class="control right"><i class="icon-arrow-right-3"></i></span>

</div>
</div>
</div>
Expand Down

0 comments on commit 7539c4c

Please sign in to comment.