diff --git a/peertube-dl-web.conf b/peertube-dl-web.conf index 71f81e1..3c317df 100644 --- a/peertube-dl-web.conf +++ b/peertube-dl-web.conf @@ -5,5 +5,6 @@ clients => 3, proxy => 1, pid_file => $ENV{PIDFILE} || '/var/run/peertube-dl-web.pid', - } + }, + theme => 'new_look_default', }; diff --git a/themes/new_look_default/public/dist/css/index.css b/themes/new_look_default/public/dist/css/index.css new file mode 100644 index 0000000..40ef2fe --- /dev/null +++ b/themes/new_look_default/public/dist/css/index.css @@ -0,0 +1,306 @@ +body { + height: 98vh; + + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + + background-color: #111827; +} + +.application-container { + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; + + border-radius: 0.3rem; + + background-color: #1f2937; + + padding: 1.5rem 3rem 1.5rem 3rem; +} + +.application-container form { + display: flex; + flex-flow: column; + justify-content: center; + + width: 100%; + padding: 1rem; +} + +.application-container h2 { + color: #ffffff; + font-weight: 400; + font-size: 1.6rem; +} + +.application-container input { + padding: 1rem; + + color: #ffffff; + background-color: #374151; + + border-radius: 0.2rem; + border: 1px solid transparent; +} + +.application-container button { + margin-top: 1rem; + + color: #ffffff; + font-weight: bold; + + background-color: #059669; + + border-radius: 0.2rem; + border: 1px solid transparent; + + padding: 0.5rem 1rem 0.5rem 1rem; +} + +.application-container button:hover,.application-container button:focus { + background-color: #059; +} + +.application-container button, +.application-container input { + font-size: 0.9rem; +} + +.application-container.active { + display: flex; +} + +#poping-notice-content a { + text-decoration: none; + color: #10b981; +} + +#poping-notice-content a:hover,#poping-notice-content a:focus { + color: #0ae; +} + +#poping-notice-container-bar { + display: flex; + justify-content: center; +} + +#close-poping-notice { + background-color: #059669; + padding: 0.5rem 5rem 0.5rem 5rem; + border-radius: 0.3rem; + text-decoration: none; + font-weight: bolder; + color: white; +} + +#close-poping-notice:hover,#close-poping-notice:focus { + background-color: #059; +} + +.modal { + position: absolute; + display: none; + color: white; +} + +#poping-notice { + padding: 3rem; + border-radius: 0.3rem; + background-color: #374151; + color: white; + overflow-y: scroll; + width: 94%; +} + +#modal-video-container,#modal-format-selector { + height: 100%; + width: 100%; + + flex-flow: column; + align-items: center; + + background-color: #111827; +} + +.video-container-bar { + width: 95%; + height: 2rem; + padding: 1rem; + display: flex; + justify-content: end; +} + +.video-container-bar a { + padding: 1rem; + border-radius: 0.3rem; + + display: flex; + align-items: center; + justify-content: center; + + background-color: #dc2626; +} + +.video-container-bar a:hover,.video-container-bar a:focus { + color: white; + background-color: grey; +} + + +#modal-video-container > #block { + display: flex; + flex-flow: column; + align-items: center; + justify-content: center; +} + +#download-video-container { + padding: 2rem; + + display: flex; + align-items: center; + justify-content: center; +} + +.button-download { + display: none; + border-radius: 0.3rem; + background-color: #059669; + text-decoration: none; + color: white; + user-select: none; + cursor: pointer; + height: 30px; + padding: 0 2rem; +} + +.button-download:hover,.button-download:focus { + background-color: #059; +} + +.button-download embed { + height: 100%; +} + +#download-video-loading.active { + height: 2rem; +} + +#download-video-container .button-download.active { + display: flex; + align-items: center; +} + +#modal-loading { + display: none; +} + +.modal { + --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), + 0 4px 6px -2px rgba(0, 0, 0, 0.05); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), + var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); + overflow-y: scroll; +} + +#poping-notice.active { + display: block; +} + +.modal.active { + display: flex; +} + +#modal-loading { + display: none; + position: fixed; + top: 50%; + left: 50%; + height: 100%; + width: 100%; + transform: translate(-50%, -50%); + border: black 1px solid; + justify-content: right; + align-items: center; +} + +#modal-loading.active { + display: flex; +} + +#modal-loading embed { + width: 10%; +} + +#video { + width: 100%; +} + +#video-container { + height: 100%; + display: flex; + flex-direction: column; + justify-content: center; +} + +.format-list > div { + display: grid; + grid-column-gap: 10px; + grid-row-gap: 10px; + grid-template-areas: "a"; + grid-auto-columns: 99%; + margin: 1rem; +} + +.format-list > div > a { + border: 1px solid black; + display: flex; + align-items: center; + justify-content: center; + font-size: 1.5rem; + padding-right: 5%; + padding-left: 5%; + text-decoration: none; + border-radius: 0.5rem; + background-color: #059669; + overflow-wrap: anywhere; +} + +.format-list > div > a:focus,.format-list > div > a:hover { + background-color: #059; +} + +.format-list > div > a:after { + padding-bottom: 100%; + display: block; + content: ""; +} + +.scale { + height: 1em; + width; 1em; +} + +@media (min-width: 600px) { + .format-list > div { + grid-template-areas: "a a"; + grid-auto-columns: 49.75%; + } +} + +@media (min-width: 805px) { + .format-list > div { + grid-template-areas: "a a a"; + grid-auto-columns: 33%; + } +} + +@media (min-width: 812px) { + #poping-notice { + width: 40%; + } +} diff --git a/themes/new_look_default/public/dist/img/audio_muted.svg b/themes/new_look_default/public/dist/img/audio_muted.svg new file mode 100644 index 0000000..119d23f --- /dev/null +++ b/themes/new_look_default/public/dist/img/audio_muted.svg @@ -0,0 +1,18 @@ + diff --git a/themes/new_look_default/public/dist/img/peertube-dl-logo-fullsize.png b/themes/new_look_default/public/dist/img/peertube-dl-logo-fullsize.png new file mode 100644 index 0000000..e52a812 Binary files /dev/null and b/themes/new_look_default/public/dist/img/peertube-dl-logo-fullsize.png differ diff --git a/themes/new_look_default/public/dist/img/peertube-dl-logo.png b/themes/new_look_default/public/dist/img/peertube-dl-logo.png new file mode 100644 index 0000000..f884590 Binary files /dev/null and b/themes/new_look_default/public/dist/img/peertube-dl-logo.png differ diff --git a/themes/new_look_default/public/dist/index.html b/themes/new_look_default/public/dist/index.html new file mode 100644 index 0000000..70834ed --- /dev/null +++ b/themes/new_look_default/public/dist/index.html @@ -0,0 +1,76 @@ + +
+ + + + +Example description
+This webpage is free as in freedom software, it is offered to you with the hope it will be useful, but without any warranty, + you can find the source code at my gitea with docs to setup your own + webpage like this, this software is licensed under the AGPLv3 license which means you MUST convey the source code in a human readable form + if you distribute this software or use it as an service to users of service or distributees.
+ +
I hope that if you find a non supported url which should be supported, a bug, or a feature you would like this webpage to have you file an issue in + https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl/issues + to help this software improve since I find tracking users a pretty bad way to discover bugs and potential good features.
+ +This webpage may load third party resources depending on the url you give to it which may put cookies in your browser, you are + encouraged to frecuently delete your browser cookies to avoid those third parties tracking you on internet, Firefox offers you an + option to delete cookies as soon as you close the browser which may be a good idea to enable in the orwellian internet of today.
+