Refinements and add link to changelog
This commit is contained in:
parent
abbf42f5af
commit
da3a12cc52
2 changed files with 23 additions and 6 deletions
|
@ -119,7 +119,7 @@ title: Pepperminty Wiki
|
|||
</div>
|
||||
|
||||
<div class="feature-small panel padding-medium centre-text">
|
||||
<p>And more! Check out the <a href="https://starbeamrainbowlabs.com/labs/peppermint/__nightdocs/02-Features.html">feature list</a> for an extended list of supported features.</p>
|
||||
<p>And more! Check out the full <a href="https://starbeamrainbowlabs.com/labs/peppermint/__nightdocs/02-Features.html">feature list</a> for an extended list of supported features.</p>
|
||||
<p>Don't see a feature you need? <a href="https://github.com/sbrl/Pepperminty-Wiki/issues/new">Open an issue</a>!</p>
|
||||
</div>
|
||||
|
||||
|
@ -171,6 +171,7 @@ title: Pepperminty Wiki
|
|||
<div class="padding-horizontal centre-text">
|
||||
<p>Download Pepperminty Wiki in the way that's best for you. Simply upload the <code>index.php</code> file you download to an empty directory on your PHP-enabled web server, and you're away!</p>
|
||||
<p>If you encounter difficulties, try reading the <a href="https://starbeamrainbowlabs.com/labs/peppermint/__nightdocs/01-Welcome.html">documentation</a>. Still having issues? <a href="https://github.com/sbrl/Pepperminty-Wiki/issues/new">Open an issue</a> and we'll try and help you out.</p>
|
||||
<p>Wondering what's changed recently? Check out the <a href="https://github.com/sbrl/Pepperminty-Wiki/blob/master/Changelog.md">changelog</a>.</p>
|
||||
<p>
|
||||
<a href="https://travis-ci.org/sbrl/Pepperminty-Wiki"><img src="https://travis-ci.org/sbrl/Pepperminty-Wiki.svg?branch=master" alt="Travis CI Build status" /></a>
|
||||
<a href="https://gitter.im/Pepperminty-Wiki/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"><img src="https://badges.gitter.im/Pepperminty-Wiki/Lobby.svg" alt="Join the chat at https://gitter.im/Pepperminty-Wiki/Lobby" /></a>
|
||||
|
@ -194,10 +195,6 @@ title: Pepperminty Wiki
|
|||
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Things to add:
|
||||
- Demo
|
||||
-->
|
||||
|
||||
<footer class="panel padding-wide-ntop">
|
||||
<ol class="list-thin">
|
||||
|
|
|
@ -128,6 +128,8 @@ button, summary { cursor: pointer; }
|
|||
background: var(--bg-panel);
|
||||
border-bottom: 0.25em solid var(--highlight-minor);
|
||||
border-top: 0.25em solid var(--highlight-minor);
|
||||
|
||||
box-shadow: inset 0 0 0.5em var(--shadow);
|
||||
}
|
||||
.panel-small {
|
||||
background: var(--bg-panel-alpha);
|
||||
|
@ -226,7 +228,7 @@ button, summary { cursor: pointer; }
|
|||
|
||||
.feature-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
|
||||
grid-template-columns: repeat(auto-fill, minmax(min(20em, 100%), 1fr));
|
||||
grid-gap: 2em;
|
||||
margin: 4em 2em 4em 2em;
|
||||
}
|
||||
|
@ -252,3 +254,21 @@ button, summary { cursor: pointer; }
|
|||
}
|
||||
/* .feature img { float: left; } */
|
||||
/* .feature figcaption { flex: 1; } */
|
||||
|
||||
|
||||
/*
|
||||
███ ███ ██████ ██████ ██ ██ ███████
|
||||
████ ████ ██ ██ ██ ██ ██ ██ ██
|
||||
██ ████ ██ ██ ██ ██████ ██ ██ █████
|
||||
██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||
██ ██ ██████ ██████ ██ ███████ ███████
|
||||
*/
|
||||
@media (max-width: 800px) {
|
||||
.double, .double.lean-left, .double.lean-right {
|
||||
grid-template-columns: auto !important;
|
||||
grid-template-rows: auto auto !important;
|
||||
}
|
||||
.feature-tilted {
|
||||
transform: rotateY(0);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue