1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/ElectronClient/index.html

42 lines
1.1 KiB
HTML
Raw Normal View History

2017-11-03 01:26:08 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2019-02-24 12:17:37 +02:00
<!--
No CPS because we need to allow everything due to some dependencies (eg. depd, which comes from maybe Node or Electron
uses 'eval'.
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval'">
-->
2017-11-08 19:51:55 +02:00
<title>Joplin</title>
2017-11-04 18:40:34 +02:00
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/fork-awesome.min.css">
<link rel="stylesheet" href="node_modules/react-datetime/css/react-datetime.css">
2017-12-24 10:36:31 +02:00
<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;
}
mark {
background: #CF3F00;
color: white;
}
2017-12-24 10:36:31 +02:00
</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>
2017-11-08 19:51:55 +02:00
</html>