70 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| * {
 | |
|   font-family: DejaVu;
 | |
| }
 | |
| 
 | |
| #window {
 | |
|   all: unset;
 | |
|   background-color: rgba(33, 33, 33, 0.76); /* Matches #212121BB */
 | |
|   border-radius: 0;
 | |
|   padding-top: 3rem;
 | |
| }
 | |
| 
 | |
| #window #outer-box {
 | |
| }
 | |
| 
 | |
| #window #outer-box #input {
 | |
|   background-color: rgba(32, 32, 32, 0.6);
 | |
|   color: #f2f2f2;
 | |
|   border-bottom: 2px solid rgba(214, 174, 0, 1);
 | |
|   font-size: 1rem;
 | |
|   margin: 1rem 50rem 2rem;
 | |
| }
 | |
| 
 | |
| #window #outer-box #input:focus, #window #outer-box #input:focus-visible, #window #outer-box #input:active {
 | |
|   all: unset;
 | |
|   background-color: rgba(32, 32, 32, 0.6);
 | |
|   color: #f2f2f2;
 | |
|   border-bottom: 2px solid rgba(214, 174, 2, 1);
 | |
|   font-size: 1rem;
 | |
| }
 | |
| 
 | |
| #window #outer-box #scroll #inner-box {
 | |
|   padding: 0 20rem;
 | |
| 
 | |
| }
 | |
| 
 | |
| #window #outer-box #scroll #inner-box #entry {
 | |
|   color: #fff;
 | |
|   background-color: rgba(32, 32, 32, 0.1);
 | |
|   margin: 2em;
 | |
|   padding: 1em;
 | |
|   border-radius: 0.5rem;
 | |
|   border-bottom: 5px solid rgba(32, 32, 32, 0.1);
 | |
| 
 | |
| }
 | |
| #window #outer-box #scroll #inner-box #entry #img {
 | |
|   margin-right: 0.5rem;
 | |
| }
 | |
| 
 | |
| #window #outer-box #scroll #inner-box #entry:selected {
 | |
|   color: #fff;
 | |
|   background-color: rgba(255, 255, 255, 0.1);
 | |
|   outline: none;
 | |
|   border-bottom: 5px solid rgba(214, 174, 0, 1);
 | |
|   border-bottom-left-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| #row:hover {
 | |
|   background-color:  rgba(255, 255, 255, 0);
 | |
|   outline: inherit;
 | |
| }
 | |
| #window #outer-box #scroll #inner-box #entry:hover {
 | |
|   background-color: rgba(255, 255, 255, 0.1);
 | |
|   outline: inherit;
 | |
| }
 | |
| 
 | |
| #text {
 | |
|   margin-top: 1rem;
 | |
|   margin-bottom: 0;
 | |
| }
 |