Created
September 20, 2019 08:20
-
-
Save skttl/ffed212df01813e875b98e07099a0cfa to your computer and use it in GitHub Desktop.
Umbraco Cloud listview
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
.projects .project-inner { | |
display: grid; | |
grid-template-columns: 32px 1fr 15px 130px; | |
grid-template-rows: 1fr 1fr; | |
height: auto; | |
column-gap: 1em; | |
row-gap: 0; | |
padding: 1em; | |
} | |
.projects .project { | |
flex-basis: 100%; | |
height: auto; | |
} | |
.favorite { | |
grid-column: 3; | |
position: static; | |
grid-row: 1; | |
grid-row-end: 3; | |
} | |
.project-identity { | |
grid-column: 1; | |
grid-row: 1 / 3; | |
margin-bottom: 1.8em; | |
} | |
.project-name { | |
grid-column: 2; | |
grid-row: 1; | |
text-align: left; | |
margin: 0; | |
max-width: none; | |
} | |
.latest-activity { | |
margin: 0; | |
grid-column: 2; | |
grid-row: 2; | |
display: flex; | |
align-items: baseline; | |
} | |
.action { | |
grid-column: 4; | |
grid-row: 1; | |
grid-row-end: 3; | |
} | |
.timeago { | |
margin-right: 1em; | |
} | |
.timeago:after { | |
content: ':'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment