album/photos.scss

58 lines
907 B
SCSS
Raw Normal View History

2015-11-27 01:20:36 +03:00
body {
2016-06-05 22:55:44 +03:00
background: #eee;
margin-top: 2em;
2015-11-27 01:20:36 +03:00
}
2015-11-30 23:00:07 +03:00
header {
2016-06-05 22:55:44 +03:00
background-color: #eee;
box-shadow: 0 0 1ex #444;
display: flex;
flex-wrap: wrap;
2016-06-05 22:55:44 +03:00
left: 0;
padding: 0 1ex;
position: fixed;
top: 0;
width: 100%;
width: -moz-available;
2016-05-04 19:45:50 +03:00
& > span {
flex-grow: 1;
}
2016-05-04 19:45:50 +03:00
span.user {
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;
}