album/photos.scss

50 lines
743 B
SCSS
Raw Normal View History

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;
display: flex;
flex-wrap: wrap;
& > * {
flex-grow: 1;
}
span {
flex-grow: 5;
padding-left: 1em;
text-align: right;
}
2015-11-30 23:00:07 +03:00
}
2015-11-27 01:20:36 +03:00
div.group {
display: flex;
flex-flow: row wrap;
.item {
2016-04-23 17:43:55 +03:00
background: #ccc;
border: 1px solid #333;
display: flex;
2015-11-27 01:20:36 +03:00
flex-basis: 210px;
2016-04-23 17:43:55 +03:00
flex-flow: column;
2015-11-27 01:20:36 +03:00
flex-grow: 1;
2016-04-23 17:43:55 +03:00
justify-content: space-between;
margin: .2em;
2015-11-27 01:20:36 +03:00
padding: 1ex;
text-align: center;
2016-04-23 17:43:55 +03:00
h2, p {
margin: .2em;
}
img {
box-shadow: 0 .2em 1em -.2em #000;
}
}
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;
}