<script src="https://files.jcink.net/uploads2/fireflower/jquery_3_5_1.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;700&display=swap" rel="stylesheet">
<div id="v3skin8-drama">
<div id="v3skin8-menu">
<div id="v3skin8Menu-navi">
<section><a>RETRO FUTURE</a> ➝ <a>EIGHT OF CUPS</a> ➝ <a>SEVEN OF SWORDS</a> ➝ <a> THE FOOL</a></section>
<ul class="v3skin8Menu-userctrl">
<li><a href="/">ADMIN CP</a></li>
<li><a href="/">CONTROL PANEL</a></li>
<li><a href="/">INBOX</a></li>
<li><a href="/">ALERTS</a></li>
<li><a href="/">PROFILE</a></li>
<li><a href="/">LOGOUT</a></li>
</ul>
</div>
<div id="v3skin8Menu-sidebar">
<figure>
<img src="https://i.postimg.cc/d3Qx6MNr/100-3.jpg">
<span>welcome back,</span> celeste lazanderas
</figure>
<ul>
<li><a href="#v3skin8-drama">home base</a></li>
<li><a href="#v3skin8-category-1">misson control</a></li>
</ul>
<ul class="v3skin8-quicklinks">
<li><a>rules</a></li>
<li><a>setting</a></li>
<li><a>plot</a></li>
<li><a>faces</a></li>
<li><a>directory</a></li>
<li><a>claims</a></li>
</ul>
</div>
</div>
<div id="wrapper">
<header>
<h1>retro future</h1>
<h2>a futuristic, slice of life roleplay</h2>
<div class="v3skin8-introduction">
<p>it's the year 20021 and human life has long escaped the gravitational pull of alpha earth. now, majority live and breathe on delphae, short for delta alpha earth-- a ai-controlled and piloted spacecraft made to emulate alpha earth's original design. though humans are far from the only inhabitants of delphae, for in the years we've travelled our ancestor's original galaxy and beyoned, we've made contact with many other beings. </p>
</div>
</header>
<div id="v3skin8-category-1">
<h3>
<span>mission control </span>
<div class="h3bg"></div>
</h3>
<section id="board-1">
<h4><a>the spacecraft voyager's guide to the galaxy</a></h4>
<p>if you look to your left you can find sunsettia, the sun of the araboreus galaxy we currently reside. if you look to your right you can find space, in all it's empty fucking glory.</p>
<ul>
<li><a>rules</a></li>
<li><a>plot</a></li>
<li><a>setting</a></li>
<li><a>faq</a></li>
<li><a>credits</a></li>
</ul>
</section>
<section id="board-2">
<h4><a>news & moderation</a></h4>
<p>check back here for announcments and for when you need to claim awards or currency.</p>
<div class="v3skin8-lastPost">
<a>currency</a> was last posted in by <a>captain canuck</a> on <b>july 30th, 2021</b>.
</div>
</section>
<section id="board-3">
<h4><a>character creation</a></h4>
<p>here is where you post your applications and make your claims</p>
<div class="v3skin8-lastPost">
<a>currency</a> was last posted in by <a>captain canuck</a> on <b>july 30th, 2021</b>.
</div>
</section>
<section id="board-4">
<h4><a>spacecraft roster</a></h4>
<div class="v3skin8-lastPost">
<a>currency</a> was last posted in by <a>captain canuck</a> on <b>july 30th, 2021</b>.
</div>
</section>
<section id="board-5">
<h4><a>plotting</a></h4>
<p>no person is an island</p>
<div class="v3skin8-lastPost">
<a>currency</a> was last posted in by <a>captain canuck</a> on <b>july 30th, 2021</b>.
</div>
</section>
<section id="board-6">
<h4><a>development</a></h4>
<p>no person is an island</p>
<div class="v3skin8-lastPost">
<a>currency</a> was last posted in by <a>captain canuck</a> on <b>july 30th, 2021</b>.
</div>
<div class="subforums">
<a>solo</a>
<a>duo</a>
<a>group</a>
</div>
</section>
</div>
</div>
</div>
<script>
/*!
* jQuery Mousewheel 3.1.13
* Copyright OpenJS Foundation and other contributors
*/
( function( factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "jquery" ], factory );
} else if ( typeof exports === "object" ) {
// Node/CommonJS style for Browserify
module.exports = factory;
} else {
// Browser globals
factory( jQuery );
}
} )( function( $ ) {
var toFix = [ "wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll" ],
toBind = ( "onwheel" in window.document || window.document.documentMode >= 9 ) ?
[ "wheel" ] : [ "mousewheel", "DomMouseScroll", "MozMousePixelScroll" ],
slice = Array.prototype.slice,
nullLowestDeltaTimeout, lowestDelta;
if ( $.event.fixHooks ) {
for ( var i = toFix.length; i; ) {
$.event.fixHooks[ toFix[ --i ] ] = $.event.mouseHooks;
}
}
var special = $.event.special.mousewheel = {
version: "3.1.12",
setup: function() {
if ( this.addEventListener ) {
for ( var i = toBind.length; i; ) {
this.addEventListener( toBind[ --i ], handler, false );
}
} else {
this.onmousewheel = handler;
}
// Store the line height and page height for this particular element
$.data( this, "mousewheel-line-height", special.getLineHeight( this ) );
$.data( this, "mousewheel-page-height", special.getPageHeight( this ) );
},
teardown: function() {
if ( this.removeEventListener ) {
for ( var i = toBind.length; i; ) {
this.removeEventListener( toBind[ --i ], handler, false );
}
} else {
this.onmousewheel = null;
}
// Clean up the data we added to the element
$.removeData( this, "mousewheel-line-height" );
$.removeData( this, "mousewheel-page-height" );
},
getLineHeight: function( elem ) {
var $elem = $( elem ),
$parent = $elem[ "offsetParent" in $.fn ? "offsetParent" : "parent" ]();
if ( !$parent.length ) {
$parent = $( "body" );
}
return parseInt( $parent.css( "fontSize" ), 10 ) ||
parseInt( $elem.css( "fontSize" ), 10 ) || 16;
},
getPageHeight: function( elem ) {
return $( elem ).height();
},
settings: {
adjustOldDeltas: true, // see shouldAdjustOldDeltas() below
normalizeOffset: true // calls getBoundingClientRect for each event
}
};
$.fn.extend( {
mousewheel: function( fn ) {
return fn ? this.on( "mousewheel", fn ) : this.trigger( "mousewheel" );
},
unmousewheel: function( fn ) {
return this.off( "mousewheel", fn );
}
} );
function handler( event ) {
var orgEvent = event || window.event,
args = slice.call( arguments, 1 ),
delta = 0,
deltaX = 0,
deltaY = 0,
absDelta = 0;
event = $.event.fix( orgEvent );
event.type = "mousewheel";
// Old school scrollwheel delta
if ( "detail" in orgEvent ) {
deltaY = orgEvent.detail * -1;
}
if ( "wheelDelta" in orgEvent ) {
deltaY = orgEvent.wheelDelta;
}
if ( "wheelDeltaY" in orgEvent ) {
deltaY = orgEvent.wheelDeltaY;
}
if ( "wheelDeltaX" in orgEvent ) {
deltaX = orgEvent.wheelDeltaX * -1;
}
// Firefox < 17 horizontal scrolling related to DOMMouseScroll event
if ( "axis" in orgEvent && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
deltaX = deltaY * -1;
deltaY = 0;
}
// Set delta to be deltaY or deltaX if deltaY is 0 for backwards compatabilitiy
delta = deltaY === 0 ? deltaX : deltaY;
// New school wheel delta (wheel event)
if ( "deltaY" in orgEvent ) {
deltaY = orgEvent.deltaY * -1;
delta = deltaY;
}
if ( "deltaX" in orgEvent ) {
deltaX = orgEvent.deltaX;
if ( deltaY === 0 ) {
delta = deltaX * -1;
}
}
// No change actually happened, no reason to go any further
if ( deltaY === 0 && deltaX === 0 ) {
return;
}
// Need to convert lines and pages to pixels if we aren't already in pixels
// There are three delta modes:
// * deltaMode 0 is by pixels, nothing to do
// * deltaMode 1 is by lines
// * deltaMode 2 is by pages
if ( orgEvent.deltaMode === 1 ) {
var lineHeight = $.data( this, "mousewheel-line-height" );
delta *= lineHeight;
deltaY *= lineHeight;
deltaX *= lineHeight;
} else if ( orgEvent.deltaMode === 2 ) {
var pageHeight = $.data( this, "mousewheel-page-height" );
delta *= pageHeight;
deltaY *= pageHeight;
deltaX *= pageHeight;
}
// Store lowest absolute delta to normalize the delta values
absDelta = Math.max( Math.abs( deltaY ), Math.abs( deltaX ) );
if ( !lowestDelta || absDelta < lowestDelta ) {
lowestDelta = absDelta;
// Adjust older deltas if necessary
if ( shouldAdjustOldDeltas( orgEvent, absDelta ) ) {
lowestDelta /= 40;
}
}
// Adjust older deltas if necessary
if ( shouldAdjustOldDeltas( orgEvent, absDelta ) ) {
// Divide all the things by 40!
delta /= 40;
deltaX /= 40;
deltaY /= 40;
}
// Get a whole, normalized value for the deltas
delta = Math[ delta >= 1 ? "floor" : "ceil" ]( delta / lowestDelta );
deltaX = Math[ deltaX >= 1 ? "floor" : "ceil" ]( deltaX / lowestDelta );
deltaY = Math[ deltaY >= 1 ? "floor" : "ceil" ]( deltaY / lowestDelta );
// Normalise offsetX and offsetY properties
if ( special.settings.normalizeOffset && this.getBoundingClientRect ) {
var boundingRect = this.getBoundingClientRect();
event.offsetX = event.clientX - boundingRect.left;
event.offsetY = event.clientY - boundingRect.top;
}
// Add information to the event object
event.deltaX = deltaX;
event.deltaY = deltaY;
event.deltaFactor = lowestDelta;
// Go ahead and set deltaMode to 0 since we converted to pixels
// Although this is a little odd since we overwrite the deltaX/Y
// properties with normalized deltas.
event.deltaMode = 0;
// Add event and delta to the front of the arguments
args.unshift( event, delta, deltaX, deltaY );
// Clearout lowestDelta after sometime to better
// handle multiple device types that give different
// a different lowestDelta
// Ex: trackpad = 3 and mouse wheel = 120
if ( nullLowestDeltaTimeout ) {
window.clearTimeout( nullLowestDeltaTimeout );
}
nullLowestDeltaTimeout = window.setTimeout( nullLowestDelta, 200 );
return ( $.event.dispatch || $.event.handle ).apply( this, args );
}
function nullLowestDelta() {
lowestDelta = null;
}
function shouldAdjustOldDeltas( orgEvent, absDelta ) {
// If this is an older event and the delta is divisable by 120,
// then we are assuming that the browser is treating this as an
// older mouse wheel event and that we should divide the deltas
// by 40 to try and get a more usable deltaFactor.
// Side note, this actually impacts the reported scroll distance
// in older browsers and can cause scrolling to be slower than native.
// Turn this off by setting $.event.special.mousewheel.settings.adjustOldDeltas to false.
return special.settings.adjustOldDeltas && orgEvent.type === "mousewheel" &&
absDelta % 120 === 0;
}
} );
</script>
:root {
--pink: #EB388F;
--green: #45DB3D;
--black: #080808;
--white: #F0F0F0;
}
body {
padding: 0;
margin: 0;
font-size: 16px;
font-family: poppins;
background: #080808;
color: #F0F0F0;
overflow-y: hidden;
}
body::scrollbar {
height: 35px;
}
body::scrollbar-thumb {
background: var(--black);
border: solid var(--green);
border-width: 10px 25px;
}
body::scrollbar-track {
background: var(--green);
}
#v3skin8-drama {
padding-left: 150px;
}
#v3skin8-menu {
position: fixed;
left: 0;
top: 0;
z-index: 999;
pointer-events: none;
}
#v3skin8Menu-navi {
background: var(--pink);
width: 100vw;
padding: 5px 25px;
box-sizing: border-box;
pointer-events: auto!important;
display: grid;
grid: auto / 1fr 1fr;
height: 35px;
}
#v3skin8Menu-navi ul {
list-style-type: none;
margin: 0;
padding: 0;
place-self: end;
display: flex;
}
#v3skin8Menu-sidebar {
background: linear-gradient(var(--pink), var(--green) 90%);
height: 100vh;
width: 150px;
pointer-events: auto!important;
}
#v3skin8Menu-sidebar figure {
margin: 0;
padding: 25px;
}
#v3skin8Menu-sidebar figure span {
display: block;
font-size: 0.7rem;
text-transform: uppercase;
}
#v3skin8Menu-sidebar ul {
margin: 0;
padding: 0 25px;
list-style-type: none;
}
#wrapper {
padding-top: 35px;
display: grid;
grid: auto / auto-flow auto;
grid-auto-columns: calc(100vw - 150px);
grid-gap: 0;
height: calc(100vh - 70px);
}
#wrapper header {
box-sizing: border-box;
padding: 50px;
display: grid;
grid: auto / 60% 30%;
place-items: center start;
}
#wrapper header h1 {
grid-area: 1/1/2/2;
place-self: center start;
margin: 0;
font-size: 9.5rem;
font-family: "TAN-BUSTER", georgia;
line-height: 1.43em;
text-transform: uppercase;
position: relative;
background: linear-gradient(var(--pink) 20%, var(--green) 20%, var(--green) 70%, var(--pink) 70%);
background-clip: text;
text-fill-color: transparent;
height: 372px;
}
#wrapper header h1:before {
content: "retro";
display: block;
top: -5.1rem;
left: -1rem;
font-size: 10rem;
position: absolute;
text-stroke: 1.5px #F0F0F0;
color: transparent;
z-index: -1;
}
#wrapper header h1:after {
content: "future";
display: block;
bottom: -6.7rem;
left: -1rem;
font-size: 10rem;
position: absolute;
text-stroke: 1.5px #F0F0F0;
color: transparent;
z-index: -1;
}
#wrapper header h2 {
grid-area: 1/1/2/2;
margin: 0px 0 0 0;
place-self: center start;
text-transform: uppercase;
letter-spacing: 2px;
font: 200 1rem poppins, arial black;
}
.v3skin8-introduction {
background: linear-gradient(var(--pink),var(--green));
padding: 1px;
border-radius: 10px;
}
.v3skin8-introduction p {
background: var(--black);
padding: 25px;
margin: 0;
border-radius: 10px;
font: 0.9rem "poppins", arial;
}
#v3skin8-category-1 {
display: grid;
grid: 250px auto / 50% 50%;
background: linear-gradient(var(--pink) -4%, var(--green) 86%);
padding: 0 1px;
}
#v3skin8-category-1 h3 {
grid-column: 1/3;
margin: 0;
padding: 45px 50% 50px 50px;
box-sizing: border-box;
position: relative;
height: 250px;
}
#v3skin8-category-1 h3 span {
display: block;
position: relative;
z-index: 5;
background: linear-gradient(var(--pink) 20%, var(--green) 20%, var(--green) 70%, var(--pink) 70%);
background-clip: text;
text-fill-color: transparent;
font: 5rem/1em "TAN-BUSTER";
text-transform: uppercase;
height: 144px;
padding-top: 0.2em;
}
#v3skin8-category-1 .h3bg {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--black);
z-index: 1;
overflow: hidden;
}
#v3skin8-category-1 .h3bg:before {
content: "mission control";
font: 8rem/1em "TAN-BUSTER";
display: block;
top: 1.5rem;
left: -1rem;
position: absolute;
text-stroke: 1.5px #F0F0F0;
color: transparent;
z-index: -2;
padding-right: 50%;
box-sizing: border-box;
text-transform: uppercase;
}
#v3skin8-category-1 > * {
background: var(--black);
}
#v3skin8-category-1 section[id*="board-"] {
padding: 0 50px 25px;
border-bottom: 1px dashed var(--white);
}
#board-1, #board-4 {
grid-column: 1/3;
}
#board-1 {
border-top: 2px solid var(--white);
padding: 25px 50px 25px;
}
#board-1 ul {
margin: 0;
padding: 0;
display: flex;
list-style-type: none;
}
#board-1 ul li {
margin-right: 15px;
}
#board-2, #board-5 {
border-right: 1px dashed var(--white);
}
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
$(document).ready(function() {
$('html, body, *').mousewheel(function(e, delta) {
this.scrollLeft -= (delta * 50);
e.preventDefault();
});
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.