You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							60 lines
						
					
					
						
							858 B
						
					
					
				
			
		
		
	
	
							60 lines
						
					
					
						
							858 B
						
					
					
				| .App { | |
|   text-align: center; | |
| } | |
| 
 | |
| .App-header { | |
|   display: flex; | |
|   flex-direction: column; | |
|   align-items: center; | |
|   justify-content: center; | |
|   font-size: calc(10px + 1.5vmin); | |
| } | |
| 
 | |
| .App-link { | |
|   color: #61dafb; | |
| } | |
| 
 | |
| @keyframes App-logo-spin { | |
|   from { | |
|     transform: rotate(0deg); | |
|   } | |
|   to { | |
|     transform: rotate(360deg); | |
|   } | |
| } | |
| 
 | |
| .characters { | |
|   list-style: none; | |
|   padding-left: 0; | |
| } | |
| 
 | |
| .characters li { | |
|   display: flex; | |
|   align-items: center; | |
|   border: solid 2px #d0d0d0; | |
|   border-radius: 0.2em; | |
|   padding: 0.5em 0.8em 0.5em 0.5em; | |
|   margin-bottom: 1em; | |
| } | |
| 
 | |
| .characters p { | |
|   max-width: none; | |
|   font-weight: bold; | |
|   margin: 0; | |
| } | |
| 
 | |
| .characters-thumb { | |
|   overflow: hidden; | |
|   flex-shrink: 0; | |
|   width: 2em; | |
|   height: 2em; | |
|   background-color: #e8e8e8; | |
|   padding: 0.5em; | |
|   margin-right: 0.5em; | |
| } | |
| 
 | |
| .characters-thumb img { | |
|   display: block; | |
|   width: 100%; | |
|   height: auto; | |
| }
 | |
| 
 |