Skip to content

Commit

Permalink
CSS bugfix for mobile and other small-screeens
Browse files Browse the repository at this point in the history
  • Loading branch information
yumi-xx committed Sep 17, 2018
1 parent 9204df9 commit 9145b2e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
7 changes: 5 additions & 2 deletions www/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<HTML>
<head>
<?php
$Renderer->title = "Site Configuration";
$Renderer->Title = "Site Configuration";
$Renderer->putHead();
?>
</head>
Expand All @@ -33,7 +33,10 @@
<span>Adjust your Experience</span><br />
</header></div>
<?php include "{$ROOT}template/Feelies.php" ?><hr />
<article><?php $Renderer->configForm(); ?></article>
<article>
<h2>Configuration</h2>
<?php $Renderer->configForm(); ?>
</article>
<hr />
<div class=hf-container><footer>
<?php include "{$ROOT}template/Footer.php"; ?>
Expand Down
9 changes: 6 additions & 3 deletions www/css/Base.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,12 @@ header, footer {
display: inline-block;
text-align: center;
}
header.no-flair {
padding: 10px;
}
header.no-flair:before,
header.no-flair:after {
border: 0;
display: none;
}
table, tr, td, th {
border: 1px solid;
Expand Down Expand Up @@ -129,11 +132,11 @@ article .content > * {
.timeline ul li div {
position: relative;
bottom: 0;
width: 200px;
width: 100px;
padding: 0 20px;
}
.timeline ul li:nth-child(even) div {
left: -240px;
left: -140px;
text-align: right;
}
.timeline ul li::after {
Expand Down

0 comments on commit 9145b2e

Please sign in to comment.