43 lines
632 B
CSS
43 lines
632 B
CSS
.search {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 35%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
input {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#list {
|
|
width: 500px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
align-content: center;
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
#list > li {
|
|
|
|
}
|
|
|
|
.bg-image {
|
|
background-image: url('/src/assets/img/mountains.png');
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.sun {
|
|
width: 10%;
|
|
height: auto;
|
|
}
|