344 lines
7.9 KiB
HTML
344 lines
7.9 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
|
||
|
|
<title>OC</title>
|
||
|
|
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<meta charset="utf-8">
|
||
|
|
|
||
|
|
<style>
|
||
|
|
/* The following CSS applies on all screen sizes */
|
||
|
|
|
||
|
|
/* Colors and fonts */
|
||
|
|
:root {
|
||
|
|
/* Fonts */
|
||
|
|
--bodyfont: Arial;
|
||
|
|
--headerfont: Arial;
|
||
|
|
|
||
|
|
/* Main colors */
|
||
|
|
--background:#5a094a; /* Page background */
|
||
|
|
--color:#2f152f;
|
||
|
|
--block:#f9f8f9; /* Background color for the grid blocks in the content */
|
||
|
|
|
||
|
|
--link:#5a094a;
|
||
|
|
--linkhover:#a649a9;
|
||
|
|
|
||
|
|
--h1:#2f152f;
|
||
|
|
--h2:#2f152f;
|
||
|
|
--h3:#2f152f;
|
||
|
|
--h4:#2f152f;
|
||
|
|
|
||
|
|
/* Sidebar colors */
|
||
|
|
--sidebar:#f9f8f9;
|
||
|
|
--sidebarcolor:#2f152f;
|
||
|
|
--title: #5a094a;
|
||
|
|
--sidebarlink: #5a094a;
|
||
|
|
--sidebarlinkhover:#a649a9;
|
||
|
|
|
||
|
|
/* Menu colors */
|
||
|
|
--menubg:#2c1a30;
|
||
|
|
--menucolor:#e0aee2;
|
||
|
|
--menubghover:#e0aee2;
|
||
|
|
--menucolorhover:#2c1a30;
|
||
|
|
}
|
||
|
|
|
||
|
|
* { margin:0; padding:0; }
|
||
|
|
|
||
|
|
/* Main body styling */
|
||
|
|
body {
|
||
|
|
background-image:url('https://i.ibb.co/nTwsnqn/stars5.gif');
|
||
|
|
background-attachment:fixed;
|
||
|
|
font:1rem sans-serif;
|
||
|
|
color:var(--color);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Rounded corners - feel free to get rid of this or change it */
|
||
|
|
|
||
|
|
main section, #sidebar-content, #main-footer {
|
||
|
|
border: 9px purple double;}
|
||
|
|
|
||
|
|
/* Sidebar styling */
|
||
|
|
|
||
|
|
#sidebar-content {
|
||
|
|
text-align:center;
|
||
|
|
background: var(--sidebar);
|
||
|
|
color: var(--sidebarcolor);
|
||
|
|
padding:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#sidebar-content header {
|
||
|
|
color:var(--title);
|
||
|
|
font:1.8em var(--headerfont);
|
||
|
|
margin:8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#sidebar-content p a {
|
||
|
|
color:var(--sidebarlink);
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
#sidebar-content p a:hover {
|
||
|
|
color:var(--sidebarlinkhover);
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon img {
|
||
|
|
border-radius:100%; /* This makes the icon a circle - feel free to remove or reduce for a rectangle or square */
|
||
|
|
max-width:150px; /* This can be changed to make the icon smaller; you might have to mess with the border radius too */
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Styling for the menu */
|
||
|
|
|
||
|
|
#main-menu {
|
||
|
|
font:1.1em var(--headerfont);
|
||
|
|
width:100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-menu ul {
|
||
|
|
list-style:none;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-menu li a {
|
||
|
|
padding:7px;
|
||
|
|
background:var(--menubg);
|
||
|
|
color:var(--menucolor);
|
||
|
|
text-decoration:none;
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-menu li a:hover, #main-menu li a:focus {
|
||
|
|
background: var(--menubghover);
|
||
|
|
color:var(--menucolorhover);
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Content styling */
|
||
|
|
|
||
|
|
main {
|
||
|
|
margin-top:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Styling for blocks */
|
||
|
|
|
||
|
|
main section, #main-footer {
|
||
|
|
padding:15px;
|
||
|
|
background:var(--block);
|
||
|
|
margin-bottom:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
main h1 {
|
||
|
|
font:1.8em var(--headerfont);
|
||
|
|
color:var(--h1);
|
||
|
|
}
|
||
|
|
|
||
|
|
main h2 {
|
||
|
|
font:1.5em var(--headerfont);
|
||
|
|
color:var(--h2);
|
||
|
|
}
|
||
|
|
|
||
|
|
main h3 {
|
||
|
|
font:1.3em var(--headerfont);
|
||
|
|
color:var(--h3);
|
||
|
|
}
|
||
|
|
|
||
|
|
main h4 {
|
||
|
|
font:1em var(--headerfont);
|
||
|
|
font-style:italic;
|
||
|
|
color:var(--h4);
|
||
|
|
}
|
||
|
|
|
||
|
|
p {
|
||
|
|
line-height:1.5;
|
||
|
|
margin:10px 0 10px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
main a {
|
||
|
|
color:var(--link);
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
main a:hover, main a:focus {
|
||
|
|
color:var(--linkhover);
|
||
|
|
transition:0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
main ul {
|
||
|
|
list-style-position: outside;
|
||
|
|
margin-left: 25px;
|
||
|
|
}
|
||
|
|
|
||
|
|
main ul li {
|
||
|
|
line-height:1.5;
|
||
|
|
}
|
||
|
|
|
||
|
|
main img {
|
||
|
|
max-width:100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
main input, textarea, select, button {
|
||
|
|
background: var(--block);
|
||
|
|
color: var(--color);
|
||
|
|
font: 1rem var(--bodyfont);
|
||
|
|
border: 1px solid;
|
||
|
|
padding: 8px;
|
||
|
|
margin: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-footer {
|
||
|
|
text-align:center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* The following CSS ONLY applies to mobile/small screens */
|
||
|
|
|
||
|
|
/* Container styling */
|
||
|
|
#container {
|
||
|
|
width: calc(100% - 20px);
|
||
|
|
padding:10px;
|
||
|
|
margin-top:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#sidebar-content {
|
||
|
|
width: calc(100% - 20px);
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-menu li {
|
||
|
|
margin-bottom:15px;
|
||
|
|
display:inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Skip to content button */
|
||
|
|
|
||
|
|
#skip a {
|
||
|
|
position:absolute;
|
||
|
|
display:inline-block;
|
||
|
|
left:0px;
|
||
|
|
top:-1000px;
|
||
|
|
overflow:hidden;
|
||
|
|
transition:top 0.5s ease;
|
||
|
|
background:var(--block);
|
||
|
|
color:var(--link);
|
||
|
|
z-index:1000;
|
||
|
|
padding:5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#skip a:focus {
|
||
|
|
top: 0;
|
||
|
|
transition:top 0.5s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* The following CSS ONLY applies to desktop/big screens */
|
||
|
|
|
||
|
|
@media screen and (min-width: 800px) {
|
||
|
|
#container {
|
||
|
|
max-width:950px;
|
||
|
|
width:90%;
|
||
|
|
margin:25px auto;
|
||
|
|
display:flex;
|
||
|
|
gap:20px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#sidebar {
|
||
|
|
flex: 1 1 calc(25% - 20px);
|
||
|
|
margin-top:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Remove or comment out this block if you don't want a sticky sidebar */
|
||
|
|
#sidebar-content {
|
||
|
|
position:sticky;
|
||
|
|
top:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Make menu links into a column */
|
||
|
|
|
||
|
|
#main-menu li {
|
||
|
|
display:block;
|
||
|
|
margin:0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-menu li a {
|
||
|
|
display:block;
|
||
|
|
border-bottom:1px solid;
|
||
|
|
}
|
||
|
|
|
||
|
|
main {
|
||
|
|
flex: 1 1 calc(75% - 30px);
|
||
|
|
display:flex;
|
||
|
|
flex-wrap:wrap;
|
||
|
|
gap:10px;
|
||
|
|
}
|
||
|
|
|
||
|
|
main section {
|
||
|
|
margin:0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#main-footer {
|
||
|
|
flex: 1 1 calc(100% - 40px);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Defining grid blocks */
|
||
|
|
|
||
|
|
.full { flex: 1 1 calc(100% - 40px);}
|
||
|
|
.half { flex: 1 1 calc(50% - 40px); }
|
||
|
|
.third { flex: 1 1 calc(33% - 40px); }
|
||
|
|
.twothird { flex: 1 1 calc(66% - 40px); }
|
||
|
|
.quarter { flex: 1 1 calc(25% - 40px); }
|
||
|
|
.threequarter { flex: 1 1 calc(75% - 40px); }
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<!-- Please don't remove the next 2 lines! -->
|
||
|
|
<div id="top"></div>
|
||
|
|
<div id="skip"><a href="#content">Skip to content</a></div>
|
||
|
|
|
||
|
|
<div id="container">
|
||
|
|
<div id="sidebar">
|
||
|
|
<div id="sidebar-content">
|
||
|
|
<!-- An image can go here if you'd like, or just delete this line if you don't. It doesn't matter what size it is as long as it's square. -->
|
||
|
|
<div class="icon"><img src="https://i.ibb.co/0RJtBSfc/Untitled1293-20250323234832.png" width="150px" alt="" /></div>
|
||
|
|
<header>Abstract Merp</header>
|
||
|
|
|
||
|
|
<!-- Navigation menu -->
|
||
|
|
<nav id="main-menu">
|
||
|
|
<ul>
|
||
|
|
<li><a href="/ocs">Directory Home</a></li>
|
||
|
|
<li><a href="/homepage">Home</a></li>
|
||
|
|
<li><a href="https://artfight.net/character/5679597.captain-abstract-merp-star-trek-flora-fauna">Artfight</a></li>
|
||
|
|
</ul>
|
||
|
|
</nav>
|
||
|
|
<p>AGE: 46<br>
|
||
|
|
RANK: U.S.S. Tree Sparrow - Captain<br>
|
||
|
|
IDENTITY: Cisgender Bisexual Woman (She/her)<br>
|
||
|
|
SPECIES: <a href="https://memory-alpha.fandom.com/wiki/Merp%27s_species">Merp's Species</a></p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Content area -->
|
||
|
|
<main id="content">
|
||
|
|
<!-- Section tags must be used for blocks -->
|
||
|
|
<section class="full">
|
||
|
|
The daughter of the first Merp fleet admiral in Starfleet, and a lover of animals. Extremely clumsy and awkward, Abstract Merp got her name because she only talks in abstract/poetic/nonsensical sentences, which T'Via translates into "normal" speech for as her best friend and first officer. Has a pet tortoise that lives on the bridge. She was a popular poet on her planet in her youth.<br><br>
|
||
|
|
Clover is her lover, though their relationship is secret, and her tortoise is named Velvet.
|
||
|
|
|
||
|
|
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<section class="full">
|
||
|
|
<h2>History</h2>
|
||
|
|
<p>Abstract became the Captain of the U.S.S. Tree Sparrow after a history of accidents, messups and misunderstandings all across her service. Considered an embarassment by Starfleet Command, but too connected to the admiralty to discharge or stick at a desk or low-level job, Abstract is given command of a scrapped starship model, given scrapped uniform designs and a crew full of fellow troublemakers and misfits in a gigantic effort to "clean things up" in the Starfleet world. However, Abstract takes a very long time to realize that she is unwanted due to her naivety.</p>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<section class="twothird">
|
||
|
|
<h2>Art</h2>
|
||
|
|
<img src="https://i.ibb.co/fd9Dqq8h/sized.png" width="300px"><img src="https://i.ibb.co/DHXDR8d9/Untitled1224-20250228213234.png" alt="Untitled1224-20250228213234" border="0" width="300px">
|
||
|
|
<img src="https://i.ibb.co/Xk7pMDQ5/resizeworkout.png" alt="resizeworkout" border="0" width="300px"><img src="https://i.ibb.co/LhbpZ55R/Untitled1414-20250510033709.png" alt="Untitled1414-20250510033709" border="0"width="300px"><img src="https://i.ibb.co/PvX0mChC/Untitled1212-20250226021346.png" alt="Untitled1212-20250226021346" border="0" width="500px">
|
||
|
|
|
||
|
|
</section>
|
||
|
|
|
||
|
|
</main>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|