The font is now locally-sources, like tomatoes
This commit is contained in:
parent
55cf1d377c
commit
db4ee348a0
@ -24,8 +24,6 @@ pygmentize -S dracula -f html -a .codehilite > styles.css
|
|||||||
* Replace all css for .codehilite in src/static/main.css with what's in styles.css
|
* Replace all css for .codehilite in src/static/main.css with what's in styles.css
|
||||||
|
|
||||||
## Future features, todo
|
## Future features, todo
|
||||||
* Put the pickle file in a folder by itself so it works with docker volumes
|
|
||||||
* Test the dockerfile
|
|
||||||
* A squirrel ascii picture somewhere in the page :3
|
* A squirrel ascii picture somewhere in the page :3
|
||||||
* A link "export all in markdown"
|
* A link "export all in markdown"
|
||||||
* Replace pickle with sqlite or smth
|
* Replace pickle with sqlite or smth
|
||||||
|
@ -13,8 +13,8 @@ services:
|
|||||||
#ports:
|
#ports:
|
||||||
#- 8080:8080
|
#- 8080:8080
|
||||||
labels:
|
labels:
|
||||||
- "traefik.http.routers.gitea.rule=Host(`notes.sq.lan`)"
|
- "traefik.http.routers.sqnotes.rule=Host(`notes.sq.lan`)"
|
||||||
- "traefik.http.services.gitea.loadbalancer.server.port=8080"
|
- "traefik.http.services.sqnotes.loadbalancer.server.port=8080"
|
||||||
- "traefik.docker.network=traefik_traefik"
|
- "traefik.docker.network=traefik_traefik"
|
||||||
networks:
|
networks:
|
||||||
traefik_traefik:
|
traefik_traefik:
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
src/static/sspro-ita.ttf
Normal file
BIN
src/static/sspro-ita.ttf
Normal file
Binary file not shown.
BIN
src/static/sspro.ttf
Normal file
BIN
src/static/sspro.ttf
Normal file
Binary file not shown.
@ -1,3 +1,7 @@
|
|||||||
|
@font-face {
|
||||||
|
src: {{ url_for('static', filename='sspro-ita.ttf') }};
|
||||||
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: #22242e;
|
background-color: #22242e;
|
||||||
font-family: 'Source Sans Pro';
|
font-family: 'Source Sans Pro';
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles/main.css') }}" type="text/css" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles/main.css') }}" type="text/css" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
<link href='https://fonts.googleapis.com/css?family=Source Sans Pro' rel='stylesheet'>
|
<!-- <link href='https://fonts.googleapis.com/css?family=Source Sans Pro' rel='stylesheet'> -->
|
||||||
<title>squip_notes</title>
|
<title>sqnotes</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<h1 class="pagetitle">$ ~/squip_notes</h1>
|
<h1 class="pagetitle">$ ~/sqnotes</h1>
|
||||||
<div class="div1">
|
<div class="div1">
|
||||||
<form action="." method="POST">
|
<form action="." method="POST">
|
||||||
<textarea type="text" name="title" class="title">{{ ntitle }}</textarea><br>
|
<textarea type="text" name="title" class="title">{{ ntitle }}</textarea><br>
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='styles/main.css') }}" type="text/css" />
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles/main.css') }}" type="text/css" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
<link href='https://fonts.googleapis.com/css?family=Source Sans Pro' rel='stylesheet'>
|
<!--<link href='https://fonts.googleapis.com/css?family=Source Sans Pro' rel='stylesheet'> -->
|
||||||
<title>squip_notes</title>
|
<title>sqnotes</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<h1 class="pagetitle">$ ~/squip_notes</h1>
|
<h1 class="pagetitle">$ ~/sqnotes</h1>
|
||||||
<div class="div1">
|
<div class="div1">
|
||||||
<form action="." method="POST">
|
<form action="." method="POST">
|
||||||
<input type="text" name="title" class="title" placeholder="Title"><br>
|
<input type="text" name="title" class="title" placeholder="Title"><br>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user