mirror of
				https://github.com/DerTyp7/local-analyzer-angular.git
				synced 2025-10-30 21:27:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			952 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			952 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| h5 {
 | |
|   padding-top: 30px;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .result-container {
 | |
|   padding-top: 30px;
 | |
|   width: 700px;
 | |
| 
 | |
|   .result-container-pta {
 | |
|     height: 100px;
 | |
|     border-bottom: 1px solid rgb(63, 63, 63);
 | |
|   }
 | |
| 
 | |
|   .pta-circle {
 | |
|     width: 65px;
 | |
|     height: 65px;
 | |
|     border-radius: 50%;
 | |
|     margin-left: 44px;
 | |
|     border: 5px solid transparent;
 | |
|     background-color: rgba(250, 250, 250, 0.103);
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|     float: left;
 | |
|     background-size: 30px 30px;
 | |
|     background-repeat: no-repeat;
 | |
|     background-position: center;
 | |
| 
 | |
|     .pta-circle-text {
 | |
|       margin-top: 85px;
 | |
|       font-size: 10pt;
 | |
|       font-weight: bold;
 | |
|       display: block;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .pta-circle-true {
 | |
|     border-color: rgb(76, 231, 140);
 | |
|     background-image: url("../../assets/images/tick.svg");
 | |
|   }
 | |
| 
 | |
|   .pta-circle-false {
 | |
|     border-color: rgb(209, 39, 39);
 | |
|     background-image: url("../../assets/images/cross.svg");
 | |
|   }
 | |
| }
 | 
