tutorial & sdcc15 planeswalkers

This commit is contained in:
Kyle
2021-08-23 18:34:56 -07:00
parent 87ba2a4a19
commit ff25b04476
16 changed files with 327 additions and 29 deletions

View File

@@ -579,6 +579,30 @@ textarea.input {
/*Tutorial Page only*/
.tutorial-grid {
display: grid;
grid-gap: 1rem;
grid-template-columns: 1fr;
}
.tutorial-grid > img {
display: block;
width: 100%;
height: auto;
margin: 1rem auto;
}
.readable-background > .tutorial-grid > img {
border: 0.1rem solid gray;
}
@media only screen and (min-width: 750px) {
.tutorial-grid {
grid-template-columns: 1fr 1fr;
}
}
/*Creator related only*/
/*Creator Grid/Canvas/Menu*/
.creator-grid {