Nothing Special   »   [go: up one dir, main page]

Page 12 - Junie

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 27

<!

DOCTYPE html>
<head>
<title>{Title}: members</title>

<link rel="shortcut icon" href="{Favicon}">


<link rel="alternate" type="application/rss+xml" href="{RSS}">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<!----
_________
/ \
| __ __ |
| |__| |__| | JUNIE MEMBERS PAGE BY SAGE / DEMONTIMES
| | https://demontimes.tumblr.com
| _ _ _ |
|_| |_| |_| |_|

SEARCH 'EDIT HERE'

CREDITS:
- phosphor icons / phosphoricons.com
- tippy.js tooltips / https://atomiks.github.io/tippyjs/
- google fonts / https://fonts.google.com/
- hide tutorial by lmthemes /
https://lmthemes.tumblr.com/post/30046967698/tutorial-05-hide-stuff-tutorial-in-
this

---->

<!---- JQUERY ---->


<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></
script>

<!----- GOOGLE FONTS ---->


<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?
family=Jost:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?
family=Montserrat+Alternates:wght@400;500;600;700;800&display=swap"
rel="stylesheet">

<!---- ICONS ---->


<script src="https://unpkg.com/phosphor-icons"></script>
<script src="https://unpkg.com/phosphor-icons@1.4.0"></script>

<!---- TOOLTIPS ---->


<script src="https://unpkg.com/popper.js@1"></script>
<script src="https://unpkg.com/tippy.js@5/dist/tippy-bundle.iife.js"></script>

<!----- CSS ----->

<style type="text/css">

/*--- EDIT HERE ----*/


:root {

/*---- COLORS -----*/


--background:#eee;
--content:#f8f8f8;
--title:#666;
--text:#888;
--link:#e6676b;
--accent:#f57e82;
--accent-two:#f38e78;
--accent-three:#f3ac8f;
--borders:#ddd;
--shadow:#edd1c6;
--gradient-one:#e6676b;
--gradient-two:#e67e67;
--gradient-three:#e29b7d;
--gradient-text:#fff;

/*---- VARIABLES ---*/


--border-radius:10px; /*-- 0px, 5px, or 10px recommended --*/
--glow: 0 0 10px; /*-- change to 0 if you don't want the glow --*/

/*---- FONT STYLE -----*/


--body-font:'Jost';
--title-font:'Montserrat Alternates';
/*-- to change the fonts: search the font name and replace with the name of the
font you want --*/
--font-size:16px;
}

/*----- TOOLTIPS -----*/

.tippy-tooltip.custom-theme {
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two));
color:var(--gradient-text);
text-shadow:var(--glow);
text-align:center;
text-transform:uppercase;
letter-spacing:.1em;
font-size:.95em;
border-radius:var(--border-radius);
margin-bottom:.5em;
}

/*--- SCROLLBAR ---*/


::-webkit-scrollbar {
width:5px;
height:5px;
background:var(--background);
}

::-webkit-scrollbar-track {
background:var(--background);
border-radius: 5px;
}

::-webkit-scrollbar-thumb {
background:linear-gradient(to bottom, var(--gradient-one), var(--gradient-
two));
border-radius: 5px;
}

/*--- TEXT SELECTION ---*/


::-moz-selection { /* Code for Firefox */
color:var(--gradient-text);
background:var(--accent);
}

::selection {
color:var(--gradient-text);
background:var(--accent);
}

/*----- BASIC STYLING -----*/

body {
font-family: var(--body-font), sans-serif;
font-size: var(--font-size);
color: var(--text);
background:var(--background);
line-height:140%;
word-wrap: break-word;
letter-spacing:.04em;
margin:0;
padding:0;
transition:.5s;
}

a {
color:var(--link);
text-decoration: none;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}

a:hover {
color: var(--accent);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}

#hua {
display: inline-block;
position: relative;
}

#hua:after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: var(--link);
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}

#hua:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}

blockquote {
border-left:2px solid var(--borders);
padding-left:.75em;
margin-left:1em;
}

li {list-style-type:circle;}
li::marker {color:var(--accent)}

h1, h1 a, h2, h3, h4, h5 {


font-family:var(--title-font), sans-serif;
letter-spacing:.1em;
color:var(--title);
}

