CURRENT MISSION: Conclude the 2026 soyjak.party hack page, aswell as any pages relating to it, such as the Summer 2026 Crisis page.
Update Quotecord with any relevant info. See the blackboard for more info.

Template:Aspie/styles.css: Difference between revisions

From Soyjak Wiki, the free ensoyclopedia
Jump to navigationJump to search
MarketPliers (talk | contribs)
mNo edit summary
MarketPliers (talk | contribs)
No edit summary
Tag: Reverted
Line 25: Line 25:
display: flex;
display: flex;
position: relative;
position: relative;
justify-content: center;
}
}


.template-aspie .random-text {
.template-aspie .random-text {
display: block;
display: block;
clip-path: inset(0 30rem 0 0);
animation: text-reveal 7s linear forwards;
animation: text-reveal 3s linear forwards 2s;
width: 100%;
width: 100%;
}
}
Line 37: Line 35:
.template-aspie .train {
.template-aspie .train {
position: absolute;
position: absolute;
justify-self: center;
align-self: center;
align-self: center;
animation: train-animation 7s linear forwards;
animation: train-animation 7s linear forwards;
Line 44: Line 41:
@keyframes text-reveal {
@keyframes text-reveal {
   from {
   from {
     clip-path: inset(0 30rem 0 0);
     clip-path: inset(0 0 0 -20rem);
   }
   }
   to {
   to {
     clip-path: inset(0 0rem 0 0);
     clip-path: inset(0 0 0 40rem);
   }
   }
}
}
Line 53: Line 50:
@keyframes train-animation {
@keyframes train-animation {
   from {
   from {
     transform: translateX(-30rem);
     transform: translateX(-20rem);
   }
   }
   to {
   to {
     transform: translateX(30rem);
     transform: translateX(40rem);
   }
   }
}
}

Revision as of 19:08, 13 May 2026

.template-aspie {
	overflow: hidden;
	border: 4px ridge #ffd900;
	background: url("https://soyjakwiki.org/images/8/8c/Aspie.svg");
	background-size: 4rem;
	background-position: center;
	text-shadow: 0 1px 2px #523200;
	color: white;
	box-shadow: inset 0 0 5px 0 #523200;
}

.template-aspie a {
	color: #8dff99;
}

.template-aspie .line1 {
	font-size: 170%;
}

.template-aspie .line2 {
	width: 100%;
}

.template-aspie .random-text-wrapper {
	display: flex;
	position: relative;
}

.template-aspie .random-text {
	display: block;
	animation: text-reveal 7s linear forwards;
	width: 100%;
}

.template-aspie .train {
	position: absolute;
	align-self: center;
	animation: train-animation 7s linear forwards;
}

@keyframes text-reveal {
  from {
    clip-path: inset(0 0 0 -20rem);
  }
  to {
    clip-path: inset(0 0 0 40rem);
  }
}

@keyframes train-animation {
  from {
    transform: translateX(-20rem);
  }
  to {
    transform: translateX(40rem);
  }
}