Skip to content

Commit

Permalink
WIP: Making responsive viewing of homepage better
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Sep 22, 2014
1 parent b4cd8b5 commit cf14396
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 35 deletions.
9 changes: 9 additions & 0 deletions misc/site/css/bootstrap-responsive.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions misc/site/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,83 @@ body {
.btn-group2 {
margin-top: 30px;
}


.benefits {
font-size: 18px;
}

.benefits li:before {
content: '✓';
margin-left: -1em;
margin-right: .300em;
color: green;
}

.benefits li {
list-style: none;
line-height: 30px;
}

@media (max-width: 480px) {
.row-fluid .description.offset4 {
margin-left: 10px;
}

.features .first-block.offset3 {
margin-left: 20px;
}
}

.intro.container-fluid .row {
margin-right: -20px;
}


/* From Bootstrap Responsive */

.visible-phone {
display: none !important;
}

.visible-tablet {
display: none !important;
}

.hidden-desktop {
display: none !important;
}

.visible-desktop {
display: inherit !important;
}

@media (min-width: 768px) and (max-width: 979px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important ;
}
.visible-tablet {
display: inherit !important;
}
.hidden-tablet {
display: none !important;
}
}

@media (max-width: 767px) {
.hidden-desktop {
display: inherit !important;
}
.visible-desktop {
display: none !important;
}
.visible-phone {
display: inherit !important;
}
.hidden-phone {
display: none !important;
}
}
Loading

0 comments on commit cf14396

Please sign in to comment.