mirror of
				https://github.com/StefBuwalda/WebTech.git
				synced 2025-10-31 03:39:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			430 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			430 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| body {
 | |
|     background-color: lightslategray;
 | |
| }
 | |
| 
 | |
| .grid-container {
 | |
|     display: grid;
 | |
|     grid-template-columns: auto auto auto;
 | |
|     gap: 20px;
 | |
|     background-color: lightslategray;
 | |
|     padding-top: 20px;
 | |
|     margin-left: 10%;
 | |
|     margin-right: 10%;
 | |
| }
 | |
| 
 | |
| .grid-container > div {
 | |
|     text-align: center;
 | |
|     height: 100px;
 | |
|     padding-top: 5px;
 | |
|     border: 2px solid black;
 | |
|     border-radius: 10px;
 | |
|     background-color: whitesmoke;
 | |
| } |