Refactor CSS

This commit is contained in:
ruan 2018-04-26 07:41:06 +02:00
parent bb1b3e7c59
commit 09ca583c3f
No known key found for this signature in database
GPG Key ID: 0D2EC1C52E469C0B
3 changed files with 8 additions and 2 deletions

View File

@ -84,6 +84,12 @@ tr.hover {
text-align: center; text-align: center;
} }
.litebans-index-main {
}
.litebans-index-sub {
}
/* info.php */ /* info.php */
.litebans-info-badges { .litebans-info-badges {
width: 0; width: 0;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 B

After

Width:  |  Height:  |  Size: 81 B

View File

@ -7,11 +7,11 @@ $page->print_title();
<br> <br>
<div class="container"> <div class="container">
<div class="jumbotron"> <div class="jumbotron">
<div class="litebans-index"> <div class="litebans-index litebans-index-main">
<h2><?php echo str_replace("{server}", $page->settings->name, $page->t("index.welcome.main")); ?></h2> <h2><?php echo str_replace("{server}", $page->settings->name, $page->t("index.welcome.main")); ?></h2>
</div> </div>
<div class="litebans-index"><p><?php echo $page->t("index.welcome.sub"); ?></p></div> <div class="litebans-index litebans-index-sub"><p><?php echo $page->t("index.welcome.sub"); ?></p></div>
</div> </div>
</div> </div>
<?php $page->print_footer(false); ?> <?php $page->print_footer(false); ?>