blob: 7b1003bf070e7a46b280b0552ba6a4521b149623 (
plain) (
blame)
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
45
46
|
To create black- and white- versions of logo:
$ cd assets/images
$ ./polyguin.sh
To generate HTML bundle for upload to web server:
$ make site
Upload html.tgz to the server and unpack, then delete html.tgz.
Imagemagick is required to convert the PSD files into .webm (or other) formats.
2021-07-22 NOTICE:
* The theme.css file is manually modified. Awaiting theme author to provide valid source files.
* The following changes have been made from original:
$ grep -rl AAAAAA assets/ | while read k; do sed -i ${k} -e 's/AAAAAA/DDDDDD/g'; done
$ grep -rl 7C7C7C assets/ | while read k; do sed -i ${k} -e 's/7C7C7C/333333/g'; done
Manual steps to do CSS processing:
# Adélie SCSS Preprocessor
1. Throw CSS into `src/*`.
2. Ensure that there is a top-level `src/theme.scss` file with imports.
3. Run `npm i` to install dependencies.
4. Run `npm build` to build to `out/`.
5. Profit.
## Running
Targets may be run with `npm run <target>`.
| Target | Description |
| ---------------- | ----------------------- |
| `prebuild` | See `clean` |
| `build` | Compile SCSS to `out/` |
| `list-supported` | List supported browsers |
| `clean` | Clean output directory |
## Notes
- Fonts are downloaded and provided in `out/fonts/*`
|