feat(subject): UI

This commit is contained in:
Hristo Terezov
2019-03-12 17:45:53 +00:00
parent 2715e81f1d
commit cb8e9eed5e
15 changed files with 233 additions and 84 deletions

21
css/_subject.scss Normal file
View File

@@ -0,0 +1,21 @@
.subject {
top: -120px;
transition: top .3s ease-in;
height: 95px;
width: 100%;
position: absolute;
padding: 25px 140px 0 140px;
text-align: center;
font-size: 17px;
color: #fff;
z-index: $toolbarBackgroundZ;
overflow: hidden;
text-overflow: ellipsis;
box-sizing: border-box;
white-space: nowrap;
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
&.visible {
top: 0px;
}
}