Last active
November 1, 2021 19:37
-
-
Save EdCharbeneau/9b6fd4722ef2aa9ef9c3a1616223e117 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
/*highlight the small rows*/ | |
.main-layout > div:nth-child(4n-1), .main-layout > div:nth-child(4n) { | |
background: #777 | |
} | |
.main-layout > div { | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
border-radius: 5px; | |
background-color: #AAA; | |
color: white; | |
font-size: 32px; | |
} | |
@media (min-width: 768px) { | |
.main-layout > div:nth-child(4n-1), .main-layout > div:nth-child(4n) { | |
background: #777 | |
} | |
} | |
@media (max-width: 767.98px) { | |
.main-layout > div:nth-child(odd) { | |
background: #777 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment