Skip to content

Commit

Permalink
Added media queries to css get started demo
Browse files Browse the repository at this point in the history
  • Loading branch information
captainbrosset committed Oct 19, 2023
1 parent f2f3659 commit f228c54
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions devtools-css-get-started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,20 @@
};
</script>
<style>
@media (min-width: 400px) {
body {
column-count: 3;
column-gap: 1rem;
}
}

@media (min-width: 700px) {
body {
column-count: 4;
column-gap: 1rem;
}
}

/* red orange yellow green blue indigo violet */
@keyframes rainbow {
0% {
Expand Down

0 comments on commit f228c54

Please sign in to comment.