Created
November 14, 2018 08:59
-
-
Save makarovas/e53d2a0a564280ecfdb34599c72aa047 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
display: grid; | |
grid-gap: 2px; | |
height: 100vh; | |
grid-template-rows: 1fr 1fr; | |
padding-bottom: 20px; | |
grid-auto-rows: 1fr 2fr; | |
grid-template-columns: repeat(auto-fill, minmax(100px, auto)); | |
} | |
.grid-item { | |
background-color: #50ff17; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment