58 lines
704 B
SCSS
58 lines
704 B
SCSS
body {
|
|
margin: 10px;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
body > form #search-main {
|
|
display: flex;
|
|
|
|
input {
|
|
border-radius: 0.4em;
|
|
border: solid 3px #f4f4f4;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
background-color: #f4f4f4;
|
|
}
|
|
|
|
input[type="text"] {
|
|
flex-grow: 1;
|
|
min-width: 50px;
|
|
font-size: 1.4em;
|
|
padding: 5px;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
li {
|
|
padding: 10px 0;
|
|
}
|
|
|
|
li:nth-child(even) {
|
|
background-color: #f4f4f4;
|
|
}
|
|
}
|
|
|
|
.movie {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.poster {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.informations {
|
|
align-self: flex-start;
|
|
flex: 1 1 300px;
|
|
}
|
|
}
|