-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·174 lines (169 loc) · 5.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html>
<head>
<!-- MISC/META -->
<title>Focus Writer</title>
<meta charset="utf-8" />
<meta
name="Description"
content="Focus Writer - A distraction-free, online text editor.
Focus is the minimalist text editor writers so desperately needed. Focus presents you with a place were you get rid of all of the distractions and concentrate on your craft. No worrying about aesthetics. No formatting problems. Just you and your words. Just open. Relax. And get some writing done. You can worry about the little details later."
/>
<meta
name="keywords"
content="focus, writer, text, editor, online, free, distraction-free, night, mode"
/>
<meta author="Ricardo Fabila Reyes" />
<!-- Favicon -->
<link
rel="apple-touch-icon-precomposed"
sizes="57x57"
href="images/favicon/apple-touch-icon-57x57.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="114x114"
href="images/favicon/apple-touch-icon-114x114.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="72x72"
href="images/favicon/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="144x144"
href="images/favicon/apple-touch-icon-144x144.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="60x60"
href="images/favicon/apple-touch-icon-60x60.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="120x120"
href="images/favicon/apple-touch-icon-120x120.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="76x76"
href="images/favicon/apple-touch-icon-76x76.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="152x152"
href="images/favicon/apple-touch-icon-152x152.png"
/>
<link
rel="icon"
type="image/png"
href="images/favicon/favicon-196x196.png"
sizes="196x196"
/>
<link
rel="icon"
type="image/png"
href="images/favicon/favicon-96x96.png"
sizes="96x96"
/>
<link
rel="icon"
type="image/png"
href="images/favicon/favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="images/favicon/favicon-16x16.png"
sizes="16x16"
/>
<link
rel="icon"
type="image/png"
href="images/favicon/favicon-128.png"
sizes="128x128"
/>
<meta name="application-name" content=" " />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="mstile-310x310.png" />
<!-- CSS -->
<link href="css/style.css" rel="stylesheet" />
</head>
<!--Body-->
<body class="white" id="background">
<!--Side Bar-->
<div class="ui">
<div class="wrapper">
<div class="top editing">
<!--White Background Button-->
<button id="white-button" title="White Background">
<img src="images/white.png" />
</button>
<!--Sepia Background Button-->
<button id="sepia-button" title="Sepia Background">
<img src="images/sepia.png" />
</button>
<!--Dark Background Button-->
<button id="dark-button" title="Dark Background">
<img src="images/dark.png" />
</button>
<!--Full Screen-->
<button id="fullscreen-button" title="Fullscreen">
<img src="images/Full-Screen.png" />
</button>
<!--Full Screen-->
<button id="download-button" title="Download as text file">
<img src="images/Save.png" />
</button>
</div>
</div>
</div>
<!--/Side Bar-->
<!--Writting Canvas-->
<section>
<!--Title-->
<header contenteditable="true" class="normal_header" id="title">
Welcome to Focus Writer
</header>
<!--Paragraphs-->
<article contenteditable="true" class="content" id="textArticle">
<p>
Focus is the minimalist text editor writers so desperately needed.
Focus presents you with a place where you get rid of all of the
distractions and concentrate on your craft.
</p>
<p>
No worrying about aesthetics. No formatting problems. Just you and
your words.
</p>
<p>Just open. Relax. And get some writing done.</p>
<p>You can worry about the little details later.</p>
<h1>How to use</h1>
<p>
Simply delete this very text and start writing. That’s it. Nothing
complicated.
</p>
<p>
Peace,<br /><a
href="https://twitter.com/Ricardo_Fabila"
title="Ricardo Fabila on Twitter"
class="normal_a"
id="twitterHandle"
>Ricardo Fabila</a
>
</p>
</article>
<!--/Paragraphs-->
</section>
<!--/Writting Canvas-->
<!-- Buttons JS -->
<script src="js/screenfull.js"></script>
<script src="js/buttons.js"></script>
</body>
</html>