various changes, fixes to css etc

This commit is contained in:
w0bm
2021-11-07 10:28:35 +00:00
parent ac6c15c0e1
commit 50b89c7be7
102 changed files with 2358 additions and 38 deletions

View File

@@ -4180,4 +4180,10 @@ pre {
.w0bm_emoji_anchor:hover {
background: #616364;
transition: .2s all ease-in-out;
}
.git-issue-tracker {
vertical-align: sub;
color: gray;
font-family: vcr;
}

View File

@@ -58,6 +58,10 @@ body {
vertical-align: middle !important;
}
#logo:hover {
filter: saturate(3);
}
.w0bm-logo {
margin: 5px;
padding-left: 5px;
@@ -129,7 +133,7 @@ p.comment > a {
}
.page-header > h3 {
border-bottom: 2px solid gray;
border-bottom: 2px solid #403e3e;
padding-bottom: 5px;
}
@@ -238,6 +242,7 @@ li.nav-item {
.page-header {
flex: 1;
background: #282828;
}
button#togglebg, button.bg-toggle, button#fav, button#nav-user, button#webm_edit, button#webm_report {
@@ -1085,11 +1090,19 @@ a.badge.video-id {
background: rgba(29, 28, 28, 0.94) none repeat scroll 0 0;
padding: 15px;
margin-bottom: 15px;
border-radius: .25rem;
border: 1px solid black;
border-radius: 0;
border: 1px solid #444;
text-shadow: 1px 1px black;
}
#message {
padding-left: 0;
}
#message > h4 {
text-align: center;
}
#commentForm textarea {
color: #c8c8c8;
background: rgba(0, 0, 0, 0.78) none repeat scroll 0 0;
@@ -1126,6 +1139,7 @@ a.badge.video-id {
.table {
margin-bottom: 3rem;
background: #282828;
}
img.comment_emoji {
@@ -1148,6 +1162,7 @@ div#categories {
grid-gap: 20px;
align-items: stretch;
margin-bottom: 5px;
background: #282828;
}
.thumbnail img {
@@ -1704,9 +1719,9 @@ div.uploadButton > p {
.box {
background: rgba(90, 88, 88, 0.4) none repeat scroll 0 0;
border-radius: 5px;
border: 1px solid black;
padding: 5px;
margin: 5px;
border: 1px solid #444;
}
hr {
@@ -1927,4 +1942,38 @@ blockquote {
color: red;
text-shadow: -1px 0px orange, -2px 0px yellow, -3px 0px green, -4px 0px blue, -5px 0px indigo, -6px 0px violet;
}
}
.profilheader {
background: #282828;
}
.container > .items {
background: #303030;
padding: 5px;
border: 10px solid black;
}
.main-item:hover {
box-shadow: 0 0 0 2px #0cba6b;
}
.thumbnail:hover img {
border: 1px solid #0cba6b;
}
ol, ul, dl {
margin-top: 5px;
margin-bottom: 5px;
}
.dark-bg {
background-color: #282828;
}
.video-titlebar {
background: #000000b3 !important;
padding-left: 5px;
padding-right: 5px;
border-top: inset 1px gray;
}

View File

@@ -190,7 +190,7 @@ if (typeof video !== 'undefined') {
// the variable is defined
var videoElem = document.getElementById('video');
videoElem.play();
videoElem.addEventListener('mouseover', function() { this.controls = true; });
//videoElem.addEventListener('mouseover', function() { this.controls = true; });
videoElem.volume = 0.3;
videoElem.volume = localStorage.getItem("volume") || 1;
videoElem.addEventListener("volumechange", ev => {