album/photos.scss

29 lines
410 B
SCSS
Raw Normal View History

$bordercolor: #666;
2015-11-27 01:20:36 +03:00
body {
background: #eee;
2015-11-27 01:20:36 +03:00
}
2015-11-30 23:00:07 +03:00
header {
border-bottom: 1px solid #aaa;
}
2015-11-27 01:20:36 +03:00
div.group {
display: flex;
flex-flow: row wrap;
.item {
border: 1px solid $bordercolor;
2015-11-27 01:20:36 +03:00
flex-basis: 210px;
flex-grow: 1;
margin: 0 -1px -1px 0;
padding: 1ex;
text-align: center;
}
2015-11-27 01:20:36 +03:00
}
2015-11-27 02:02:18 +03:00
ul.alltags, ul.allpeople, ul.allplaces {
2015-11-27 02:02:18 +03:00
-moz-column-width: 13em;
column-width: 13em;
}