Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Janne Klouman committed May 5, 2018
1 parent 09c8dbb commit 696bb0e
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 0 deletions.
13 changes: 13 additions & 0 deletions dark.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<meta name="viewport" content="width=device-width">
<style>
body {
max-width: 707px;
margin: auto;
padding: 4vw;
font: 1rem/1.8 sans-serif;
color: #eee8d5;
background: #002b36;
}
img { max-width: 100% }
</style>
<body contenteditable>
13 changes: 13 additions & 0 deletions hn.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<meta name="viewport" content="width=device-width">
<style>
body {
max-width: 707px;
margin: auto;
padding: 1em;
font-family: Verdana, Geneva, sans-serif;
font-size: 9pt;
background: #f6f6ef
}
img { max-width: 100% }
</style>
<body contenteditable>
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<meta name="viewport" content="width=device-width">
<style>
body {
max-width: 707px;
margin: auto;
padding: 4vw;
font: 1rem/1.8 sans-serif;
color: #002b36;
background: #eee8d5
}
img { max-width: 100% }
</style>
<body contenteditable>
1 change: 1 addition & 0 deletions min.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<meta name="viewport" content="width=device-width"><style>body{max-width:707px;margin:auto;padding:4vw;font:1rem/1.8 sans-serif;color:#002b36;background:#eee8d5}img{max-width:100%}</style><body contenteditable>
10 changes: 10 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# New note
Simple notepad made with HTML and CSS.

To save a note store it on disk (`cmd/ctrl+s`).

To add images, drag and drop them onto the text area.

Fork/download and update styles to your preference.

Colors from [Solarized](https://github.com/altercation/solarized).
13 changes: 13 additions & 0 deletions serif.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<meta name="viewport" content="width=device-width">
<style>
body {
max-width: 707px;
margin: auto;
padding: 4vw;
font: 1rem/1.8 serif;
color: #002b36;
background: #eee8d5
}
img { max-width: 100% }
</style>
<body contenteditable>
14 changes: 14 additions & 0 deletions with-heading.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<meta name="viewport" content="width=device-width">
<style>
body {
max-width: 707px;
margin: auto;
padding: 4vw;
font: 1rem/1.8 sans-serif;
color: #002b36;
background: #eee8d5
}
img { max-width: 100% }
</style>
<h1 contenteditable>Heading</h1>
<body contenteditable>Body text

0 comments on commit 696bb0e

Please sign in to comment.