h1 {font-size:1.3em;}
h2 {font-size:1.2em;}
h3 {font-size:1.1em;}
h4 {font-size:1.05em;}
h5 {font-size:1.025em;}
h1 a:hover {color:var(--accent);}

h4 {margin:0 0 1em 0; text-align:center;}


h5 {margin:0; padding:0;}

small {font-size: 0.95em;}


big {font-size: 1.1em;}

hr {
height: 1px;
border: none;
box-shadow: none;
background-color: var(--borders);
}

pre {
line-height: inherit;
font-size: inherit;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}

b, strong {
color:var(--title);
font-weight:800;
}

b a:hover {
color:var(--accent);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}

.tmblr-iframe-compact .tmblr-iframe--unified-controls {
z-index: 999999999!important;
margin-top:60px;
opacity:0;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.tmblr-iframe-compact .tmblr-iframe--unified-controls:hover {
opacity:1;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

/*---- HEADER ----*/

header {
position:fixed;
top:0;
left:300px;
right:0;
height:50px;
padding:.25em 1em .25em 1em;
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
display:flex;
align-items:center;
justify-content:space-between;
gap:1em;
z-index:999;
}

.topicon {
display:flex;
align-items:center;
gap:.5em;
}

.topicon img {
width:2.5em;
height:2.5em;
padding:4px;
border-radius:100%;
background:var(--accent);
box-shadow:2px 8px 8px rgba(0,0,0,.1);
}

.topicon b {
font-family:var(--title-font), sans-serif;
color:var(--gradient-text);
letter-spacing:.1em;
font-size:1.1em;
}

nav {
display:flex;
justify-content:center;
align-items:center;
gap:1em;
}

nav .topnav, nav #totop {


display:flex;
justify-content:center;
align-items:center;
padding:2px;
border-radius:100%;
background:rgba(255,255,255,.25);
box-shadow:2px 8px 8px rgba(0,0,0,.1);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

nav a {
display:flex;
justify-content:space-between;
align-items:center;
gap:1em;
padding:.5em;
border-radius:100%;
}

nav i {
font-size:1.4em;
color:var(--gradient-text);
text-shadow:var(--glow)
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.topnav:hover, #totop:hover {
box-shadow:2px 5px 8px transparent;
transform:scale(.95);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

#totop:hover i {
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
animation-iteration-count:1;
-webkit-animation-iteration-count:1;
animation-name: totop;
-moz-animation-name: totop;
}

#totop a {cursor:help;}

@keyframes totop {
0% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
18% {
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px)
}
36% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
54% {
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px)
}
82% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
100% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
}

/*--- CREDIT: DO NOT TOUCH ---*/

.credit {
z-index:999999;
}

.credit {
padding:2px;
border-radius:100%;
background:var(--accent-three);
box-shadow:2px 8px 8px rgba(0,0,0,.1);
display:flex;
justify-content:center;
align-items:center;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.credit i {
font-size:1.5em;
color:var(--gradient-text);
text-shadow:var(--glow);
}

.credit:hover {
transform:scale(1.05);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
.credit:hover i {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
animation-iteration-count:infinite;
-webkit-animation-iteration-count:infinite;
animation-name: bounce;
-moz-animation-name: bounce;
}

.credit a {
display:flex;
justify-content:center;
align-items:center;
gap:1em;
padding:.5em;
}

@keyframes bounce {
0% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
25% {
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px)
}
50% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
75% {
-webkit-transform: translateY(-3px);
-ms-transform: translateY(-3px);
transform: translateY(-3px)
}
100% {
-webkit-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px)
}
}

/*----- CONTAINERS -----*/

main {
position: relative;
width:90%;
margin:80px auto 2em auto;
}

section {
display:flex;
justify-content:flex-end;
flex-wrap:wrap;
gap:1em;
}

.sidepanel {
position:fixed;
top:0;
left:0;
bottom:0;
width:300px;
overflow:auto;
padding:1em 0 1em 0;
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;
gap:1em;
background:var(--content);
}

article {
width:calc(100% - 300px - 2em);
position:relative;
padding:1em;
border-radius:var(--border-radius);
background:var(--content);
display:flex;
flex-direction:column;
gap:.5em;
}

