7x9000

Let's give them one last hurrah.

  • She/Her

“In your darkest hour, in the blackest night... think of me... and I will be with you. Always. For where else could I go? Who else could I love but you?”


Once, there was a link here. Now it is a memory. A memory of laughter and hope. A memory of good times. A memory that shall not be forgotten.

Stand tall, my friends. For our journeys shall never end.


If you still want to find me:
https://linktr.ee/7x9000


([ IMPORTANT ])
You do NOT have permission to
use any of my stuff. I am the sole
owner of Zorotek and related
things.


You must log in to comment.

in reply to @vurren's post:

use prechoster with a new style inlining template: https://cloudwithlightning.net/random/chostin/prechoster/

under html:

<div id="container">
  <div class="textbox neutral icon"><p></p></div>
  <div class="textbox neutral text">
    <p><span class="name">NAME:</span> text </p>
  </div>
</div>

<div class="credit"><a href="https://cohost.org/werewolfbarista/post/4598597-img-style-position">original</a>, <a href="https://cohost.org/vurren/post/4757010-div-id-container">edits</a> by @vurren, sprites by <a href="https://sprites.pmdcollab.org/">pmd sprite repository</a></div>

under css:

/*original code written by @nekobarista and @nekoraita! from here -> https://cohost.org/werewolfbarista/post/4598597-img-style-position

code modified for pmd usage by @vurren*/

* {
  padding: 0;
  margin: 0;
}

#container {
  display:flex;
  flex-direction: column;
  position: relative;
}

.textbox {
  padding: 15px;
  margin:  7px 0px;
  background-color: #202020;
  border-radius: 5px;
  box-sizing: content-box;
}

.neutral { 
  border: solid #6BD16D;
  border-style: ridge;
}

.male {
  border: solid #67A5F0;
  border-style: ridge;
}

.female {
  border: solid #FD60B7;
  border-style: ridge;
}

.text {

  border-width: 5px 7px;
  min-height: 60px;
}

.icon {
width: 30px;
height: 30px;
  border-width: 5px;
background-repeat: no-repeat;
background-size: cover;
background-image: url(https://raw.githubusercontent.com/PMDCollab/SpriteCollab/master/portrait/0778/Normal.png); /*put your icon from https://sprites.pmdcollab.org/#/ here!*/
}

p{
    text-align: justify; 
  font-size: 1.25rem; /*Use rem as font-size unit for accessibility!!! 1rem = ~16px*/
  line-height: 1.25rem; /*Alter this value to make text more or less vertically compact*/
  font-family: "VT323", monospace;
  color: #fff
}

p {
  font-family: "VT323", monospace;
  text-shadow: 2px 1px 0px black;
}

.name {
  color: #54D1CA;
}

.credit {
  font-size: .7rem;
  text-align: right;
}

100000% Brackle's tutorial was a huge help. Being able to write the css and html separately really cleans up the code a bunch. I'll copy my example code into the comments below my post too for people to use. 👍