mirror of
https://github.com/artegoser/AnoPaper.git
synced 2024-11-23 20:36:21 +03:00
Compare commits
2 commits
b58a9adff2
...
98b17d9ea1
Author | SHA1 | Date | |
---|---|---|---|
98b17d9ea1 | |||
8d873f7aa7 |
5 changed files with 36 additions and 15 deletions
10
README.md
10
README.md
|
@ -15,11 +15,11 @@
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
# AnoPaper - Notes service
|
![Anopaper logo with text](docs/imgs/Logo%20With%20Name.png)
|
||||||
|
|
||||||
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fartegoser%2FAnoPaper.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fartegoser%2FAnoPaper?ref=badge_shield)
|
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fartegoser%2FAnoPaper.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fartegoser%2FAnoPaper?ref=badge_shield)
|
||||||
|
|
||||||
AnoPaper is a notes service that allows you to save notes locally, complete notes using OpenAI API, collaborate on notes with other users and more. The notes supports markdown, MathJax, and GFM syntax.
|
**AnoPaper is a notes service** that allows you to save notes locally, complete notes using OpenAI API, collaborate on notes with other users and more. The notes supports markdown, MathJax, and GFM syntax.
|
||||||
|
|
||||||
Running on: <https://anopaper.artegoser.ru/>
|
Running on: <https://anopaper.artegoser.ru/>
|
||||||
|
|
||||||
|
@ -49,6 +49,12 @@ npm run build
|
||||||
- PORT: The port on which the server will listen.
|
- PORT: The port on which the server will listen.
|
||||||
- KEY: Secret key to encrypt notes on the server
|
- KEY: Secret key to encrypt notes on the server
|
||||||
|
|
||||||
|
- Start server
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm start
|
||||||
|
```
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Contributions are welcome! If you would like to contribute to this project, please create a pull request.
|
Contributions are welcome! If you would like to contribute to this project, please create a pull request.
|
||||||
|
|
BIN
docs/imgs/Logo With Name.png
Normal file
BIN
docs/imgs/Logo With Name.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 187 KiB |
BIN
public/ico.png
BIN
public/ico.png
Binary file not shown.
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 14 KiB |
17
src/App.css
17
src/App.css
|
@ -14,3 +14,20 @@
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: #bdbdbd;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #6e6e6e;
|
||||||
|
}
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@layer base {
|
@layer base {
|
||||||
/* styles for displaying markdown */
|
/* styles for displaying markdown */
|
||||||
.md h1 {
|
.md h1 {
|
||||||
|
@ -85,11 +83,8 @@
|
||||||
border-style: hidden;
|
border-style: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.md table thead {
|
.md table thead {
|
||||||
@apply bg-zinc-200 dark:bg-zinc-800;
|
@apply bg-zinc-200 dark:bg-zinc-800;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.md table tr {
|
.md table tr {
|
||||||
|
@ -100,7 +95,10 @@
|
||||||
@apply w-96 ease-[cubic-bezier(.69,.58,.32,1.69)] hover:scale-105 rounded-2xl hover:drop-shadow-2xl transition duration-500 lg:ml-5;
|
@apply w-96 ease-[cubic-bezier(.69,.58,.32,1.69)] hover:scale-105 rounded-2xl hover:drop-shadow-2xl transition duration-500 lg:ml-5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.md p, .math-inline { display: inline-block; }
|
.md p,
|
||||||
|
.math-inline {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
.md li p {
|
.md li p {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue