Too much things
This commit is contained in:
parent
d35bdca3b1
commit
f3a15b00e9
15 changed files with 640 additions and 17 deletions
|
|
@ -2,6 +2,10 @@ body {
|
|||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.text-bold {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
|
@ -56,7 +60,11 @@ keyframes clockanim {
|
|||
|
||||
h1 small.authors {
|
||||
float: right;
|
||||
font-style: italic;
|
||||
font-size: 42%;
|
||||
}
|
||||
.lead small.authors {
|
||||
color: #7a8288;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
|
|
@ -69,3 +77,39 @@ h1 small.authors {
|
|||
-webkit-filter: invert(100%);
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
.heading {
|
||||
font-style: italic;
|
||||
margin-top: -7px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.repeated-item.ng-enter,
|
||||
.repeated-item.ng-leave {
|
||||
transition-duration: 1s;
|
||||
}
|
||||
|
||||
.repeated-item.ng-enter {
|
||||
opacity: 0;
|
||||
transform: translateY(-1000px);
|
||||
}
|
||||
|
||||
.repeated-item.ng-enter.ng-enter-active {
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
|
||||
.repeated-item.ng-leave.ng-leave-active {
|
||||
opacity: 0;
|
||||
}
|
||||
.col-sm-8 .repeated-item.ng-leave.ng-leave-active {
|
||||
transform: translateX(-800px);
|
||||
}
|
||||
.col-sm-4 .repeated-item.ng-leave.ng-leave-active {
|
||||
transform: translateX(800px);
|
||||
}
|
||||
|
||||
.repeated-item.ng-enter-stagger {
|
||||
transition-delay: 0.7s;
|
||||
transition-duration: 0s;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue