Files
shop-ejs-expressjs/static/css/header.css
2022-03-29 14:38:40 +02:00

96 lines
1.7 KiB
CSS

/* UTIL */
.vertical-center {
float: left;
top: 50%;
position: relative;
transform: translateY(-50%);
}
/* BACKGROUND */
.headerDIV > div {
height: 100%;
text-align: center;
display: inline-block;
vertical-align: top;
}
/* LOGO PART */
.headerDIVLogo {
width: 35px;
}
.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;
}
/* BUTTON PART */
.headerDIVButton {
float: right;
}
.headerDIVButton 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);
}
.headerDIVButton > button:hover {
background-color: rgb(23, 114, 167);
}
.headerDIV {
width: 100%;
height: 65px;
background-color: #414854;
margin: 0;
}
@media only screen and (max-width: 800px) {
.headerDIVSearch {
}
}