album/photos.scss
Rasmus Kaj d4bfe0756f Use scss to prepare css.
The css file is built to a file with (short) checksum in the
file name, to be nicely cacheable.  The actual file name is
compiled into the binary and sent to the templates as a variable.
2016-04-22 23:56:13 +02:00

29 lines
410 B
SCSS

$bordercolor: #666;
body {
background: #eee;
}
header {
border-bottom: 1px solid #aaa;
}
div.group {
display: flex;
flex-flow: row wrap;
.item {
border: 1px solid $bordercolor;
flex-basis: 210px;
flex-grow: 1;
margin: 0 -1px -1px 0;
padding: 1ex;
text-align: center;
}
}
ul.alltags, ul.allpeople, ul.allplaces {
-moz-column-width: 13em;
column-width: 13em;
}