added the first few of the images
26
README.md
@ -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.
|
||||||
|
|
||||||
|

|
||||||
|
_image: before enhancement_
|
||||||
|
|
||||||
|

|
||||||
|
_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)
|
||||||
|
|
||||||
|

|
||||||
|
_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
|
||||||
|
26
STYLING.md
@ -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.
|
||||||
|
|
||||||
|

|
||||||
|
_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.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|
_image: after_
|
||||||
|
|
||||||
|

|
||||||
|
_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.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|
_image: after_
|
||||||
|
|
||||||
|

|
||||||
|
_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.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|

|
||||||
|
_image: after_
|
||||||
|
|
||||||
### wider page view
|
### wider page view
|
||||||
|
|
||||||
```css
|
```css
|
||||||
|
BIN
screenshots/customfonts-after.jpg
Normal file
After Width: | Height: | Size: 395 KiB |
BIN
screenshots/customfonts-before.jpg
Normal file
After Width: | Height: | Size: 390 KiB |
BIN
screenshots/default-after.jpg
Normal file
After Width: | Height: | Size: 230 KiB |
BIN
screenshots/default-before.jpg
Normal file
After Width: | Height: | Size: 243 KiB |
BIN
screenshots/fontresizing.jpg
Normal file
After Width: | Height: | Size: 243 KiB |
BIN
screenshots/hidediscussion-after.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
screenshots/hidediscussion-before.jpg
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
screenshots/theme.jpg
Normal file
After Width: | Height: | Size: 234 KiB |
BIN
screenshots/tray.jpg
Normal file
After Width: | Height: | Size: 32 KiB |