/*---- BASICS ----*/

.heading {
width:calc(100% - 2em);
display:flex;
justify-content:space-between;
align-items:center;
padding:.4em 1em .4em 1em;
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
border-radius:30px;
margin-bottom:.5em;
}

.heading i {
font-size:1.4em;
color:var(--gradient-text);
text-shadow:var(--glow);
}

.heading span {
font-family:var(--title-font), sans-serif;
color:var(--gradient-text);
font-size:1.1em;
letter-spacing:.1em;
font-weight:600;
}

.subheading {
font-family:var(--title-font), sans-serif;
color:var(--title);
letter-spacing:.1em;
font-weight:600;
margin-top:.25em;
}

.sidedesc a, .sidestats a, .sidestatus a {


display:inline-block;
position:relative;
border-bottom:2px solid var(--borders);
}

.sidedesc a:after, .sidestats a:after, .sidestatus a:after {


content: '';
position:absolute;
width:100%;
transform:scaleX(0);
height:2px;
bottom:-2px;
left:0;
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
transform-origin:middle;
transition: transform 0.25s ease-out;
}
.sidedesc a:hover:after, .sidestats a:hover:after, .sidestatus a:hover:after {
transform: scaleX(1);
transform-origin: middle;
}

/*--- SIDE PANEL CONT'D ---*/

.sidepanel .subtitle {
width:100%;
font-family:var(--title-font), sans-serif;
font-size:1.2em;
color:var(--title);
letter-spacing:.1em;
font-weight:600;
padding-bottom:.25em;
border-bottom:1px solid var(--borders);
}

.sidedesc {
width:calc(100% - 2em);
display:flex;
flex-direction:column;
align-items:center;
}

.sidedesc #text {
padding:0 1em 0 1em;
text-align:center;
}
.sidedesc #text h1 {margin-bottom:.25em;}

.sideimg {
width:150px;
height:150px;
padding:4px;
border-radius:100%;
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
box-shadow:2px 8px 8px var(--shadow);
}
.sideimg img {
width:150px;
height:150px;
border-radius:100%;
object-fit:cover;
}

