Last active
January 1, 2024 12:37
-
-
Save printminion/3d89bebd31828383bc2bf4c3736a462f to your computer and use it in GitHub Desktop.
Create Screenshot of your Cults3D creations https://cults3d.com/en/users/printminion/3d-models
This file contains 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
/* | |
Display only N models via CSS modification | |
https://cults3d.com/en/users/printminion/3d-models | |
In order to create screenshot for yearly overview | |
Injected via: https://chromewebstore.google.com/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld | |
Follow me on https://twitter.com/printminion | |
Buy me a coffee https://www.buymeacoffee.com/printminion | |
*/ | |
body.body--top_bar { | |
border-top: none; | |
} | |
header, nav, .menu-head, .foot { | |
display: none !important; | |
} | |
#content h1 { | |
display: none !important; | |
} | |
#content > div:nth-of-type(1) { | |
display: none !important; | |
} | |
.crea-group > article { | |
display: none !important; | |
} | |
/* display first 22 items of creations */ | |
.crea-group > article:nth-of-type(1), | |
.crea-group > article:nth-of-type(2), | |
.crea-group > article:nth-of-type(3), | |
.crea-group > article:nth-of-type(4), | |
.crea-group > article:nth-of-type(5), | |
.crea-group > article:nth-of-type(6), | |
.crea-group > article:nth-of-type(7), | |
.crea-group > article:nth-of-type(8), | |
.crea-group > article:nth-of-type(9), | |
.crea-group > article:nth-of-type(10), | |
.crea-group > article:nth-of-type(11), | |
.crea-group > article:nth-of-type(12), | |
.crea-group > article:nth-of-type(13), | |
.crea-group > article:nth-of-type(14), | |
.crea-group > article:nth-of-type(15), | |
.crea-group > article:nth-of-type(16), | |
.crea-group > article:nth-of-type(17), | |
.crea-group > article:nth-of-type(18), | |
.crea-group > article:nth-of-type(19), | |
.crea-group > article:nth-of-type(20), | |
.crea-group > article:nth-of-type(21), | |
.crea-group > article:nth-of-type(22), | |
.crea-group > article:nth-of-type(23) | |
{ | |
display: block !important; | |
} | |
.crea-group { | |
grid-template-columns: repeat(5, minmax(0, 1fr))!important; | |
} | |
.crea-group .drawer-foot { | |
display: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment