Files snapshot from main
This is a repo where I put ideas for UI components for the eleventy-plugin-repoviewer default template. I'm using the buildSteps feature of repoviewer to put the resulting HTML pages on the web.
So far, those are:
Building this:
Right now the only thing that needs to run is sass. The .html files expect a CSS
file to be in css/design-board.css. The npm run sass script does this. So, run:
npm install to make sure sass is installednpm run sassThen you'll be able to just open any of the .html files here in a browser.
Note: If you installed your browser using a flatpak, it won't be able to see the local CSS files because of how they restrict accesst to your local files. While this is very cool, it can be kind of inconvenient for local HTML/CSS development.
possible expanded color palette: https://coolors.co/556df0-852cdf-ff549b-8ec323-f8e276-f49530-edabb8-e273fa-7388fa-80f8d4
/* CSS HEX */
--electric-sapphire: #556df0ff;
--blue-violet: #852cdfff;
--wild-strawberry: #ff549bff;
--yellow-green: #8ec323ff;
--jasmine: #f8e276ff;
--carrot-orange: #f49530ff;
--cherry-blossom: #edabb8ff;
--mauve-magic: #e273faff;
--cornflower-blue: #7388faff;
--aquamarine: #80f8d4ff;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
619ad8 Tucker McKnight
619ad8 Tucker McKnight
619ad8 Tucker McKnight
619ad8 Tucker McKnight
619ad8 Tucker McKnight
946fa8 Tucker McKnight
946fa8 Tucker McKnight
946fa8 Tucker McKnight
619ad8 Tucker McKnight
946fa8 Tucker McKnight
946fa8 Tucker McKnight
b468f8 Tucker McKnight
9c2abf Tucker McKnight
9c2abf Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
695fa5 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
40ea38 Tucker McKnight
This is a repo where I put ideas for UI components for the eleventy-plugin-repoviewer default template. I'm using the buildSteps feature of repoviewer to put the resulting HTML pages on the web.
So far, those are:
- [index.html](demo/index.html)
- rough draft of the default template for repoviewer. I posted a link to this mockup for feedback here: https://feddit.online/post/1159392
- [index-slim.html](demo/index-slim.html)
- A more compact version of that rough draft, from when I thought I might want the header on every page
- [index2.html](demo/index2.html)
- A slightly different color scheme
- [design-board.html](demo/design-board.html)
- Different idea for the default template's look, which eventually became what I went with
- [new-commits-page.html](demo/new-commits-page.html)
- some ideas for how commits should look on the commits list page
Building this:
Right now the only thing that needs to run is `sass`. The .html files expect a CSS
file to be in `css/design-board.css`. The `npm run sass` script does this. So, run:
- `npm install` to make sure sass is installed
- `npm run sass`
Then you'll be able to just open any of the .html files here in a browser.
**Note: If you installed your browser using a flatpak, it won't be able to see the
local CSS files because of how they restrict accesst to your local files. While this
is very cool, it can be kind of inconvenient for local HTML/CSS development.**
possible expanded color palette: https://coolors.co/556df0-852cdf-ff549b-8ec323-f8e276-f49530-edabb8-e273fa-7388fa-80f8d4
```css
/* CSS HEX */
--electric-sapphire: #556df0ff;
--blue-violet: #852cdfff;
--wild-strawberry: #ff549bff;
--yellow-green: #8ec323ff;
--jasmine: #f8e276ff;
--carrot-orange: #f49530ff;
--cherry-blossom: #edabb8ff;
--mauve-magic: #e273faff;
--cornflower-blue: #7388faff;
--aquamarine: #80f8d4ff;
```