mirror of
				https://github.com/DerTyp7/shop-ejs-expressjs.git
				synced 2025-10-30 21:07:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .auth_form{
 | |
|     display:block;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     width: 500px;
 | |
| }
 | |
| 
 | |
| .auth_form label{
 | |
|     display:block;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     width: 80%;
 | |
|     margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .auth_form label p{
 | |
|     width: 100%;
 | |
|     display:block;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     margin-bottom: 0px;
 | |
|     font-weight: bold;
 | |
|     letter-spacing: 1.5px;
 | |
| }
 | |
| .auth_form label input{
 | |
|     width: 100%;
 | |
|     display:block;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     height: 35px;
 | |
|     border-radius: 5px;
 | |
|     border: 2px solid rgb(0, 99, 156);
 | |
|     background-color: rgb(255, 255, 255);
 | |
|     transition: 0.1s;
 | |
|     transition-timing-function: linear;
 | |
|     padding-left:5px;
 | |
|     padding-right: 5px;
 | |
|     outline: none !important;
 | |
| }
 | |
| 
 | |
| .auth_form h4{
 | |
|     text-align: center;
 | |
|     margin-top: 30px;
 | |
|     margin-bottom: 0px;
 | |
| }
 | |
| /* Submit button with blue background horizontal center*/
 | |
| .auth_form input[type="button"]{
 | |
|     color: rgb(255, 255, 255);
 | |
|     font-weight: bold;
 | |
|     letter-spacing: 1.5px;
 | |
|     width: 100%;
 | |
|     display:block;
 | |
|     margin-top: 20px;
 | |
|     margin-left: auto;
 | |
|     margin-right: auto;
 | |
|     height: 35px;
 | |
|     border-radius: 5px;
 | |
|     border: 2px solid rgb(0, 99, 156);
 | |
|     background-color: rgb(0, 99, 156);
 | |
|     transition: 0.1s;
 | |
|     transition-timing-function: linear;
 | |
|     outline: none !important;
 | |
|     cursor:pointer;
 | |
| }
 | |
| 
 | |
| 
 | |
| /* Hover */
 | |
| 
 | |
| .auth_form label input:hover{
 | |
|     border: 2px solid rgb(1, 197, 246);
 | |
| }
 | |
| 
 | |
| .auth_form label input:focus{
 | |
|     border: 2px solid rgb(1, 197, 246);
 | |
|     box-shadow: 0 0 5px #719ece62;
 | |
| }
 | |
| 
 | |
| .auth_form input[type="submit"]:hover{
 | |
|     border: 2px solid rgb(7, 130, 200);
 | |
|     background-color: rgb(7, 130, 200);
 | |
| }
 | 
