*{
font-family: Avenir;
color:black;
/* background-color: #3498db; */
}
html,body{
margin:0;
height:100%;
}
/* Wrapper style */
.wrapper{
display:flex;
flex-direction: column;
min-height:100%;
}
.wrapper.indexPage{
justify-content: center;
}
.mainSection{
display:flex;
flex-direction: column;
align-items: center;
}
/* Wrapper style End */
/* Search Box style */
.mainSection .searchContainer{
margin-top: 20px;
width: 100%;
}
.mainSection .searchContainer form{
display:flex;
flex-direction: column;
align-items: center;
}
.searchContainer .searchButton{
color:#757575;
background-color: #f5f5f5;
border: none;
height:36px;
width: 125px;
border-radius: 7px;
font-size: 13px;
font-weight: bold;
margin-top: 20px;
cursor: pointer;
outline: none;
}
.mainSection .searchContainer .searchBox{
border: none;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
height: 44px;
border-radius: 7px;
outline: none;
padding: 10px;
box-sizing: border-box;
font-size: 16px;
width:70%;
max-width:630px;
color:#000;
}
.mainSection .logoContainer{
width:220px;
text-align: center;
}
.logoContainer img{
width:100%;
}
/* Search Box style End */
/* custom Font style */
@font-face {
font-family: Avenir;
src: url("AvenirLT/AvenirLTStd-Heavy.otf") format("opentype");
font-weight: 400;
font-style: normal;
font-display: block;
}
|