95 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
header {
 | 
						|
    text-align: center;
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] {
 | 
						|
    /* max-height: 60ch; */
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] table {
 | 
						|
    font-size: 0.875rem;
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] thead {
 | 
						|
    font-size: smaller;
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] tr.booted {
 | 
						|
    background-color: rgba(255, 0, 0, 0.2);
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] tr small {
 | 
						|
    display: block;
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby="results-caption"] tbody td {
 | 
						|
    min-width: 10ch;
 | 
						|
}
 | 
						|
 | 
						|
td.empty {
 | 
						|
    color: GrayText;
 | 
						|
}
 | 
						|
 | 
						|
article details h3 {
 | 
						|
    display: inline;
 | 
						|
}
 | 
						|
 | 
						|
.member img {
 | 
						|
    margin-block-end: 1em;
 | 
						|
    display: inline-block;
 | 
						|
    max-width: 15rem;
 | 
						|
    height: auto;
 | 
						|
}
 | 
						|
 | 
						|
/* game list */
 | 
						|
.games article {
 | 
						|
    padding: 0.75rem;
 | 
						|
    display: flex;
 | 
						|
    flex-wrap: wrap;
 | 
						|
    justify-content: space-between;
 | 
						|
    gap: 0.5em;
 | 
						|
}
 | 
						|
 | 
						|
.games article+article {
 | 
						|
    border-block-start: 0.125em solid currentColor;
 | 
						|
}
 | 
						|
 | 
						|
.games article div:first-child {
 | 
						|
    flex: 1 1 21ch;
 | 
						|
    font-size: smaller;
 | 
						|
}
 | 
						|
 | 
						|
.games article span {
 | 
						|
    font-weight: bold;
 | 
						|
}
 | 
						|
 | 
						|
/* forms */
 | 
						|
input[name='keep-manuscript'][value='1']:checked~#manuscript,
 | 
						|
input[name='keep-manuscript'][value='1']:checked~#guidelines {
 | 
						|
    display: none;
 | 
						|
}
 | 
						|
 | 
						|
[aria-labelledby$="assignments-caption"] tbody th {
 | 
						|
    width: 90%;
 | 
						|
}
 | 
						|
 | 
						|
form mark {
 | 
						|
    font-variant: small-caps;
 | 
						|
}
 | 
						|
 | 
						|
#paypal-errors {
 | 
						|
    font-variant: small-caps;
 | 
						|
}
 | 
						|
 | 
						|
#paypal-errors:empty {
 | 
						|
    display: none;
 | 
						|
}
 | 
						|
 | 
						|
#paypal-button-container {
 | 
						|
    max-width: 20rem;
 | 
						|
    text-align: center;
 | 
						|
    background-color: white;
 | 
						|
    padding: 0.5em;
 | 
						|
    border-radius: 0.5em;
 | 
						|
    display: none;
 | 
						|
}
 |