mirror of
https://github.com/mwalbeck/twitchlite.git
synced 2025-04-28 23:12:24 +00:00
* Improve css and make some small html adjustments * Add partial pagnation, as it doesn't seem like going backwards works that well * Set default top games to 100 and turn off autocomplete as all that would be available in autocomplete history is the numerical ids of the games not the names * Update README
51 lines
521 B
CSS
51 lines
521 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: #222;
|
|
color: #FFF;
|
|
}
|
|
|
|
nav {
|
|
display: grid;
|
|
grid-auto-flow: column;
|
|
}
|
|
|
|
form {
|
|
margin: 0;
|
|
}
|
|
|
|
.input {
|
|
display: flex;
|
|
justify-self: start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.input input {
|
|
margin: 0 0.5em;
|
|
}
|
|
|
|
.input-prev-next {
|
|
display: flex;
|
|
justify-self: end;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
|
|
.stream {
|
|
padding: 1em;
|
|
flex: 0 0 22em;
|
|
}
|
|
|
|
a,
|
|
a:visited {
|
|
color: #625cff;
|
|
}
|
|
|
|
a img {
|
|
width: 100%;
|
|
}
|