From 0c17035788807fc93d16522ba60a76a7377c269f Mon Sep 17 00:00:00 2001 From: Mukul Joshi Date: Tue, 24 Dec 2024 14:10:01 +0530 Subject: [PATCH] Add files via upload --- staticfiles/css/main.e7772a38.css | 2 + staticfiles/css/main.e7772a38.css.map | 1 + staticfiles/js/main.d825d148.js | 3 + staticfiles/js/main.d825d148.js.LICENSE.txt | 74 + staticfiles/js/main.d825d148.js.map | 1 + .../add.ebf598626c6f9b2211b0578a435aaa6b.svg | 4 + ...-left.b553318e4fdaed1113efb091889b7f47.svg | 4 + .../css/bootstrap-theme.min.css | 6 + .../css/bootstrap-theme.min.css.map | 1 + .../rest_framework/css/bootstrap-tweaks.css | 233 ++ .../rest_framework/css/bootstrap.min.css | 6 + .../rest_framework/css/bootstrap.min.css.map | 1 + staticfiles/rest_framework/css/default.css | 82 + .../rest_framework/css/font-awesome-4.0.3.css | 1338 +++++++++++ staticfiles/rest_framework/css/prettify.css | 30 + staticfiles/rest_framework/docs/css/base.css | 359 +++ .../rest_framework/docs/css/highlight.css | 125 + .../docs/css/jquery.json-view.min.css | 11 + .../rest_framework/docs/img/favicon.ico | Bin 0 -> 5430 bytes staticfiles/rest_framework/docs/img/grid.png | Bin 0 -> 1458 bytes staticfiles/rest_framework/docs/js/api.js | 315 +++ .../rest_framework/docs/js/highlight.pack.js | 2 + .../docs/js/jquery.json-view.min.js | 7 + .../fonts/fontawesome-webfont.eot | Bin 0 -> 38205 bytes .../fonts/fontawesome-webfont.svg | 414 ++++ .../fonts/fontawesome-webfont.ttf | Bin 0 -> 80652 bytes .../fonts/fontawesome-webfont.woff | Bin 0 -> 44432 bytes .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 +++ .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../img/glyphicons-halflings-white.png | Bin 0 -> 8777 bytes .../img/glyphicons-halflings.png | Bin 0 -> 12762 bytes staticfiles/rest_framework/img/grid.png | Bin 0 -> 1458 bytes staticfiles/rest_framework/js/ajax-form.js | 127 + .../rest_framework/js/bootstrap.min.js | 6 + .../rest_framework/js/coreapi-0.1.1.js | 2043 +++++++++++++++++ staticfiles/rest_framework/js/csrf.js | 52 + staticfiles/rest_framework/js/default.js | 47 + .../rest_framework/js/jquery-3.5.1.min.js | 2 + staticfiles/rest_framework/js/prettify-min.js | 28 + 42 files changed, 5612 insertions(+) create mode 100644 staticfiles/css/main.e7772a38.css create mode 100644 staticfiles/css/main.e7772a38.css.map create mode 100644 staticfiles/js/main.d825d148.js create mode 100644 staticfiles/js/main.d825d148.js.LICENSE.txt create mode 100644 staticfiles/js/main.d825d148.js.map create mode 100644 staticfiles/media/add.ebf598626c6f9b2211b0578a435aaa6b.svg create mode 100644 staticfiles/media/arrow-left.b553318e4fdaed1113efb091889b7f47.svg create mode 100644 staticfiles/rest_framework/css/bootstrap-theme.min.css create mode 100644 staticfiles/rest_framework/css/bootstrap-theme.min.css.map create mode 100644 staticfiles/rest_framework/css/bootstrap-tweaks.css create mode 100644 staticfiles/rest_framework/css/bootstrap.min.css create mode 100644 staticfiles/rest_framework/css/bootstrap.min.css.map create mode 100644 staticfiles/rest_framework/css/default.css create mode 100644 staticfiles/rest_framework/css/font-awesome-4.0.3.css create mode 100644 staticfiles/rest_framework/css/prettify.css create mode 100644 staticfiles/rest_framework/docs/css/base.css create mode 100644 staticfiles/rest_framework/docs/css/highlight.css create mode 100644 staticfiles/rest_framework/docs/css/jquery.json-view.min.css create mode 100644 staticfiles/rest_framework/docs/img/favicon.ico create mode 100644 staticfiles/rest_framework/docs/img/grid.png create mode 100644 staticfiles/rest_framework/docs/js/api.js create mode 100644 staticfiles/rest_framework/docs/js/highlight.pack.js create mode 100644 staticfiles/rest_framework/docs/js/jquery.json-view.min.js create mode 100644 staticfiles/rest_framework/fonts/fontawesome-webfont.eot create mode 100644 staticfiles/rest_framework/fonts/fontawesome-webfont.svg create mode 100644 staticfiles/rest_framework/fonts/fontawesome-webfont.ttf create mode 100644 staticfiles/rest_framework/fonts/fontawesome-webfont.woff create mode 100644 staticfiles/rest_framework/fonts/glyphicons-halflings-regular.eot create mode 100644 staticfiles/rest_framework/fonts/glyphicons-halflings-regular.svg create mode 100644 staticfiles/rest_framework/fonts/glyphicons-halflings-regular.ttf create mode 100644 staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff create mode 100644 staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff2 create mode 100644 staticfiles/rest_framework/img/glyphicons-halflings-white.png create mode 100644 staticfiles/rest_framework/img/glyphicons-halflings.png create mode 100644 staticfiles/rest_framework/img/grid.png create mode 100644 staticfiles/rest_framework/js/ajax-form.js create mode 100644 staticfiles/rest_framework/js/bootstrap.min.js create mode 100644 staticfiles/rest_framework/js/coreapi-0.1.1.js create mode 100644 staticfiles/rest_framework/js/csrf.js create mode 100644 staticfiles/rest_framework/js/default.js create mode 100644 staticfiles/rest_framework/js/jquery-3.5.1.min.js create mode 100644 staticfiles/rest_framework/js/prettify-min.js diff --git a/staticfiles/css/main.e7772a38.css b/staticfiles/css/main.e7772a38.css new file mode 100644 index 0000000..995b1d2 --- /dev/null +++ b/staticfiles/css/main.e7772a38.css @@ -0,0 +1,2 @@ +@import url(https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap);:root{--color-main:#f68657;--color-text:#383a3f;--color-dark:#1f2124;--color-gray:#677;--color-bg:#f3f6f9;--color-light:#acb4bd;--color-lighter:#f9f9f9;--color-white:#fff;--color-border:#e0e3e6}.dark{--color-main:#f68657;--color-text:#d6d1d1;--color-dark:#f5f6f7;--color-gray:#999;--color-bg:#1f2124;--color-lighter:#292a2c;--color-white:#2e3235;--color-border:#252629}*{box-sizing:border-box;color:inherit;font-family:Lexend,sans-serif;font-size:inherit;margin:0;padding:0;scroll-behavior:smooth}body{font-size:16px;font-weight:400;line-height:1.8em}a{text-decoration:none}.container{align-items:center;background-color:#f3f6f9;background-color:var(--color-bg);color:#383a3f;color:var(--color-text);display:flex;height:100vh;width:100%}.app{background-color:#fff;background-color:var(--color-white);box-shadow:1px 1px 6px rgba(0,0,0,.05);height:88vh;margin:0 auto;max-width:480px;position:relative;width:100%}.app-header{align-items:center;background-color:#f9f9f9;background-color:var(--color-lighter);box-shadow:0 1px 3px rgba(0,0,0,.1);display:flex;justify-content:space-between;padding:16px}.app-header h1{color:#1f2124;color:var(--color-dark);font-size:30px;font-weight:800;text-align:center}.app-header button{background:transparent;border:0;cursor:pointer}.app-header button>svg{fill:#1f2124;fill:var(--color-dark);height:25px;object-fit:cover;width:25px}.app-body{padding:16px}.notes-header{align-items:center;display:flex;justify-content:space-between;padding:10px 16px}.notes-count,.notes-title{color:#f68657;color:var(--color-main);font-size:24px;font-weight:600}.notes-count{color:#677;color:var(--color-gray);font-size:18px}.notes-list{height:70vh;margin:16px 0;overflow-y:auto;padding:0;scrollbar-width:none}.notes-list::-webkit-scrollbar{display:none}.notes-list-item{border-bottom:1px solid #e0e3e6;border-bottom:1px solid var(--color-border);margin-bottom:12px;padding:8px 16px;transition:all .2s ease-in-out}.notes-list-item:hover{background-color:#f3f6f9;background-color:var(--color-bg);cursor:pointer}.notes-list-item h3,.notes-list-item p span{font-weight:600}.notes-list-item p span{color:#677;color:var(--color-gray);display:inline-block;margin-right:8px}.notes-list-item p{color:#acb4bd;color:var(--color-light);font-size:14px}.floating-button{align-items:center;background:#f68657;background:var(--color-main);border:none;border-radius:50%;bottom:24px;box-shadow:1px 1px 10px rgba(0,0,0,.2);cursor:pointer;display:flex;font-size:48px;height:60px;justify-content:center;position:absolute;right:16px;width:60px}.floating-button>svg{fill:#f3f6f9;fill:var(--color-bg)}.note-header{color:#f68657;color:var(--color-main);justify-content:space-between;padding:10px}.note-header,.note-header h3{align-items:center;display:flex}.note-header h3{cursor:pointer;font-size:24px}.note-header h3 svg{fill:#f68657;fill:var(--color-main);margin-right:8px;width:20px}.note-header button{background-color:initial;border:none;cursor:pointer;font-size:18px;font-weight:600;outline:none}.note textarea{background-color:#fff;background-color:var(--color-white);border:none;height:70vh;padding:16px 12px;resize:none;scrollbar-width:none;width:100%}.note textarea:active,.note textarea:focus{border:none;outline:none}.note textarea::-webkit-scrollbar{display:none} +/*# sourceMappingURL=main.e7772a38.css.map*/ \ No newline at end of file diff --git a/staticfiles/css/main.e7772a38.css.map b/staticfiles/css/main.e7772a38.css.map new file mode 100644 index 0000000..749e7f9 --- /dev/null +++ b/staticfiles/css/main.e7772a38.css.map @@ -0,0 +1 @@ +{"version":3,"file":"static/css/main.e7772a38.css","mappings":"2FAIA,MACE,oBAAqB,CACrB,oBAAqB,CACrB,oBAAqB,CACrB,iBAAkB,CAClB,kBAAmB,CACnB,qBAAsB,CACtB,uBAAwB,CACxB,kBAAmB,CACnB,sBACF,CAEA,MACE,oBAAqB,CACrB,oBAAqB,CACrB,oBAAqB,CACrB,iBAAkB,CAClB,kBAAmB,CACnB,uBAAwB,CACxB,qBAAsB,CACtB,sBACF,CAKA,EAGE,qBAAsB,CAEtB,aAAc,CADd,6BAAiC,CAEjC,iBAAkB,CALlB,QAAS,CACT,SAAU,CAKV,sBACF,CAGA,KAGE,cAAe,CADf,eAAgB,CADhB,iBAGF,CAEA,EACE,oBACF,CAKA,WAME,kBAAmB,CAFnB,wBAAiC,CAAjC,gCAAiC,CADjC,aAAwB,CAAxB,uBAAwB,CAExB,YAAa,CAHb,YAAa,CADb,UAMF,CAGA,KAKE,qBAAoC,CAApC,mCAAoC,CACpC,sCAA2C,CAH3C,WAAY,CACZ,aAAc,CAFd,eAAgB,CAKhB,iBAAkB,CANlB,UAOF,CAGA,YAEE,kBAAmB,CAGnB,wBAAsC,CAAtC,qCAAsC,CACtC,mCAA0C,CAL1C,YAAa,CAGb,6BAA8B,CAD9B,YAIF,CAEA,eAEE,aAAwB,CAAxB,uBAAwB,CADxB,cAAe,CAEf,eAAgB,CAChB,iBACF,CAEA,mBAEE,sBAAuB,CADvB,QAAS,CAET,cACF,CAEA,uBACE,YAAuB,CAAvB,sBAAuB,CACvB,WAAY,CAEZ,gBAAiB,CADjB,UAEF,CAEA,UACE,YACF,CAKA,cAEE,kBAAmB,CADnB,YAAa,CAEb,6BAA8B,CAC9B,iBACF,CAEA,0BAEE,aAAwB,CAAxB,uBAAwB,CACxB,cAAe,CACf,eACF,CAEA,aAEE,UAAwB,CAAxB,uBAAwB,CADxB,cAEF,CAGA,YAGE,WAAY,CADZ,aAAc,CAEd,eAAgB,CAHhB,SAAU,CAIV,oBACF,CAEA,+BACE,YACF,CAEA,iBACE,+BAA6C,CAA7C,2CAA6C,CAC7C,kBAAmB,CACnB,gBAAiB,CACjB,8BACF,CAEA,uBACE,wBAAiC,CAAjC,gCAAiC,CACjC,cACF,CAEA,4CAEE,eACF,CAGA,wBACE,UAAwB,CAAxB,uBAAwB,CACxB,oBAAqB,CACrB,gBACF,CAEA,mBAEE,aAAyB,CAAzB,wBAAyB,CADzB,cAEF,CAEA,iBAWE,kBAAmB,CANnB,kBAA6B,CAA7B,4BAA6B,CAC7B,WAAY,CAGZ,iBAAkB,CANlB,WAAY,CAWZ,sCAA2C,CAD3C,cAAe,CAHf,YAAa,CATb,cAAe,CAOf,WAAY,CAIZ,sBAAuB,CAVvB,iBAAkB,CAElB,UAAW,CAGX,UAQF,CAGA,qBACE,YAAqB,CAArB,oBACF,CAQA,aAIE,aAAwB,CAAxB,uBAAwB,CADxB,6BAA8B,CAE9B,YACF,CAEA,6BANE,kBAAmB,CADnB,YAYF,CALA,gBAIE,cAAe,CADf,cAEF,CAEA,oBACE,YAAuB,CAAvB,sBAAuB,CAEvB,gBAAiB,CADjB,UAEF,CAEA,oBAIE,wBAA6B,CAH7B,WAAY,CAKZ,cAAe,CADf,cAAe,CAFf,eAAgB,CADhB,YAKF,CAEA,eACE,qBAAoC,CAApC,mCAAoC,CACpC,WAAY,CAGZ,WAAY,CAFZ,iBAAkB,CAGlB,WAAY,CACZ,oBAAqB,CAHrB,UAIF,CAEA,2CAGE,WAAY,CADZ,YAEF,CAEA,kCACE,YACF","sources":["App.css"],"sourcesContent":["@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&display=swap');\n\n\n\n:root {\n --color-main: #f68657;\n --color-text: #383a3f;\n --color-dark: #1f2124;\n --color-gray: #677;\n --color-bg: #f3f6f9;\n --color-light: #acb4bd;\n --color-lighter: #f9f9f9;\n --color-white: #fff;\n --color-border:#e0e3e6;\n}\n\n.dark {\n --color-main: #f68657;\n --color-text: #d6d1d1;\n --color-dark: #f5f6f7;\n --color-gray: #999;\n --color-bg: #1f2124;\n --color-lighter: #292a2c;\n --color-white: #2e3235;\n --color-border:#252629;\n}\n\n/* BASE STYLES */\n\n\n*{\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n font-family: 'Lexend', sans-serif;\n color: inherit;\n font-size: inherit;\n scroll-behavior: smooth;\n}\n\n\nbody{\n line-height: 1.8em;\n font-weight: 400;\n font-size: 16px;\n}\n\na {\n text-decoration: none;\n}\n\n/* APP STYLES */\n\n\n.container {\n width: 100%;\n height: 100vh;\n color: var(--color-text);\n background-color: var(--color-bg);\n display: flex;\n align-items: center;\n}\n\n\n.app {\n width: 100%;\n max-width: 480px;\n height: 88vh;\n margin: 0 auto;\n background-color: var(--color-white);\n box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.05);\n position: relative;\n}\n\n\n.app-header {\n display: flex;\n align-items: center;\n padding: 16px;\n justify-content: space-between;\n background-color: var(--color-lighter);\n box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);\n}\n\n.app-header h1 {\n font-size: 30px;\n color: var(--color-dark);\n font-weight: 800;\n text-align: center;\n}\n\n.app-header button {\n border: 0;\n background: transparent;\n cursor: pointer;\n}\n\n.app-header button > svg {\n fill: var(--color-dark);\n height: 25px;\n width: 25px;\n object-fit: cover;\n}\n\n.app-body {\n padding: 16px;\n}\n\n\n/* NOTES STYLES */\n\n.notes-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n padding: 10px 16px;\n}\n\n.notes-title,\n.notes-count {\n color: var(--color-main);\n font-size: 24px;\n font-weight: 600;\n}\n\n.notes-count {\n font-size: 18px;\n color: var(--color-gray);\n}\n\n\n.notes-list {\n padding: 0;\n margin: 16px 0;\n height: 70vh;\n overflow-y: auto;\n scrollbar-width: none; /* Firefox */\n}\n\n.notes-list::-webkit-scrollbar {\n display: none;\n}\n\n.notes-list-item {\n border-bottom: 1px solid var(--color-border);\n margin-bottom: 12px;\n padding: 8px 16px;\n transition: all 0.2s ease-in-out;\n}\n\n.notes-list-item:hover {\n background-color: var(--color-bg);\n cursor: pointer;\n}\n\n.notes-list-item h3,\n.notes-list-item p span {\n font-weight: 600;\n}\n\n\n.notes-list-item p span {\n color: var(--color-gray);\n display: inline-block;\n margin-right: 8px;\n}\n\n.notes-list-item p {\n font-size: 14px;\n color: var(--color-light);\n}\n\n.floating-button {\n font-size: 48px;\n position: absolute;\n bottom: 24px;\n right: 16px;\n background: var(--color-main);\n border: none;\n width: 60px;\n height: 60px;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);\n}\n\n\n.floating-button > svg {\n fill: var(--color-bg);\n}\n\n\n\n/*==============================\n=> Note Styles\n================================*/\n\n.note-header {\n display: flex;\n align-items: center;\n justify-content: space-between;\n color: var(--color-main);\n padding: 10px;\n}\n\n.note-header h3 {\n display: flex;\n align-items: center;\n font-size: 24px;\n cursor: pointer;\n}\n\n.note-header h3 svg {\n fill: var(--color-main);\n width: 20px;\n margin-right: 8px;\n}\n\n.note-header button {\n border: none;\n outline: none;\n font-weight: 600;\n background-color: transparent;\n font-size: 18px;\n cursor: pointer;\n}\n\n.note textarea {\n background-color: var(--color-white);\n border: none;\n padding: 16px 12px;\n width: 100%;\n height: 70vh;\n resize: none;\n scrollbar-width: none; /* Firefox */\n}\n\n.note textarea:active,\n.note textarea:focus {\n outline: none;\n border: none;\n}\n\n.note textarea::-webkit-scrollbar {\n display: none;\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/staticfiles/js/main.d825d148.js b/staticfiles/js/main.d825d148.js new file mode 100644 index 0000000..38034b0 --- /dev/null +++ b/staticfiles/js/main.d825d148.js @@ -0,0 +1,3 @@ +/*! For license information please see main.d825d148.js.LICENSE.txt */ +!function(){"use strict";var e={463:function(e,t,n){var r=n(791),a=n(296);function l(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n