aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/home/index.css
blob: 89d36f0de2188054c61d779b994426b5cc57b75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.home-timeline-list-item {
  display: flex;
  align-items: center;
}

.home-timeline-list-item-timeline {
  transition: background 0.8s;
  animation: 0.8s home-timeline-list-item-timeline-enter;
}
.home-timeline-list-item-timeline:hover {
  background: #e9ecef;
}

@keyframes home-timeline-list-item-timeline-enter {
  from {
    transform: translate(-100%, 0);
    opacity: 0;
  }
}
.home-timeline-list-item-line {
  width: 80px;
  flex-shrink: 0;
}

@keyframes home-timeline-list-loading-head-animation {
  from {
    transform: translate(0, -30px);
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.home-timeline-list-loading-head {
  animation: 1s infinite home-timeline-list-loading-head-animation;
}

@media (min-width: 576px) {
  .home-search {
    float: right;
  }
}