93 lines
1.1 KiB
SCSS
93 lines
1.1 KiB
SCSS
body {
|
|
margin: 10px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #666;
|
|
|
|
&:hover {
|
|
color: #888;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 1.2em;
|
|
font-family: Verdana,Arial,sans-serif;
|
|
}
|
|
|
|
ul#movies, ul#menu {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
ul#menu {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: flex-end;
|
|
|
|
li {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
.default, .compact {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.poster {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
|
|
.movie {
|
|
width: 160px;
|
|
}
|
|
}
|