.sideicon {
width:90px;
height:90px;
padding:4px;
border-radius:100%;
background:linear-gradient(to right, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
}
.sideicon img {
width:90px;
height:90px;
border-radius:100%;
}

.sidestats {
width:calc(100% - 2em);
padding:0 1em 0 1em;
display:flex;
flex-direction:column;
gap:.75em;
}

.sidestats li {
display:flex;
justify-content:center;
align-items:center;
gap:1em;
}

.sidestats b {
width:28%;
text-align:center;
font-size:1.5em;
color:var(--accent);
text-shadow:2px 2px 1px var(--shadow);
}

.sidestats span {width:72%; color:var(--text);}

.sidestatus {
width:calc(100% - 2em);
padding:0 1em 0 1em;
display:flex;
flex-direction:column;
gap:.5em;
}

.sidestatus li {
margin-left:1.5em;
display:flex;
align-items:center;
gap:1em;
}

.sidestatus i {
font-size:1.6em;
color:var(--accent);
text-shadow:2px 2px 1px var(--shadow);
}
.sidestatus li.off i {
color:var(--borders);
text-shadow:none;
}

.sidestatus b {font-weight:normal; color:var(--text);}

.sidelinks {
width:calc(100% - 2em);
padding:0 1em 0 1em;
display:flex;
flex-direction:column;
gap:.5em;
}

.sidelinks a {
display:flex;
justify-content:space-between;
align-items:center;
gap:1em;
padding:.25em 1em .25em 1em;
border-radius:30px;
background:var(--content);
border:2px solid var(--link);
}

.sidelinks i {
font-size:1.3em;
color:var(--link);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.sidelinks span {
letter-spacing:.1em;
color:var(--link);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.sidelinks a:hover {background:var(--link);}


.sidelinks a:hover i {
color:var(--content);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
.sidelinks a:hover i:last-of-type {margin-right:1em;}
.sidelinks a:hover span {
color:var(--content);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

/*--- ADMINS ---*/

.admins {
width:100%;
display:flex;
justify-content:space-evenly;
flex-wrap:wrap;
gap:1em;
}

.admin {
position:relative;
width:250px;
display:flex;
flex-direction:column;
gap:.25em;
}

.adminimg {
position:relative;
width:250px;
height:250px;
padding:2px;
border-radius:var(--border-radius);
background:linear-gradient(to top, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
}

.adminimg img {
width:250px;
height:250px;
object-fit:cover;
border-radius:var(--border-radius);
}

.adminname {
width:250px;
display:flex;
justify-content:space-between;
align-items:center;
gap:.5em;
}

.adminname .name {
font-family:var(--title-font), sans-serif;
color:var(--title);
font-size:1.1em;
font-weight:600;
text-shadow:2px 2px 1px var(--shadow);
}

a.cthrough {cursor:help;}
.dropdown i {
font-size:1.4em;
color:var(--gradient-text);
padding:.1em;
text-shadow:var(--glow);
border-radius:100%;
background:linear-gradient(to top, var(--accent), var(--accent-two), var(--
accent-three));
}

.admins .sub {
position:absolute;
top:2px;
left:2px;
bottom:2px;
right:2px;
width:calc(250px - 2em);
height:calc(250px - 2em);
display:flex;
flex-direction:column;
justify-content:space-between;
gap:.5em;
padding:1em;
border-radius:var(--border-radius);
background:linear-gradient(to top, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
z-index:99;
}

.admins .sub #subtitle {


font-family:var(--title-font), sans-serif;
color:var(--gradient-text);
text-align:center;
padding-bottom:.25em;
border-bottom:1px solid rgba(255,255,255,.1);
}

.admins .sub #text {


text-align:center;
color:var(--gradient-text);
}

.admins .sub #sublinks {


display:flex;
justify-content:center;
align-items:center;
gap:.5em;
}

.admins #sublinks i {
font-size:1.2em;
color:var(--gradient-text);
padding:.4em;
border-radius:100%;
background:var(--accent);
text-shadow:var(--glow);
box-shadow:2px 2px 2px rgba(0,0,0,.1);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

.admins #sublinks a:hover i {


transform:scale(.95);
box-shadow:none;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

/*--- STAFF ---*/

.staff-wrap {
width:100%;
display:flex;
justify-content:space-evenly;
flex-wrap:wrap;
gap:1em;
}

.staff {
position:relative;
width:200px;
display:flex;
flex-direction:column;
gap:.25em;
}

.staffimg {
position:relative;
width:200px;
height:200px;
padding:2px;
border-radius:var(--border-radius);
background:linear-gradient(to top, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
}

.staffimg img {
width:200px;
height:200px;
object-fit:cover;
border-radius:var(--border-radius);
}

.staffname {
width:200px;
display:flex;
justify-content:space-between;
align-items:center;
gap:.5em;
}

.staffname .name {
font-family:var(--title-font), sans-serif;
color:var(--title);
font-size:1.1em;
font-weight:600;
text-shadow:2px 2px 1px var(--shadow);
}

a.cthrough {cursor:help;}
.dropdown i {
font-size:1.4em;
color:var(--gradient-text);
padding:.1em;
text-shadow:var(--glow);
border-radius:100%;
background:linear-gradient(to top, var(--accent), var(--accent-two), var(--
accent-three));
}

.staff .sub {
position:absolute;
top:2px;
left:2px;
bottom:2px;
right:2px;
width:calc(200px - 2em);
height:calc(200px - 2em);
display:flex;
flex-direction:column;
justify-content:space-between;
gap:.5em;
padding:1em;
border-radius:var(--border-radius);
background:linear-gradient(to top, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
z-index:99;
}

.staff .sub #subtitle {


font-family:var(--title-font), sans-serif;
color:var(--gradient-text);
text-align:center;
padding-bottom:.25em;
border-bottom:1px solid rgba(255,255,255,.1);
}

.staff .sub #text {


text-align:center;
color:var(--gradient-text);
}

.staff .sub #sublinks {


display:flex;
justify-content:center;
align-items:center;
gap:.5em;
}

.staff #sublinks i {
font-size:1.2em;
color:var(--gradient-text);
padding:.4em;
border-radius:100%;
background:var(--accent);
text-shadow:var(--glow);
box-shadow:2px 2px 2px rgba(0,0,0,.1);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
.staff #sublinks a:hover i {
transform:scale(.95);
box-shadow:none;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

/*--- MEMBERS ---*/

.members {
width:100%;
display:flex;
justify-content:space-evenly;
flex-wrap:wrap;
gap:.5em;
}

.member {
position:relative;
width:23.5%;
display:flex;
align-items:center;
gap:.5em;
}

.memberimg {
width:4em;
height:4em;
padding:2px;
border-radius:100%;
background:linear-gradient(to top, var(--gradient-one), var(--gradient-two),
var(--gradient-three));
}
.memberimg img {
width:4em;
height:4em;
border-radius:100%;
object-fit:cover;
}

a.membername {
display:flex;
flex-direction:column;
align-items:flex-start;
text-align:left;
line-height:120%;
}

.membername .name {
font-family:var(--title-font), sans-serif;
color:var(--title);
font-weight:600;
text-shadow:2px 2px 1px var(--shadow);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
.membername .namesub {
color:var(--text);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

a.membername:hover .name {
color:var(--accent);
text-shadow:none;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}
a.membername:hover .namesub {
color:var(--title);
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
}

/*---- RESPONSIVENESS ---*/

@media only screen and (max-width: 1000px) {


.tmblr-iframe-compact .tmblr-iframe--unified-controls {display:none;!important;}

.admin {width:200px;}
.adminimg {width:200px;height:200px;}
.adminimg img {width:200px;height:200px;}
.adminname {width:200px;}
.admin .sub {width:calc(200px - 2em); height:calc(200px - 2em);}

.member {width:49%;}

@media only screen and (max-width: 825px) {


header {left:0;}
article {width:100%;}
.sidepanel {display:none;}

tumblr_controls, .tmblr-iframe{display:none!important;}
}

@media only screen and (max-width: 600px) {


.topicon img {display:none;}
}

@media only screen and (max-width: 500px) {


.topnav:not(:first-child) {display:none;}
.members {justify-content:flex-start;}
}

{CustomCSS}

</style>
</head>

<!----- HTML ----->

<body>

<main> <!-- main container -->

<!--- EDIT HERE: HEADER

- by default the header will show your icon, page title, and links
- feel free to change the links/icons & the title/icon img if you want

--->
<header>
<div class="topicon">
<img src="{portraiturl-128}">
<b>members</b>
</div>
<nav>
<div class="topnav"><a title="home" href="/"><i
class="ph-house"></i></a></div>
<div class="topnav"><a title="contact" href="/ask"><i class="ph-chats-
circle"></i></a></div>
<div class="topnav"><a title="archive" href="/archive"><i class="ph-
archive"></i></a></div>

<!-- TO TOP BUTTON -->


<div id="totop"><a href="#top" target="_self"><i title="back to top"
class="ph-arrow-up"></i></a></div>
</nav>

<!--- CREDIT: DO NOT TOUCH --->


<div class="credit"><a title="junie page by sage"
href="https://demontimes.tumblr.com"><i class="ph-ghost"></i></a></div>
</header><!-- header ends -->

<section><!-- section -->

<div class="sidepanel">
<div class="sidedesc">

<!-- EDIT HERE: SIDE IMG AND DESCRIPTION

- replace the image url below with your image url, make sure it stays between the
""

*if you want your icon here instead of a different image, replace with the
following line:
<div class="sideicon"><img src="{PortraitURL-128}"></div>
-->
<!-- *for icon instead of image: replace from here --><div
class="sideimg"><img
src="https://64.media.tumblr.com/f82641e0e8a74ee3f7c70ecfb8c2d640/2942418c550d8a9e-
ba/s2048x3072/b13ffbfb754fee55cc6cd9d43410b97c8160a25d.png"></div><!-- *to here -->

<div id="text"><!-- all text below this line -->


<h1>junie</h1>
this is a members/character page made to go with both <a
href="/post/686464195842211840/teyana-fansite-theme-by-sage-static-
preview">teyana</a> & <a href="/post/685608005883101184/tangerine-theme-by-sage-
static-preview-code">tangerine</a>
</div><!-- #text / all text above this line -->
</div><!-- .sidedesc -->

<!-- EDIT HERE: SIDE STATS


- make sure the number is wrapped in <b></b> and your text is wrapped in
<span></span>
-->
<div class="sidestats">
<div class="subtitle">stats</div>
<!-- all stats below this line -->
<li><b>3</b><span>admins</span></li>
<li><b>4</b><span>staff</span></li>
<li><b>52</b><span>members</span></li>
</div><!-- .sidestats / all stats above this line -->

<!-- EDIT HERE: SIDE STATUSES


- do not delete '-fill'

TOGGLE OFF FORMAT:


<li class="off"><i class="ph-toggle-left-fill"></i><b>your text
here</b></li>

TOGGLE ON FORMAT:
<li><i class="ph-toggle-right-fill"></i><b>your text here</b></li>
-->
<div class="sidestatus">
<div class="subtitle">status</div>
<!-- all statuses below this line -->
<li class="off"><i class="ph-toggle-left-fill"></i><b>staff apps are
closed</b></li>
<li><i class="ph-toggle-right-fill"></i><b>open for members</b></li>
<li><i class="ph-toggle-right-fill"></i><b>accepting affiliates</b></li>
</div><!-- .sidestatus / all statuses above this line -->

<!-- EDIT HERE: LINKS


LINK FORMAT:
<a href="link url here"><span>link name here</span> <i class="ph-caret-
right"></i></a>

-->
<div class="sidelinks">
<div class="subtitle">links</div>
<a href="/"><span>link name</span> <i class="ph-caret-right"></i></a>
<a href="/"><span>link name</span> <i class="ph-caret-right"></i></a>
<a href="/"><span>link name</span> <i class="ph-caret-right"></i></a>
</div>

</div><!-- side panel ends -->


<!--- ADMINS / read more in the post --->
<article>
<div class="heading"><span>admins</span><i class="ph-flower-lotus"></i></div>
<div class="admins"><!-- all admins below this line -->

<!-- admin -->


<div class="admin">
<div class="adminimg"><img
src="https://64.media.tumblr.com/93f8cb9f7febd7d9b5b7bfa7bb997c4a/b6c29d4ce381faa2-
53/s540x810/c2748fe4c282ab66fa3234d0eed5514c9d092f59.pnj">
</div>
<div class="adminname">
<div class="name">admin name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .adminname -->
</div><!-- .admin -->

<!-- admin -->


<div class="admin">
<div class="adminimg"><img
src="https://64.media.tumblr.com/9f06eedb0a96ade93249d10bfe4d6317/b6c29d4ce381faa2-
3d/s540x810/941c52f28244900568bcc2a9b2817c574bd0de38.pnj">
</div>
<div class="adminname">
<div class="name">admin name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .adminname -->
</div><!-- .admin -->

<!-- admin -->


<div class="admin">
<div class="adminimg"><img
src="https://64.media.tumblr.com/f956e04836b8765f92c13565ac914c3d/b6c29d4ce381faa2-
b3/s540x810/639c0fe350cddfb3bd2c7e60a01d72e1dfbfb682.pnj">
</div>
<div class="adminname">
<div class="name">admin name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .adminname -->
</div><!-- .admin -->

</div><!-- .admins / all admins above this line -->


</article>

<!-- STAFF / read more in the post -->


<article>
<div class="heading"><span>staff</span><i class="ph-moon-stars"></i></div>
<div class="staff-wrap"><!-- all staff below this line -->

<!-- staff -->


<div class="staff">
<div class="staffimg"><img
src="https://64.media.tumblr.com/56006d3ac9e2ded901785609f7374528/b6c29d4ce381faa2-
fd/s540x810/6fb07180bf79525123b3d484a470b646608e99fa.pnj">
</div>
<div class="staffname">
<div class="name">staff name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .staffname -->
</div><!-- .staff -->

<!-- staff -->


<div class="staff">
<div class="staffimg"><img
src="https://64.media.tumblr.com/a988b7a1f6f77921c13034bb424ea591/121993c594cd7392-
86/s500x750/97cddca261c2f448045e780d017feb8ee2a49c52.pnj">
</div>
<div class="staffname">
<div class="name">staff name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .staffname -->
</div><!-- .staff -->

<!-- staff -->


<div class="staff">
<div class="staffimg"><img
src="https://64.media.tumblr.com/7cbbc758447b8ade70c8ca4051523b79/b6c29d4ce381faa2-
41/s500x750/9cbd9bb7eff7d60ec91c1ff2accc6185705fbce5.pnj">
</div>
<div class="staffname">
<div class="name">staff name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .staffname -->
</div><!-- .staff -->

<!-- staff -->


<div class="staff">
<div class="staffimg"><img
src="https://64.media.tumblr.com/5d8450d570c858cef34bd1b231b0dab6/b6c29d4ce381faa2-
3e/s500x750/1d2aabc544126cbb23fa5e3f103e7bff38eb9a15.pnj">
</div>
<div class="staffname">
<div class="name">staff name</div>
<div class="dropdown"><a title="more info" href="#"
class="cthrough"><i class="ph-info"></i></a>
<div class="sub">
<div id="subtitle">@name</div>
<div id="text">this is a description, put whatever you
want here!</div>
<div id="sublinks">
<a title="link" href="/"><i class="ph-user-fill"></i></a>
<a title="link" href="/"><i class="ph-heart-fill"></i></a>
</div><!-- #sublinks -->
</div><!-- .sub -->
</div><!-- .dropdown -->
</div><!-- .staffname -->
</div><!-- .staff -->

</div><!-- .staff-wrap / all staff above this line -->


</article>
<!--- MEMBERS --->
<article>
<div class="heading"><span>members</span><i class="ph-butterfly"></i></div>
<div class="members"><!-- all members below this line -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/fd79bcc407ead8cd05b870f3cb86f628/b6c29d4ce381faa2-
19/s540x810/82fdb294279db72d9307856de60114518f59b37e.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/fd79bcc407ead8cd05b870f3cb86f628/b6c29d4ce381faa2-
19/s540x810/82fdb294279db72d9307856de60114518f59b37e.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/44677deed9744534bfaf4b447264b301/121993c594cd7392-
22/s1280x1920/2f8933ce7898eb0f9806955d6cea65de225a6eed.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/44677deed9744534bfaf4b447264b301/121993c594cd7392-
22/s1280x1920/2f8933ce7898eb0f9806955d6cea65de225a6eed.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/e00355939540c8e6c695dd588db6df2e/b6c29d4ce381faa2-
b6/s540x810/f051c522dc13ae5651c3379dca0a8b9a573eecb8.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/e00355939540c8e6c695dd588db6df2e/b6c29d4ce381faa2-
b6/s540x810/f051c522dc13ae5651c3379dca0a8b9a573eecb8.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/ce56d9fe47d58065a7e441d9f665e8ae/b6c29d4ce381faa2-
16/s1280x1920/dfb702894be1371ba1176af6cf37d5a48ad8470e.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

<!-- member -->


<div class="member">
<div class="memberimg"><img
src="https://64.media.tumblr.com/ce56d9fe47d58065a7e441d9f665e8ae/b6c29d4ce381faa2-
16/s1280x1920/dfb702894be1371ba1176af6cf37d5a48ad8470e.pnj">
</div>
<a class="membername" href="/">
<div class="name">name</div>
<div class="namesub">subtitle</div>
</a><!-- .membername -->
</div><!-- .member -->

</div><!-- .members / all members above this line -->


</article>

</section><!-- section ends -->

</main><!-- end of main container -->

<script>

// tooltips
tippy('[title]', {
theme: 'custom',
arrow: false,
followCursor: true,
delay: 100,
placement: 'bottom',
offset: "40, 10",
zIndex: 9999999999,
maxWidth: 400,

content(reference) {
const title = reference.getAttribute('title');
reference.removeAttribute('title');
return title;
},
});

//scroll to top
$(document).ready(function(){
$('#totop a').click(function(){
$('html, body').animate({scrollTop : 0},400);
return false;
});
});

//drop downs
$(document).ready(function() {
$(".sub").hide();
$(".cthrough").click(function(event){
$(this).next(".sub").slideToggle(500);
event.preventDefault();
$(this).toggleClass('upside', 500);
});
});

</script>

</body>
</html>

You might also like