mirror of
				https://github.com/DerTyp7/shop-ejs-expressjs.git
				synced 2025-10-30 21:07:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			103 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /* UTIL */
 | |
| .vertical-center {
 | |
|     float: left;
 | |
|     top: 50%;
 | |
|     position: relative;
 | |
|     transform: translateY(-50%);
 | |
| }
 | |
| 
 | |
| body {
 | |
|     margin: 0;
 | |
| }
 | |
| 
 | |
| 
 | |
| /* BACKGROUND */
 | |
| .headerDIV {
 | |
|     width: 100%;
 | |
|     height: 65px;
 | |
|     background-color: #414854;
 | |
|     margin: 0;
 | |
| }
 | |
| .headerDIV > div {
 | |
|     height: 100%;
 | |
|     text-align: center;
 | |
|     display: inline-block;
 | |
|     vertical-align: top;
 | |
| }
 | |
| 
 | |
| /* LOGO PART */
 | |
| .headerDIVLogo {
 | |
|     width: 20%;
 | |
| }
 | |
| .headerDIVLogo > img {
 | |
|     float: left;
 | |
|     height: 80%;
 | |
|     position: relative;
 | |
|     top: 10%;
 | |
| }
 | |
| 
 | |
| /* SEARCH PART */
 | |
| .headerDIVSearch {
 | |
|     width: 60%;
 | |
| }
 | |
| .headerDIVSearch > input {
 | |
|     left: 10%;
 | |
|     width: calc(80% - 60px);
 | |
|     border-radius: 5px;
 | |
|     border-top-right-radius: 0px;
 | |
|     border-bottom-right-radius: 0px;
 | |
|     height: 20px;
 | |
|     padding: 3px 10px;
 | |
| }
 | |
| .headerDIVSearch > button {
 | |
|     width: 40px;
 | |
|     left: 10%;
 | |
|     border-radius: 5px;
 | |
|     border-top-left-radius: 0px;
 | |
|     border-bottom-left-radius: 0px;
 | |
|     height: 30px;
 | |
| }
 | |
| 
 | |
| /* LOGIN PART */
 | |
| .headerDIVLogin {
 | |
|     width: 20%;
 | |
| }
 | |
| .headerDIVLogin > button {
 | |
|     height: 30px;
 | |
|     float: right;
 | |
|     margin-right: 10px;
 | |
| }
 | |
| 
 | |
| /* BUTTON PART */
 | |
| .headerDIVUser {
 | |
|     float: right;
 | |
| }
 | |
| .headerDIVUser button {
 | |
|     height: 30px;
 | |
|     float: right;
 | |
|     margin-right: 5px;
 | |
|     height: 35px;
 | |
|     border-radius: 5px;
 | |
|     border: 3px solid rgb(6, 70, 107);
 | |
|     background-color: rgb(0, 99, 156);
 | |
|     transition: 0.1s;
 | |
|     transition-timing-function: linear;
 | |
|     cursor: pointer;
 | |
|     color:white;
 | |
|     padding-left: 5px;
 | |
|     padding-right: 5px;
 | |
|     font-weight: bold;
 | |
| }
 | |
| 
 | |
| #headerBtnLogout{
 | |
|     background-color: rgb(172, 38, 38);
 | |
|     border-color: rgb(145, 35, 35);
 | |
| }
 | |
| 
 | |
| #headerBtnLogout:hover{
 | |
|     background-color: rgb(206, 50, 50);
 | |
| }
 | |
| 
 | |
| .headerDIVUser > button:hover {
 | |
|     background-color: rgb(23, 114, 167);
 | |
| } |