added the first few of the images

This commit is contained in:
dragonwocky 2020-06-02 23:09:59 +10:00
parent b9810c9d62
commit 5eae5ecb5b
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
11 changed files with 43 additions and 9 deletions

View File

@ -45,13 +45,6 @@ additionally, if you ever need to change or reset your notion build, the `custom
unless you're sure you know what you're doing (if you have to ask, you probably don't) then do not delete anything. unless you're sure you know what you're doing (if you have to ask, you probably don't) then do not delete anything.
## this is a fork
credit where credit is due, this was originally made by Uzver (github: [@TarasokUA](https://github.com/TarasokUA),
telegram: [UserFromUkraine](https://t.me/UserFromUkraine), discord: Uzver#8760).
he has approved my go-ahead with this fork, as he himself no longer wishes to continue development on the project.
## features ## features
### titlebar ### titlebar
@ -73,6 +66,12 @@ ones that actually look as if they're part of notion.
to add these to the web version, copy lines 44 - 75 from `user.css` into your css customiser. to add these to the web version, copy lines 44 - 75 from `user.css` into your css customiser.
![](screenshots/default-before.jpg)
_image: before enhancement_
![](screenshots/default-after.jpg)
_image: after default enhancement_
### hotkeys ### hotkeys
- **reload window**: in addition to the built-in `CmdOrCtrl+R` reload, - **reload window**: in addition to the built-in `CmdOrCtrl+R` reload,
@ -96,8 +95,21 @@ settings will be saved in `%localappdata%/Programs/Notion/resources/app/user-pre
- **load theme.css**: loads the custom colour theme file. - **load theme.css**: loads the custom colour theme file.
see [colour theming](STYLING.md#colour-theming) for more information. (default: false) see [colour theming](STYLING.md#colour-theming) for more information. (default: false)
![](screenshots/tray.jpg)
_image: open application tray_
## styling ## styling
custom appearances can be applied to the app via the `resources/user.css` and `resources/theme.css` files. for more information,
and a list of various optional styling changes, see [the page on styling](STYLING.md).
## this is a fork
credit where credit is due, this was originally made by Uzver (github: [@TarasokUA](https://github.com/TarasokUA),
telegram: [UserFromUkraine](https://t.me/UserFromUkraine), discord: Uzver#8760).
he has approved my go-ahead with this fork, as he himself no longer wishes to continue development on the project.
## other details ## other details
the notion logo belongs entirely to the notion team, and was sourced from their the notion logo belongs entirely to the notion team, and was sourced from their

View File

@ -27,6 +27,9 @@ to enable, see the [tray](README.md#tray) options.
to modify, enter the `theme.css` file and change the colour values within the `:root {}` - value names to modify, enter the `theme.css` file and change the colour values within the `:root {}` - value names
should describe what each colour will affect. should describe what each colour will affect.
![](screenshots/theme.jpg)
_image: the dark+ theme_
### hide discussions (comment threads at the top of each page) ### hide discussions (comment threads at the top of each page)
```css ```css
@ -35,11 +38,20 @@ should describe what each colour will affect.
} }
``` ```
![](screenshots/hidediscussion-after.jpg)
_image: after_
![](screenshots/hidediscussion-before.jpg)
_image: before_
### custom fonts ### custom fonts
**the `@import` statement must be added to the top of the file (with nothing above it** **the `@import` statement must be added to the top of the file (with nothing above it**
**except comments or other `@import` statements)** **except comments or other `@import` statements)**
to change the fonts, change the font-family property. there are
plenty of other fonts that can be found on google fonts or that may be on your system already.
```css ```css
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Oxygen&family=Roboto+Slab:wght@300&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Fira+Code&family=Oxygen&family=Roboto+Slab:wght@300&display=swap');
.notion-app-inner { .notion-app-inner {
@ -53,15 +65,22 @@ should describe what each colour will affect.
} }
``` ```
![](screenshots/customfonts-after.jpg)
_image: after_
![](screenshots/customfonts-before.jpg)
_image: before_
### font resizing ### font resizing
**not recommended:** this can mess up container sizes. **not recommended:** this can mess up container sizes.
it is suggested to instead use `ctrl+` or `ctrl-` to scale everything up/down. it is suggested to instead use `ctrl+` or `ctrl-` to scale everything up/down.
to change the size, change the value of `--font-scale`.
```css ```css
/* font sizes */
:root { :root {
--font-scale: 1; --font-scale: 1.4;
} }
.notion-app-inner { .notion-app-inner {
font-size: calc(var(--font-scale) * 16px) !important; font-size: calc(var(--font-scale) * 16px) !important;
@ -86,6 +105,9 @@ it is suggested to instead use `ctrl+` or `ctrl-` to scale everything up/down.
} }
``` ```
![](screenshots/fontresizing.jpg)
_image: after_
### wider page view ### wider page view
```css ```css

Binary file not shown.

After

Width:  |  Height:  |  Size: 395 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 390 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

BIN
screenshots/theme.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 KiB

BIN
screenshots/tray.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB