46 lines
733 B
CSS
46 lines
733 B
CSS
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
div.main-bg {
|
|
background-image: url("images/main-bg.jpg");
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
/*border: 2px solid red;*/
|
|
}
|
|
|
|
.search-col {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.stylish-input-group .input-group-addon{
|
|
background: white !important;
|
|
}
|
|
.stylish-input-group .form-control{
|
|
border-right:0;
|
|
box-shadow:0 0 0;
|
|
border-color:#ccc;
|
|
}
|
|
.stylish-input-group button{
|
|
border:0;
|
|
background:transparent;
|
|
}
|