296 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			CSS
		
	
	
	
			
		
		
	
	
			296 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			CSS
		
	
	
	
| small {
 | |
|   font-size: 0.5em;
 | |
| }
 | |
| 
 | |
| /* Parvus CSS */
 | |
| 
 | |
| :root {
 | |
|   --parvus-background-color: #161618;
 | |
|   --parvus-color: #f2f5f4;
 | |
|   --parvus-caption-color: #f2f5f4;
 | |
|   --parvus-btn-background-color: #F5A9B8;
 | |
|   --parvus-btn-color: #ffffff;
 | |
|   --parvus-btn-disabled-background-color: #a8c5db;
 | |
|   --parvus-btn-disabled-color: #161618;
 | |
| }
 | |
| 
 | |
| .parvus-trigger:has(img) .parvus-zoom__indicator {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| /*Terminal CSS */
 | |
| 
 | |
| .rect {
 | |
|   height: 1.3em;
 | |
|   fill: white;
 | |
| }
 | |
| 
 | |
| .animation-blink {
 | |
|   animation: cursor-blink 1.5s steps(2) infinite;
 | |
|   -webkit-animation: cursor-blink 1.5s steps(2) infinite;
 | |
| }
 | |
| 
 | |
| @keyframes cursor-blink {
 | |
|   0% {
 | |
|     opacity: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes cursor-blink {
 | |
|   0% {
 | |
|     opacity: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .palette-swatch {
 | |
|   height: 25px;
 | |
| }
 | |
| 
 | |
| .terminal-card {
 | |
|   transition: all 200ms ease-in;
 | |
|   box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
 | |
|   background-color: #252430;
 | |
|   border-color: #2f3347;
 | |
| }
 | |
| 
 | |
| .terminal-card:hover {
 | |
|   transition: all 200ms ease-in;
 | |
| }
 | |
| 
 | |
| .terminal-card-jax:hover {
 | |
|   border-color: #F5A9B8;
 | |
| }
 | |
| 
 | |
| .terminal-card-aidan:hover {
 | |
|   border-color: #93abbe;
 | |
| }
 | |
| 
 | |
| .terminal-card-jax .terminal-title {
 | |
|   font-weight: bold;
 | |
|   color: #F5A9B8;
 | |
| }
 | |
| 
 | |
| .terminal-card-aidan .terminal-title {
 | |
|   font-weight: bold;
 | |
|   color: #93abbe;
 | |
| }
 | |
| 
 | |
| .terminal-toolbar {
 | |
|   font-weight: bold;
 | |
|   letter-spacing: 1px;
 | |
|   background-color: #2f3347;
 | |
|   border-color: #2f3347;
 | |
|   transition: all 200ms ease-in;
 | |
| }
 | |
| 
 | |
| .terminal-card:hover .terminal-toolbar-jax {
 | |
|   background-color: #F5A9B8;
 | |
| }
 | |
| 
 | |
| .terminal-card:hover .terminal-toolbar-aidan {
 | |
|   background-color: #93abbe;
 | |
| }
 | |
| 
 | |
| .terminal-command {
 | |
| 
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .terminal-card:hover .terminal-command {
 | |
|   transition: all 250ms ease-in;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .terminal-card:hover .rect-hover {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .terminal-img {
 | |
|   margin-left:auto;
 | |
|   margin-right:auto;
 | |
| }
 | |
| 
 | |
| .terminal-img-jax {
 | |
|   max-width:200px;
 | |
| }
 | |
| 
 | |
| .terminal-img-aidan {
 | |
|   max-width:286px
 | |
| }
 | |
| 
 | |
| /* OC Site Config */
 | |
| 
 | |
| .img-invisible {
 | |
|   display: none !important;
 | |
| }
 | |
| 
 | |
| .character-image {
 | |
|   height: 500px;
 | |
|   border-radius: 15px;
 | |
|   border-width: 3px;
 | |
|   background-size: cover;
 | |
|   background-position: center;
 | |
|   background-repeat: no-repeat;
 | |
| }
 | |
| 
 | |
| .character-image-jax {
 | |
|   background-image: url(../img/Smile.png);
 | |
| }
 | |
| 
 | |
| .character-image-aidan {
 | |
|   background-image: url(../img/aidan.png);
 | |
| }
 | |
| 
 | |
| .decor-tr {
 | |
|   background-color: #a8c5db;
 | |
|   z-index: 10;
 | |
|   border-radius: 15px;
 | |
|   height: 40px;
 | |
|   width: 40px;
 | |
|   position: absolute;
 | |
|   right: -20px;
 | |
|   top: 30px;
 | |
| }
 | |
| 
 | |
| .decor-bl {
 | |
|   background-color: #f5a9b8;
 | |
|   z-index: 10;
 | |
|   border-radius: 15px;
 | |
|   height: 60px;
 | |
|   width: 60px;
 | |
|   position: absolute;
 | |
|   left: -20px;
 | |
|   bottom: 120px;
 | |
| }
 | |
| 
 | |
| .image-credit {
 | |
|   position: absolute;
 | |
|   top: 5px;
 | |
|   left: 10px;
 | |
|   letter-spacing: 2px;
 | |
| }
 | |
| 
 | |
| .image-credit-icon, .image-credit-icon a {
 | |
|   color: #42769E;
 | |
|   font-size: 20px;
 | |
|   border-radius: 15px;
 | |
| }
 | |
| 
 | |
| .image-credit-icon:hover, .image-credit-icon a:hover {
 | |
|   color: #f5a9b8;
 | |
| }
 | |
| .character-name {
 | |
|   font-size: 2.5em;
 | |
|   font-weight: bold;
 | |
|   letter-spacing: 1px;
 | |
| }
 | |
| 
 | |
| .character-info {
 | |
|   font-weight: bold;
 | |
|   letter-spacing: 1px;
 | |
|   border-radius: 15px;
 | |
|   font-size: 1em;
 | |
| }
 | |
| 
 | |
| .character-info-jax-light {
 | |
|   background-color: #42769E;
 | |
| }
 | |
| 
 | |
| .character-info-jax-dark {
 | |
|   background-color: #274A68
 | |
| }
 | |
| 
 | |
| .tab-title {
 | |
|   background-color: #42769E;
 | |
|   font-weight: bold;
 | |
|   letter-spacing: 1px;
 | |
|   border-radius: 15px;
 | |
|   font-size: 1.25em;
 | |
| }
 | |
| 
 | |
| .aesthetic-img {
 | |
|   border-radius: 15px;
 | |
|   height: 125px;
 | |
|   background-color: #274A68;
 | |
|   background-position: center;
 | |
|   background-size: cover;
 | |
| }
 | |
| 
 | |
| .link-song {
 | |
|   color: #42769E;
 | |
|   font-size: 1.2em;
 | |
| }
 | |
| 
 | |
| .tab-link {
 | |
|   font-size: 1.25em;
 | |
|   border-radius: 15px;
 | |
| }
 | |
| 
 | |
| .tab-link-light {
 | |
|   background-color: #42769E;
 | |
| }
 | |
| 
 | |
| .tab-link-dark {
 | |
|   background-color: #274A68;
 | |
| }
 | |
| 
 | |
| .card-info {
 | |
|   height: 500px;
 | |
|   border-radius: 15px;
 | |
|   border-width: 3px;
 | |
| }
 | |
| 
 | |
| .popup {
 | |
|   display: none;
 | |
|   position: fixed;
 | |
|   top: 50%;
 | |
|   left: 50%;
 | |
|   transform: translate(-50%, -50%);
 | |
|   padding: 20px;
 | |
|   background-color: #040404;
 | |
|   color: white;
 | |
|   border-radius: 10px;
 | |
|   border-color: #fff;
 | |
|   z-index: 1000;
 | |
| }
 | |
| 
 | |
| .palette {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   justify-content: center;
 | |
|   margin-bottom: 40px;
 | |
| }
 | |
| 
 | |
| .color, .color-download{
 | |
|   border-radius: 15px;
 | |
|   height: 100px;
 | |
|   text-align: center;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .tab-pane {
 | |
|   overflow-x: hidden; /* Hide horizontal scrollbar */
 | |
| }
 | |
| 
 | |
| .spoiler {
 | |
|   opacity: 0;
 | |
|   transition: all 100ms ease-in-out;
 | |
| }
 | |
| 
 | |
| .character-info:hover .spoiler {
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .test11 {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .mini-bg-box {
 | |
|   height: 5em;
 | |
|   background-size: cover;        /* Ensures the image covers the whole box */
 | |
|   background-position: center;   /* Keeps the image centered */
 | |
|   background-repeat: no-repeat;  /* Prevents tiling */
 | |
|   
 | |
| } |