server ver

This commit is contained in:
2021-04-16 20:41:48 +00:00
parent c9257dc357
commit 1b5088cde7
159 changed files with 3533 additions and 740 deletions

View File

@@ -288,7 +288,7 @@ div.tbody {
}
.comments blockquote {
color: #80FF00;
color: #789922;
font-size: 1em;
padding: 0;
margin: 0;
@@ -2218,7 +2218,7 @@ blockquote {
padding: 10px 10px;
margin: 0 0 10px;
border-left: 5px solid #282828;
color: #80FF00;
color: #789922;
word-wrap: break-word;
}
@@ -2895,7 +2895,7 @@ button#toggle:not(:focus) {
}
span.videoinfo {
background: #21292f;
background: #1f1f20;
border-radius: 5px;
padding: 5px;
}
@@ -3077,7 +3077,7 @@ button#infobox:not(:focus) {
}
/*
Eye candy
Eye candy
( colors courtesy of https://kuler.adobe.com/try-color-theme-3350110 )
*/
.onclick-menu {
@@ -4041,7 +4041,7 @@ repeating-radial-gradient(black, transparent 100px)
padding-right: 0px;
padding-left: 0px;
font-size: 17px;
vertical-align: middle;
vertical-align: initial;
}
.coronaids {
@@ -4084,4 +4084,53 @@ position: absolute;
i.fa.fa-bitcoin:hover {
color: #1fb2b0;
transition: .5s;
}
}
#matrix {
text-align: center;
background: black;
color: #17bd17;
border: 1px solid;
}
#matrix a {
color: #17bd17;
}
#bluepill {
width: 26px;
height: 10px;
display: inline-block;
color: blue;
background: blue;
border-radius: 5px;
}
#redpill {
width: 26px;
height: 10px;
display: inline-block;
color: red;
background: red;
border-radius: 5px;
}
.thread_closed {
color: white;
text-align: center;
border: 1px solid black;
background: #2d2c2c;
padding: 5px;
margin: 5px;
}
@media (min-width: 768px) {
ul.pagination {
display: flex;
justify-content: left;
}
.pagination {
margin: 0;
}
}

View File

@@ -1143,7 +1143,7 @@ $(function() {
formData.append('file', file);
$('.progress-striped, #upload-stats').css('opacity', 0).slideDown('fast').animate({opacity: 1}, {queue: false, duration: 'fast'});
jqXHR = $.ajax({
url: '/api/upload',
url: '/api/video/upload',
type: 'POST',
data: formData,
processData: false,

View File

@@ -148,7 +148,7 @@ overflow: hidden;
.bg-dark {
background: black!important;
background: #000000b3 !important;
}
.search-index {
@@ -627,6 +627,7 @@ textarea.form-control {
textarea#cinput {
height: 80px !important;
box-shadow: none;
}
.comment-entry-textarea {
@@ -835,7 +836,7 @@ a.badge.badge-success.isSfw, a.badge.badge-danger.isNsfw {
#videoBox.in { animation: ac 1s; }
.panel.panel-danger {
/*.panel.panel-danger {
background: rgba(90, 88, 88, 0.4) none repeat scroll 0 0;
padding: 15px;
margin-bottom: 15px;
@@ -844,7 +845,7 @@ a.badge.badge-success.isSfw, a.badge.badge-danger.isNsfw {
font-style: italic;
color: lightgrey;
background: #00000047;
}
}*/
/*.col-sm.scrollable:hover {
background: #00000080;
@@ -1006,7 +1007,7 @@ div#categories {
}
a.badge.video-rating.sfw {
background: #282828;
background: #2828288f;
color: #04da04;
border-top-left-radius: 0;
border-top-right-radius: 0;
@@ -1016,7 +1017,7 @@ a.badge.video-rating.sfw {
}
a.badge.video-rating.nsfw {
background: #282828;
background: #2828288f;
color: #ff1515;
border-top-left-radius: 0;
border-top-right-radius: 0;
@@ -1026,7 +1027,7 @@ a.badge.video-rating.nsfw {
}
a.badge.video-id {
background: #282828;
background: #2828288f;
color: white;
font-family: monospace;
border-bottom-left-radius: 0;
@@ -1296,7 +1297,7 @@ button#togglebg:hover, button.bg-toggle:hover, button#fav:hover, button#webm_edi
.monchichi {
display: inherit;
background: #1e1c1c;
background: #000000b3;
border-radius: 5px;
border: 1px solid black;
margin: 5px;
@@ -1505,4 +1506,36 @@ div.comment_header {
.container-fluid, .container {
padding-left: 0;
padding-right: 0;
}
}
.search-index {
position: relative;
}
.search-btn {
position: absolute;
right: 0;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
color: #fff;
background-color: #171616;
border-color: #101010;
}
/*blah */
.stuck {
position: fixed !important;
top: 0 !important;
bottom: 0px !important;
right: 0 !important;
width: 260px !important;
height: 145px !important;
transform: translateY(100%);
animation: fade-in-up .25s ease forwards;
right: 0;
width: 200px !important;
display: flex;
justify-content: left;
margin: 0 0 0 auto;
}

View File

@@ -414,7 +414,7 @@ $(function() {
formData.append('file', file);
$('.progress-striped, #upload-stats').css('opacity', 0).slideDown('fast').animate({opacity: 1}, {queue: false, duration: 'fast'});
jqXHR = $.ajax({
url: '/api/upload',
url: '/api/video/upload',
type: 'POST',
data: formData,
processData: false,

View File

@@ -1143,7 +1143,7 @@ $(function() {
formData.append('file', file);
$('.progress-striped, #upload-stats').css('opacity', 0).slideDown('fast').animate({opacity: 1}, {queue: false, duration: 'fast'});
jqXHR = $.ajax({
url: '/api/upload',
url: '/api/video/upload',
type: 'POST',
data: formData,
processData: false,

View File

@@ -1,2 +1,5 @@
User-agent: *
Disallow: /register
Disallow:
User-agent: Google
Disallow: /

View File

@@ -11,7 +11,6 @@
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
:root {
--blue: #375a7f;
--indigo: #6610f2;

View File

@@ -238,11 +238,11 @@ ul.dd-menu > li:hover {
.dd-input + .dd-menu {
display: none;
}
}
.dd-input:checked + .dd-menu {
display: block;
}
}
.dd-menu li {
padding: 10px 20px;
@@ -308,11 +308,19 @@ div#categories {
}
div#collapseComments {
background: #040a0a;
background: #000;
padding: 5px;
}
.card.panel-default {
margin-top: 5px;
margin: 5px;
}
}
#commentForm textarea {
background: rgb(33, 34, 34) none repeat scroll 0 0;
}
.commentButton {
background: #000;
}

View File

@@ -395,7 +395,7 @@ $(function() {
formData.append('file', file);
$('.progress-striped, #upload-stats').css('opacity', 0).slideDown('fast').animate({opacity: 1}, {queue: false, duration: 'fast'});
jqXHR = $.ajax({
url: '/api/upload',
url: '/api/video/upload',
type: 'POST',
data: formData,
processData: false,