Created
March 26, 2019 07:46
-
-
Save nemzes/0b1a331e9ef3921cd1c49762302807f1 to your computer and use it in GitHub Desktop.
Gridlines background
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
| body { | |
| min-height: 100vh; | |
| background-image: | |
| linear-gradient(to right, #555, transparent 1px, transparent 9px), | |
| linear-gradient(to bottom, #555, transparent 1px, transparent 9px), | |
| linear-gradient(to right, #ccc, transparent 1px, transparent 9px), | |
| linear-gradient(to bottom, #ccc, transparent 1px, transparent 9px); | |
| background-repeat: repeat; | |
| background-size: | |
| 100px 100px, | |
| 100px 100px, | |
| 10px 10px, | |
| 10px 10px; | |
| padding: 0; | |
| margin: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment