mirror of
https://github.com/artegoser/AnoPaper.git
synced 2024-11-23 20:36:21 +03:00
Compare commits
No commits in common. "98b17d9ea15d32a3ffa301479312fccadb221cea" and "b58a9adff2681b0ac319f33b70f35669ec610a09" have entirely different histories.
98b17d9ea1
...
b58a9adff2
5 changed files with 15 additions and 36 deletions
10
README.md
10
README.md
|
@ -15,11 +15,11 @@
|
|||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
![Anopaper logo with text](docs/imgs/Logo%20With%20Name.png)
|
||||
# AnoPaper - Notes service
|
||||
|
||||
[![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/>
|
||||
|
||||
|
@ -49,12 +49,6 @@ npm run build
|
|||
- PORT: The port on which the server will listen.
|
||||
- KEY: Secret key to encrypt notes on the server
|
||||
|
||||
- Start server
|
||||
|
||||
```bash
|
||||
npm start
|
||||
```
|
||||
|
||||
## Contributing
|
||||
|
||||
Contributions are welcome! If you would like to contribute to this project, please create a pull request.
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 187 KiB |
BIN
public/ico.png
BIN
public/ico.png
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 122 KiB |
17
src/App.css
17
src/App.css
|
@ -14,20 +14,3 @@
|
|||
You should have received a copy of the GNU General Public License
|
||||
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,6 +19,8 @@
|
|||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
|
||||
|
||||
@layer base {
|
||||
/* styles for displaying markdown */
|
||||
.md h1 {
|
||||
|
@ -83,8 +85,11 @@
|
|||
border-style: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.md table thead {
|
||||
@apply bg-zinc-200 dark:bg-zinc-800;
|
||||
|
||||
}
|
||||
|
||||
.md table tr {
|
||||
|
@ -95,10 +100,7 @@
|
|||
@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 {
|
||||
display: inline;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue