mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-10 16:08:52 -06:00
add dist in meantime
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -29,7 +29,6 @@ __pycache__/
|
|||||||
.Python
|
.Python
|
||||||
build/
|
build/
|
||||||
develop-eggs/
|
develop-eggs/
|
||||||
dist/
|
|
||||||
downloads/
|
downloads/
|
||||||
eggs/
|
eggs/
|
||||||
.eggs/
|
.eggs/
|
||||||
|
|||||||
1
Procfile
1
Procfile
@@ -1,2 +1 @@
|
|||||||
release: cd ./client/ && npm run build
|
|
||||||
web: gunicorn wsgi:app
|
web: gunicorn wsgi:app
|
||||||
|
|||||||
BIN
dist/favicon.ico
vendored
Normal file
BIN
dist/favicon.ico
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
122
dist/index.html
vendored
Normal file
122
dist/index.html
vendored
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=/favicon.ico><title>TheOfficeQuotes</title><base href=/ ><link href=/static/css/app.8ce95770.css rel=preload as=style><link href=/static/css/chunk-vendors.69e8e4a1.css rel=preload as=style><link href=/static/js/app.45bcd808.js rel=preload as=script><link href=/static/js/chunk-vendors.11a395d7.js rel=preload as=script><link href=/static/css/chunk-vendors.69e8e4a1.css rel=stylesheet><link href=/static/css/app.8ce95770.css rel=stylesheet></head><style>body {
|
||||||
|
background: #0a0a0a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cssload-loader {
|
||||||
|
position: absolute;
|
||||||
|
top: calc(50% - 100px);
|
||||||
|
left: calc(50% - 100px);
|
||||||
|
width: 100px;
|
||||||
|
height: 100px;
|
||||||
|
-webkit-perspective: 780px;
|
||||||
|
perspective: 780px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cssload-inner {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
-o-box-sizing: border-box;
|
||||||
|
-ms-box-sizing: border-box;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
border-radius: 50%;
|
||||||
|
-o-border-radius: 50%;
|
||||||
|
-ms-border-radius: 50%;
|
||||||
|
-webkit-border-radius: 50%;
|
||||||
|
-moz-border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cssload-inner.cssload-one {
|
||||||
|
left: 0%;
|
||||||
|
top: 0%;
|
||||||
|
animation: cssload-rotate-one 1.15s linear infinite;
|
||||||
|
-o-animation: cssload-rotate-one 1.15s linear infinite;
|
||||||
|
-ms-animation: cssload-rotate-one 1.15s linear infinite;
|
||||||
|
-webkit-animation: cssload-rotate-one 1.15s linear infinite;
|
||||||
|
-moz-animation: cssload-rotate-one 1.15s linear infinite;
|
||||||
|
border-bottom: 3px solid #5c5edc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cssload-inner.cssload-two {
|
||||||
|
right: 0%;
|
||||||
|
top: 0%;
|
||||||
|
animation: cssload-rotate-two 1.15s linear infinite;
|
||||||
|
-o-animation: cssload-rotate-two 1.15s linear infinite;
|
||||||
|
-ms-animation: cssload-rotate-two 1.15s linear infinite;
|
||||||
|
-webkit-animation: cssload-rotate-two 1.15s linear infinite;
|
||||||
|
-moz-animation: cssload-rotate-two 1.15s linear infinite;
|
||||||
|
border-right: 3px solid rgba(76, 70, 101, 0.99);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cssload-inner.cssload-three {
|
||||||
|
right: 0%;
|
||||||
|
bottom: 0%;
|
||||||
|
animation: cssload-rotate-three 1.15s linear infinite;
|
||||||
|
-o-animation: cssload-rotate-three 1.15s linear infinite;
|
||||||
|
-ms-animation: cssload-rotate-three 1.15s linear infinite;
|
||||||
|
-webkit-animation: cssload-rotate-three 1.15s linear infinite;
|
||||||
|
-moz-animation: cssload-rotate-three 1.15s linear infinite;
|
||||||
|
border-top: 3px solid #e9908a;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes cssload-rotate-one {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||||
|
transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||||
|
transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes cssload-rotate-one {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes cssload-rotate-two {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||||
|
transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||||
|
transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes cssload-rotate-two {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes cssload-rotate-three {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||||
|
transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||||
|
transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes cssload-rotate-three {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
|
||||||
|
}
|
||||||
|
}</style><body><noscript><strong>We're sorry but TheOfficeQuotes doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app><div id=loading-wrapper><div class=cssload-loader><div class="cssload-inner cssload-one"></div><div class="cssload-inner cssload-two"></div><div class="cssload-inner cssload-three"></div></div></div></div><script src=/static/js/chunk-vendors.11a395d7.js></script><script src=/static/js/app.45bcd808.js></script></body></html>
|
||||||
1
dist/static/css/app.8ce95770.css
vendored
Normal file
1
dist/static/css/app.8ce95770.css
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap);@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap);.season-card>.card-body>.card-header{cursor:pointer}.bi-chevron-down{transition:all .25s ease-in-out}.collapsed>.bi-chevron-down{text-align:right}.not-collapsed>.bi-chevron-down{transform:rotate(180deg);-ms-transform:rotate(180deg);-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.b-popover{background:transparent}.popover-header{background-color:#1d1d1d;border-color:#181818;color:#fff}.bs-popover-auto[x-placement^=right]>.arrow:after,.bs-popover-right>.arrow:after{border-right-color:#181818}.popover-body{color:#fff;background-color:#161616}.season-title{color:#a2a2a2;cursor:pointer}.accordion.list-group-item{border-radius:0;border-width:0 0 0 0;border-bottom-width:1px;padding-left:30px;font-weight:500}.accordion.list-group-item:first-child{border-top-width:1px}.accordion.list-group-item:last-child{border-bottom-width:0}.accordion .list-group-item{padding:10px 20px}.accordion .list-group-item a{display:block}.accordion .list-group-item .badge{float:right;min-width:36px}.accordion .card-body{padding:0}.card-header{background-color:#161616;border-bottom:1px solid rgba(0,0,0,.88);font-family:Montserrat,sans-serif}.card{background-color:inherit;padding-bottom:0}.list-group-item{border-color:rgba(24,24,24,.82);background-color:#111;color:#a0a0a0;border-left-width:0;border-right-width:0}.list-group-item:hover{background-color:#161616}.no-link,.no-link:hover{color:inherit;text-decoration:none}body{background-color:#0a0a0a;font-family:Roboto,sans-serif}.ais-SearchBox-form{border:none}.ais-SearchBox-input{color:#d7d7d7;background-color:#3e3e3e;border-color:transparent;border-radius:1px}.ais-SearchBox-resetIcon>path,.ais-SearchBox-submitIcon>path{fill:#bcbcbc}.ais-SearchBox-input::-moz-placeholder{color:#fff}.ais-SearchBox-input:-ms-input-placeholder{color:#fff}.ais-SearchBox-input::-ms-input-placeholder{color:#fff}.ais-SearchBox-input::placeholder{color:#fff}.card{color:#b3b3b3;background-color:#161616;border-bottom:1px solid rgba(0,0,0,.88);border-radius:0}.quote-speaker{min-width:100px}.btn,.btn:focus{box-shadow:none}.character-button{background-color:#292929;border-color:#1d1d1d}.character-button:focus{background-color:#292929!important;border-color:#1d1d1d!important}.character-button:focus:active{box-shadow:none!important}.character-button:active,.character-button:hover{background-color:#1d1d1d!important;border-color:#161616!important}.character-button>.badge{background-color:#565656}.card-title{font-family:Montserrat,sans-serif;font-weight:600}.deleted-scene{font-size:.75em;line-height:12px}.expandable-result{cursor:pointer}.collapse{display:block}.search-result-link{white-space:nowrap;font-size:.75em!important}.quote-list>tr{white-space:nowrap}.quote-list>tr:hover{background-color:#242424}.quote-text{white-space:normal}.quote-speaker{min-width:75px;padding-right:1em;font-weight:600;vertical-align:text-top;text-align:right;font-family:Montserrat,sans-serif}.card-footer{padding:.1em;font-size:.8em;color:grey}.mark,mark{padding:.02em;background-color:#d2ca00}.ais-Hits-item,.ais-InfiniteHits-item,.ais-InfiniteResults-item,.ais-Results-item{border:none;box-shadow:none}
|
||||||
6
dist/static/css/chunk-vendors.69e8e4a1.css
vendored
Normal file
6
dist/static/css/chunk-vendors.69e8e4a1.css
vendored
Normal file
File diff suppressed because one or more lines are too long
2
dist/static/js/app.45bcd808.js
vendored
Normal file
2
dist/static/js/app.45bcd808.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/static/js/app.45bcd808.js.map
vendored
Normal file
1
dist/static/js/app.45bcd808.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
70
dist/static/js/chunk-vendors.11a395d7.js
vendored
Normal file
70
dist/static/js/chunk-vendors.11a395d7.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
dist/static/js/chunk-vendors.11a395d7.js.map
vendored
Normal file
1
dist/static/js/chunk-vendors.11a395d7.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user