├── .gitattributes
├── .gitignore
├── LICENSE
├── Procfile
├── README.md
├── build
├── asset-manifest.json
├── electron.js
├── index.html
├── service-worker.js
└── static
│ ├── css
│ ├── main.dc306fb7.css
│ └── main.dc306fb7.css.map
│ └── js
│ ├── main.7b76df09.js
│ └── main.7b76df09.js.map
├── package-lock.json
├── package.json
├── public
├── electron.js
└── index.html
├── src
├── components
│ ├── app
│ │ ├── index.js
│ │ └── skeleton.css
│ ├── home
│ │ ├── home.css
│ │ ├── index.js
│ │ └── logic.js
│ └── oneset
│ │ ├── index.js
│ │ ├── markdown.css
│ │ └── oneset.css
├── electron-wait-react.js
├── index.css
├── index.js
├── pouch.js
├── registerServiceWorker.js
└── ressources
│ ├── icon
│ ├── icons
│ ├── mac
│ │ └── icon.icns
│ ├── png
│ │ ├── 128x128.png
│ │ ├── 16x16.png
│ │ ├── 24x24.png
│ │ ├── 256x256.png
│ │ ├── 32x32.png
│ │ ├── 48x48.png
│ │ ├── 512x512.png
│ │ ├── 64x64.png
│ │ ├── 96x96.png
│ │ └── icon.png
│ └── win
│ │ └── icon.ico
│ ├── manifest.json
│ └── stack
│ ├── StudyMD-Dateien
│ ├── bundle.js
│ └── font-awesome.css
│ ├── StudyMD.html
│ ├── gif.gif
│ ├── pouchdb.svg
│ ├── react-router.png
│ ├── react.png
│ └── yarn.png
└── yarn.lock
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | yarn-error.log
3 | yarn.lock
4 | out/
5 | dist/
6 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2015-present C. T. Lin
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
23 |
--------------------------------------------------------------------------------
/Procfile:
--------------------------------------------------------------------------------
1 | react: npm run react-start
2 | electron: npm run electron-start
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | StudyMD
5 |
6 |
7 |
8 | ### About
9 | A cool app to study with markdown.
10 | Turns your Markdown-Summaries to Flashcard.
11 |
12 | 
13 |
14 | ###### Example (Card-Title header-level is choosable):
15 |
16 | ```markdown
17 | # Example
18 | ### Use Markdown
19 | **Bold** *Italic* and [link](github.com)
20 | ### Use Tables
21 | | 1 | first step |
22 | | ---- | ----------- |
23 | | 2 | second step |
24 | | 3 | third step |
25 | ### *Math!!* e.g. What is f(x)?
26 | $y = \frac{27}{4}$
27 | ```
28 |
29 |
30 |
31 | ### Stack/Dependencies
32 |
33 | [](https://facebook.github.io/react/)
34 | [](https://github.com/ReactTraining/react-router)
35 | [](https://yarnpkg.com/)
36 |
37 |
38 | and:
39 | - [markdown-it](https://github.com/markdown-it/markdown-it)
40 | - [markdown-it-katex](https://github.com/waylonflinn/markdown-it-katex)
41 | - [Moustrap](https://github.com/ccampbell/mousetrap)
42 | - [react-modal](https://github.com/reactjs/react-modal)
43 | - [Skeleton](https://github.com/dhg/Skeleton)
44 |
45 |
46 | ### Download
47 |
48 | To download for Mac, Windows or Linux click [here](https://github.com/jotron/StudyMD/releases).
49 |
50 | ### Run Locally
51 |
52 | You will need yarn and git.
53 |
54 | ```bash
55 | # Clone this repository
56 | git clone https://github.com/jotron/StudyMD.git
57 | # Go into the repository
58 | cd StudyMD
59 | # Install dependencies
60 | yarn install
61 | # Run the app
62 | yarn start
63 | ```
64 |
65 |
66 | ### License
67 |
68 | MIT © Joel André
69 |
--------------------------------------------------------------------------------
/build/asset-manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "main.css": "static/css/main.dc306fb7.css",
3 | "main.css.map": "static/css/main.dc306fb7.css.map",
4 | "main.js": "static/js/main.7b76df09.js",
5 | "main.js.map": "static/js/main.7b76df09.js.map"
6 | }
--------------------------------------------------------------------------------
/build/electron.js:
--------------------------------------------------------------------------------
1 | const electron = require('electron')
2 | //const {autoUpdater} = require("electron-updater");
3 |
4 | // Module to control application life.
5 | const app = electron.app
6 | // Module to create native browser window.
7 | const BrowserWindow = electron.BrowserWindow
8 |
9 | const path = require('path')
10 | const url = require('url')
11 |
12 | // Keep a global reference of the window object, if you don't, the window will
13 | // be closed automatically when the JavaScript object is garbage collected.
14 | let mainWindow
15 |
16 | function createWindow () {
17 | // Create the browser window.
18 | mainWindow = new BrowserWindow({
19 | width: 800,
20 | height: 600,
21 | icon: path.join(__dirname, 'ressources/icons/png/64x64.png'),
22 | minWidth: 150,
23 | minHeight: 350
24 | });
25 |
26 | // and load the index.html of the app.
27 | const startUrl = process.env.ELECTRON_START_URL || url.format({
28 | pathname: path.join(__dirname, '/index.html'),
29 | protocol: 'file:',
30 | slashes: true
31 | });
32 | mainWindow.loadURL(startUrl);
33 | // Open the DevTools.
34 | // mainWindow.webContents.openDevTools()
35 |
36 | // Emitted when the window is closed.
37 | mainWindow.on('closed', function () {
38 | // Dereference the window object, usually you would store windows
39 | // in an array if your app supports multi windows, this is the time
40 | // when you should delete the corresponding element.
41 | mainWindow = null
42 | })
43 | }
44 |
45 | // This method will be called when Electron has finished
46 | // initialization and is ready to create browser windows.
47 | // Some APIs can only be used after this event occurs.
48 | app.on('ready', function () {
49 | createWindow()
50 | //autoUpdater.checkForUpdatesAndNotify()
51 | })
52 |
53 | // Quit when all windows are closed.
54 | app.on('window-all-closed', function () {
55 | // On OS X it is common for applications and their menu bar
56 | // to stay active until the user quits explicitly with Cmd + Q
57 | app.quit()
58 | })
59 |
60 | // In this file you can include the rest of your app's specific main process
61 | // code. You can also put them in separate files and require them here.
62 |
--------------------------------------------------------------------------------
/build/index.html:
--------------------------------------------------------------------------------
1 | StudyMD
--------------------------------------------------------------------------------
/build/service-worker.js:
--------------------------------------------------------------------------------
1 | "use strict";var precacheConfig=[["./index.html","0fa5416105f57b2ca1f0fa0d02a035a7"],["./static/css/main.dc306fb7.css","2a40de8269882b605b3b0202ae28833f"],["./static/js/main.7b76df09.js","1cc5b018e474185b17157f7c02dc7414"]],cacheName="sw-precache-v3-sw-precache-webpack-plugin-"+(self.registration?self.registration.scope:""),ignoreUrlParametersMatching=[/^utm_/],addDirectoryIndex=function(e,t){var n=new URL(e);return"/"===n.pathname.slice(-1)&&(n.pathname+=t),n.toString()},cleanResponse=function(e){return e.redirected?("body"in e?Promise.resolve(e.body):e.blob()).then(function(t){return new Response(t,{headers:e.headers,status:e.status,statusText:e.statusText})}):Promise.resolve(e)},createCacheKey=function(e,t,n,r){var a=new URL(e);return r&&a.pathname.match(r)||(a.search+=(a.search?"&":"")+encodeURIComponent(t)+"="+encodeURIComponent(n)),a.toString()},isPathWhitelisted=function(e,t){if(0===e.length)return!0;var n=new URL(t).pathname;return e.some(function(e){return n.match(e)})},stripIgnoredUrlParameters=function(e,t){var n=new URL(e);return n.hash="",n.search=n.search.slice(1).split("&").map(function(e){return e.split("=")}).filter(function(e){return t.every(function(t){return!t.test(e[0])})}).map(function(e){return e.join("=")}).join("&"),n.toString()},hashParamName="_sw-precache",urlsToCacheKeys=new Map(precacheConfig.map(function(e){var t=e[0],n=e[1],r=new URL(t,self.location),a=createCacheKey(r,hashParamName,n,/\.\w{8}\./);return[r.toString(),a]}));function setOfCachedUrls(e){return e.keys().then(function(e){return e.map(function(e){return e.url})}).then(function(e){return new Set(e)})}self.addEventListener("install",function(e){e.waitUntil(caches.open(cacheName).then(function(e){return setOfCachedUrls(e).then(function(t){return Promise.all(Array.from(urlsToCacheKeys.values()).map(function(n){if(!t.has(n)){var r=new Request(n,{credentials:"same-origin"});return fetch(r).then(function(t){if(!t.ok)throw new Error("Request for "+n+" returned a response with status "+t.status);return cleanResponse(t).then(function(t){return e.put(n,t)})})}}))})}).then(function(){return self.skipWaiting()}))}),self.addEventListener("activate",function(e){var t=new Set(urlsToCacheKeys.values());e.waitUntil(caches.open(cacheName).then(function(e){return e.keys().then(function(n){return Promise.all(n.map(function(n){if(!t.has(n.url))return e.delete(n)}))})}).then(function(){return self.clients.claim()}))}),self.addEventListener("fetch",function(e){if("GET"===e.request.method){var t,n=stripIgnoredUrlParameters(e.request.url,ignoreUrlParametersMatching),r="index.html";(t=urlsToCacheKeys.has(n))||(n=addDirectoryIndex(n,r),t=urlsToCacheKeys.has(n));var a="./index.html";!t&&"navigate"===e.request.mode&&isPathWhitelisted(["^(?!\\/__).*"],e.request.url)&&(n=new URL(a,self.location).toString(),t=urlsToCacheKeys.has(n)),t&&e.respondWith(caches.open(cacheName).then(function(e){return e.match(urlsToCacheKeys.get(n)).then(function(e){if(e)return e;throw Error("The cached response that was expected is missing.")})}).catch(function(t){return console.warn('Couldn\'t serve response for "%s" from cache: %O',e.request.url,t),fetch(e.request)}))}});
--------------------------------------------------------------------------------
/build/static/css/main.dc306fb7.css:
--------------------------------------------------------------------------------
1 | #header{margin:50px}#footer,#header{text-align:center}#footer{position:absolute;bottom:0;width:100%;vertical-align:middle;height:50px;right:0;opacity:.5}#allsets{text-align:center}.Setname{display:inline-block}.yellow:hover{color:#ffcd1f!important}.set-edit{width:10%;padding:0 5px;height:100%!important;right:0;border-radius:0 4px 4px 0;position:absolute}.columns{height:40px;background-color:#fff;border-radius:4px;line-height:40px;font-weight:600;font-family:Raleway,HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;color:#222;text-transform:uppercase;margin-bottom:1.5rem;position:relative}.centered{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.vertical-centered{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:100%}#addset{background-color:#fff}.Modal{top:30%;left:50%;right:auto;bottom:auto;margin-right:-50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);position:absolute;border:1px solid #ccc;background:#fff;overflow:auto;-webkit-overflow-scrolling:touch;border-radius:4px;outline:none;padding:20px}.bb{padding-left:5px!important;padding-right:5px!important}#card-header-level{margin-bottom:10px}.lowerbuttons{margin-top:20px;margin-bottom:0!important}input:hover{color:#000!important}.Overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:hsla(0,0%,100%,.75)}#unclickable{background-color:rgba(51,195,240,.3);cursor:default}.click{cursor:pointer}#arrow-container,.click{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#arrow-container{text-align:center}#back{left:30px}#actions,#back{position:fixed;top:30px;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#actions{right:30px;cursor:default}.cardside{background-color:#fff;text-align:center}#frontside{padding:15px}#frontside h4{margin:0!important}#frontside img{max-width:100%}#backside{position:relative;margin-top:10px;padding:15px}.innercard{display:inline-block;text-align:left;max-width:100%}#main{overflow-y:auto;position:absolute;bottom:50px;top:160px;width:100%}@font-face{font-family:octicons-link;src:url(data:font/woff;charset=utf-8;base64,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) format("woff")}.markdown-body{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;color:#24292e;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .pl-c{color:#6a737d}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#005cc5}.markdown-body .pl-e,.markdown-body .pl-en{color:#6f42c1}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#24292e}.markdown-body .pl-ent{color:#22863a}.markdown-body .pl-k{color:#d73a49}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#032f62}.markdown-body .pl-smw,.markdown-body .pl-v{color:#e36209}.markdown-body .pl-bu{color:#b31d28}.markdown-body .pl-ii{color:#fafbfc;background-color:#b31d28}.markdown-body .pl-c2{color:#fafbfc;background-color:#d73a49}.markdown-body .pl-c2:before{content:"^M"}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#22863a}.markdown-body .pl-ml{color:#735c0f}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#005cc5}.markdown-body .pl-mi{font-style:italic;color:#24292e}.markdown-body .pl-mb{font-weight:700;color:#24292e}.markdown-body .pl-md{color:#b31d28;background-color:#ffeef0}.markdown-body .pl-mi1{color:#22863a;background-color:#f0fff4}.markdown-body .pl-mc{color:#e36209;background-color:#ffebda}.markdown-body .pl-mi2{color:#f6f8fa;background-color:#005cc5}.markdown-body .pl-mdr{font-weight:700;color:#6f42c1}.markdown-body .pl-ba{color:#586069}.markdown-body .pl-sg{color:#959da5}.markdown-body .pl-corl{text-decoration:underline;color:#032f62}.markdown-body .octicon{display:inline-block;vertical-align:text-top;fill:currentColor}.markdown-body a{background-color:transparent}.markdown-body a:active,.markdown-body a:hover{outline-width:0}.markdown-body strong{font-weight:inherit;font-weight:bolder}.markdown-body h1{margin:.67em 0}.markdown-body img{border-style:none}.markdown-body code,.markdown-body kbd,.markdown-body pre{font-family:monospace,monospace;font-size:1em}.markdown-body hr{-webkit-box-sizing:content-box;box-sizing:content-box;overflow:visible}.markdown-body input{font:inherit;margin:0;overflow:visible}.markdown-body [type=checkbox]{padding:0}.markdown-body *,.markdown-body [type=checkbox]{-webkit-box-sizing:border-box;box-sizing:border-box}.markdown-body input{font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body a{color:#0366d6;text-decoration:none}.markdown-body a:hover{text-decoration:underline}.markdown-body strong{font-weight:600}.markdown-body hr{height:0;margin:15px 0;overflow:hidden;background:transparent;border-bottom:1px solid #dfe2e5}.markdown-body hr:after,.markdown-body hr:before{display:table;content:""}.markdown-body hr:after{clear:both}.markdown-body table{border-spacing:0;border-collapse:collapse}.markdown-body td,.markdown-body th{padding:0}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:0;margin-bottom:0}.markdown-body h1{font-size:32px;font-weight:600}.markdown-body h2{font-size:24px;font-weight:600}.markdown-body h3{font-size:20px;font-weight:600}.markdown-body h4{font-size:16px;font-weight:600}.markdown-body h5{font-size:14px;font-weight:600}.markdown-body h6{font-size:12px;font-weight:600}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0}.markdown-body ol,.markdown-body ul{padding-left:0;margin-top:0;margin-bottom:0}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body code,.markdown-body pre{font-family:SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0}.markdown-body .octicon{vertical-align:text-bottom}.markdown-body .pl-0{padding-left:0!important}.markdown-body .pl-1{padding-left:4px!important}.markdown-body .pl-2{padding-left:8px!important}.markdown-body .pl-3{padding-left:16px!important}.markdown-body .pl-4{padding-left:24px!important}.markdown-body .pl-5{padding-left:32px!important}.markdown-body .pl-6{padding-left:40px!important}.markdown-body:after,.markdown-body:before{display:table;content:""}.markdown-body:after{clear:both}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body blockquote,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{font-size:11px;border:1px solid #c6cbd1;border-bottom-color:#959da5;-webkit-box-shadow:inset 0 -1px 0 #959da5;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1{font-size:2em}.markdown-body h1,.markdown-body h2{padding-bottom:.3em;border-bottom:1px solid #eaecef}.markdown-body h2{font-size:1.5em}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:.875em}.markdown-body h6{font-size:.85em;color:#6a737d}.markdown-body ol,.markdown-body ul{padding-left:2em}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li{word-wrap:break-all}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body img{max-width:100%;-webkit-box-sizing:content-box;box-sizing:content-box;background-color:#fff}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body code{padding:.2em .4em;margin:0;font-size:85%;background-color:rgba(27,31,35,.05);border-radius:3px}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f6f8fa;border-radius:3px}.markdown-body pre code{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .full-commit .btn-outline:not(:disabled):hover{color:#005cc5;border-color:#005cc5}.markdown-body kbd{display:inline-block;padding:3px 5px;font:11px SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:1px solid #d1d5da;border-bottom-color:#c6cbd1;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 #c6cbd1;box-shadow:inset 0 -1px 0 #c6cbd1}.markdown-body :checked+.radio-label{position:relative;z-index:1;border-color:#0366d6}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item+.task-list-item{margin-top:3px}.markdown-body .task-list-item input{margin:0 .2em .25em -1.6em;vertical-align:middle}.markdown-body hr{border-bottom-color:#eee}.container{position:relative;max-width:960px;margin:0 auto;padding:0 20px}.column,.columns,.container{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.column,.columns{float:left}@media (min-width:400px){.container{width:85%;padding:0}}@media (min-width:550px){.container{width:80%}.column,.columns{margin-left:4%}.column:first-child,.columns:first-child{margin-left:0}.one.column,.one.columns{width:4.66666666667%}.two.columns{width:13.3333333333%}.three.columns{width:22%}.four.columns{width:30.6666666667%}.five.columns{width:39.3333333333%}.six.columns{width:48%}.seven.columns{width:56.6666666667%}.eight.columns{width:65.3333333333%}.nine.columns{width:74%}.ten.columns{width:82.6666666667%}.eleven.columns{width:91.3333333333%}.twelve.columns{width:100%;margin-left:0}.one-third.column{width:30.6666666667%}.two-thirds.column{width:65.3333333333%}.one-half.column{width:48%}.offset-by-one.column,.offset-by-one.columns{margin-left:8.66666666667%}.offset-by-two.column,.offset-by-two.columns{margin-left:17.3333333333%}.offset-by-three.column,.offset-by-three.columns{margin-left:26%}.offset-by-four.column,.offset-by-four.columns{margin-left:34.6666666667%}.offset-by-five.column,.offset-by-five.columns{margin-left:43.3333333333%}.offset-by-six.column,.offset-by-six.columns{margin-left:52%}.offset-by-seven.column,.offset-by-seven.columns{margin-left:60.6666666667%}.offset-by-eight.column,.offset-by-eight.columns{margin-left:69.3333333333%}.offset-by-nine.column,.offset-by-nine.columns{margin-left:78%}.offset-by-ten.column,.offset-by-ten.columns{margin-left:86.6666666667%}.offset-by-eleven.column,.offset-by-eleven.columns{margin-left:95.3333333333%}.offset-by-one-third.column,.offset-by-one-third.columns{margin-left:34.6666666667%}.offset-by-two-thirds.column,.offset-by-two-thirds.columns{margin-left:69.3333333333%}.offset-by-one-half.column,.offset-by-one-half.columns{margin-left:52%}}html{font-size:62.5%}body{font-size:1.5em;line-height:1.6;font-weight:400;font-family:Raleway,HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;color:#222}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:2rem;font-weight:300}h1{font-size:4rem;line-height:1.2}h1,h2{letter-spacing:-.1rem}h2{font-size:3.6rem;line-height:1.25}h3{font-size:3rem;line-height:1.3;letter-spacing:-.1rem}h4{font-size:2.4rem;line-height:1.35;letter-spacing:-.08rem}h5{font-size:1.8rem;line-height:1.5;letter-spacing:-.05rem}h6{font-size:1.5rem;line-height:1.6;letter-spacing:0}@media (min-width:550px){h1{font-size:5rem}h2{font-size:4.2rem}h3{font-size:3.6rem}h4{font-size:3rem}h5{font-size:2.4rem}h6{font-size:1.5rem}}p{margin-top:0}a{color:#1eaedb}a:hover{color:#0fa0ce}.button,button,input[type=button],input[type=reset],input[type=submit]{display:inline-block;height:38px;padding:0 30px;color:#555;text-align:center;font-size:11px;font-weight:600;line-height:38px;letter-spacing:.1rem;text-transform:uppercase;text-decoration:none;white-space:nowrap;background-color:transparent;border-radius:4px;border:1px solid #bbb;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box}.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover{color:#333;border-color:#888;outline:0}.button.button-primary,button.button-primary,input[type=button].button-primary,input[type=reset].button-primary,input[type=submit].button-primary{color:#fff;background-color:#33c3f0;border-color:#33c3f0}.button.button-primary:focus,.button.button-primary:hover,button.button-primary:focus,button.button-primary:hover,input[type=button].button-primary:focus,input[type=button].button-primary:hover,input[type=reset].button-primary:focus,input[type=reset].button-primary:hover,input[type=submit].button-primary:focus,input[type=submit].button-primary:hover{color:#fff;background-color:#1eaedb;border-color:#1eaedb}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{height:38px;padding:6px 10px;background-color:#fff;border:1px solid #d1d1d1;border-radius:4px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none}textarea{min-height:65px;padding-top:6px;padding-bottom:6px}input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus{border:1px solid #33c3f0;outline:0}label,legend{display:block;margin-bottom:.5rem;font-weight:600}fieldset{padding:0;border-width:0}input[type=checkbox],input[type=radio]{display:inline}label>.label-body{display:inline-block;margin-left:.5rem;font-weight:400}ul{list-style:circle inside}ol{list-style:decimal inside}ol,ul{padding-left:0;margin-top:0}ol ol,ol ul,ul ol,ul ul{margin:1.5rem 0 1.5rem 3rem;font-size:90%}li{margin-bottom:1rem}code{padding:.2rem .5rem;margin:0 .2rem;font-size:90%;white-space:nowrap;background:#f1f1f1;border:1px solid #e1e1e1;border-radius:4px}pre>code{display:block;padding:1rem 1.5rem;white-space:pre}td,th{padding:12px 15px;text-align:left;border-bottom:1px solid #e1e1e1}td:first-child,th:first-child{padding-left:0}td:last-child,th:last-child{padding-right:0}.button,button{margin-bottom:1rem}fieldset,input,select,textarea{margin-bottom:1.5rem}blockquote,dl,figure,form,ol,p,pre,table,ul{margin-bottom:2.5rem}.u-full-width{width:100%}.u-full-width,.u-max-full-width{-webkit-box-sizing:border-box;box-sizing:border-box}.u-max-full-width{max-width:100%}.u-pull-right{float:right}.u-pull-left{float:left}hr{margin-top:3rem;margin-bottom:3.5rem;border-width:0;border-top:1px solid #e1e1e1}.container:after,.row:after,.u-cf{content:"";display:table;clear:both}body{margin:0;padding:0;font-family:sans-serif;background-color:#f0f0f0}body,html{width:100%;height:100%;overflow:hidden}
2 | /*# sourceMappingURL=main.dc306fb7.css.map*/
--------------------------------------------------------------------------------
/build/static/css/main.dc306fb7.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sources":["components/home/home.css","components/oneset/oneset.css","components/oneset/markdown.css","components/app/skeleton.css","index.css"],"names":[],"mappings":"AACA,QACI,WAAa,CAGjB,gBAFI,iBAAmB,CAWtB,QARG,kBACA,SACA,WAEA,sBACA,YACA,QACA,UAAc,CAElB,SACI,iBAAmB,CAGvB,SACI,oBAAqB,CAEzB,cACI,uBAA0B,CAE9B,UACI,UACA,cACA,sBACA,QACA,0BACA,iBAAkB,CAEtB,SACI,YACA,sBACA,kBACA,iBACA,gBACA,4EACA,WACA,yBACA,qBACA,iBAAmB,CAEvB,UACE,kBACA,QACA,SACA,uCACA,mCACA,8BAAgC,CAElC,mBACE,kBACA,QACA,mCACA,+BACA,2BACA,UAAY,CAEd,QACI,qBAAwB,CAG5B,OACI,QACA,SACA,WACA,YACA,kBACA,uCACI,mCACI,+BACR,kBACA,sBACA,gBACA,cACA,iCACA,kBACA,aACA,YAAc,CAElB,IACI,2BACA,2BAA8B,CAElC,mBACI,kBAAoB,CAExB,cACI,gBACA,yBAA8B,CAElC,YACI,oBAAwB,CAE5B,SACI,eACA,MACA,OACA,QACA,SACA,oCAA4C,CAEhD,aACI,qCACA,cAAe,CC1GnB,OACI,cAAgB,CAMpB,wBALI,yBACG,sBACC,qBACI,gBAAkB,CAQ7B,iBALG,iBAAmB,CAMvB,MAGI,SAAW,CAOf,eATI,eACA,SAEA,qBACA,yBACG,sBACC,qBACI,gBAAkB,CAY7B,SAPG,WAMA,cAAgB,CAGpB,UACI,sBACA,iBAAkB,CAEtB,WACI,YAAc,CAElB,cACI,kBAAqB,CAEzB,eACI,cAAgB,CAEpB,UACI,kBACA,gBACA,YAAc,CAElB,WACI,qBACA,gBACA,cAAgB,CAEpB,MACI,gBACA,kBACA,YACA,UACA,UAAY,CCjEhB,WACE,0BACA,otEAAstE,CAGxtE,eACE,0BACA,8BAEA,cACA,iFACA,eACA,gBACA,oBAAsB,CAGxB,qBACE,aAAe,CAGjB,iDAEE,aAAe,CAGjB,2CAEE,aAAe,CAGjB,mDAEE,aAAe,CAGjB,uBACE,aAAe,CAGjB,qBACE,aAAe,CAGjB,gMAOE,aAAe,CAGjB,4CAEE,aAAe,CAGjB,sBACE,aAAe,CAGjB,sBACE,cACA,wBAA0B,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","file":"static/css/main.dc306fb7.css","sourcesContent":["/* AREAS*/\n#header {\n margin: 50px;\n text-align: center;\n}\n#footer {\n position: absolute;\n bottom: 0;\n width: 100%;\n text-align: center;\n vertical-align: middle;\n height: 50px;\n right: 0;\n opacity: 0.5;\n}\n#allsets {\n text-align: center;\n}\n/* SETS */\n.Setname {\n display:inline-block;\n}\n.yellow:hover {\n color: #FFCD1F !important;\n}\n.set-edit {\n width: 10%;\n padding: 0 5px;\n height: 100% !important;\n right: 0;\n border-radius: 0 4px 4px 0;\n position:absolute;\n}\n.columns {\n height: 40px;\n background-color: white;\n border-radius: 4px;\n line-height: 40px;\n font-weight: 600;\n font-family: \"Raleway\", \"HelveticaNeue\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n color: #222;\n text-transform: uppercase;\n margin-bottom: 1.5rem;\n position: relative;\n}\n.centered {\n position: absolute;\n top: 50%;\n left: 50%;\n -webkit-transform: translate(-50%,-50%);\n -ms-transform: translate(-50%,-50%);\n transform: translate(-50%,-50%);\n}\n.vertical-centered {\n position: absolute;\n top: 50%;\n -webkit-transform: translateY(-50%);\n -ms-transform: translateY(-50%);\n transform: translateY(-50%);\n width: 100%;\n}\n#addset {\n background-color: white;\n}\n/* Modal*/\n.Modal {\n top: 30%;\n left: 50%;\n right: auto;\n bottom: auto;\n margin-right: -50%;\n -webkit-transform: translate(-50%, -50%);\n -ms-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n position: absolute;\n border: 1px solid #ccc;\n background: #fff;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n border-radius: 4px;\n outline: none;\n padding: 20px;\n}\n.bb {\n padding-left: 5px !important;\n padding-right: 5px !important;\n}\n#card-header-level {\n margin-bottom: 10px;\n}\n.lowerbuttons {\n margin-top: 20px;\n margin-bottom: 0px !important;\n}\ninput:hover {\n color: black !important;\n}\n.Overlay {\n position: fixed;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: rgba(255, 255, 255, 0.75);\n}\n#unclickable {\n background-color: rgba(51, 195, 240, 0.3);\n cursor:default;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/home/home.css","/* Application */\n.click {\n cursor: pointer;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n#arrow-container {\n text-align: center;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n#back {\n position: fixed;\n top: 30px;\n left: 30px;\n text-decoration:none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n#actions {\n position: fixed;\n top: 30px;\n right: 30px;\n text-decoration:none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n cursor: default;\n}\n/* Cards*/\n.cardside {\n background-color: white;\n text-align:center;\n}\n#frontside {\n padding: 15px;\n}\n#frontside h4 {\n margin: 0 !important;\n}\n#frontside img {\n max-width: 100%;\n}\n#backside {\n position: relative;\n margin-top: 10px;\n padding: 15px;\n}\n.innercard {\n display:inline-block;\n text-align: left;\n max-width: 100%;\n}\n#main {\n overflow-y: auto;\n position: absolute;\n bottom: 50px;\n top: 160px;\n width: 100%;\n}\n\n/* Markdown in Cards */\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/oneset/oneset.css","@font-face {\n font-family: octicons-link;\n src: url(data:font/woff;charset=utf-8;base64,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) format('woff');\n}\n\n.markdown-body {\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n line-height: 1.5;\n color: #24292e;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";\n font-size: 16px;\n line-height: 1.5;\n word-wrap: break-word;\n}\n\n.markdown-body .pl-c {\n color: #6a737d;\n}\n\n.markdown-body .pl-c1,\n.markdown-body .pl-s .pl-v {\n color: #005cc5;\n}\n\n.markdown-body .pl-e,\n.markdown-body .pl-en {\n color: #6f42c1;\n}\n\n.markdown-body .pl-smi,\n.markdown-body .pl-s .pl-s1 {\n color: #24292e;\n}\n\n.markdown-body .pl-ent {\n color: #22863a;\n}\n\n.markdown-body .pl-k {\n color: #d73a49;\n}\n\n.markdown-body .pl-s,\n.markdown-body .pl-pds,\n.markdown-body .pl-s .pl-pse .pl-s1,\n.markdown-body .pl-sr,\n.markdown-body .pl-sr .pl-cce,\n.markdown-body .pl-sr .pl-sre,\n.markdown-body .pl-sr .pl-sra {\n color: #032f62;\n}\n\n.markdown-body .pl-v,\n.markdown-body .pl-smw {\n color: #e36209;\n}\n\n.markdown-body .pl-bu {\n color: #b31d28;\n}\n\n.markdown-body .pl-ii {\n color: #fafbfc;\n background-color: #b31d28;\n}\n\n.markdown-body .pl-c2 {\n color: #fafbfc;\n background-color: #d73a49;\n}\n\n.markdown-body .pl-c2::before {\n content: \"^M\";\n}\n\n.markdown-body .pl-sr .pl-cce {\n font-weight: bold;\n color: #22863a;\n}\n\n.markdown-body .pl-ml {\n color: #735c0f;\n}\n\n.markdown-body .pl-mh,\n.markdown-body .pl-mh .pl-en,\n.markdown-body .pl-ms {\n font-weight: bold;\n color: #005cc5;\n}\n\n.markdown-body .pl-mi {\n font-style: italic;\n color: #24292e;\n}\n\n.markdown-body .pl-mb {\n font-weight: bold;\n color: #24292e;\n}\n\n.markdown-body .pl-md {\n color: #b31d28;\n background-color: #ffeef0;\n}\n\n.markdown-body .pl-mi1 {\n color: #22863a;\n background-color: #f0fff4;\n}\n\n.markdown-body .pl-mc {\n color: #e36209;\n background-color: #ffebda;\n}\n\n.markdown-body .pl-mi2 {\n color: #f6f8fa;\n background-color: #005cc5;\n}\n\n.markdown-body .pl-mdr {\n font-weight: bold;\n color: #6f42c1;\n}\n\n.markdown-body .pl-ba {\n color: #586069;\n}\n\n.markdown-body .pl-sg {\n color: #959da5;\n}\n\n.markdown-body .pl-corl {\n text-decoration: underline;\n color: #032f62;\n}\n\n.markdown-body .octicon {\n display: inline-block;\n vertical-align: text-top;\n fill: currentColor;\n}\n\n.markdown-body a {\n background-color: transparent;\n}\n\n.markdown-body a:active,\n.markdown-body a:hover {\n outline-width: 0;\n}\n\n.markdown-body strong {\n font-weight: inherit;\n}\n\n.markdown-body strong {\n font-weight: bolder;\n}\n\n.markdown-body h1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n.markdown-body img {\n border-style: none;\n}\n\n.markdown-body code,\n.markdown-body kbd,\n.markdown-body pre {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n.markdown-body hr {\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n overflow: visible;\n}\n\n.markdown-body input {\n font: inherit;\n margin: 0;\n}\n\n.markdown-body input {\n overflow: visible;\n}\n\n.markdown-body [type=\"checkbox\"] {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n padding: 0;\n}\n\n.markdown-body * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n.markdown-body input {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n.markdown-body a {\n color: #0366d6;\n text-decoration: none;\n}\n\n.markdown-body a:hover {\n text-decoration: underline;\n}\n\n.markdown-body strong {\n font-weight: 600;\n}\n\n.markdown-body hr {\n height: 0;\n margin: 15px 0;\n overflow: hidden;\n background: transparent;\n border: 0;\n border-bottom: 1px solid #dfe2e5;\n}\n\n.markdown-body hr::before {\n display: table;\n content: \"\";\n}\n\n.markdown-body hr::after {\n display: table;\n clear: both;\n content: \"\";\n}\n\n.markdown-body table {\n border-spacing: 0;\n border-collapse: collapse;\n}\n\n.markdown-body td,\n.markdown-body th {\n padding: 0;\n}\n\n.markdown-body h1,\n.markdown-body h2,\n.markdown-body h3,\n.markdown-body h4,\n.markdown-body h5,\n.markdown-body h6 {\n margin-top: 0;\n margin-bottom: 0;\n}\n\n.markdown-body h1 {\n font-size: 32px;\n font-weight: 600;\n}\n\n.markdown-body h2 {\n font-size: 24px;\n font-weight: 600;\n}\n\n.markdown-body h3 {\n font-size: 20px;\n font-weight: 600;\n}\n\n.markdown-body h4 {\n font-size: 16px;\n font-weight: 600;\n}\n\n.markdown-body h5 {\n font-size: 14px;\n font-weight: 600;\n}\n\n.markdown-body h6 {\n font-size: 12px;\n font-weight: 600;\n}\n\n.markdown-body p {\n margin-top: 0;\n margin-bottom: 10px;\n}\n\n.markdown-body blockquote {\n margin: 0;\n}\n\n.markdown-body ul,\n.markdown-body ol {\n padding-left: 0;\n margin-top: 0;\n margin-bottom: 0;\n}\n\n.markdown-body ol ol,\n.markdown-body ul ol {\n list-style-type: lower-roman;\n}\n\n.markdown-body ul ul ol,\n.markdown-body ul ol ol,\n.markdown-body ol ul ol,\n.markdown-body ol ol ol {\n list-style-type: lower-alpha;\n}\n\n.markdown-body dd {\n margin-left: 0;\n}\n\n.markdown-body code {\n font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n font-size: 12px;\n}\n\n.markdown-body pre {\n margin-top: 0;\n margin-bottom: 0;\n font-family: \"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n font-size: 12px;\n}\n\n.markdown-body .octicon {\n vertical-align: text-bottom;\n}\n\n.markdown-body .pl-0 {\n padding-left: 0 !important;\n}\n\n.markdown-body .pl-1 {\n padding-left: 4px !important;\n}\n\n.markdown-body .pl-2 {\n padding-left: 8px !important;\n}\n\n.markdown-body .pl-3 {\n padding-left: 16px !important;\n}\n\n.markdown-body .pl-4 {\n padding-left: 24px !important;\n}\n\n.markdown-body .pl-5 {\n padding-left: 32px !important;\n}\n\n.markdown-body .pl-6 {\n padding-left: 40px !important;\n}\n\n.markdown-body::before {\n display: table;\n content: \"\";\n}\n\n.markdown-body::after {\n display: table;\n clear: both;\n content: \"\";\n}\n\n.markdown-body>*:first-child {\n margin-top: 0 !important;\n}\n\n.markdown-body>*:last-child {\n margin-bottom: 0 !important;\n}\n\n.markdown-body a:not([href]) {\n color: inherit;\n text-decoration: none;\n}\n\n.markdown-body .anchor {\n float: left;\n padding-right: 4px;\n margin-left: -20px;\n line-height: 1;\n}\n\n.markdown-body .anchor:focus {\n outline: none;\n}\n\n.markdown-body p,\n.markdown-body blockquote,\n.markdown-body ul,\n.markdown-body ol,\n.markdown-body dl,\n.markdown-body table,\n.markdown-body pre {\n margin-top: 0;\n margin-bottom: 16px;\n}\n\n.markdown-body hr {\n height: 0.25em;\n padding: 0;\n margin: 24px 0;\n background-color: #e1e4e8;\n border: 0;\n}\n\n.markdown-body blockquote {\n padding: 0 1em;\n color: #6a737d;\n border-left: 0.25em solid #dfe2e5;\n}\n\n.markdown-body blockquote>:first-child {\n margin-top: 0;\n}\n\n.markdown-body blockquote>:last-child {\n margin-bottom: 0;\n}\n\n.markdown-body kbd {\n display: inline-block;\n padding: 3px 5px;\n font-size: 11px;\n line-height: 10px;\n color: #444d56;\n vertical-align: middle;\n background-color: #fafbfc;\n border: solid 1px #c6cbd1;\n border-bottom-color: #959da5;\n border-radius: 3px;\n -webkit-box-shadow: inset 0 -1px 0 #959da5;\n box-shadow: inset 0 -1px 0 #959da5;\n}\n\n.markdown-body h1,\n.markdown-body h2,\n.markdown-body h3,\n.markdown-body h4,\n.markdown-body h5,\n.markdown-body h6 {\n margin-top: 24px;\n margin-bottom: 16px;\n font-weight: 600;\n line-height: 1.25;\n}\n\n.markdown-body h1 .octicon-link,\n.markdown-body h2 .octicon-link,\n.markdown-body h3 .octicon-link,\n.markdown-body h4 .octicon-link,\n.markdown-body h5 .octicon-link,\n.markdown-body h6 .octicon-link {\n color: #1b1f23;\n vertical-align: middle;\n visibility: hidden;\n}\n\n.markdown-body h1:hover .anchor,\n.markdown-body h2:hover .anchor,\n.markdown-body h3:hover .anchor,\n.markdown-body h4:hover .anchor,\n.markdown-body h5:hover .anchor,\n.markdown-body h6:hover .anchor {\n text-decoration: none;\n}\n\n.markdown-body h1:hover .anchor .octicon-link,\n.markdown-body h2:hover .anchor .octicon-link,\n.markdown-body h3:hover .anchor .octicon-link,\n.markdown-body h4:hover .anchor .octicon-link,\n.markdown-body h5:hover .anchor .octicon-link,\n.markdown-body h6:hover .anchor .octicon-link {\n visibility: visible;\n}\n\n.markdown-body h1 {\n padding-bottom: 0.3em;\n font-size: 2em;\n border-bottom: 1px solid #eaecef;\n}\n\n.markdown-body h2 {\n padding-bottom: 0.3em;\n font-size: 1.5em;\n border-bottom: 1px solid #eaecef;\n}\n\n.markdown-body h3 {\n font-size: 1.25em;\n}\n\n.markdown-body h4 {\n font-size: 1em;\n}\n\n.markdown-body h5 {\n font-size: 0.875em;\n}\n\n.markdown-body h6 {\n font-size: 0.85em;\n color: #6a737d;\n}\n\n.markdown-body ul,\n.markdown-body ol {\n padding-left: 2em;\n}\n\n.markdown-body ul ul,\n.markdown-body ul ol,\n.markdown-body ol ol,\n.markdown-body ol ul {\n margin-top: 0;\n margin-bottom: 0;\n}\n\n.markdown-body li {\n word-wrap: break-all;\n}\n\n.markdown-body li>p {\n margin-top: 16px;\n}\n\n.markdown-body li+li {\n margin-top: 0.25em;\n}\n\n.markdown-body dl {\n padding: 0;\n}\n\n.markdown-body dl dt {\n padding: 0;\n margin-top: 16px;\n font-size: 1em;\n font-style: italic;\n font-weight: 600;\n}\n\n.markdown-body dl dd {\n padding: 0 16px;\n margin-bottom: 16px;\n}\n\n.markdown-body table {\n display: block;\n width: 100%;\n overflow: auto;\n}\n\n.markdown-body table th {\n font-weight: 600;\n}\n\n.markdown-body table th,\n.markdown-body table td {\n padding: 6px 13px;\n border: 1px solid #dfe2e5;\n}\n\n.markdown-body table tr {\n background-color: #fff;\n border-top: 1px solid #c6cbd1;\n}\n\n.markdown-body table tr:nth-child(2n) {\n background-color: #f6f8fa;\n}\n\n.markdown-body img {\n max-width: 100%;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n background-color: #fff;\n}\n\n.markdown-body img[align=right] {\n padding-left: 20px;\n}\n\n.markdown-body img[align=left] {\n padding-right: 20px;\n}\n\n.markdown-body code {\n padding: 0.2em 0.4em;\n margin: 0;\n font-size: 85%;\n background-color: rgba(27,31,35,0.05);\n border-radius: 3px;\n}\n\n.markdown-body pre {\n word-wrap: normal;\n}\n\n.markdown-body pre>code {\n padding: 0;\n margin: 0;\n font-size: 100%;\n word-break: normal;\n white-space: pre;\n background: transparent;\n border: 0;\n}\n\n.markdown-body .highlight {\n margin-bottom: 16px;\n}\n\n.markdown-body .highlight pre {\n margin-bottom: 0;\n word-break: normal;\n}\n\n.markdown-body .highlight pre,\n.markdown-body pre {\n padding: 16px;\n overflow: auto;\n font-size: 85%;\n line-height: 1.45;\n background-color: #f6f8fa;\n border-radius: 3px;\n}\n\n.markdown-body pre code {\n display: inline;\n max-width: auto;\n padding: 0;\n margin: 0;\n overflow: visible;\n line-height: inherit;\n word-wrap: normal;\n background-color: transparent;\n border: 0;\n}\n\n.markdown-body .full-commit .btn-outline:not(:disabled):hover {\n color: #005cc5;\n border-color: #005cc5;\n}\n\n.markdown-body kbd {\n display: inline-block;\n padding: 3px 5px;\n font: 11px \"SFMono-Regular\", Consolas, \"Liberation Mono\", Menlo, Courier, monospace;\n line-height: 10px;\n color: #444d56;\n vertical-align: middle;\n background-color: #fafbfc;\n border: solid 1px #d1d5da;\n border-bottom-color: #c6cbd1;\n border-radius: 3px;\n -webkit-box-shadow: inset 0 -1px 0 #c6cbd1;\n box-shadow: inset 0 -1px 0 #c6cbd1;\n}\n\n.markdown-body :checked+.radio-label {\n position: relative;\n z-index: 1;\n border-color: #0366d6;\n}\n\n.markdown-body .task-list-item {\n list-style-type: none;\n}\n\n.markdown-body .task-list-item+.task-list-item {\n margin-top: 3px;\n}\n\n.markdown-body .task-list-item input {\n margin: 0 0.2em 0.25em -1.6em;\n vertical-align: middle;\n}\n\n.markdown-body hr {\n border-bottom-color: #eee;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/oneset/markdown.css","/*\n* Skeleton V2.0.4\n* Copyright 2014, Dave Gamache\n* www.getskeleton.com\n* Free to use under the MIT license.\n* http://www.opensource.org/licenses/mit-license.php\n* 12/29/2014\n*/\n\n\n/* Table of contents\n––––––––––––––––––––––––––––––––––––––––––––––––––\n- Grid\n- Base Styles\n- Typography\n- Links\n- Buttons\n- Forms\n- Lists\n- Code\n- Tables\n- Spacing\n- Utilities\n- Clearing\n- Media Queries\n*/\n\n\n/* Grid\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n.container {\n position: relative;\n width: 100%;\n max-width: 960px;\n margin: 0 auto;\n padding: 0 20px;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n.column,\n.columns {\n width: 100%;\n float: left;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n\n/* For devices larger than 400px */\n@media (min-width: 400px) {\n .container {\n width: 85%;\n padding: 0; }\n}\n\n/* For devices larger than 550px */\n@media (min-width: 550px) {\n .container {\n width: 80%; }\n .column,\n .columns {\n margin-left: 4%; }\n .column:first-child,\n .columns:first-child {\n margin-left: 0; }\n\n .one.column,\n .one.columns { width: 4.66666666667%; }\n .two.columns { width: 13.3333333333%; }\n .three.columns { width: 22%; }\n .four.columns { width: 30.6666666667%; }\n .five.columns { width: 39.3333333333%; }\n .six.columns { width: 48%; }\n .seven.columns { width: 56.6666666667%; }\n .eight.columns { width: 65.3333333333%; }\n .nine.columns { width: 74.0%; }\n .ten.columns { width: 82.6666666667%; }\n .eleven.columns { width: 91.3333333333%; }\n .twelve.columns { width: 100%; margin-left: 0; }\n\n .one-third.column { width: 30.6666666667%; }\n .two-thirds.column { width: 65.3333333333%; }\n\n .one-half.column { width: 48%; }\n\n /* Offsets */\n .offset-by-one.column,\n .offset-by-one.columns { margin-left: 8.66666666667%; }\n .offset-by-two.column,\n .offset-by-two.columns { margin-left: 17.3333333333%; }\n .offset-by-three.column,\n .offset-by-three.columns { margin-left: 26%; }\n .offset-by-four.column,\n .offset-by-four.columns { margin-left: 34.6666666667%; }\n .offset-by-five.column,\n .offset-by-five.columns { margin-left: 43.3333333333%; }\n .offset-by-six.column,\n .offset-by-six.columns { margin-left: 52%; }\n .offset-by-seven.column,\n .offset-by-seven.columns { margin-left: 60.6666666667%; }\n .offset-by-eight.column,\n .offset-by-eight.columns { margin-left: 69.3333333333%; }\n .offset-by-nine.column,\n .offset-by-nine.columns { margin-left: 78.0%; }\n .offset-by-ten.column,\n .offset-by-ten.columns { margin-left: 86.6666666667%; }\n .offset-by-eleven.column,\n .offset-by-eleven.columns { margin-left: 95.3333333333%; }\n\n .offset-by-one-third.column,\n .offset-by-one-third.columns { margin-left: 34.6666666667%; }\n .offset-by-two-thirds.column,\n .offset-by-two-thirds.columns { margin-left: 69.3333333333%; }\n\n .offset-by-one-half.column,\n .offset-by-one-half.columns { margin-left: 52%; }\n\n}\n\n\n/* Base Styles\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n/* NOTE\nhtml is set to 62.5% so that all the REM measurements throughout Skeleton\nare based on 10px sizing. So basically 1.5rem = 15px :) */\nhtml {\n font-size: 62.5%; }\nbody {\n font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */\n line-height: 1.6;\n font-weight: 400;\n font-family: \"Raleway\", \"HelveticaNeue\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n color: #222; }\n\n\n/* Typography\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 2rem;\n font-weight: 300; }\nh1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}\nh2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }\nh3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }\nh4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }\nh5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }\nh6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }\n\n/* Larger than phablet */\n@media (min-width: 550px) {\n h1 { font-size: 5.0rem; }\n h2 { font-size: 4.2rem; }\n h3 { font-size: 3.6rem; }\n h4 { font-size: 3.0rem; }\n h5 { font-size: 2.4rem; }\n h6 { font-size: 1.5rem; }\n}\n\np {\n margin-top: 0; }\n\n\n/* Links\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\na {\n color: #1EAEDB; }\na:hover {\n color: #0FA0CE; }\n\n\n/* Buttons\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n.button,\nbutton,\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n display: inline-block;\n height: 38px;\n padding: 0 30px;\n color: #555;\n text-align: center;\n font-size: 11px;\n font-weight: 600;\n line-height: 38px;\n letter-spacing: .1rem;\n text-transform: uppercase;\n text-decoration: none;\n white-space: nowrap;\n background-color: transparent;\n border-radius: 4px;\n border: 1px solid #bbb;\n cursor: pointer;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n.button:hover,\nbutton:hover,\ninput[type=\"submit\"]:hover,\ninput[type=\"reset\"]:hover,\ninput[type=\"button\"]:hover,\n.button:focus,\nbutton:focus,\ninput[type=\"submit\"]:focus,\ninput[type=\"reset\"]:focus,\ninput[type=\"button\"]:focus {\n color: #333;\n border-color: #888;\n outline: 0; }\n.button.button-primary,\nbutton.button-primary,\ninput[type=\"submit\"].button-primary,\ninput[type=\"reset\"].button-primary,\ninput[type=\"button\"].button-primary {\n color: #FFF;\n background-color: #33C3F0;\n border-color: #33C3F0; }\n.button.button-primary:hover,\nbutton.button-primary:hover,\ninput[type=\"submit\"].button-primary:hover,\ninput[type=\"reset\"].button-primary:hover,\ninput[type=\"button\"].button-primary:hover,\n.button.button-primary:focus,\nbutton.button-primary:focus,\ninput[type=\"submit\"].button-primary:focus,\ninput[type=\"reset\"].button-primary:focus,\ninput[type=\"button\"].button-primary:focus {\n color: #FFF;\n background-color: #1EAEDB;\n border-color: #1EAEDB; }\n\n\n/* Forms\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\ninput[type=\"email\"],\ninput[type=\"number\"],\ninput[type=\"search\"],\ninput[type=\"text\"],\ninput[type=\"tel\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ntextarea,\nselect {\n height: 38px;\n padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */\n background-color: #fff;\n border: 1px solid #D1D1D1;\n border-radius: 4px;\n -webkit-box-shadow: none;\n box-shadow: none;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n/* Removes awkward default styles on some inputs for iOS */\ninput[type=\"email\"],\ninput[type=\"number\"],\ninput[type=\"search\"],\ninput[type=\"text\"],\ninput[type=\"tel\"],\ninput[type=\"url\"],\ninput[type=\"password\"],\ntextarea {\n -webkit-appearance: none;\n -moz-appearance: none;\n appearance: none; }\ntextarea {\n min-height: 65px;\n padding-top: 6px;\n padding-bottom: 6px; }\ninput[type=\"email\"]:focus,\ninput[type=\"number\"]:focus,\ninput[type=\"search\"]:focus,\ninput[type=\"text\"]:focus,\ninput[type=\"tel\"]:focus,\ninput[type=\"url\"]:focus,\ninput[type=\"password\"]:focus,\ntextarea:focus,\nselect:focus {\n border: 1px solid #33C3F0;\n outline: 0; }\nlabel,\nlegend {\n display: block;\n margin-bottom: .5rem;\n font-weight: 600; }\nfieldset {\n padding: 0;\n border-width: 0; }\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n display: inline; }\nlabel > .label-body {\n display: inline-block;\n margin-left: .5rem;\n font-weight: normal; }\n\n\n/* Lists\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\nul {\n list-style: circle inside; }\nol {\n list-style: decimal inside; }\nol, ul {\n padding-left: 0;\n margin-top: 0; }\nul ul,\nul ol,\nol ol,\nol ul {\n margin: 1.5rem 0 1.5rem 3rem;\n font-size: 90%; }\nli {\n margin-bottom: 1rem; }\n\n\n/* Code\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\ncode {\n padding: .2rem .5rem;\n margin: 0 .2rem;\n font-size: 90%;\n white-space: nowrap;\n background: #F1F1F1;\n border: 1px solid #E1E1E1;\n border-radius: 4px; }\npre > code {\n display: block;\n padding: 1rem 1.5rem;\n white-space: pre; }\n\n\n/* Tables\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\nth,\ntd {\n padding: 12px 15px;\n text-align: left;\n border-bottom: 1px solid #E1E1E1; }\nth:first-child,\ntd:first-child {\n padding-left: 0; }\nth:last-child,\ntd:last-child {\n padding-right: 0; }\n\n\n/* Spacing\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\nbutton,\n.button {\n margin-bottom: 1rem; }\ninput,\ntextarea,\nselect,\nfieldset {\n margin-bottom: 1.5rem; }\npre,\nblockquote,\ndl,\nfigure,\ntable,\np,\nul,\nol,\nform {\n margin-bottom: 2.5rem; }\n\n\n/* Utilities\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n.u-full-width {\n width: 100%;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n.u-max-full-width {\n max-width: 100%;\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n.u-pull-right {\n float: right; }\n.u-pull-left {\n float: left; }\n\n\n/* Misc\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\nhr {\n margin-top: 3rem;\n margin-bottom: 3.5rem;\n border-width: 0;\n border-top: 1px solid #E1E1E1; }\n\n\n/* Clearing\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n\n/* Self Clearing Goodness */\n.container:after,\n.row:after,\n.u-cf {\n content: \"\";\n display: table;\n clear: both; }\n\n\n/* Media Queries\n–––––––––––––––––––––––––––––––––––––––––––––––––– */\n/*\nNote: The best way to structure the use of media queries is to create the queries\nnear the relevant code. For example, if you wanted to change the styles for buttons\non small devices, paste the mobile query code up in the buttons section and style it\nthere.\n*/\n\n\n/* Larger than mobile */\n@media (min-width: 400px) {}\n\n/* Larger than phablet (also point when grid becomes active) */\n@media (min-width: 550px) {}\n\n/* Larger than tablet */\n@media (min-width: 750px) {}\n\n/* Larger than desktop */\n@media (min-width: 1000px) {}\n\n/* Larger than Desktop HD */\n@media (min-width: 1200px) {}\n\n\n\n// WEBPACK FOOTER //\n// ./src/components/app/skeleton.css","body {\n margin: 0;\n padding: 0;\n font-family: sans-serif;\n width:100%;\n height:100%;\n overflow:hidden;\n background-color: #F0F0F0;\n}\nhtml {\n width:100%;\n height:100%;\n overflow:hidden;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./src/index.css"],"sourceRoot":""}
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "StudyMD",
3 | "description": "A small app for studying",
4 | "author": "jotron",
5 | "version": "0.3.2",
6 | "private": false,
7 | "dependencies": {
8 | "electron-compile": "^6.4.2",
9 | "electron-squirrel-startup": "^1.0.0",
10 | "immutability-helper": "^2.6.5",
11 | "markdown-it": "^8.4.0",
12 | "markdown-it-katex": "^2.0.3",
13 | "mousetrap": "^1.6.1",
14 | "pouchdb": "^6.3.4",
15 | "react": "^16.2.0",
16 | "react-dom": "^16.2.0",
17 | "react-modal": "^3.1.12",
18 | "react-router-dom": "^4.2.2",
19 | "react-scripts": "1.0.17"
20 | },
21 | "homepage": "./",
22 | "main": "public/electron.js",
23 | "scripts": {
24 | "start": "nf start -p 3000",
25 | "build": "react-scripts build",
26 | "test": "react-scripts test --env=jsdom",
27 | "eject": "react-scripts eject",
28 | "electron": "electron .",
29 | "electron-start": "node src/electron-wait-react",
30 | "react-start": "react-scripts start",
31 | "pack": "build --dir",
32 | "dist": "npm run build && build",
33 | "stop": "killall node",
34 | "dist-all": "npm run build && electron-builder -mwl",
35 | "publish": "npm run build && electron-builder -mwl -p always"
36 | },
37 | "build": {
38 | "appId": "com.electron.StudyMD",
39 | "nodeGypRebuild": false,
40 | "win": {
41 | "icon": "src/ressources/icons/win/icon.ico",
42 | "target": [
43 | {
44 | "target": "nsis",
45 | "arch": [
46 | "x64",
47 | "ia32"
48 | ]
49 | }
50 | ]
51 | },
52 | "mac": {
53 | "category": "public.app-category.productivity",
54 | "target": "dmg",
55 | "icon": "src/ressources/icons/mac/icon.icns",
56 | "type": "development"
57 | },
58 | "linux": {
59 | "icon": "src/ressources/icons/png"
60 | },
61 | "directories": {
62 | "buildResources": "public"
63 | }
64 | },
65 | "devDependencies": {
66 | "babel-plugin-transform-async-to-generator": "^6.24.1",
67 | "babel-preset-env": "^1.6.1",
68 | "babel-preset-react": "^6.24.1",
69 | "electron-builder": "^20.2.0",
70 | "electron-prebuilt-compile": "1.8.2-beta.3"
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/public/electron.js:
--------------------------------------------------------------------------------
1 | const electron = require('electron')
2 | //const {autoUpdater} = require("electron-updater");
3 |
4 | // Module to control application life.
5 | const app = electron.app
6 | // Module to create native browser window.
7 | const BrowserWindow = electron.BrowserWindow
8 |
9 | const path = require('path')
10 | const url = require('url')
11 |
12 | // Keep a global reference of the window object, if you don't, the window will
13 | // be closed automatically when the JavaScript object is garbage collected.
14 | let mainWindow
15 |
16 | function createWindow () {
17 | // Create the browser window.
18 | mainWindow = new BrowserWindow({
19 | width: 800,
20 | height: 600,
21 | icon: path.join(__dirname, 'ressources/icons/png/64x64.png'),
22 | minWidth: 150,
23 | minHeight: 350
24 | });
25 |
26 | // and load the index.html of the app.
27 | const startUrl = process.env.ELECTRON_START_URL || url.format({
28 | pathname: path.join(__dirname, '/index.html'),
29 | protocol: 'file:',
30 | slashes: true
31 | });
32 | mainWindow.loadURL(startUrl);
33 | // Open the DevTools.
34 | // mainWindow.webContents.openDevTools()
35 |
36 | // Emitted when the window is closed.
37 | mainWindow.on('closed', function () {
38 | // Dereference the window object, usually you would store windows
39 | // in an array if your app supports multi windows, this is the time
40 | // when you should delete the corresponding element.
41 | mainWindow = null
42 | })
43 | }
44 |
45 | // This method will be called when Electron has finished
46 | // initialization and is ready to create browser windows.
47 | // Some APIs can only be used after this event occurs.
48 | app.on('ready', function () {
49 | createWindow()
50 | //autoUpdater.checkForUpdatesAndNotify()
51 | })
52 |
53 | // Quit when all windows are closed.
54 | app.on('window-all-closed', function () {
55 | // On OS X it is common for applications and their menu bar
56 | // to stay active until the user quits explicitly with Cmd + Q
57 | app.quit()
58 | })
59 |
60 | // In this file you can include the rest of your app's specific main process
61 | // code. You can also put them in separate files and require them here.
62 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | StudyMD
7 |
8 |
9 |
10 |
11 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/src/components/app/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Route, Switch } from 'react-router-dom'
3 | import Home from '../home'
4 | import Oneset from '../oneset'
5 |
6 | import './skeleton.css';
7 |
8 | // Routing
9 | const App = () => (
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
22 |
23 |
24 | )
25 |
26 | export default App
27 |
--------------------------------------------------------------------------------
/src/components/app/skeleton.css:
--------------------------------------------------------------------------------
1 | /*
2 | * Skeleton V2.0.4
3 | * Copyright 2014, Dave Gamache
4 | * www.getskeleton.com
5 | * Free to use under the MIT license.
6 | * http://www.opensource.org/licenses/mit-license.php
7 | * 12/29/2014
8 | */
9 |
10 |
11 | /* Table of contents
12 | ––––––––––––––––––––––––––––––––––––––––––––––––––
13 | - Grid
14 | - Base Styles
15 | - Typography
16 | - Links
17 | - Buttons
18 | - Forms
19 | - Lists
20 | - Code
21 | - Tables
22 | - Spacing
23 | - Utilities
24 | - Clearing
25 | - Media Queries
26 | */
27 |
28 |
29 | /* Grid
30 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
31 | .container {
32 | position: relative;
33 | width: 100%;
34 | max-width: 960px;
35 | margin: 0 auto;
36 | padding: 0 20px;
37 | box-sizing: border-box; }
38 | .column,
39 | .columns {
40 | width: 100%;
41 | float: left;
42 | box-sizing: border-box; }
43 |
44 | /* For devices larger than 400px */
45 | @media (min-width: 400px) {
46 | .container {
47 | width: 85%;
48 | padding: 0; }
49 | }
50 |
51 | /* For devices larger than 550px */
52 | @media (min-width: 550px) {
53 | .container {
54 | width: 80%; }
55 | .column,
56 | .columns {
57 | margin-left: 4%; }
58 | .column:first-child,
59 | .columns:first-child {
60 | margin-left: 0; }
61 |
62 | .one.column,
63 | .one.columns { width: 4.66666666667%; }
64 | .two.columns { width: 13.3333333333%; }
65 | .three.columns { width: 22%; }
66 | .four.columns { width: 30.6666666667%; }
67 | .five.columns { width: 39.3333333333%; }
68 | .six.columns { width: 48%; }
69 | .seven.columns { width: 56.6666666667%; }
70 | .eight.columns { width: 65.3333333333%; }
71 | .nine.columns { width: 74.0%; }
72 | .ten.columns { width: 82.6666666667%; }
73 | .eleven.columns { width: 91.3333333333%; }
74 | .twelve.columns { width: 100%; margin-left: 0; }
75 |
76 | .one-third.column { width: 30.6666666667%; }
77 | .two-thirds.column { width: 65.3333333333%; }
78 |
79 | .one-half.column { width: 48%; }
80 |
81 | /* Offsets */
82 | .offset-by-one.column,
83 | .offset-by-one.columns { margin-left: 8.66666666667%; }
84 | .offset-by-two.column,
85 | .offset-by-two.columns { margin-left: 17.3333333333%; }
86 | .offset-by-three.column,
87 | .offset-by-three.columns { margin-left: 26%; }
88 | .offset-by-four.column,
89 | .offset-by-four.columns { margin-left: 34.6666666667%; }
90 | .offset-by-five.column,
91 | .offset-by-five.columns { margin-left: 43.3333333333%; }
92 | .offset-by-six.column,
93 | .offset-by-six.columns { margin-left: 52%; }
94 | .offset-by-seven.column,
95 | .offset-by-seven.columns { margin-left: 60.6666666667%; }
96 | .offset-by-eight.column,
97 | .offset-by-eight.columns { margin-left: 69.3333333333%; }
98 | .offset-by-nine.column,
99 | .offset-by-nine.columns { margin-left: 78.0%; }
100 | .offset-by-ten.column,
101 | .offset-by-ten.columns { margin-left: 86.6666666667%; }
102 | .offset-by-eleven.column,
103 | .offset-by-eleven.columns { margin-left: 95.3333333333%; }
104 |
105 | .offset-by-one-third.column,
106 | .offset-by-one-third.columns { margin-left: 34.6666666667%; }
107 | .offset-by-two-thirds.column,
108 | .offset-by-two-thirds.columns { margin-left: 69.3333333333%; }
109 |
110 | .offset-by-one-half.column,
111 | .offset-by-one-half.columns { margin-left: 52%; }
112 |
113 | }
114 |
115 |
116 | /* Base Styles
117 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
118 | /* NOTE
119 | html is set to 62.5% so that all the REM measurements throughout Skeleton
120 | are based on 10px sizing. So basically 1.5rem = 15px :) */
121 | html {
122 | font-size: 62.5%; }
123 | body {
124 | font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
125 | line-height: 1.6;
126 | font-weight: 400;
127 | font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
128 | color: #222; }
129 |
130 |
131 | /* Typography
132 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
133 | h1, h2, h3, h4, h5, h6 {
134 | margin-top: 0;
135 | margin-bottom: 2rem;
136 | font-weight: 300; }
137 | h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}
138 | h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
139 | h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
140 | h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
141 | h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
142 | h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }
143 |
144 | /* Larger than phablet */
145 | @media (min-width: 550px) {
146 | h1 { font-size: 5.0rem; }
147 | h2 { font-size: 4.2rem; }
148 | h3 { font-size: 3.6rem; }
149 | h4 { font-size: 3.0rem; }
150 | h5 { font-size: 2.4rem; }
151 | h6 { font-size: 1.5rem; }
152 | }
153 |
154 | p {
155 | margin-top: 0; }
156 |
157 |
158 | /* Links
159 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
160 | a {
161 | color: #1EAEDB; }
162 | a:hover {
163 | color: #0FA0CE; }
164 |
165 |
166 | /* Buttons
167 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
168 | .button,
169 | button,
170 | input[type="submit"],
171 | input[type="reset"],
172 | input[type="button"] {
173 | display: inline-block;
174 | height: 38px;
175 | padding: 0 30px;
176 | color: #555;
177 | text-align: center;
178 | font-size: 11px;
179 | font-weight: 600;
180 | line-height: 38px;
181 | letter-spacing: .1rem;
182 | text-transform: uppercase;
183 | text-decoration: none;
184 | white-space: nowrap;
185 | background-color: transparent;
186 | border-radius: 4px;
187 | border: 1px solid #bbb;
188 | cursor: pointer;
189 | box-sizing: border-box; }
190 | .button:hover,
191 | button:hover,
192 | input[type="submit"]:hover,
193 | input[type="reset"]:hover,
194 | input[type="button"]:hover,
195 | .button:focus,
196 | button:focus,
197 | input[type="submit"]:focus,
198 | input[type="reset"]:focus,
199 | input[type="button"]:focus {
200 | color: #333;
201 | border-color: #888;
202 | outline: 0; }
203 | .button.button-primary,
204 | button.button-primary,
205 | input[type="submit"].button-primary,
206 | input[type="reset"].button-primary,
207 | input[type="button"].button-primary {
208 | color: #FFF;
209 | background-color: #33C3F0;
210 | border-color: #33C3F0; }
211 | .button.button-primary:hover,
212 | button.button-primary:hover,
213 | input[type="submit"].button-primary:hover,
214 | input[type="reset"].button-primary:hover,
215 | input[type="button"].button-primary:hover,
216 | .button.button-primary:focus,
217 | button.button-primary:focus,
218 | input[type="submit"].button-primary:focus,
219 | input[type="reset"].button-primary:focus,
220 | input[type="button"].button-primary:focus {
221 | color: #FFF;
222 | background-color: #1EAEDB;
223 | border-color: #1EAEDB; }
224 |
225 |
226 | /* Forms
227 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
228 | input[type="email"],
229 | input[type="number"],
230 | input[type="search"],
231 | input[type="text"],
232 | input[type="tel"],
233 | input[type="url"],
234 | input[type="password"],
235 | textarea,
236 | select {
237 | height: 38px;
238 | padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
239 | background-color: #fff;
240 | border: 1px solid #D1D1D1;
241 | border-radius: 4px;
242 | box-shadow: none;
243 | box-sizing: border-box; }
244 | /* Removes awkward default styles on some inputs for iOS */
245 | input[type="email"],
246 | input[type="number"],
247 | input[type="search"],
248 | input[type="text"],
249 | input[type="tel"],
250 | input[type="url"],
251 | input[type="password"],
252 | textarea {
253 | -webkit-appearance: none;
254 | -moz-appearance: none;
255 | appearance: none; }
256 | textarea {
257 | min-height: 65px;
258 | padding-top: 6px;
259 | padding-bottom: 6px; }
260 | input[type="email"]:focus,
261 | input[type="number"]:focus,
262 | input[type="search"]:focus,
263 | input[type="text"]:focus,
264 | input[type="tel"]:focus,
265 | input[type="url"]:focus,
266 | input[type="password"]:focus,
267 | textarea:focus,
268 | select:focus {
269 | border: 1px solid #33C3F0;
270 | outline: 0; }
271 | label,
272 | legend {
273 | display: block;
274 | margin-bottom: .5rem;
275 | font-weight: 600; }
276 | fieldset {
277 | padding: 0;
278 | border-width: 0; }
279 | input[type="checkbox"],
280 | input[type="radio"] {
281 | display: inline; }
282 | label > .label-body {
283 | display: inline-block;
284 | margin-left: .5rem;
285 | font-weight: normal; }
286 |
287 |
288 | /* Lists
289 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
290 | ul {
291 | list-style: circle inside; }
292 | ol {
293 | list-style: decimal inside; }
294 | ol, ul {
295 | padding-left: 0;
296 | margin-top: 0; }
297 | ul ul,
298 | ul ol,
299 | ol ol,
300 | ol ul {
301 | margin: 1.5rem 0 1.5rem 3rem;
302 | font-size: 90%; }
303 | li {
304 | margin-bottom: 1rem; }
305 |
306 |
307 | /* Code
308 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
309 | code {
310 | padding: .2rem .5rem;
311 | margin: 0 .2rem;
312 | font-size: 90%;
313 | white-space: nowrap;
314 | background: #F1F1F1;
315 | border: 1px solid #E1E1E1;
316 | border-radius: 4px; }
317 | pre > code {
318 | display: block;
319 | padding: 1rem 1.5rem;
320 | white-space: pre; }
321 |
322 |
323 | /* Tables
324 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
325 | th,
326 | td {
327 | padding: 12px 15px;
328 | text-align: left;
329 | border-bottom: 1px solid #E1E1E1; }
330 | th:first-child,
331 | td:first-child {
332 | padding-left: 0; }
333 | th:last-child,
334 | td:last-child {
335 | padding-right: 0; }
336 |
337 |
338 | /* Spacing
339 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
340 | button,
341 | .button {
342 | margin-bottom: 1rem; }
343 | input,
344 | textarea,
345 | select,
346 | fieldset {
347 | margin-bottom: 1.5rem; }
348 | pre,
349 | blockquote,
350 | dl,
351 | figure,
352 | table,
353 | p,
354 | ul,
355 | ol,
356 | form {
357 | margin-bottom: 2.5rem; }
358 |
359 |
360 | /* Utilities
361 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
362 | .u-full-width {
363 | width: 100%;
364 | box-sizing: border-box; }
365 | .u-max-full-width {
366 | max-width: 100%;
367 | box-sizing: border-box; }
368 | .u-pull-right {
369 | float: right; }
370 | .u-pull-left {
371 | float: left; }
372 |
373 |
374 | /* Misc
375 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
376 | hr {
377 | margin-top: 3rem;
378 | margin-bottom: 3.5rem;
379 | border-width: 0;
380 | border-top: 1px solid #E1E1E1; }
381 |
382 |
383 | /* Clearing
384 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
385 |
386 | /* Self Clearing Goodness */
387 | .container:after,
388 | .row:after,
389 | .u-cf {
390 | content: "";
391 | display: table;
392 | clear: both; }
393 |
394 |
395 | /* Media Queries
396 | –––––––––––––––––––––––––––––––––––––––––––––––––– */
397 | /*
398 | Note: The best way to structure the use of media queries is to create the queries
399 | near the relevant code. For example, if you wanted to change the styles for buttons
400 | on small devices, paste the mobile query code up in the buttons section and style it
401 | there.
402 | */
403 |
404 |
405 | /* Larger than mobile */
406 | @media (min-width: 400px) {}
407 |
408 | /* Larger than phablet (also point when grid becomes active) */
409 | @media (min-width: 550px) {}
410 |
411 | /* Larger than tablet */
412 | @media (min-width: 750px) {}
413 |
414 | /* Larger than desktop */
415 | @media (min-width: 1000px) {}
416 |
417 | /* Larger than Desktop HD */
418 | @media (min-width: 1200px) {}
419 |
--------------------------------------------------------------------------------
/src/components/home/home.css:
--------------------------------------------------------------------------------
1 | /* AREAS*/
2 | #header {
3 | margin: 50px;
4 | text-align: center;
5 | }
6 | #footer {
7 | position: absolute;
8 | bottom: 0;
9 | width: 100%;
10 | text-align: center;
11 | vertical-align: middle;
12 | height: 50px;
13 | right: 0;
14 | opacity: 0.5;
15 | }
16 | #allsets {
17 | text-align: center;
18 | }
19 | /* SETS */
20 | .Setname {
21 | display:inline-block;
22 | }
23 | .yellow:hover {
24 | color: #FFCD1F !important;
25 | }
26 | .set-edit {
27 | width: 10%;
28 | padding: 0 5px;
29 | height: 100% !important;
30 | right: 0;
31 | border-radius: 0 4px 4px 0;
32 | position:absolute;
33 | }
34 | .columns {
35 | height: 40px;
36 | background-color: white;
37 | border-radius: 4px;
38 | line-height: 40px;
39 | font-weight: 600;
40 | font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
41 | color: #222;
42 | text-transform: uppercase;
43 | margin-bottom: 1.5rem;
44 | position: relative;
45 | }
46 | .centered {
47 | position: absolute;
48 | top: 50%;
49 | left: 50%;
50 | -webkit-transform: translate(-50%,-50%);
51 | -moz-transform: translate(-50%,-50%);
52 | -ms-transform: translate(-50%,-50%);
53 | -o-transform: translate(-50%,-50%);
54 | transform: translate(-50%,-50%);
55 | }
56 | .vertical-centered {
57 | position: absolute;
58 | top: 50%;
59 | -webkit-transform: translateY(-50%);
60 | -moz-transform: translateY(-50%);
61 | -ms-transform: translateY(-50%);
62 | -o-transform: translateY(-50%);
63 | transform: translateY(-50%);
64 | width: 100%;
65 | }
66 | #addset {
67 | background-color: white;
68 | }
69 | /* Modal*/
70 | .Modal {
71 | top: 30%;
72 | left: 50%;
73 | right: auto;
74 | bottom: auto;
75 | margin-right: -50%;
76 | transform: translate(-50%, -50%);
77 | position: absolute;
78 | border: 1px solid #ccc;
79 | background: #fff;
80 | overflow: auto;
81 | -webkit-overflow-scrolling: touch;
82 | border-radius: 4px;
83 | outline: none;
84 | padding: 20px;
85 | }
86 | .bb {
87 | padding-left: 5px !important;
88 | padding-right: 5px !important;
89 | }
90 | #card-header-level {
91 | margin-bottom: 10px;
92 | }
93 | .lowerbuttons {
94 | margin-top: 20px;
95 | margin-bottom: 0px !important;
96 | }
97 | input:hover {
98 | color: black !important;
99 | }
100 | .Overlay {
101 | position: fixed;
102 | top: 0;
103 | left: 0;
104 | right: 0;
105 | bottom: 0;
106 | background-color: rgba(255, 255, 255, 0.75);
107 | }
108 | #unclickable {
109 | background-color: rgba(51, 195, 240, 0.3);
110 | cursor:default;
111 | }
112 |
--------------------------------------------------------------------------------
/src/components/home/index.js:
--------------------------------------------------------------------------------
1 | import { Link } from 'react-router-dom';
2 | import React, { Component } from 'react';
3 | import './home.css';
4 | import * as mypouch from '../../pouch.js';
5 | import * as logic from './logic.js';
6 | import Modal from 'react-modal';
7 |
8 | class Selectedheader extends Component {
9 | constructor(props) {
10 | super(props);
11 | }
12 | render() {
13 | return(
14 |
15 |
this.props.select(1)}>1
17 |
this.props.select(2)}>2
19 |
this.props.select(3)}>3
21 |
this.props.select(4)}>4
23 |
this.props.select(5)}>5
25 |
this.props.select(6)}>6
27 |
28 | );
29 | }
30 | }
31 |
32 | class Addset extends Component {
33 | constructor(props) {
34 | super(props);
35 | this.state = {
36 | modalIsOpen: false,
37 | setpath: "",
38 | setname:"",
39 | selected: 3
40 | };
41 |
42 | this.render = this.render.bind(this);
43 | this.getfile= this.getfile.bind(this);
44 | this.openModal = this.openModal.bind(this);
45 | this.closeModal = this.closeModal.bind(this);
46 | this.handleChange = this.handleChange.bind(this);
47 | this.select = this.select.bind(this);
48 | this.isselected = this.isselected.bind(this);
49 | this.isclickable = this.isclickable.bind(this);
50 | this.submit = this.submit.bind(this);
51 | }
52 | openModal() {
53 | this.setState({modalIsOpen: true});
54 | }
55 | closeModal() {
56 | this.setState({
57 | modalIsOpen: false,
58 | setpath: "",
59 | setname:""
60 | });
61 | }
62 | submit() {
63 | if (this.state.clickable !== "") {
64 | logic.make_new(this.state.setpath, this.state.setname, this.state.selected, this.props.actualize);
65 | //console.log(this.state.setpath, this.state.setname, this.state.selected, this.props.actualize);
66 | this.closeModal();
67 | }
68 | }
69 | getfile() {
70 | var fileNames = logic.get();
71 | if(fileNames !== undefined){
72 | this.setState({
73 | setpath: fileNames[0]
74 | });
75 | if (this.state.setname === "") {
76 | var filename = fileNames[0].replace(/^.*[\\\/]/, '');
77 | this.setState({
78 | setname: filename
79 | })
80 | }
81 | }
82 | else console.log("No file selected");
83 | }
84 | isclickable() {
85 | return (this.state.setpath === "") ? "unclickable" : "";
86 | }
87 | handleChange(event) {
88 | this.setState({setname: event.target.value});
89 | }
90 | isselected(i) {
91 | return (this.state.selected === i) ? " button-primary" : "";
92 | }
93 | select(i) {
94 | this.setState({selected: i});
95 | }
96 | render() {
97 | return(
98 |
131 | );
132 | }
133 | }
134 |
135 | function Studyset(props) {
136 | return (
137 |
138 |
139 |
{props.set.title}
140 |
props.setdelete(props.set.id)}>
142 |
143 |
144 |
145 |
146 | );
147 | };
148 |
149 | class Allsets extends Component {
150 | constructor(props) {
151 | super(props);
152 | this.state = {
153 | sets: []
154 | };
155 | this.setdelete = this.setdelete.bind(this);
156 | this.render = this.render.bind(this);
157 | this.componentDidMount = this.componentDidMount.bind(this);
158 | this.getsets = this.getsets.bind(this);
159 | }
160 | componentDidMount() {
161 | this.getsets();
162 | }
163 | getsets() {
164 | mypouch.showsets().then( data => {
165 | this.setState({
166 | sets: data
167 | })
168 | }).catch(function (err) {
169 | console.log(err);
170 | });
171 | }
172 | setdelete(id) {
173 | mypouch.deleteid(id).then( result => {
174 | console.log(result);
175 | this.getsets();
176 | }).catch(function (err) {
177 | console.log(err);
178 | });
179 | }
180 | render() {
181 | var rendered_sets = this.state.sets.map(data => );
182 | return (
183 |
184 | {rendered_sets}
185 |
186 |
187 | );
188 | }
189 | }
190 |
191 | function App() {
192 | return (
193 |
201 | );
202 | }
203 |
204 | export default App;
205 |
--------------------------------------------------------------------------------
/src/components/home/logic.js:
--------------------------------------------------------------------------------
1 | import * as mypouch from '../../pouch.js';
2 | const electron = window.require('electron'); // Workaround for importing electron
3 | const fs = electron.remote.require('fs'); // Load the File System to execute our common tasks (CRUD)
4 | const ipcRenderer = electron.ipcRenderer; // inter-process messages to the main process => use dialog in renderer process
5 | const remote = electron.remote; // Load remote compnent that contains the dialog dependency
6 | const remote_dialog = remote.dialog; // Load the dialogs component of the OS
7 |
8 | let setpath;
9 |
10 | var md = require('markdown-it')({
11 | html: true,
12 | typographer: true,
13 | }).use(require('markdown-it-katex'));
14 |
15 | /*Function to actualize document*/
16 | export function refresh(doc_id, actualize) {
17 | mypouch.getset(doc_id).then( doc => {
18 | console.log(doc);
19 | fs.readFile(doc.setpath, 'utf-8', (err, new_data) => {
20 | if(err){
21 | alert("An error ocurred reading the file :" + err.message);
22 | return;
23 | }
24 | var new_cards = parseMD(new_data, doc.setlevel);
25 | doc.cards = new_cards;
26 | mypouch.updateset(doc).then( result => {
27 | actualize();
28 | }).catch(function (err) {
29 | console.log(err);
30 | });
31 | });
32 | }).catch(function(err) {
33 | console.log(err);
34 | });
35 | return;
36 | }
37 |
38 | /* Function to create new document*/
39 | export function get() {
40 | //getfile
41 | return remote_dialog.showOpenDialog({ filters: [
42 | { name: 'markdown', extensions: ['md', 'txt'] }
43 | ]});
44 | }
45 | export function make_new(filepath, setname, headerlevel, actualize) {
46 | fs.readFile(filepath, 'utf-8', (err, data) => {
47 | if(err){
48 | alert("An error ocurred reading the file :" + err.message);
49 | return;
50 | }
51 | // create
52 | var new_doc = {
53 | title: setname,
54 | setpath: filepath,
55 | setlevel: headerlevel,
56 | cards: parseMD(data, headerlevel)
57 | };
58 | mypouch.addset(new_doc).then( result => {
59 | actualize();
60 | }).catch(function (err) {
61 | console.log(err);
62 | });
63 | });
64 | }
65 |
66 | /* Function to do all the work*/
67 | function parseMD(data, headerlevel) {
68 | //to HTML
69 | var parsed = md.render(data);
70 |
71 | //split
72 | var div = document.createElement("div"), nodes;
73 | div.innerHTML = parsed;
74 | nodes = [].slice.call(div.children); // slice in array of all childnodes(childNodes)
75 | //console.log(nodes);
76 |
77 | //cards format: {"f" : "frontside1", "b" : "backside1"}
78 | var cards = [];
79 |
80 | var active = false;
81 | var length = nodes.length;
82 | var regex1 = new RegExp('^h[1-' + headerlevel.toString() + ']$', 'i'),
83 | regex2 = new RegExp('^h' + headerlevel.toString() + '$', 'i');
84 | nodes.forEach(function (node, index) {
85 | if (active) {
86 | if (regex1.test(node.nodeName)) { //regex expression matching
87 | active = false;
88 | }
89 | else {
90 | cards[cards.length-1].b += node.outerHTML;
91 | }
92 | }
93 | if (regex2.test(node.nodeName)) {
94 | active = true;
95 | cards.push({"f" : node.innerHTML, "b" : ""});
96 | }
97 | });
98 |
99 | console.log(cards);
100 | //add set to database
101 | if (cards.length === 0) {
102 | console.log("no cards");
103 | return;
104 | }
105 | return cards;
106 | };
107 |
--------------------------------------------------------------------------------
/src/components/oneset/index.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import update from 'immutability-helper';
3 | import * as Mousetrap from 'mousetrap'
4 | import './oneset.css';
5 | import './markdown.css';
6 | import { Link, Redirect } from 'react-router-dom'
7 | import * as mypouch from '../../pouch.js';
8 | import * as logic from '../home/logic.js';
9 |
10 | class Card extends Component {
11 | constructor(props) {
12 | super(props);
13 | this.state = {
14 | cards: this.props.cards,
15 | index: 0,
16 | hidden: true
17 | };
18 | this.num = this.props.cards.length;
19 | this.render = this.render.bind(this);
20 | this.hide = this.hide.bind(this);
21 | this.forward = this.forward.bind(this);
22 | this.backward = this.backward.bind(this);
23 | }
24 | componentWillReceiveProps(nextProps){
25 | if (nextProps.cards !== this.props.cards) {
26 | this.setState({ cards: nextProps.cards })
27 | }
28 | }
29 |
30 | componentDidMount() {
31 | Mousetrap.bind('space', this.hide);
32 | Mousetrap.bind('left', this.backward);
33 | Mousetrap.bind('right', this.forward);
34 | }
35 | componentWillUnmount() {
36 | Mousetrap.unbind('space', this.hide);
37 | Mousetrap.unbind('left', this.backward);
38 | Mousetrap.unbind('right', this.forward);
39 | }
40 | forward() {
41 | if (this.state.index !== this.num - 1) {
42 | this.setState({
43 | index: this.state.index + 1,
44 | hidden: true
45 | });
46 | }
47 | }
48 | backward() {
49 | if (this.state.index !== 0) {
50 | this.setState({
51 | index: this.state.index - 1,
52 | hidden: true
53 | });
54 | }
55 | }
56 | hide() {
57 | this.setState({
58 | hidden: !this.state.hidden
59 | });
60 | }
61 | render() {
62 | //console.log("State ", this.state.cards);
63 | //console.log("Props ", this.props.cards);
64 | console.log("render: ", this.state.cards)
65 | return (
66 |
67 |
this.hide()}>
69 |
70 |
71 |
72 | {
73 | (!this.state.hidden)? (
74 |
77 | ) : (null)
78 | }
79 |
88 |
89 | );
90 | }
91 | }
92 |
93 | class Oneset extends Component {
94 | constructor(props) {
95 | super(props);
96 | this.state = {
97 | loaded: false,
98 | doc: {},
99 | redirect: false
100 | };
101 | this.render = this.render.bind(this);
102 | this.componentDidMount = this.componentDidMount.bind(this);
103 | this.componentWillUnmount = this.componentWillUnmount.bind(this);
104 | this.setRedirect = this.setRedirect.bind(this);
105 | this.renderRedirect = this.renderRedirect.bind(this);
106 | this.getdoc = this.getdoc.bind(this);
107 | this.refresh = this.refresh.bind(this);
108 |
109 | this.getdoc()
110 | }
111 | componentDidMount() {
112 | Mousetrap.bind('esc', this.setRedirect);
113 | }
114 | componentWillUnmount() {
115 | Mousetrap.unbind('esc', this.setRedirect);
116 | }
117 | setRedirect() {
118 | this.setState({
119 | redirect: true
120 | })
121 | }
122 | renderRedirect() {
123 | if (this.state.redirect) {
124 | return ;
125 | }
126 | }
127 | randomize() {
128 | this.setState(update(this.state, {
129 | doc: {
130 | cards: {$set: this.state.doc.cards.sort(function(a, b){
131 | return 0.5 - Math.random();
132 | })}
133 | }
134 | }));
135 | }
136 | getdoc() {
137 | console.log("getdoc");
138 | mypouch.getset(this.props.match.params.path_id).then( data => {
139 | console.log("Successfully got doc!");
140 | this.setState({
141 | loaded: true,
142 | doc: data
143 | });
144 | this.render();
145 | }).catch(function(err) {
146 | console.log(err);
147 | });
148 | }
149 | refresh() {
150 | logic.refresh(this.props.match.params.path_id, this.getdoc);
151 | }
152 | render() {
153 | if (this.state.loaded) {
154 | return (
155 |
156 |
170 |
171 |
172 |
173 |
174 | );
175 | }
176 | else {
177 | return null;
178 | }
179 | }
180 | }
181 |
182 | export default Oneset;
183 |
--------------------------------------------------------------------------------
/src/components/oneset/markdown.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: octicons-link;
3 | src: url(data:font/woff;charset=utf-8;base64,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) format('woff');
4 | }
5 |
6 | .markdown-body {
7 | -ms-text-size-adjust: 100%;
8 | -webkit-text-size-adjust: 100%;
9 | line-height: 1.5;
10 | color: #24292e;
11 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
12 | font-size: 16px;
13 | line-height: 1.5;
14 | word-wrap: break-word;
15 | }
16 |
17 | .markdown-body .pl-c {
18 | color: #6a737d;
19 | }
20 |
21 | .markdown-body .pl-c1,
22 | .markdown-body .pl-s .pl-v {
23 | color: #005cc5;
24 | }
25 |
26 | .markdown-body .pl-e,
27 | .markdown-body .pl-en {
28 | color: #6f42c1;
29 | }
30 |
31 | .markdown-body .pl-smi,
32 | .markdown-body .pl-s .pl-s1 {
33 | color: #24292e;
34 | }
35 |
36 | .markdown-body .pl-ent {
37 | color: #22863a;
38 | }
39 |
40 | .markdown-body .pl-k {
41 | color: #d73a49;
42 | }
43 |
44 | .markdown-body .pl-s,
45 | .markdown-body .pl-pds,
46 | .markdown-body .pl-s .pl-pse .pl-s1,
47 | .markdown-body .pl-sr,
48 | .markdown-body .pl-sr .pl-cce,
49 | .markdown-body .pl-sr .pl-sre,
50 | .markdown-body .pl-sr .pl-sra {
51 | color: #032f62;
52 | }
53 |
54 | .markdown-body .pl-v,
55 | .markdown-body .pl-smw {
56 | color: #e36209;
57 | }
58 |
59 | .markdown-body .pl-bu {
60 | color: #b31d28;
61 | }
62 |
63 | .markdown-body .pl-ii {
64 | color: #fafbfc;
65 | background-color: #b31d28;
66 | }
67 |
68 | .markdown-body .pl-c2 {
69 | color: #fafbfc;
70 | background-color: #d73a49;
71 | }
72 |
73 | .markdown-body .pl-c2::before {
74 | content: "^M";
75 | }
76 |
77 | .markdown-body .pl-sr .pl-cce {
78 | font-weight: bold;
79 | color: #22863a;
80 | }
81 |
82 | .markdown-body .pl-ml {
83 | color: #735c0f;
84 | }
85 |
86 | .markdown-body .pl-mh,
87 | .markdown-body .pl-mh .pl-en,
88 | .markdown-body .pl-ms {
89 | font-weight: bold;
90 | color: #005cc5;
91 | }
92 |
93 | .markdown-body .pl-mi {
94 | font-style: italic;
95 | color: #24292e;
96 | }
97 |
98 | .markdown-body .pl-mb {
99 | font-weight: bold;
100 | color: #24292e;
101 | }
102 |
103 | .markdown-body .pl-md {
104 | color: #b31d28;
105 | background-color: #ffeef0;
106 | }
107 |
108 | .markdown-body .pl-mi1 {
109 | color: #22863a;
110 | background-color: #f0fff4;
111 | }
112 |
113 | .markdown-body .pl-mc {
114 | color: #e36209;
115 | background-color: #ffebda;
116 | }
117 |
118 | .markdown-body .pl-mi2 {
119 | color: #f6f8fa;
120 | background-color: #005cc5;
121 | }
122 |
123 | .markdown-body .pl-mdr {
124 | font-weight: bold;
125 | color: #6f42c1;
126 | }
127 |
128 | .markdown-body .pl-ba {
129 | color: #586069;
130 | }
131 |
132 | .markdown-body .pl-sg {
133 | color: #959da5;
134 | }
135 |
136 | .markdown-body .pl-corl {
137 | text-decoration: underline;
138 | color: #032f62;
139 | }
140 |
141 | .markdown-body .octicon {
142 | display: inline-block;
143 | vertical-align: text-top;
144 | fill: currentColor;
145 | }
146 |
147 | .markdown-body a {
148 | background-color: transparent;
149 | }
150 |
151 | .markdown-body a:active,
152 | .markdown-body a:hover {
153 | outline-width: 0;
154 | }
155 |
156 | .markdown-body strong {
157 | font-weight: inherit;
158 | }
159 |
160 | .markdown-body strong {
161 | font-weight: bolder;
162 | }
163 |
164 | .markdown-body h1 {
165 | font-size: 2em;
166 | margin: 0.67em 0;
167 | }
168 |
169 | .markdown-body img {
170 | border-style: none;
171 | }
172 |
173 | .markdown-body code,
174 | .markdown-body kbd,
175 | .markdown-body pre {
176 | font-family: monospace, monospace;
177 | font-size: 1em;
178 | }
179 |
180 | .markdown-body hr {
181 | box-sizing: content-box;
182 | height: 0;
183 | overflow: visible;
184 | }
185 |
186 | .markdown-body input {
187 | font: inherit;
188 | margin: 0;
189 | }
190 |
191 | .markdown-body input {
192 | overflow: visible;
193 | }
194 |
195 | .markdown-body [type="checkbox"] {
196 | box-sizing: border-box;
197 | padding: 0;
198 | }
199 |
200 | .markdown-body * {
201 | box-sizing: border-box;
202 | }
203 |
204 | .markdown-body input {
205 | font-family: inherit;
206 | font-size: inherit;
207 | line-height: inherit;
208 | }
209 |
210 | .markdown-body a {
211 | color: #0366d6;
212 | text-decoration: none;
213 | }
214 |
215 | .markdown-body a:hover {
216 | text-decoration: underline;
217 | }
218 |
219 | .markdown-body strong {
220 | font-weight: 600;
221 | }
222 |
223 | .markdown-body hr {
224 | height: 0;
225 | margin: 15px 0;
226 | overflow: hidden;
227 | background: transparent;
228 | border: 0;
229 | border-bottom: 1px solid #dfe2e5;
230 | }
231 |
232 | .markdown-body hr::before {
233 | display: table;
234 | content: "";
235 | }
236 |
237 | .markdown-body hr::after {
238 | display: table;
239 | clear: both;
240 | content: "";
241 | }
242 |
243 | .markdown-body table {
244 | border-spacing: 0;
245 | border-collapse: collapse;
246 | }
247 |
248 | .markdown-body td,
249 | .markdown-body th {
250 | padding: 0;
251 | }
252 |
253 | .markdown-body h1,
254 | .markdown-body h2,
255 | .markdown-body h3,
256 | .markdown-body h4,
257 | .markdown-body h5,
258 | .markdown-body h6 {
259 | margin-top: 0;
260 | margin-bottom: 0;
261 | }
262 |
263 | .markdown-body h1 {
264 | font-size: 32px;
265 | font-weight: 600;
266 | }
267 |
268 | .markdown-body h2 {
269 | font-size: 24px;
270 | font-weight: 600;
271 | }
272 |
273 | .markdown-body h3 {
274 | font-size: 20px;
275 | font-weight: 600;
276 | }
277 |
278 | .markdown-body h4 {
279 | font-size: 16px;
280 | font-weight: 600;
281 | }
282 |
283 | .markdown-body h5 {
284 | font-size: 14px;
285 | font-weight: 600;
286 | }
287 |
288 | .markdown-body h6 {
289 | font-size: 12px;
290 | font-weight: 600;
291 | }
292 |
293 | .markdown-body p {
294 | margin-top: 0;
295 | margin-bottom: 10px;
296 | }
297 |
298 | .markdown-body blockquote {
299 | margin: 0;
300 | }
301 |
302 | .markdown-body ul,
303 | .markdown-body ol {
304 | padding-left: 0;
305 | margin-top: 0;
306 | margin-bottom: 0;
307 | }
308 |
309 | .markdown-body ol ol,
310 | .markdown-body ul ol {
311 | list-style-type: lower-roman;
312 | }
313 |
314 | .markdown-body ul ul ol,
315 | .markdown-body ul ol ol,
316 | .markdown-body ol ul ol,
317 | .markdown-body ol ol ol {
318 | list-style-type: lower-alpha;
319 | }
320 |
321 | .markdown-body dd {
322 | margin-left: 0;
323 | }
324 |
325 | .markdown-body code {
326 | font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
327 | font-size: 12px;
328 | }
329 |
330 | .markdown-body pre {
331 | margin-top: 0;
332 | margin-bottom: 0;
333 | font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
334 | font-size: 12px;
335 | }
336 |
337 | .markdown-body .octicon {
338 | vertical-align: text-bottom;
339 | }
340 |
341 | .markdown-body .pl-0 {
342 | padding-left: 0 !important;
343 | }
344 |
345 | .markdown-body .pl-1 {
346 | padding-left: 4px !important;
347 | }
348 |
349 | .markdown-body .pl-2 {
350 | padding-left: 8px !important;
351 | }
352 |
353 | .markdown-body .pl-3 {
354 | padding-left: 16px !important;
355 | }
356 |
357 | .markdown-body .pl-4 {
358 | padding-left: 24px !important;
359 | }
360 |
361 | .markdown-body .pl-5 {
362 | padding-left: 32px !important;
363 | }
364 |
365 | .markdown-body .pl-6 {
366 | padding-left: 40px !important;
367 | }
368 |
369 | .markdown-body::before {
370 | display: table;
371 | content: "";
372 | }
373 |
374 | .markdown-body::after {
375 | display: table;
376 | clear: both;
377 | content: "";
378 | }
379 |
380 | .markdown-body>*:first-child {
381 | margin-top: 0 !important;
382 | }
383 |
384 | .markdown-body>*:last-child {
385 | margin-bottom: 0 !important;
386 | }
387 |
388 | .markdown-body a:not([href]) {
389 | color: inherit;
390 | text-decoration: none;
391 | }
392 |
393 | .markdown-body .anchor {
394 | float: left;
395 | padding-right: 4px;
396 | margin-left: -20px;
397 | line-height: 1;
398 | }
399 |
400 | .markdown-body .anchor:focus {
401 | outline: none;
402 | }
403 |
404 | .markdown-body p,
405 | .markdown-body blockquote,
406 | .markdown-body ul,
407 | .markdown-body ol,
408 | .markdown-body dl,
409 | .markdown-body table,
410 | .markdown-body pre {
411 | margin-top: 0;
412 | margin-bottom: 16px;
413 | }
414 |
415 | .markdown-body hr {
416 | height: 0.25em;
417 | padding: 0;
418 | margin: 24px 0;
419 | background-color: #e1e4e8;
420 | border: 0;
421 | }
422 |
423 | .markdown-body blockquote {
424 | padding: 0 1em;
425 | color: #6a737d;
426 | border-left: 0.25em solid #dfe2e5;
427 | }
428 |
429 | .markdown-body blockquote>:first-child {
430 | margin-top: 0;
431 | }
432 |
433 | .markdown-body blockquote>:last-child {
434 | margin-bottom: 0;
435 | }
436 |
437 | .markdown-body kbd {
438 | display: inline-block;
439 | padding: 3px 5px;
440 | font-size: 11px;
441 | line-height: 10px;
442 | color: #444d56;
443 | vertical-align: middle;
444 | background-color: #fafbfc;
445 | border: solid 1px #c6cbd1;
446 | border-bottom-color: #959da5;
447 | border-radius: 3px;
448 | box-shadow: inset 0 -1px 0 #959da5;
449 | }
450 |
451 | .markdown-body h1,
452 | .markdown-body h2,
453 | .markdown-body h3,
454 | .markdown-body h4,
455 | .markdown-body h5,
456 | .markdown-body h6 {
457 | margin-top: 24px;
458 | margin-bottom: 16px;
459 | font-weight: 600;
460 | line-height: 1.25;
461 | }
462 |
463 | .markdown-body h1 .octicon-link,
464 | .markdown-body h2 .octicon-link,
465 | .markdown-body h3 .octicon-link,
466 | .markdown-body h4 .octicon-link,
467 | .markdown-body h5 .octicon-link,
468 | .markdown-body h6 .octicon-link {
469 | color: #1b1f23;
470 | vertical-align: middle;
471 | visibility: hidden;
472 | }
473 |
474 | .markdown-body h1:hover .anchor,
475 | .markdown-body h2:hover .anchor,
476 | .markdown-body h3:hover .anchor,
477 | .markdown-body h4:hover .anchor,
478 | .markdown-body h5:hover .anchor,
479 | .markdown-body h6:hover .anchor {
480 | text-decoration: none;
481 | }
482 |
483 | .markdown-body h1:hover .anchor .octicon-link,
484 | .markdown-body h2:hover .anchor .octicon-link,
485 | .markdown-body h3:hover .anchor .octicon-link,
486 | .markdown-body h4:hover .anchor .octicon-link,
487 | .markdown-body h5:hover .anchor .octicon-link,
488 | .markdown-body h6:hover .anchor .octicon-link {
489 | visibility: visible;
490 | }
491 |
492 | .markdown-body h1 {
493 | padding-bottom: 0.3em;
494 | font-size: 2em;
495 | border-bottom: 1px solid #eaecef;
496 | }
497 |
498 | .markdown-body h2 {
499 | padding-bottom: 0.3em;
500 | font-size: 1.5em;
501 | border-bottom: 1px solid #eaecef;
502 | }
503 |
504 | .markdown-body h3 {
505 | font-size: 1.25em;
506 | }
507 |
508 | .markdown-body h4 {
509 | font-size: 1em;
510 | }
511 |
512 | .markdown-body h5 {
513 | font-size: 0.875em;
514 | }
515 |
516 | .markdown-body h6 {
517 | font-size: 0.85em;
518 | color: #6a737d;
519 | }
520 |
521 | .markdown-body ul,
522 | .markdown-body ol {
523 | padding-left: 2em;
524 | }
525 |
526 | .markdown-body ul ul,
527 | .markdown-body ul ol,
528 | .markdown-body ol ol,
529 | .markdown-body ol ul {
530 | margin-top: 0;
531 | margin-bottom: 0;
532 | }
533 |
534 | .markdown-body li {
535 | word-wrap: break-all;
536 | }
537 |
538 | .markdown-body li>p {
539 | margin-top: 16px;
540 | }
541 |
542 | .markdown-body li+li {
543 | margin-top: 0.25em;
544 | }
545 |
546 | .markdown-body dl {
547 | padding: 0;
548 | }
549 |
550 | .markdown-body dl dt {
551 | padding: 0;
552 | margin-top: 16px;
553 | font-size: 1em;
554 | font-style: italic;
555 | font-weight: 600;
556 | }
557 |
558 | .markdown-body dl dd {
559 | padding: 0 16px;
560 | margin-bottom: 16px;
561 | }
562 |
563 | .markdown-body table {
564 | display: block;
565 | width: 100%;
566 | overflow: auto;
567 | }
568 |
569 | .markdown-body table th {
570 | font-weight: 600;
571 | }
572 |
573 | .markdown-body table th,
574 | .markdown-body table td {
575 | padding: 6px 13px;
576 | border: 1px solid #dfe2e5;
577 | }
578 |
579 | .markdown-body table tr {
580 | background-color: #fff;
581 | border-top: 1px solid #c6cbd1;
582 | }
583 |
584 | .markdown-body table tr:nth-child(2n) {
585 | background-color: #f6f8fa;
586 | }
587 |
588 | .markdown-body img {
589 | max-width: 100%;
590 | box-sizing: content-box;
591 | background-color: #fff;
592 | }
593 |
594 | .markdown-body img[align=right] {
595 | padding-left: 20px;
596 | }
597 |
598 | .markdown-body img[align=left] {
599 | padding-right: 20px;
600 | }
601 |
602 | .markdown-body code {
603 | padding: 0.2em 0.4em;
604 | margin: 0;
605 | font-size: 85%;
606 | background-color: rgba(27,31,35,0.05);
607 | border-radius: 3px;
608 | }
609 |
610 | .markdown-body pre {
611 | word-wrap: normal;
612 | }
613 |
614 | .markdown-body pre>code {
615 | padding: 0;
616 | margin: 0;
617 | font-size: 100%;
618 | word-break: normal;
619 | white-space: pre;
620 | background: transparent;
621 | border: 0;
622 | }
623 |
624 | .markdown-body .highlight {
625 | margin-bottom: 16px;
626 | }
627 |
628 | .markdown-body .highlight pre {
629 | margin-bottom: 0;
630 | word-break: normal;
631 | }
632 |
633 | .markdown-body .highlight pre,
634 | .markdown-body pre {
635 | padding: 16px;
636 | overflow: auto;
637 | font-size: 85%;
638 | line-height: 1.45;
639 | background-color: #f6f8fa;
640 | border-radius: 3px;
641 | }
642 |
643 | .markdown-body pre code {
644 | display: inline;
645 | max-width: auto;
646 | padding: 0;
647 | margin: 0;
648 | overflow: visible;
649 | line-height: inherit;
650 | word-wrap: normal;
651 | background-color: transparent;
652 | border: 0;
653 | }
654 |
655 | .markdown-body .full-commit .btn-outline:not(:disabled):hover {
656 | color: #005cc5;
657 | border-color: #005cc5;
658 | }
659 |
660 | .markdown-body kbd {
661 | display: inline-block;
662 | padding: 3px 5px;
663 | font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
664 | line-height: 10px;
665 | color: #444d56;
666 | vertical-align: middle;
667 | background-color: #fafbfc;
668 | border: solid 1px #d1d5da;
669 | border-bottom-color: #c6cbd1;
670 | border-radius: 3px;
671 | box-shadow: inset 0 -1px 0 #c6cbd1;
672 | }
673 |
674 | .markdown-body :checked+.radio-label {
675 | position: relative;
676 | z-index: 1;
677 | border-color: #0366d6;
678 | }
679 |
680 | .markdown-body .task-list-item {
681 | list-style-type: none;
682 | }
683 |
684 | .markdown-body .task-list-item+.task-list-item {
685 | margin-top: 3px;
686 | }
687 |
688 | .markdown-body .task-list-item input {
689 | margin: 0 0.2em 0.25em -1.6em;
690 | vertical-align: middle;
691 | }
692 |
693 | .markdown-body hr {
694 | border-bottom-color: #eee;
695 | }
696 |
--------------------------------------------------------------------------------
/src/components/oneset/oneset.css:
--------------------------------------------------------------------------------
1 | /* Application */
2 | .click {
3 | cursor: pointer;
4 | user-select: none;
5 | }
6 | #arrow-container {
7 | text-align: center;
8 | user-select: none;
9 | }
10 | #back {
11 | position: fixed;
12 | top: 30px;
13 | left: 30px;
14 | text-decoration:none;
15 | user-select: none;
16 | }
17 | #actions {
18 | position: fixed;
19 | top: 30px;
20 | right: 30px;
21 | text-decoration:none;
22 | user-select: none;
23 | cursor: default;
24 | }
25 | /* Cards*/
26 | .cardside {
27 | background-color: white;
28 | text-align:center;
29 | }
30 | #frontside {
31 | padding: 15px;
32 | }
33 | #frontside h4 {
34 | margin: 0 !important;
35 | }
36 | #frontside img {
37 | max-width: 100%;
38 | }
39 | #backside {
40 | position: relative;
41 | margin-top: 10px;
42 | padding: 15px;
43 | }
44 | .innercard {
45 | display:inline-block;
46 | text-align: left;
47 | max-width: 100%;
48 | }
49 | #main {
50 | overflow-y: auto;
51 | position: absolute;
52 | bottom: 50px;
53 | top: 160px;
54 | width: 100%;
55 | }
56 |
57 | /* Markdown in Cards */
58 |
--------------------------------------------------------------------------------
/src/electron-wait-react.js:
--------------------------------------------------------------------------------
1 | const net = require('net');
2 | const port = process.env.PORT ? (process.env.PORT - 100) : 3000;
3 |
4 | process.env.ELECTRON_START_URL = `http://localhost:${port}`;
5 |
6 | const client = new net.Socket();
7 |
8 | let startedElectron = false;
9 | const tryConnection = () => client.connect({port: port}, () => {
10 | client.end();
11 | if(!startedElectron) {
12 | console.log('starting electron');
13 | startedElectron = true;
14 | const exec = require('child_process').exec;
15 | exec('npm run electron');
16 | }
17 | }
18 | );
19 |
20 | tryConnection();
21 |
22 | client.on('error', (error) => {
23 | setTimeout(tryConnection, 1000);
24 | });
25 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | font-family: sans-serif;
5 | width:100%;
6 | height:100%;
7 | overflow:hidden;
8 | background-color: #F0F0F0;
9 | }
10 | html {
11 | width:100%;
12 | height:100%;
13 | overflow:hidden;
14 | }
15 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom';
3 | import { MemoryRouter} from 'react-router-dom'
4 | import App from './components/app'
5 | import registerServiceWorker from './registerServiceWorker';
6 | import './index.css'; // Sample global css file
7 |
8 |
9 | const target = document.getElementById('root'); // Target in /public/index.html
10 | ReactDOM.render(
11 |
12 |
13 | ,
14 | target)
15 | registerServiceWorker();
16 |
--------------------------------------------------------------------------------
/src/pouch.js:
--------------------------------------------------------------------------------
1 | import PouchDB from 'pouchdb';
2 | var db = new PouchDB('./pouch');
3 |
4 | export async function addset(set) {
5 | return await db.post(set);
6 | }
7 | export async function updateset(doc) {
8 | return await db.put(doc);
9 | }
10 |
11 | export async function showsets() {
12 | try {
13 | var r = await db.allDocs({
14 | include_docs: true,
15 | descending: true
16 | });
17 | } catch (err){
18 | console.log(err);
19 | }
20 | var rr = r.rows.map(function(row){
21 | return {
22 | title: row.doc.title,
23 | id: row.id
24 | };
25 | });
26 | return rr
27 | }
28 |
29 | export async function deleteid(id) {
30 | return await db.get(id).then(function(doc) {
31 | return db.remove(doc);
32 | });
33 | }
34 |
35 | export async function getset(id) {
36 | return db.get(id);
37 | }
38 |
--------------------------------------------------------------------------------
/src/registerServiceWorker.js:
--------------------------------------------------------------------------------
1 | // In production, we register a service worker to serve assets from local cache.
2 |
3 | // This lets the app load faster on subsequent visits in production, and gives
4 | // it offline capabilities. However, it also means that developers (and users)
5 | // will only see deployed updates on the "N+1" visit to a page, since previously
6 | // cached resources are updated in the background.
7 |
8 | // To learn more about the benefits of this model, read https://goo.gl/KwvDNy.
9 | // This link also includes instructions on opting out of this behavior.
10 |
11 | const isLocalhost = Boolean(
12 | window.location.hostname === 'localhost' ||
13 | // [::1] is the IPv6 localhost address.
14 | window.location.hostname === '[::1]' ||
15 | // 127.0.0.1/8 is considered localhost for IPv4.
16 | window.location.hostname.match(
17 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
18 | )
19 | );
20 |
21 | export default function register() {
22 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
23 | // The URL constructor is available in all browsers that support SW.
24 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location);
25 | if (publicUrl.origin !== window.location.origin) {
26 | // Our service worker won't work if PUBLIC_URL is on a different origin
27 | // from what our page is served on. This might happen if a CDN is used to
28 | // serve assets; see https://github.com/facebookincubator/create-react-app/issues/2374
29 | return;
30 | }
31 |
32 | window.addEventListener('load', () => {
33 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
34 |
35 | if (isLocalhost) {
36 | // This is running on localhost. Lets check if a service worker still exists or not.
37 | checkValidServiceWorker(swUrl);
38 | } else {
39 | // Is not local host. Just register service worker
40 | registerValidSW(swUrl);
41 | }
42 | });
43 | }
44 | }
45 |
46 | function registerValidSW(swUrl) {
47 | navigator.serviceWorker
48 | .register(swUrl)
49 | .then(registration => {
50 | registration.onupdatefound = () => {
51 | const installingWorker = registration.installing;
52 | installingWorker.onstatechange = () => {
53 | if (installingWorker.state === 'installed') {
54 | if (navigator.serviceWorker.controller) {
55 | // At this point, the old content will have been purged and
56 | // the fresh content will have been added to the cache.
57 | // It's the perfect time to display a "New content is
58 | // available; please refresh." message in your web app.
59 | console.log('New content is available; please refresh.');
60 | } else {
61 | // At this point, everything has been precached.
62 | // It's the perfect time to display a
63 | // "Content is cached for offline use." message.
64 | console.log('Content is cached for offline use.');
65 | }
66 | }
67 | };
68 | };
69 | })
70 | .catch(error => {
71 | console.error('Error during service worker registration:', error);
72 | });
73 | }
74 |
75 | function checkValidServiceWorker(swUrl) {
76 | // Check if the service worker can be found. If it can't reload the page.
77 | fetch(swUrl)
78 | .then(response => {
79 | // Ensure service worker exists, and that we really are getting a JS file.
80 | if (
81 | response.status === 404 ||
82 | response.headers.get('content-type').indexOf('javascript') === -1
83 | ) {
84 | // No service worker found. Probably a different app. Reload the page.
85 | navigator.serviceWorker.ready.then(registration => {
86 | registration.unregister().then(() => {
87 | window.location.reload();
88 | });
89 | });
90 | } else {
91 | // Service worker found. Proceed as normal.
92 | registerValidSW(swUrl);
93 | }
94 | })
95 | .catch(() => {
96 | console.log(
97 | 'No internet connection found. App is running in offline mode.'
98 | );
99 | });
100 | }
101 |
102 | export function unregister() {
103 | if ('serviceWorker' in navigator) {
104 | navigator.serviceWorker.ready.then(registration => {
105 | registration.unregister();
106 | });
107 | }
108 | }
109 |
--------------------------------------------------------------------------------
/src/ressources/icon:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icon
--------------------------------------------------------------------------------
/src/ressources/icons/mac/icon.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/mac/icon.icns
--------------------------------------------------------------------------------
/src/ressources/icons/png/128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/128x128.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/16x16.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/24x24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/24x24.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/256x256.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/32x32.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/48x48.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/512x512.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/64x64.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/96x96.png
--------------------------------------------------------------------------------
/src/ressources/icons/png/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/png/icon.png
--------------------------------------------------------------------------------
/src/ressources/icons/win/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/icons/win/icon.ico
--------------------------------------------------------------------------------
/src/ressources/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "icons/win/icon.png.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | }
10 | ],
11 | "start_url": "./index.html",
12 | "display": "standalone",
13 | "theme_color": "#000000",
14 | "background_color": "#ffffff"
15 | }
16 |
--------------------------------------------------------------------------------
/src/ressources/stack/StudyMD-Dateien/font-awesome.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */@font-face{font-family:'FontAwesome';src:url('./fontawesome-webfont.eot?v=4.7.0');src:url('./fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('./fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('./fontawesome-webfont.woff?v=4.7.0') format('woff'),url('./fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('./fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
5 |
--------------------------------------------------------------------------------
/src/ressources/stack/StudyMD.html:
--------------------------------------------------------------------------------
1 |
2 |
34 |
35 |
36 |
37 | StudyMD
38 |
39 |
619 |
620 |
623 |
624 |
625 |
626 |
--------------------------------------------------------------------------------
/src/ressources/stack/gif.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/stack/gif.gif
--------------------------------------------------------------------------------
/src/ressources/stack/pouchdb.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/ressources/stack/react-router.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/stack/react-router.png
--------------------------------------------------------------------------------
/src/ressources/stack/react.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/stack/react.png
--------------------------------------------------------------------------------
/src/ressources/stack/yarn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jotron/StudyMD/e444a810e8be8ba5e5ed328c94d358c7015e017c/src/ressources/stack/yarn.png
--------------------------------------------------------------------------------