 a4b1f68e34
			
		
	
	
		a4b1f68e34
		
	
	
	
	
		
			
			* Added nav-bar inside php file which is included in each page instead of copy pasting * Clicking on images will now redirect the user to a new page with the url of the image. This is to facilitate the exploit
		
			
				
	
	
		
			45 lines
		
	
	
		
			607 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			607 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| 
 | |
| 
 | |
| .logo{
 | |
|     height:50px;
 | |
|     width:auto;
 | |
| }
 | |
| .wrapper {
 | |
|     display:block;
 | |
|     margin-left:15%;
 | |
|     margin-right:15%;
 | |
| }
 | |
| 
 | |
| .info-part{
 | |
|     margin-left:15%;
 | |
|     margin-right:15%;
 | |
| }
 | |
| 
 | |
| .gallery img{
 | |
|     max-width:250px;
 | |
|     max-height:250px;
 | |
| }
 | |
| .gallery{
 | |
|     padding:10px;
 | |
|     background-color:black;
 | |
|     display:grid;
 | |
|     grid-template-columns: auto auto auto auto;
 | |
| }
 | |
| 
 | |
| #loginForm{
 | |
|     display:grid;
 | |
|     margin-right:30%;
 | |
|     margin-left:30%;
 | |
|     gap:5px;
 | |
| }
 | |
| 
 | |
| .tux-img{
 | |
|     cursor:pointer;
 | |
|     transition: all 0.1s ease-in-out;
 | |
|     border:2px solid white;
 | |
| 
 | |
| }
 | |
| 
 | |
| .tux-img:hover{
 | |
|     border:2px solid rgb(255, 196, 0);
 | |
| } |