mirror of
				https://github.com/StefBuwalda/WebTech.git
				synced 2025-10-30 19:29:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			916 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			916 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* Base template */
 | |
| body {
 | |
|     background-color: lightslategray;
 | |
| }
 | |
| 
 | |
| /* Dashboard page */
 | |
| .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 {
 | |
|     height: fit-content;
 | |
|     width: 400px;
 | |
|     padding-top: 5px;
 | |
|     padding-bottom: 5px;
 | |
|     border: 2px solid black;
 | |
|     border-radius: 10px;
 | |
| }
 | |
| 
 | |
| .fit-picture {
 | |
|     width: 50px;
 | |
|     padding-top: 5px;
 | |
|     padding-bottom: 5px;
 | |
| }
 | |
| 
 | |
| /* Login page */
 | |
| .form {
 | |
|     display: block;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     height: fit-content;
 | |
|     width: fit-content;
 | |
|     border: 2px solid black;
 | |
|     border-radius: 10px;
 | |
|     text-align: center;
 | |
|     margin-top: 10px;
 | |
|     padding: 20px;
 | |
|     font-size: 20px;
 | |
| }
 | |
| 
 | |
| .submit {
 | |
|     padding-top: 10px;
 | |
| }
 | |
| 
 | |
| .feedback {
 | |
|     font-size: 16px;
 | |
|     color: red;
 | |
| } | 
