1
0
mirror of https://github.com/mwalbeck/twitchlite.git synced 2024-09-07 21:42:43 +00:00
twitchlite/style.css
Magnus Walbeck d19d38e4e9
Switch to using the Helix api (#9)
* 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
2021-10-31 12:14:55 +01:00

52 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%;
}