album/photos.scss
2016-04-23 16:43:55 +02:00

38 lines
568 B
SCSS

body {
background: #eee;
}
header {
border-bottom: 1px solid #aaa;
}
div.group {
display: flex;
flex-flow: row wrap;
.item {
background: #ccc;
border: 1px solid #333;
display: flex;
flex-basis: 210px;
flex-flow: column;
flex-grow: 1;
justify-content: space-between;
margin: .2em;
padding: 1ex;
text-align: center;
h2, p {
margin: .2em;
}
img {
box-shadow: 0 .2em 1em -.2em #000;
}
}
}
ul.alltags, ul.allpeople, ul.allplaces {
-moz-column-width: 13em;
column-width: 13em;
}