mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
38 lines
998 B
HTML
38 lines
998 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Joplin</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="css/font-awesome.min.css">
|
|
<link rel="stylesheet" href="node_modules/react-datetime/css/react-datetime.css">
|
|
<link rel="stylesheet" href="node_modules/smalltalk/css/smalltalk.css">
|
|
<style>
|
|
.smalltalk {
|
|
background-color: rgba(0,0,0,.5);
|
|
}
|
|
.smalltalk input {
|
|
margin-top: 1em;
|
|
}
|
|
.smalltalk .page {
|
|
max-width: 30em;
|
|
}
|
|
.ace_editor * {
|
|
/* Necessary to make sure Russian text is displayed properly */
|
|
/* https://github.com/laurent22/joplin/issues/155 */
|
|
font-family: monospace !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="react-root"></div>
|
|
<script src="main-html.js"></script>
|
|
<style>
|
|
/* Disable dragging of links (which are often buttons) */
|
|
a:not([draggable=true]), img:not([draggable=true]) {
|
|
-webkit-user-drag: none;
|
|
user-drag: none;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html> |