Update core
This commit is contained in:
parent
4c5013bc82
commit
36996af1db
2 changed files with 22 additions and 1 deletions
|
@ -280,6 +280,7 @@ $formats = Format::searchInformation();
|
|||
<meta name="description" content="Rss-bridge" />
|
||||
<title>RSS-Bridge</title>
|
||||
<link href="static/style.css" rel="stylesheet">
|
||||
<link href="static/leslibres.org.css" rel="stylesheet">
|
||||
<script src="static/search.js"></script>
|
||||
<script src="static/select.js"></script>
|
||||
<noscript>
|
||||
|
@ -312,7 +313,7 @@ $formats = Format::searchInformation();
|
|||
id="searchfield" placeholder="Enter the bridge you want to search for"
|
||||
onchange="search()" onkeyup="search()" value="{$query}">
|
||||
</section>
|
||||
|
||||
<div id="content">
|
||||
EOD;
|
||||
|
||||
$activeFoundBridgeCount = 0;
|
||||
|
@ -330,6 +331,7 @@ EOD;
|
|||
}
|
||||
echo $inactiveBridges;
|
||||
?>
|
||||
</div>
|
||||
<section class="footer">
|
||||
<a href="https://github.com/RSS-Bridge/rss-bridge">RSS-Bridge 2018-06-10 ~ Public Domain</a><br />
|
||||
<?= $activeFoundBridgeCount; ?>/<?= count($bridgeList) ?> active bridges. <br />
|
||||
|
|
19
static/leslibres.org.css
Normal file
19
static/leslibres.org.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
#content {
|
||||
|
||||
background-color: #EEEEEE;
|
||||
font-family: 'Noto Sans';
|
||||
align-content: start;
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
margin: .5em;
|
||||
|
||||
}
|
||||
|
||||
section:not(.searchbar):not(.footer) {
|
||||
|
||||
flex-basis: 20%;
|
||||
flex-grow: 1;
|
||||
align-self: stretch;
|
||||
margin: .5em;
|
||||
|
||||
}
|
Loading…
Reference in a new issue