album/photos.scss

152 lines
2.0 KiB
SCSS
Raw Normal View History

2017-02-03 22:44:13 +04:00
$border: 1px solid #333;
2017-02-11 15:20:48 +04:00
html {
height: 100%;
&, body {
margin: 0;
padding: 0;
}
}
2015-11-27 01:20:36 +03:00
body {
2016-06-05 22:55:44 +03:00
background: #eee;
2017-02-03 22:44:13 +04:00
line-height: 1.6;
2017-02-11 15:20:48 +04:00
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100%;
2017-02-03 22:44:13 +04:00
}
p {
margin: 0;
}
p + p {
margin-top: 1ex;
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;
2017-02-11 15:20:48 +04:00
position: sticky;
2016-06-05 22:55:44 +03:00
top: 0;
z-index: 9999;
2017-02-11 15:20:48 +04:00
}
footer {
background: #999;
color: white;
:link, :visited {
color: #edf;
}
p { margin: 0; }
}
header, footer {
display: flex;
2016-05-04 19:45:50 +03:00
& > span {
flex-grow: 1;
}
2017-02-11 15:20:48 +04:00
& > :last-child {
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
2017-02-11 15:20:48 +04:00
main {
flex-grow: 1;
margin-bottom: 1em;
}
header, footer, main {
flex-wrap: wrap;
padding: 0 1ex;
}
2017-02-03 22:44:13 +04:00
.item {
background: #ccc;
border: $border;
img {
box-shadow: 0 .2em 1em -.2em #000;
vertical-align: middle;
}
}
div.group {
display: flex;
2016-11-20 17:52:38 +03:00
flex-flow: row-reverse wrap;
.item {
2016-04-23 17:43:55 +03:00
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;
}
}
2017-02-12 19:03:36 +04:00
p.item {
justify-content: space-around;
}
2015-11-27 01:20:36 +03:00
}
2017-02-03 22:44:13 +04:00
div.details {
display: flex;
flex-flow: row wrap;
.item, .meta {
padding: 1em;
}
.item {
align-self: flex-start;
2017-02-04 21:19:32 +04:00
flex-grow: 4;
2017-02-03 22:44:13 +04:00
flex-basis: 30em;
text-align: center;
img {
max-width: 100%;
}
2017-02-11 18:23:03 +04:00
&.zoom {
flex-basis: auto;
}
2017-02-03 22:44:13 +04:00
}
.meta {
flex-grow: 1;
2017-02-04 21:19:32 +04:00
flex-basis: 20em;
2017-02-03 22:44:13 +04:00
padding-top: 0;
}
}
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;
}
2016-07-09 22:25:34 +03:00
#map {
2017-02-03 22:44:13 +04:00
border: $border;
2016-07-09 22:25:34 +03:00
height: 8em;
2017-02-03 22:44:13 +04:00
margin: 1ex auto;
2016-07-09 22:25:34 +03:00
}
2017-02-11 15:20:48 +04:00
form {
border: $border;
margin: auto;
padding: 1em;
width: -moz-fit-content;
2017-02-12 16:03:55 +04:00
width: fit-content;
2017-02-11 15:20:48 +04:00
p {
display: flex;
2017-02-12 16:03:55 +04:00
flex-flow: row wrap;
2017-02-11 15:20:48 +04:00
justify-content: space-between;
}
label {
padding: .2em 1em .2em 0;
}
}