mirror of
				https://github.com/StefBuwalda/WebTech.git
				synced 2025-10-31 03:39:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* Base template */
 | |
| body {
 | |
|     background-color: lightslategray;
 | |
| }
 | |
| 
 | |
| /* Dashboard page */
 | |
| .grid-container {
 | |
|     display: grid;
 | |
|     grid-template-columns: auto auto auto auto auto;
 | |
|     gap: 20px;
 | |
|     background-color: lightslategray;
 | |
|     padding-top: 20px;
 | |
|     margin-left: 10%;
 | |
|     margin-right: 10%;
 | |
|     justify-content: center;
 | |
| }
 | |
| 
 | |
| .grid-container > div {
 | |
|     height: fit-content;
 | |
|     width: 200px;
 | |
|     padding-top: 5px;
 | |
|     padding-bottom: 5px;
 | |
|     border: 2px solid black;
 | |
|     border-radius: 10px;
 | |
|     box-shadow: 5px 5px 10px black;
 | |
|     font-weight: bold;
 | |
|     
 | |
| }
 | |
| 
 | |
| .fit-picture {
 | |
|     width: 175px;
 | |
|     margin-top: 5px;
 | |
|     margin-bottom: 5px;
 | |
|     border: 1px solid black;
 | |
|     border-radius: 5px;
 | |
|     box-shadow: 0px 0px 5px black;
 | |
| }
 | |
| 
 | |
| .url {
 | |
|     font-weight: normal;
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| /* 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;
 | |
| }
 | |
| 
 | |
| .padding {
 | |
|     padding-top: 10px;
 | |
| }
 | |
| 
 | |
| .feedback {
 | |
|     font-size: 16px;
 | |
|     color: red;
 | |
| } | 
