Template:Flavor Text/styles.css: Difference between revisions

From Archon Arcana - The KeyForge Wiki
mNo edit summary
mNo edit summary
 
Line 4: Line 4:
       display:grid;
       display:grid;
       grid-template-columns:200px auto;
       grid-template-columns:200px auto;
       border-top:1px dashed #a0a0a0;
       border-top:1px dashed #c0c0c0;
   }
   }


Line 13: Line 13:
   .flavor-text div:nth-of-type(4n-3), .flavor-text div:nth-of-type(4n-2) {
   .flavor-text div:nth-of-type(4n-3), .flavor-text div:nth-of-type(4n-2) {
background-color:#f0f0f0;
background-color:#f0f0f0;
border-bottom:1px dashed #a0a0a0;
border-bottom:1px dashed #c0c0c0;
   }
   }


   .flavor-text div:nth-of-type(4n-1), .flavor-text div:nth-of-type(4n) {
   .flavor-text div:nth-of-type(4n-1), .flavor-text div:nth-of-type(4n) {
background-color:#ffffff;
background-color:#ffffff;
border-bottom:1px dashed #a0a0a0;
border-bottom:1px dashed #c0c0c0;
   }
   }
}
}
Line 27: Line 27:
display:grid;
display:grid;
grid-template-columns:auto;
grid-template-columns:auto;
border-top:1px dashed #a0a0a0;
border-top:1px dashed #c0c0c0;
}
}
Line 41: Line 41:
   .flavor-text div:nth-of-type(4n-2) {
   .flavor-text div:nth-of-type(4n-2) {
     background-color:#f0f0f0;
     background-color:#f0f0f0;
     border-bottom:1px dashed #a0a0a0;
     border-bottom:1px dashed #c0c0c0;
     padding-bottom:8px;
     padding-bottom:8px;
   }
   }
Line 51: Line 51:
    
    
   .flavor-text div:nth-of-type(4n) {
   .flavor-text div:nth-of-type(4n) {
     border-bottom:1px dashed #a0a0a0;
     border-bottom:1px dashed #c0c0c0;
     background-color:#ffffff;
     background-color:#ffffff;
     padding-bottom:8px;
     padding-bottom:8px;

Latest revision as of 11:43, 22 January 2021

/* large screens */
@media screen and (min-width:601px) {
	.flavor-text {
      display:grid;
      grid-template-columns:200px auto;
      border-top:1px dashed #c0c0c0;
   }

  .flavor-text div {
    	padding:5px 3px 5px 3px;
   }

   .flavor-text div:nth-of-type(4n-3), .flavor-text div:nth-of-type(4n-2) {
	background-color:#f0f0f0;
	border-bottom:1px dashed #c0c0c0;
   }

   .flavor-text div:nth-of-type(4n-1), .flavor-text div:nth-of-type(4n) {
	background-color:#ffffff;
	border-bottom:1px dashed #c0c0c0;
   }
}

/* small screens */
@media screen and (max-width:600px) {
	.flavor-text {
		display:grid;
		grid-template-columns:auto;
		border-top:1px dashed #c0c0c0;
	}
	
	.flavor-text div {
    	padding:5px 3px 5px 3px;
    }
    
    .flavor-text div:nth-of-type(4n-3) {
    	padding-top:8px;
	  background-color:#f0f0f0;
   }
   
   .flavor-text div:nth-of-type(4n-2) {
   	  background-color:#f0f0f0;
   	  border-bottom:1px dashed #c0c0c0;
   	  padding-bottom:8px;
   }

   .flavor-text div:nth-of-type(4n-1) {
   	  padding-top:8px;
      background-color:#ffffff;
   }
   
   .flavor-text div:nth-of-type(4n) {
   	  border-bottom:1px dashed #c0c0c0;
   	  background-color:#ffffff;
   	  padding-bottom:8px;
   }

}