Skip to content

Instantly share code, notes, and snippets.

@fisherds
Created October 14, 2019 13:28
Show Gist options
  • Select an option

  • Save fisherds/7110e67bcda071aa8a00293e2c05f372 to your computer and use it in GitHub Desktop.

Select an option

Save fisherds/7110e67bcda071aa8a00293e2c05f372 to your computer and use it in GitHub Desktop.
CSS for the Photo Bucket list page
#columns {
column-count: 3;
column-gap: 5px;
}
@media (min-width: 992px) {
#columns {
column-count: 4;
column-gap: 10px;
}
}
.pin {
display: inline-block;
box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
margin: 0 2px 15px;
padding: 10px;
padding-bottom: 5px;
background: linear-gradient(45deg, #FFF, #EEE);
transition: all .2s ease;
}
.pin img {
width: 100%;
border-bottom: 1px solid #ccc;
padding-bottom: 8px;
margin-bottom: 3px;
}
.pin p {
font: 12px/18px Arial, sans-serif;
text-align: center;
color: #333;
margin: 0;
max-height: 18px;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment