CSS: improve small screen support
This commit is contained in:
parent
a4395599a9
commit
3a4fc9564e
1 changed files with 31 additions and 0 deletions
|
@ -35,6 +35,7 @@ h1 { margin: 3em 0; }
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
#starting-regen, .starting-regen {
|
#starting-regen, .starting-regen {
|
||||||
|
@ -96,3 +97,33 @@ hr {
|
||||||
footer {
|
footer {
|
||||||
background: #0066ff;
|
background: #0066ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
███████ ███ ███ █████ ██ ██
|
||||||
|
██ ████ ████ ██ ██ ██ ██
|
||||||
|
███████ ██ ████ ██ ███████ ██ ██
|
||||||
|
██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
███████ ██ ██ ██ ██ ███████ ███████
|
||||||
|
|
||||||
|
███████ ██████ ██████ ███████ ███████ ███ ██ ███████
|
||||||
|
██ ██ ██ ██ ██ ██ ████ ██ ██
|
||||||
|
███████ ██ ██████ █████ █████ ██ ██ ██ ███████
|
||||||
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██
|
||||||
|
███████ ██████ ██ ██ ███████ ███████ ██ ████ ███████
|
||||||
|
*/
|
||||||
|
|
||||||
|
@media (max-width: 723px) {
|
||||||
|
.starting-regen {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mutation-step {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mutation-option {
|
||||||
|
margin: 0.25em 0;
|
||||||
|
padding: 0.1em 0.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue