Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/spech66/bootstrap-bp-hugo-startpage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pech <windows@spech.de>2019-07-22 12:46:59 +0300
committerSebastian Pech <windows@spech.de>2019-07-22 12:46:59 +0300
commitc3bec504f662e0eb8cb5e282f890e49259d07129 (patch)
tree2f74bcd6af3de7b6b2e5f3dbd9a92ff36a0b7f82
parentd56c131f1d731bd7658bd92582d2ed4ff976cba1 (diff)
assets and docu
-rw-r--r--README.md16
-rw-r--r--assets/css/main.css31
-rw-r--r--images/screenshot.pngbin0 -> 3261625 bytes
-rw-r--r--images/screenshot2.pngbin0 -> 3259577 bytes
-rw-r--r--static/images/bg.jpgbin0 -> 521668 bytes
5 files changed, 41 insertions, 6 deletions
diff --git a/README.md b/README.md
index df699af..47d6902 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,11 @@ You can get a zip of the latest version of the theme from the [home page](https:
Most settings should be done with hugo specific variables. There are only a few (optional) additional `[params]`.
-* `startPageColumns = true` will show the start page in a Masonry-like mode.
+* `startPageColumns = true` will show the start page in grouped lists
+
+![startPageColumns = false](https://raw.githubusercontent.com/spech66/bootstrap-bp-hugo-startpage/master/images/screenshot.png)
+
+![startPageColumns = true](https://raw.githubusercontent.com/spech66/bootstrap-bp-hugo-startpage/master/images/screenshot2.png).
## Google Analytics
@@ -50,3 +54,13 @@ title = "My hugo site"
[params]
description = "Text about the site"
```
+
+## Sources
+
+* Background image by [Mikael Gustafsson](https://www.artstation.com/artwork/Y2Wew)
+
+Inspired by:
+
+* [Reddit - r/startpages](https://www.reddit.com/r/startpages/)
+* [Github - 0-Tikaro - Minimum Viable Startpage](https://github.com/0-Tikaro/minimum-viable-startpage), Searchbox code
+* [Github - ViktorKare - startpage](https://github.com/ViktorKare/startpage)
diff --git a/assets/css/main.css b/assets/css/main.css
index c5840f3..17d951f 100644
--- a/assets/css/main.css
+++ b/assets/css/main.css
@@ -1,6 +1,27 @@
-footer {
- padding: 2.5rem 0;
- color: #999;
- background-color: #f9f9f9;
- border-top: 0.05rem solid #e5e5e5;
+html, body {
+ height: 100%;
+}
+
+body {
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-align: center;
+ align-items: center;
+ background: url("images/bg.jpg");
+ background-size: cover;
+}
+
+h1 {
+ color: #ffffff;
+}
+
+.card {
+ opacity: 0.8;
+}
+.card:hover {
+ opacity: 1.0;
+}
+
+.cursorPointer:hover {
+ cursor: pointer;
}
diff --git a/images/screenshot.png b/images/screenshot.png
new file mode 100644
index 0000000..8c83398
--- /dev/null
+++ b/images/screenshot.png
Binary files differ
diff --git a/images/screenshot2.png b/images/screenshot2.png
new file mode 100644
index 0000000..a1d4dee
--- /dev/null
+++ b/images/screenshot2.png
Binary files differ
diff --git a/static/images/bg.jpg b/static/images/bg.jpg
new file mode 100644
index 0000000..3c61f49
--- /dev/null
+++ b/static/images/bg.jpg
Binary files differ