Use CSS Grid layout for projects

This commit is contained in:
Cameron Cordes
2020-08-30 20:58:44 -04:00
parent 496df11df7
commit 9717c2c332
3 changed files with 34 additions and 10 deletions

View File

@@ -1,6 +1,28 @@
@media (max-width: 768px) {
img {
max-width: 40%;
margin: 0 0 1em 0;
.grid {
display: grid;
grid-gap: 1em;
grid-template-columns: repeat(auto-fill, minmax(480px, 1fr) );
align-content: start;
margin: 1rem;
}
:host /deep/ a {
color: var(--nord13);
}
:host /deep/ a:hover {
color: var(--nord11);
-webkit-transition: color 300ms;
-moz-transition: color 300ms;
-ms-transition: color 300ms;
-o-transition: color 300ms;
transition: color 300ms;
text-decoration: none;
}
@media(max-width: 576px) {
.grid {
grid-template-columns: 1fr;
margin: 0.5rem;
}
}