webring link

merge-requests/208/head
fatchan 4 years ago
parent 3962e7d4dc
commit 7be9eff042
  1. 50
      gulp/res/css/style.css
  2. 4
      views/includes/navbar.pug
  3. 2
      views/mixins/post.pug

@ -62,6 +62,25 @@ main.minimal {
text-decoration: line-through;
}
@keyframes rainbow-anim {
0% {
background-position: 0 0;
}
100% {
background-position: 400% 0;
}
}
.rainbow {
background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
animation: rainbow-anim 10s linear infinite;
background-size: 400% 100%;
text-shadow: #00000050 0px 0px 1px;
}
.underline {
text-decoration: underline;
}
@ -207,8 +226,8 @@ a, a:visited, a.post-name {
}
.invalid-quote {
cursor:pointer;
text-decoration: line-through;
cursor:pointer;
text-decoration: line-through;
}
.post-message a {
@ -277,7 +296,7 @@ p {
}
/*
.upload-list::-webkit-scrollbar {
display: none;
display: none;
}
*/
.upload-item {
@ -384,7 +403,7 @@ p {
}
.edited {
font-style: italic;
font-style: italic;
}
.close {
@ -880,6 +899,11 @@ input:invalid, textarea:invalid {
float: left;
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
.nav-item:nth-of-type(3) {
line-height:1.5em;
}
.left {
@ -1000,20 +1024,20 @@ iframe.bypass {
}
.captcharefresh {
position: absolute;
position: absolute;
bottom: 0;
left: 5px;
font-size: 18px;
cursor: pointer;
left: 5px;
font-size: 18px;
cursor: pointer;
color: black;
}
.captcharefresh {
position: absolute;
position: absolute;
bottom: 0;
left: 5px;
font-size: 18px;
cursor: pointer;
left: 5px;
font-size: 18px;
cursor: pointer;
}
.label, .rlabel {
@ -1145,7 +1169,7 @@ table, .boardtable {
width: 100%
}
row.wrap.sb .col {
flex-basis: calc(50% - 5px);
flex-basis: calc(50% - 5px);
}
@media only screen and (max-height: 400px) {

@ -2,7 +2,9 @@ unless minimal
nav.navbar
a.nav-item(href='/index.html') Home
a.nav-item(href='/news.html') News
a.nav-item(href='/boards.html') Boards
a.nav-item(href='/boards.html')
| Boards
.rainbow +Webring
a.nav-item(href='/account.html') Account
if board
a.nav-item(href=`/${board._id}/manage/reports.html`) Manage

@ -4,7 +4,7 @@ mixin post(post, truncate, manage=false, globalmanage=false, ban=false)
div(class=`post-container ${post.thread || ban === true ? '' : 'op'}` data-board=post.board data-post-id=post.postId data-user-id=post.userId)
- const postURL = `/${post.board}/${modview ? 'manage/' : ''}thread/${post.thread || post.postId}.html`;
.post-info
span.noselect
span
label
if globalmanage
input.post-check(type='checkbox', name='globalcheckedposts' value=post._id)

Loading…
Cancel
Save