2017-03-10 17:08:26 +00:00
|
|
|
$iso-paper-ratio: 141.42135624%;
|
2016-11-10 14:31:25 +00:00
|
|
|
|
2017-03-16 17:09:46 +00:00
|
|
|
@keyframes ellipsis {
|
|
|
|
|
to {
|
|
|
|
|
width: 1.25em;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-08 13:08:53 +00:00
|
|
|
.letter {
|
2016-11-28 11:01:39 +00:00
|
|
|
|
2017-04-28 16:04:52 +01:00
|
|
|
padding: $iso-paper-ratio 0 0 0;
|
2016-12-28 10:18:41 +00:00
|
|
|
margin: 0 0 $gutter 0;
|
|
|
|
|
position: relative;
|
2017-03-13 09:38:29 +00:00
|
|
|
background: $panel-colour;
|
2016-11-28 11:01:39 +00:00
|
|
|
|
2017-03-16 17:09:46 +00:00
|
|
|
&:before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
margin-left: -0.5em;
|
|
|
|
|
font-size: 96px;
|
|
|
|
|
color: $white;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: block;
|
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
animation: ellipsis steps(4,end) 1.3s infinite;
|
|
|
|
|
content: "\2026"; // ellipsis
|
|
|
|
|
width: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-28 11:01:39 +00:00
|
|
|
img {
|
|
|
|
|
display: block;
|
2016-12-28 10:18:41 +00:00
|
|
|
width: 100%;
|
|
|
|
|
background: $white;
|
2017-01-03 16:38:32 +00:00
|
|
|
box-shadow: inset 0 0 0 1px $border-colour;
|
2016-12-28 10:18:41 +00:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2016-11-28 11:01:39 +00:00
|
|
|
}
|
|
|
|
|
|
2016-11-08 13:08:53 +00:00
|
|
|
}
|